diff --git a/.github/workflows/test-mobile-e2e.yml b/.github/workflows/test-mobile-e2e.yml index 159068c005af..0c443893898f 100644 --- a/.github/workflows/test-mobile-e2e.yml +++ b/.github/workflows/test-mobile-e2e.yml @@ -21,6 +21,19 @@ on: base_ref: description: The base branch to merge the head into when checking out the code required: false + export_to_xray: + description: Send tests results to Xray + required: false + type: boolean + default: false + test_execution_android: + description: "[Android] Test Execution ticket ID. Ex: 'B2CQA-2461'" + required: false + type: string + test_execution_ios: + description: "[iOS] Test Execution ticket ID. Ex: 'B2CQA-2461'" + required: false + type: string # Uncomment to have log-level: trace on detox run and build # (cf: apps/ledger-live-mobile/detox.config.js) @@ -287,6 +300,63 @@ jobs: password: ${{ secrets.ALLURE_LEDGER_LIVE_PASSWORD }} path: android-test-artifacts + upload-to-xray: + name: "Upload to Xray" + runs-on: [ledger-live-medium] + strategy: + matrix: + platform: + - android + - ios + fail-fast: false + env: + XRAY_CLIENT_ID: ${{ secrets.XRAY_CLIENT_ID }} + XRAY_CLIENT_SECRET: ${{ secrets.XRAY_CLIENT_SECRET }} + XRAY_API_URL: https://xray.cloud.getxray.app/api/v2 + JIRA_URL: https://ledgerhq.atlassian.net/browse + TEST_EXECUTION: ${{ matrix.platform == 'android' && inputs.test_execution_android || inputs.test_execution_ios }} + needs: [detox-tests-android, detox-tests-ios] + if: ${{ !cancelled() && inputs.export_to_xray }} + steps: + - uses: actions/checkout@v4 + with: + ref: ${{ inputs.ref || github.sha }} + + - name: Download Allure Results + uses: actions/download-artifact@v4 + with: + path: "artifacts-${{ matrix.platform }}" + name: ${{ matrix.platform }}-test-artifacts + + - name: Format Xray results + run: apps/ledger-live-mobile/e2e/xray.formater.sh artifacts-${{ matrix.platform }} ${{ matrix.platform }} ${{ env.TEST_EXECUTION}} + + - name: Upload aggregated xray results + uses: actions/upload-artifact@v4 + with: + retention-days: 1 + name: xray-reports-${{ matrix.platform }} + path: "artifacts-${{ matrix.platform }}/xray_report.json" + + - name: Authenticate to Xray + id: authenticate + run: | + response=$(curl -H "Content-Type: application/json" -X POST --data '{"client_id": "${{ env.XRAY_CLIENT_ID }}", "client_secret": "${{ env.XRAY_CLIENT_SECRET }}"}' ${{ env.XRAY_API_URL }}/authenticate) + echo "xray_token=$response" >> $GITHUB_OUTPUT + - name: Publish report on Xray + id: publish-xray + run: | + response=$(curl -H "Content-Type: application/json" \ + -H "Authorization: Bearer ${{ steps.authenticate.outputs.xray_token }}" \ + -X POST \ + --data @artifacts-${{ matrix.platform }}/xray_report.json \ + ${{ env.XRAY_API_URL }}/import/execution) + key=$(echo $response | jq -r '.key') + echo "xray_key=$key" >> $GITHUB_OUTPUT + - name: Write Xray report link in summary + shell: bash + run: echo "::notice title=${{ matrix.platform }} Xray report URL::${{ env.JIRA_URL }}/${{ steps.publish-xray.outputs.xray_key }}" + report: needs: [detox-tests-android, detox-tests-ios] runs-on: ubuntu-latest diff --git a/.github/workflows/test-ui-e2e-only-desktop.yml b/.github/workflows/test-ui-e2e-only-desktop.yml index e61f725a82d7..35be80bd8d86 100644 --- a/.github/workflows/test-ui-e2e-only-desktop.yml +++ b/.github/workflows/test-ui-e2e-only-desktop.yml @@ -58,8 +58,6 @@ permissions: jobs: e2e-tests-linux: name: "Desktop Tests E2E (Ubuntu)" - outputs: - status: ${{ steps.tests.outcome }} env: NODE_OPTIONS: "--max-old-space-size=7168" INSTRUMENT_BUILD: true @@ -78,7 +76,7 @@ jobs: - uses: actions/checkout@v4 with: ref: ${{ inputs.ref || github.sha }} - + - name: Setup broadcast environment variables id: set-env run: | @@ -98,18 +96,21 @@ jobs: roleName: ${{ secrets.AWS_CACHE_ROLE_NAME }} region: ${{ secrets.AWS_CACHE_REGION }} turbo-server-token: ${{ secrets.TURBOREPO_SERVER_TOKEN }} + - uses: LedgerHQ/ledger-live/tools/actions/composites/setup-test-desktop@develop id: setup-test-desktop with: skip_ruby: true install_playwright: true turborepo-server-port: ${{ steps.caches.outputs.port }} + - name: Generate token id: generate-token uses: tibdex/github-app-token@v1 with: app_id: ${{ secrets.GH_BOT_APP_ID }} private_key: ${{ secrets.GH_BOT_PRIVATE_KEY }} + - name: Retrieving coin apps uses: actions/checkout@v4 with: @@ -117,9 +118,11 @@ jobs: repository: LedgerHQ/coin-apps token: ${{ steps.generate-token.outputs.token }} path: coin-apps + - name: Pull docker image run: docker pull ${{ env.SPECULOS_IMAGE_TAG }} shell: bash + - name: Run playwright tests [Linux => xvfb-run] id: tests run: | @@ -188,6 +191,7 @@ jobs: - name: Get summary if: ${{ !cancelled() }} + id: summary shell: bash run: | cd apps/ledger-live-desktop @@ -200,15 +204,12 @@ jobs: totalTests=$(jq '.statistic.total' summary.json) echo "TEST_RESULT=$passedTests passed, $failedTests failed, $brokenTests broken, $skippedTests skipped, $totalTests total" >> $GITHUB_ENV - - name: Get status color - if: ${{ !cancelled() }} - shell: bash - run: > - if ${{ needs.e2e-tests-linux.outputs.status == 'success' }}; - then echo "STATUS_COLOR=#33FF39" >> $GITHUB_ENV; - elif ${{ needs.e2e-tests-linux.outputs.status == 'failure' }}; - then echo "STATUS_COLOR=#FF333C" >> $GITHUB_ENV; - else echo "STATUS_COLOR=#F3FF33" >> $GITHUB_ENV; + if [ "$failedTests" -gt 0 ] || [ "$brokenTests" -gt 0 ]; then + echo "STATUS_COLOR=#FF333C" >> $GITHUB_ENV; + echo "STATUS_EMOJI=❌" >> $GITHUB_ENV; + else + echo "STATUS_COLOR=#33FF39" >> $GITHUB_ENV; + echo "STATUS_EMOJI=✅" >> $GITHUB_ENV; fi - uses: actions/github-script@v6 @@ -246,6 +247,7 @@ jobs: status: "${{ needs.e2e-tests-linux.outputs.status }}", } }; + const statusEmoji = process.env.STATUS_EMOJI; let summary = `### Playwright Tests ` @@ -270,7 +272,7 @@ jobs: |`; Object.entries(report).forEach(([os, values]) => { - summary += ` ${values.pass ? "✅" : "❌"} (${values.status}) |`; + summary += ` ${values.pass ? statusEmoji : "❌"} (${values.status}) |`; }); summary += ` @@ -318,7 +320,7 @@ jobs: "type": "section", "text": { "type": "mrkdwn", - "text": `- 🐧 linux: ${report.linux.pass ? "✅" : "❌"} ${process.env.TEST_RESULT || 'No test results'}` + "text": `- 🐧 linux: ${statusEmoji} ${process.env.TEST_RESULT || 'No test results'}` } }, { @@ -356,6 +358,7 @@ jobs: payload-file-path: ${{ github.workspace }}/payload-slack-content.json env: SLACK_BOT_TOKEN: ${{ secrets.SLACK_LIVE_CI_BOT_TOKEN }} + STATUS_COLOR: ${{ env.STATUS_COLOR }} upload-to-xray: name: "Upload to Xray" diff --git a/CODEOWNERS b/CODEOWNERS index f8d1a5615788..fa6675e1f307 100644 --- a/CODEOWNERS +++ b/CODEOWNERS @@ -99,10 +99,12 @@ apps/ledger-live-mobile/src/newArch/features/Web3Hub/ @ledgerhq/wallet-api # Devices team apps/cli/src/commands/devices @ledgerhq/live-devices **/src/renderer/screens/manager/ @ledgerhq/live-devices -**/screens/CustomImage @ledgerhq/live-devices -**/components/CustomImage @ledgerhq/live-devices +**/screens/customImage @ledgerhq/live-devices +**/components/CustomImage @ledgerhq/live-devices +**/screens/CustomImage @ledgerhq/live-devices **/SyncOnboarding/** @ledgerhq/live-devices **/OnboardingAppInstall/** @ledgerhq/live-devices +**/UpdateFirmwareModal/** @ledgerhq/live-devices apps/**/components/DeviceAction/ @ledgerhq/live-devices apps/ledger-live-mobile/src/screens/MyLedger*/ @ledgerhq/live-devices apps/ledger-live-mobile/src/newArch/features/FirmwareUpdate/ @ledgerhq/live-devices diff --git a/README.md b/README.md index 3ee3d83d8b63..d1251e36024b 100644 --- a/README.md +++ b/README.md @@ -78,7 +78,7 @@ pnpm mobile pod ### Tools -We use [**pnpm workspaces**](https://pnpm.io/) and [**turborepo**](https://turborepo.org/) under the hood to handle local and external dependencies, orchestrate tasks and perform various optimizations like package hoisting or [**remote caching**](https://turborepo.org/docs/features/remote-caching). +We use [**pnpm workspaces**](https://pnpm.io/) and [**turborepo**](https://turborepo.org/) under the hood to handle local and external dependencies, orchestrate tasks and perform various optimizations like package hoisting or [**remote caching**](https://turbo.build/repo/docs/core-concepts/remote-caching). For changelog generation releases and package publishing we rely on the [**changesets**](https://github.com/changesets/changesets) library. diff --git a/apps/cli/CHANGELOG.md b/apps/cli/CHANGELOG.md index 7c2a5735c303..267107343c77 100644 --- a/apps/cli/CHANGELOG.md +++ b/apps/cli/CHANGELOG.md @@ -1,5 +1,51 @@ # @ledgerhq/live-cli +## 24.5.2 + +### Patch Changes + +- [#7563](https://github.com/LedgerHQ/ledger-live/pull/7563) [`ef82161`](https://github.com/LedgerHQ/ledger-live/commit/ef82161688fc49bf32cbc88f1837b15490e5d2b4) Thanks [@Wozacosta](https://github.com/Wozacosta)! - remove pivx code + +- Updated dependencies [[`f8756b2`](https://github.com/LedgerHQ/ledger-live/commit/f8756b29a83048d423d500e16ea3f9789763b90d), [`5c738cb`](https://github.com/LedgerHQ/ledger-live/commit/5c738cbd35ce5d0ca39ad3b86a61cc6234d1bdf7), [`940d807`](https://github.com/LedgerHQ/ledger-live/commit/940d8073f6395cbcc2369f46aa6ad30216b00198), [`354d913`](https://github.com/LedgerHQ/ledger-live/commit/354d9138a4bd9b54001ff1330a8000ee94aea008), [`9c55e81`](https://github.com/LedgerHQ/ledger-live/commit/9c55e81c84d3372f2a7fd36248f970376aec905a), [`5de6b47`](https://github.com/LedgerHQ/ledger-live/commit/5de6b47f4fec831a24ccd58ee95d69b8c2c15d57), [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab), [`b97b76c`](https://github.com/LedgerHQ/ledger-live/commit/b97b76cc99845b0240426f5ca75c765b615ccec5), [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab), [`cc291f5`](https://github.com/LedgerHQ/ledger-live/commit/cc291f5466d80a2b7e9394338ab588ecd3db4623), [`fb9466a`](https://github.com/LedgerHQ/ledger-live/commit/fb9466a4d7827fd4759c726ad3ae0b43dddcacd3), [`f0eb405`](https://github.com/LedgerHQ/ledger-live/commit/f0eb405b52de5484ee98ac87e87522b33836224c), [`5758950`](https://github.com/LedgerHQ/ledger-live/commit/5758950841fbf8018dd848e745017484aec67333), [`5ecbe88`](https://github.com/LedgerHQ/ledger-live/commit/5ecbe88474032b724d6c408ab63be08aa567e0fc), [`ce18c9b`](https://github.com/LedgerHQ/ledger-live/commit/ce18c9bde11fbd6cc196091716b1547354063d89), [`313d0e4`](https://github.com/LedgerHQ/ledger-live/commit/313d0e42b81b69b57aa81a760465a414e6afd7f7), [`fcd8d52`](https://github.com/LedgerHQ/ledger-live/commit/fcd8d5272176a4acec4e396ed313d3578e1c5b86), [`d2f7d9b`](https://github.com/LedgerHQ/ledger-live/commit/d2f7d9b418c374bd6b87927c1f67d58c118b556d), [`94afd9e`](https://github.com/LedgerHQ/ledger-live/commit/94afd9e0742d0e227b1e6ff953edee7a66ad61a3), [`0c80144`](https://github.com/LedgerHQ/ledger-live/commit/0c80144b8c16fc3729baa6503875d21af87b2752), [`4799d5d`](https://github.com/LedgerHQ/ledger-live/commit/4799d5de3fb1dcef2b01de31fe29b59e76922576), [`1353e7a`](https://github.com/LedgerHQ/ledger-live/commit/1353e7ae02f22e8f9194a1e3c34f9444785b6fb6), [`6ccd01c`](https://github.com/LedgerHQ/ledger-live/commit/6ccd01cd738362db00c9dbc74cd0a77ccc01b206), [`224e33c`](https://github.com/LedgerHQ/ledger-live/commit/224e33c93d2acd22c82892148b240df004284037), [`4799d5d`](https://github.com/LedgerHQ/ledger-live/commit/4799d5de3fb1dcef2b01de31fe29b59e76922576), [`ef82161`](https://github.com/LedgerHQ/ledger-live/commit/ef82161688fc49bf32cbc88f1837b15490e5d2b4), [`cd440bb`](https://github.com/LedgerHQ/ledger-live/commit/cd440bbd647633278d983a15803032c1e676d4fe), [`c8c273c`](https://github.com/LedgerHQ/ledger-live/commit/c8c273c9a443a75b2fb85b831c8d40cf6ff068c6), [`d13e7b9`](https://github.com/LedgerHQ/ledger-live/commit/d13e7b9f55d92098cacc9384fd7fab24033c040f), [`6417959`](https://github.com/LedgerHQ/ledger-live/commit/641795937e14908ba9632a7b9744563b7e206be7), [`277648c`](https://github.com/LedgerHQ/ledger-live/commit/277648cbc0b58694a49d8d929c8ec0b89986f4cf), [`94bf322`](https://github.com/LedgerHQ/ledger-live/commit/94bf322023cf497b19399be8abcf54a57ea740d1), [`a3fd728`](https://github.com/LedgerHQ/ledger-live/commit/a3fd72861f2a7df676bd793062b3816fdb9d1f57), [`1bcff16`](https://github.com/LedgerHQ/ledger-live/commit/1bcff1673fa0cbc43f43201044d7e9425f8991f1), [`a0bb74b`](https://github.com/LedgerHQ/ledger-live/commit/a0bb74b8f3704ab9d5567c9d14c16cab9e0872f7), [`eb9a36f`](https://github.com/LedgerHQ/ledger-live/commit/eb9a36f6ee8487c9ffbb841c3e6c0ca84f68bb0a), [`6815f6f`](https://github.com/LedgerHQ/ledger-live/commit/6815f6fccb9bca627a2e51ab954dc3f9b8f7c710), [`9c2f1b3`](https://github.com/LedgerHQ/ledger-live/commit/9c2f1b3b6e11a37a6b5ecf02d1e1ae7f0258e3ae), [`1d1bfd1`](https://github.com/LedgerHQ/ledger-live/commit/1d1bfd164847431c0f4afe7ed8ae6d5df535c9cf), [`91374dd`](https://github.com/LedgerHQ/ledger-live/commit/91374dde37f0ec3b63817254b9e26c1eb02ed981), [`042e1ab`](https://github.com/LedgerHQ/ledger-live/commit/042e1abf2d0bdbdc906cb88e30770d4de1eef356), [`9a650da`](https://github.com/LedgerHQ/ledger-live/commit/9a650da9a147d6881f7082278d2bf764c37e1451), [`54578c3`](https://github.com/LedgerHQ/ledger-live/commit/54578c329baf4434f9c5d9accb8842da00e45630), [`e6b8cea`](https://github.com/LedgerHQ/ledger-live/commit/e6b8ceac486147f4000aab7f0ae7f89d2ac205b1), [`9d58923`](https://github.com/LedgerHQ/ledger-live/commit/9d5892327b43e219b3b672e7a56e1e2d6413a83b)]: + - @ledgerhq/live-common@34.8.0 + - @ledgerhq/errors@6.19.0 + - @ledgerhq/cryptoassets@13.4.0 + - @ledgerhq/hw-transport-http@6.30.3 + - @ledgerhq/hw-app-btc@10.4.2 + - @ledgerhq/coin-bitcoin@0.8.0 + - @ledgerhq/live-network@2.0.0 + - @ledgerhq/live-countervalues@0.2.5 + - @ledgerhq/coin-framework@0.18.0 + - @ledgerhq/live-env@2.3.0 + - @ledgerhq/live-wallet@0.6.0 + - @ledgerhq/hw-transport@6.31.3 + - @ledgerhq/hw-transport-node-hid@6.29.4 + - @ledgerhq/hw-transport-node-speculos@6.29.3 + - @ledgerhq/hw-transport-mocker@6.29.3 + +## 24.5.2-next.0 + +### Patch Changes + +- [#7563](https://github.com/LedgerHQ/ledger-live/pull/7563) [`ef82161`](https://github.com/LedgerHQ/ledger-live/commit/ef82161688fc49bf32cbc88f1837b15490e5d2b4) Thanks [@Wozacosta](https://github.com/Wozacosta)! - remove pivx code + +- Updated dependencies [[`f8756b2`](https://github.com/LedgerHQ/ledger-live/commit/f8756b29a83048d423d500e16ea3f9789763b90d), [`5c738cb`](https://github.com/LedgerHQ/ledger-live/commit/5c738cbd35ce5d0ca39ad3b86a61cc6234d1bdf7), [`940d807`](https://github.com/LedgerHQ/ledger-live/commit/940d8073f6395cbcc2369f46aa6ad30216b00198), [`354d913`](https://github.com/LedgerHQ/ledger-live/commit/354d9138a4bd9b54001ff1330a8000ee94aea008), [`9c55e81`](https://github.com/LedgerHQ/ledger-live/commit/9c55e81c84d3372f2a7fd36248f970376aec905a), [`5de6b47`](https://github.com/LedgerHQ/ledger-live/commit/5de6b47f4fec831a24ccd58ee95d69b8c2c15d57), [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab), [`b97b76c`](https://github.com/LedgerHQ/ledger-live/commit/b97b76cc99845b0240426f5ca75c765b615ccec5), [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab), [`cc291f5`](https://github.com/LedgerHQ/ledger-live/commit/cc291f5466d80a2b7e9394338ab588ecd3db4623), [`fb9466a`](https://github.com/LedgerHQ/ledger-live/commit/fb9466a4d7827fd4759c726ad3ae0b43dddcacd3), [`f0eb405`](https://github.com/LedgerHQ/ledger-live/commit/f0eb405b52de5484ee98ac87e87522b33836224c), [`5758950`](https://github.com/LedgerHQ/ledger-live/commit/5758950841fbf8018dd848e745017484aec67333), [`5ecbe88`](https://github.com/LedgerHQ/ledger-live/commit/5ecbe88474032b724d6c408ab63be08aa567e0fc), [`ce18c9b`](https://github.com/LedgerHQ/ledger-live/commit/ce18c9bde11fbd6cc196091716b1547354063d89), [`313d0e4`](https://github.com/LedgerHQ/ledger-live/commit/313d0e42b81b69b57aa81a760465a414e6afd7f7), [`fcd8d52`](https://github.com/LedgerHQ/ledger-live/commit/fcd8d5272176a4acec4e396ed313d3578e1c5b86), [`d2f7d9b`](https://github.com/LedgerHQ/ledger-live/commit/d2f7d9b418c374bd6b87927c1f67d58c118b556d), [`94afd9e`](https://github.com/LedgerHQ/ledger-live/commit/94afd9e0742d0e227b1e6ff953edee7a66ad61a3), [`0c80144`](https://github.com/LedgerHQ/ledger-live/commit/0c80144b8c16fc3729baa6503875d21af87b2752), [`4799d5d`](https://github.com/LedgerHQ/ledger-live/commit/4799d5de3fb1dcef2b01de31fe29b59e76922576), [`1353e7a`](https://github.com/LedgerHQ/ledger-live/commit/1353e7ae02f22e8f9194a1e3c34f9444785b6fb6), [`6ccd01c`](https://github.com/LedgerHQ/ledger-live/commit/6ccd01cd738362db00c9dbc74cd0a77ccc01b206), [`224e33c`](https://github.com/LedgerHQ/ledger-live/commit/224e33c93d2acd22c82892148b240df004284037), [`4799d5d`](https://github.com/LedgerHQ/ledger-live/commit/4799d5de3fb1dcef2b01de31fe29b59e76922576), [`ef82161`](https://github.com/LedgerHQ/ledger-live/commit/ef82161688fc49bf32cbc88f1837b15490e5d2b4), [`cd440bb`](https://github.com/LedgerHQ/ledger-live/commit/cd440bbd647633278d983a15803032c1e676d4fe), [`c8c273c`](https://github.com/LedgerHQ/ledger-live/commit/c8c273c9a443a75b2fb85b831c8d40cf6ff068c6), [`d13e7b9`](https://github.com/LedgerHQ/ledger-live/commit/d13e7b9f55d92098cacc9384fd7fab24033c040f), [`6417959`](https://github.com/LedgerHQ/ledger-live/commit/641795937e14908ba9632a7b9744563b7e206be7), [`277648c`](https://github.com/LedgerHQ/ledger-live/commit/277648cbc0b58694a49d8d929c8ec0b89986f4cf), [`94bf322`](https://github.com/LedgerHQ/ledger-live/commit/94bf322023cf497b19399be8abcf54a57ea740d1), [`a3fd728`](https://github.com/LedgerHQ/ledger-live/commit/a3fd72861f2a7df676bd793062b3816fdb9d1f57), [`1bcff16`](https://github.com/LedgerHQ/ledger-live/commit/1bcff1673fa0cbc43f43201044d7e9425f8991f1), [`a0bb74b`](https://github.com/LedgerHQ/ledger-live/commit/a0bb74b8f3704ab9d5567c9d14c16cab9e0872f7), [`eb9a36f`](https://github.com/LedgerHQ/ledger-live/commit/eb9a36f6ee8487c9ffbb841c3e6c0ca84f68bb0a), [`6815f6f`](https://github.com/LedgerHQ/ledger-live/commit/6815f6fccb9bca627a2e51ab954dc3f9b8f7c710), [`9c2f1b3`](https://github.com/LedgerHQ/ledger-live/commit/9c2f1b3b6e11a37a6b5ecf02d1e1ae7f0258e3ae), [`1d1bfd1`](https://github.com/LedgerHQ/ledger-live/commit/1d1bfd164847431c0f4afe7ed8ae6d5df535c9cf), [`91374dd`](https://github.com/LedgerHQ/ledger-live/commit/91374dde37f0ec3b63817254b9e26c1eb02ed981), [`042e1ab`](https://github.com/LedgerHQ/ledger-live/commit/042e1abf2d0bdbdc906cb88e30770d4de1eef356), [`9a650da`](https://github.com/LedgerHQ/ledger-live/commit/9a650da9a147d6881f7082278d2bf764c37e1451), [`54578c3`](https://github.com/LedgerHQ/ledger-live/commit/54578c329baf4434f9c5d9accb8842da00e45630), [`e6b8cea`](https://github.com/LedgerHQ/ledger-live/commit/e6b8ceac486147f4000aab7f0ae7f89d2ac205b1), [`9d58923`](https://github.com/LedgerHQ/ledger-live/commit/9d5892327b43e219b3b672e7a56e1e2d6413a83b)]: + - @ledgerhq/live-common@34.8.0-next.0 + - @ledgerhq/errors@6.19.0-next.0 + - @ledgerhq/cryptoassets@13.4.0-next.0 + - @ledgerhq/hw-transport-http@6.30.3-next.0 + - @ledgerhq/hw-app-btc@10.4.2-next.0 + - @ledgerhq/coin-bitcoin@0.8.0-next.0 + - @ledgerhq/live-network@2.0.0-next.0 + - @ledgerhq/live-countervalues@0.2.5-next.0 + - @ledgerhq/coin-framework@0.18.0-next.0 + - @ledgerhq/live-env@2.3.0-next.0 + - @ledgerhq/live-wallet@0.6.0-next.0 + - @ledgerhq/hw-transport@6.31.3-next.0 + - @ledgerhq/hw-transport-node-hid@6.29.4-next.0 + - @ledgerhq/hw-transport-node-speculos@6.29.3-next.0 + - @ledgerhq/hw-transport-mocker@6.29.3-next.0 + ## 24.5.1 ### Patch Changes diff --git a/apps/cli/package.json b/apps/cli/package.json index ac6f3a964c5c..bfa274928b1d 100644 --- a/apps/cli/package.json +++ b/apps/cli/package.json @@ -1,6 +1,6 @@ { "name": "@ledgerhq/live-cli", - "version": "24.5.1", + "version": "24.5.2", "description": "ledger-live CLI version", "repository": { "type": "git", diff --git a/apps/cli/src/commands/device/appUninstallAll.ts b/apps/cli/src/commands/device/appUninstallAll.ts index 5d6ff93ddd00..fdc69300cf20 100644 --- a/apps/cli/src/commands/device/appUninstallAll.ts +++ b/apps/cli/src/commands/device/appUninstallAll.ts @@ -4,10 +4,8 @@ import { mergeMap, filter, map } from "rxjs/operators"; import { withDevice } from "@ledgerhq/live-common/hw/deviceAccess"; import getDeviceInfo from "@ledgerhq/live-common/hw/getDeviceInfo"; import { reducer, runAll } from "@ledgerhq/live-common/apps/index"; -import { - listAppsUseCase, - execWithTransport, -} from "@ledgerhq/live-common/device/use-cases/listAppsUseCase"; +import { listAppsUseCase } from "@ledgerhq/live-common/device/use-cases/listAppsUseCase"; +import { execWithTransport } from "@ledgerhq/live-common/device/use-cases/execWithTransport"; import { command as uninstallAllApps } from "@ledgerhq/live-common/hw/uninstallAllApps"; import { deviceOpt } from "../../scan"; diff --git a/apps/cli/src/commands/device/appsCheckAllAppVersions.ts b/apps/cli/src/commands/device/appsCheckAllAppVersions.ts index 792b7193b730..d9521e875558 100644 --- a/apps/cli/src/commands/device/appsCheckAllAppVersions.ts +++ b/apps/cli/src/commands/device/appsCheckAllAppVersions.ts @@ -10,10 +10,8 @@ import network from "@ledgerhq/live-network/network"; import installApp from "@ledgerhq/live-common/hw/installApp"; import uninstallApp from "@ledgerhq/live-common/hw/uninstallApp"; import { initState, reducer, runAll } from "@ledgerhq/live-common/apps/index"; -import { - listAppsUseCase, - execWithTransport, -} from "@ledgerhq/live-common/device/use-cases/listAppsUseCase"; +import { listAppsUseCase } from "@ledgerhq/live-common/device/use-cases/listAppsUseCase"; +import { execWithTransport } from "@ledgerhq/live-common/device/use-cases/execWithTransport"; import { delay } from "@ledgerhq/live-common/promise"; import { getEnv } from "@ledgerhq/live-env"; import { getDependencies } from "@ledgerhq/live-common/apps/polyfill"; diff --git a/apps/cli/src/commands/device/appsInstallAll.ts b/apps/cli/src/commands/device/appsInstallAll.ts index fadf3254c2e4..f079441116c1 100644 --- a/apps/cli/src/commands/device/appsInstallAll.ts +++ b/apps/cli/src/commands/device/appsInstallAll.ts @@ -4,10 +4,8 @@ import { mergeMap, filter, map } from "rxjs/operators"; import { withDevice } from "@ledgerhq/live-common/hw/deviceAccess"; import getDeviceInfo from "@ledgerhq/live-common/hw/getDeviceInfo"; import { initState, reducer, runAll } from "@ledgerhq/live-common/apps/index"; -import { - listAppsUseCase, - execWithTransport, -} from "@ledgerhq/live-common/device/use-cases/listAppsUseCase"; +import { listAppsUseCase } from "@ledgerhq/live-common/device/use-cases/listAppsUseCase"; +import { execWithTransport } from "@ledgerhq/live-common/device/use-cases/execWithTransport"; import { deviceOpt } from "../../scan"; export default { description: "test script to install and uninstall all apps", diff --git a/apps/cli/src/commands/device/appsUpdateTestAll.ts b/apps/cli/src/commands/device/appsUpdateTestAll.ts index 7df4b709f20a..9537f139d7c3 100644 --- a/apps/cli/src/commands/device/appsUpdateTestAll.ts +++ b/apps/cli/src/commands/device/appsUpdateTestAll.ts @@ -4,10 +4,8 @@ import { mergeMap, ignoreElements, filter, map } from "rxjs/operators"; import { withDevice } from "@ledgerhq/live-common/hw/deviceAccess"; import getDeviceInfo from "@ledgerhq/live-common/hw/getDeviceInfo"; import { initState, reducer, runAll, getActionPlan } from "@ledgerhq/live-common/apps/index"; -import { - listAppsUseCase, - execWithTransport, -} from "@ledgerhq/live-common/device/use-cases/listAppsUseCase"; +import { listAppsUseCase } from "@ledgerhq/live-common/device/use-cases/listAppsUseCase"; +import { execWithTransport } from "@ledgerhq/live-common/device/use-cases/execWithTransport"; import type { AppOp } from "@ledgerhq/live-common/apps/types"; import { deviceOpt } from "../../scan"; diff --git a/apps/cli/src/commands/device/devDeviceAppsScenario.ts b/apps/cli/src/commands/device/devDeviceAppsScenario.ts index b43d4471b439..9678605c3765 100644 --- a/apps/cli/src/commands/device/devDeviceAppsScenario.ts +++ b/apps/cli/src/commands/device/devDeviceAppsScenario.ts @@ -4,10 +4,8 @@ import { withDevice } from "@ledgerhq/live-common/hw/deviceAccess"; import getDeviceInfo from "@ledgerhq/live-common/hw/getDeviceInfo"; import { initState, ListAppsResult, reducer, runAll } from "@ledgerhq/live-common/apps/index"; import ManagerAPI from "@ledgerhq/live-common/manager/api"; -import { - listAppsUseCase, - execWithTransport, -} from "@ledgerhq/live-common/device/use-cases/listAppsUseCase"; +import { listAppsUseCase } from "@ledgerhq/live-common/device/use-cases/listAppsUseCase"; +import { execWithTransport } from "@ledgerhq/live-common/device/use-cases/execWithTransport"; import installApp from "@ledgerhq/live-common/hw/installApp"; import { deviceOpt } from "../../scan"; import { Application } from "@ledgerhq/types-live"; diff --git a/apps/cli/src/live-common-setup-base.ts b/apps/cli/src/live-common-setup-base.ts index ff2370140a86..b143093b8cbc 100644 --- a/apps/cli/src/live-common-setup-base.ts +++ b/apps/cli/src/live-common-setup-base.ts @@ -34,7 +34,6 @@ setSupportedCurrencies([ "qtum", "bitcoin_gold", "komodo", - "pivx", "zencash", "bitcoin_testnet", "ethereum_sepolia", diff --git a/apps/ledger-live-desktop/.prettierignore b/apps/ledger-live-desktop/.prettierignore index 83e5bc2c893d..89f808a1c31a 100644 --- a/apps/ledger-live-desktop/.prettierignore +++ b/apps/ledger-live-desktop/.prettierignore @@ -3,4 +3,6 @@ src/renderer/families/generated.ts analytics.min.js src/renderer/animations/**/*.json src/renderer/components/Onboarding/Screens/Tutorial/assets/animations/**/*.json -tests/artifacts \ No newline at end of file +tests/artifacts +tests/**/*-snapshots/ + diff --git a/apps/ledger-live-desktop/.unimportedrc.json b/apps/ledger-live-desktop/.unimportedrc.json index 975e764b562a..4ea42c55028b 100644 --- a/apps/ledger-live-desktop/.unimportedrc.json +++ b/apps/ledger-live-desktop/.unimportedrc.json @@ -21,10 +21,7 @@ "src/generate-cryptoassets-md.ts", "src/newArch/features/Collectibles/**", - "src/newArch/features/AnalyticsOptInPrompt/**", - "src/newArch/features/WalletSync/**", - "src/newArch/components/ContextMenu/**", - "src/newArch/components/BreadCrumb/**", + "src/newArch/features/WalletSync/__tests__/shared.tsx", "src/renderer/DesktopStorageProvider.ts" ], "ignoreUnused": [ @@ -32,7 +29,9 @@ "@types/qrcode", "@types/react-key-handler", "prop-types", - "allure-commandline" + "allure-commandline", + "msw", + "undici" ], "aliases": { "~/*": ["./src/*"] diff --git a/apps/ledger-live-desktop/CHANGELOG.md b/apps/ledger-live-desktop/CHANGELOG.md index 5931e85b5c0b..06cdeb79679f 100644 --- a/apps/ledger-live-desktop/CHANGELOG.md +++ b/apps/ledger-live-desktop/CHANGELOG.md @@ -1,5 +1,379 @@ # ledger-live-desktop +## 2.86.0 + +### Minor Changes + +- [#7634](https://github.com/LedgerHQ/ledger-live/pull/7634) [`940d807`](https://github.com/LedgerHQ/ledger-live/commit/940d8073f6395cbcc2369f46aa6ad30216b00198) Thanks [@Justkant](https://github.com/Justkant)! - feat: add dependencies support on wallet-api and dapp browser for transaction + +- [#7646](https://github.com/LedgerHQ/ledger-live/pull/7646) [`267526c`](https://github.com/LedgerHQ/ledger-live/commit/267526c3f8cc4863d4947ab3c28ba20dc5593028) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - Ledger Sync - Added the synchronization of a trustchain from mobile to desktop by scanning the QR code + +- [#7414](https://github.com/LedgerHQ/ledger-live/pull/7414) [`5758950`](https://github.com/LedgerHQ/ledger-live/commit/5758950841fbf8018dd848e745017484aec67333) Thanks [@hzheng-ledger](https://github.com/hzheng-ledger)! - Add ERC20 token support for filecoin + +- [#7737](https://github.com/LedgerHQ/ledger-live/pull/7737) [`5f88c36`](https://github.com/LedgerHQ/ledger-live/commit/5f88c36e77fb9064fd70bcb59c1763998dfbfc0f) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - Ledger Sync - Fix Desktop Analytics + +- [#7633](https://github.com/LedgerHQ/ledger-live/pull/7633) [`e5419de`](https://github.com/LedgerHQ/ledger-live/commit/e5419ded434a3f6a203c0195932b5b846fec0e2c) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Rework QRCode Step in LLD + Add TabSelector in react-ui + +- [#7714](https://github.com/LedgerHQ/ledger-live/pull/7714) [`5ecbe88`](https://github.com/LedgerHQ/ledger-live/commit/5ecbe88474032b724d6c408ab63be08aa567e0fc) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - Ledger Sync - Improve account names module to avoid erasing custom names with the default ones when two instances are pushing around the same time + +- [#7691](https://github.com/LedgerHQ/ledger-live/pull/7691) [`ce18c9b`](https://github.com/LedgerHQ/ledger-live/commit/ce18c9bde11fbd6cc196091716b1547354063d89) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - Ledger Sync - Added a Loading screen on LLM and LLD when initializing ledger sync while accounts are synchronizing + +- [#7776](https://github.com/LedgerHQ/ledger-live/pull/7776) [`3eafc83`](https://github.com/LedgerHQ/ledger-live/commit/3eafc83ced804fa63e1521e7defb3a0ce3e45a2f) Thanks [@CremaFR](https://github.com/CremaFR)! - fix: remove error from btc fee drawer + +- [#7696](https://github.com/LedgerHQ/ledger-live/pull/7696) [`dd4daf1`](https://github.com/LedgerHQ/ledger-live/commit/dd4daf1a1b5e38d46c2985bf99838c587bbc7ced) Thanks [@chrisduma-ledger](https://github.com/chrisduma-ledger)! - Adds confirmation message for Sell in LLD + +- [#7440](https://github.com/LedgerHQ/ledger-live/pull/7440) [`bc044e4`](https://github.com/LedgerHQ/ledger-live/commit/bc044e482ea2827dca281c44ec36526d63da5194) Thanks [@thesan](https://github.com/thesan)! - Request device access within `HWDeviceProvider` + +- [#7767](https://github.com/LedgerHQ/ledger-live/pull/7767) [`dbc0a9a`](https://github.com/LedgerHQ/ledger-live/commit/dbc0a9ab83f30c225950bdd5189216f7d4735c8e) Thanks [@CremaFR](https://github.com/CremaFR)! - fix fee drawer issues by prepararing tx + +- [#7572](https://github.com/LedgerHQ/ledger-live/pull/7572) [`c8c273c`](https://github.com/LedgerHQ/ledger-live/commit/c8c273c9a443a75b2fb85b831c8d40cf6ff068c6) Thanks [@valpinkman](https://github.com/valpinkman)! - Implement new app data backup and restore when installing, uninstalling or updating app on the device + +- [#7742](https://github.com/LedgerHQ/ledger-live/pull/7742) [`e6b8cea`](https://github.com/LedgerHQ/ledger-live/commit/e6b8ceac486147f4000aab7f0ae7f89d2ac205b1) Thanks [@CremaFR](https://github.com/CremaFR)! - fix: some issue with btc custom fees when reopening drawer + +- [#7706](https://github.com/LedgerHQ/ledger-live/pull/7706) [`84ea362`](https://github.com/LedgerHQ/ledger-live/commit/84ea362e10ef5885428248c5689ae9ae595e653f) Thanks [@thesan](https://github.com/thesan)! - Create the `/ledgersync` deeplink + +### Patch Changes + +- [#7541](https://github.com/LedgerHQ/ledger-live/pull/7541) [`7f588f3`](https://github.com/LedgerHQ/ledger-live/commit/7f588f36ff95a6c05fac4c971bf432fcc0101fcc) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Add Error screen when PinCode doesn't match + +- [#7763](https://github.com/LedgerHQ/ledger-live/pull/7763) [`0450315`](https://github.com/LedgerHQ/ledger-live/commit/045031517599cd4dd9e2809ab6bc7c57ca9fdf46) Thanks [@kallen-ledger](https://github.com/kallen-ledger)! - use account id instead of currency id for sla passthrough + +- [#7602](https://github.com/LedgerHQ/ledger-live/pull/7602) [`e8db656`](https://github.com/LedgerHQ/ledger-live/commit/e8db656c625d0bf6a00ab340af6e3b9d4d79498d) Thanks [@kallen-ledger](https://github.com/kallen-ledger)! - Add demo3 manifest ids + +- [#7565](https://github.com/LedgerHQ/ledger-live/pull/7565) [`6449fc7`](https://github.com/LedgerHQ/ledger-live/commit/6449fc7651cb327b3acf29f43fe13a170acde604) Thanks [@beths-ledger](https://github.com/beths-ledger)! - Add discover section deep link initial category filter to enable links like ledgerlive://discover?category=restaking to load the discover section with an initial category pre-selected. + +- [#7539](https://github.com/LedgerHQ/ledger-live/pull/7539) [`9581686`](https://github.com/LedgerHQ/ledger-live/commit/958168623e2c61cdd8b214e98dd132b59d966751) Thanks [@cksanders](https://github.com/cksanders)! - Fix Recover support to include LSP for Restore + +- [#7641](https://github.com/LedgerHQ/ledger-live/pull/7641) [`3b944af`](https://github.com/LedgerHQ/ledger-live/commit/3b944af87a841475b2946942b5e29b571e6ccc63) Thanks [@CremaFR](https://github.com/CremaFR)! - fix btc fee drawer for swaap + +- [#7745](https://github.com/LedgerHQ/ledger-live/pull/7745) [`917045c`](https://github.com/LedgerHQ/ledger-live/commit/917045c9985386d3a5ad879ae9fec0f32322ddaa) Thanks [@LucasWerey](https://github.com/LucasWerey)! - LLD ORDINALS add dummy table to display inscriptions inside BTC account screen. + +- [#7677](https://github.com/LedgerHQ/ledger-live/pull/7677) [`3de9eb6`](https://github.com/LedgerHQ/ledger-live/commit/3de9eb6725cd32a5c90c6fedb9cb1dfffb6e4306) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Revamp LedgerSyncDebugger + +- [#7593](https://github.com/LedgerHQ/ledger-live/pull/7593) [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab) Thanks [@lambertkevin](https://github.com/lambertkevin)! - Update `axios` to fixed version `1.7.3` + +- [#7682](https://github.com/LedgerHQ/ledger-live/pull/7682) [`9f39f91`](https://github.com/LedgerHQ/ledger-live/commit/9f39f9129668c22dc23f15be9304224ac17dce1d) Thanks [@CremaFR](https://github.com/CremaFR)! - fixed swap live app fee drawer error check sync + +- [#7664](https://github.com/LedgerHQ/ledger-live/pull/7664) [`f00f598`](https://github.com/LedgerHQ/ledger-live/commit/f00f598e32e7868e41fbd5d5d5822cc897959ff5) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Remove Export account when LedgerSync FF is On + +- [#7793](https://github.com/LedgerHQ/ledger-live/pull/7793) [`c76dfe4`](https://github.com/LedgerHQ/ledger-live/commit/c76dfe4102c5dbf9fb2c5a23ff8555d2741a053d) Thanks [@chrisduma-ledger](https://github.com/chrisduma-ledger)! - Fixes View Details button for the Swap Live App + +- [#7561](https://github.com/LedgerHQ/ledger-live/pull/7561) [`1fb2b90`](https://github.com/LedgerHQ/ledger-live/commit/1fb2b909c5d97e373a0f72baa37578132bd8b24a) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix get Members errors GetMember :Error: ["useGetMembers", null] data is undefined + +- [#7297](https://github.com/LedgerHQ/ledger-live/pull/7297) [`c01f17e`](https://github.com/LedgerHQ/ledger-live/commit/c01f17eaf57ef01021aecd5415cb64cedfe317a9) Thanks [@LucasWerey](https://github.com/LucasWerey)! - Add msw for integration tests. Add entry points for nft gallery newarch under ff. Mock some modules from polkadot that are not compatible with msw + +- [#7710](https://github.com/LedgerHQ/ledger-live/pull/7710) [`cc291f5`](https://github.com/LedgerHQ/ledger-live/commit/cc291f5466d80a2b7e9394338ab588ecd3db4623) Thanks [@lambertkevin](https://github.com/lambertkevin)! - Migrating the Matic currency to POL (see https://polygon.technology/blog/save-the-date-matic-pol-migration-coming-september-4th-everything-you-need-to-know) + +- [#7725](https://github.com/LedgerHQ/ledger-live/pull/7725) [`b2c4c51`](https://github.com/LedgerHQ/ledger-live/commit/b2c4c514afe35422c75f5de26c9ae45c67c10b01) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Update errors in trad + +- [#7672](https://github.com/LedgerHQ/ledger-live/pull/7672) [`fb9466a`](https://github.com/LedgerHQ/ledger-live/commit/fb9466a4d7827fd4759c726ad3ae0b43dddcacd3) Thanks [@hzheng-ledger](https://github.com/hzheng-ledger)! - Add support for jettons + +- [#7694](https://github.com/LedgerHQ/ledger-live/pull/7694) [`6f865fd`](https://github.com/LedgerHQ/ledger-live/commit/6f865fd52119a017ea20fd8f51b6e30ebf00fe68) Thanks [@CremaFR](https://github.com/CremaFR)! - fix: uses correct status for fee drawers and disable button if any error is present + +- [#7297](https://github.com/LedgerHQ/ledger-live/pull/7297) [`c01f17e`](https://github.com/LedgerHQ/ledger-live/commit/c01f17eaf57ef01021aecd5415cb64cedfe317a9) Thanks [@LucasWerey](https://github.com/LucasWerey)! - Rework of the nfts gallery under newArch to prepare Ordinals integration and setup for msw + +- [#7757](https://github.com/LedgerHQ/ledger-live/pull/7757) [`b606b71`](https://github.com/LedgerHQ/ledger-live/commit/b606b7143873c037c0507a479e2789917db82b48) Thanks [@liviuciulinaru](https://github.com/liviuciulinaru)! - error messages for transaction and fees drawers + +- [#7525](https://github.com/LedgerHQ/ledger-live/pull/7525) [`4799d5d`](https://github.com/LedgerHQ/ledger-live/commit/4799d5de3fb1dcef2b01de31fe29b59e76922576) Thanks [@valpinkman](https://github.com/valpinkman)! - Add new developer setting to mock app update in the manager + +- [#7756](https://github.com/LedgerHQ/ledger-live/pull/7756) [`1503fd7`](https://github.com/LedgerHQ/ledger-live/commit/1503fd772a040e1208802ab0d4e4469aba6e5005) Thanks [@LucasWerey](https://github.com/LucasWerey)! - add the ui of rare sats table for ordinals + +- [#7712](https://github.com/LedgerHQ/ledger-live/pull/7712) [`a84f3d3`](https://github.com/LedgerHQ/ledger-live/commit/a84f3d344e37301dc76f182c0f99b0b01106abfa) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Handle TrustchainAlreadyInitialized & TrustchainAlreadyInitializedWithOtherSeed on Scan QR + +- [#7678](https://github.com/LedgerHQ/ledger-live/pull/7678) [`b91295b`](https://github.com/LedgerHQ/ledger-live/commit/b91295b40dcdd8ab4768c49505e60bf51ebfae11) Thanks [@ofreyssinet-ledger](https://github.com/ofreyssinet-ledger)! - Improve logs export: merge logs from all process in chronological order and ordered keys in JSON. Fix compatibility of internal process logs with LogsViewer tool (timestamp was broken, pname was not used). + +- [#7569](https://github.com/LedgerHQ/ledger-live/pull/7569) [`fc6a11a`](https://github.com/LedgerHQ/ledger-live/commit/fc6a11ab619ca6c4ec9e69b5239f99ec28c9e734) Thanks [@ofreyssinet-ledger](https://github.com/ofreyssinet-ledger)! - Fix existing custom lock screen not being recognized in My Ledger ("Add" displayed instead of "Change" and no option to delete the current lock screen picture) + +- [#7577](https://github.com/LedgerHQ/ledger-live/pull/7577) [`9badf39`](https://github.com/LedgerHQ/ledger-live/commit/9badf390838517c751b61159ad2b0c8a0285d0ea) Thanks [@LucasWerey](https://github.com/LucasWerey)! - WS change wording + +- [#7632](https://github.com/LedgerHQ/ledger-live/pull/7632) [`271f90d`](https://github.com/LedgerHQ/ledger-live/commit/271f90dc0f5b46ddaf136873dc034d4c44045dd0) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - LLM / LLD - Fix the getOrCreateTrustchain that wasn't working when another instance destroyed the trustchain + +- [#7627](https://github.com/LedgerHQ/ledger-live/pull/7627) [`a442d80`](https://github.com/LedgerHQ/ledger-live/commit/a442d808bcc48a820623260b1501321ede85cb76) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Add CTAs on missing screens for LedgerSync + +- [#7766](https://github.com/LedgerHQ/ledger-live/pull/7766) [`77f9a5e`](https://github.com/LedgerHQ/ledger-live/commit/77f9a5e1b15d7ab0d3ff87ce328cbff84ae9c386) Thanks [@lpaquet-ledger](https://github.com/lpaquet-ledger)! - add forgetten param demo 3 to live app + +- [#7542](https://github.com/LedgerHQ/ledger-live/pull/7542) [`313d0e4`](https://github.com/LedgerHQ/ledger-live/commit/313d0e42b81b69b57aa81a760465a414e6afd7f7) Thanks [@ofreyssinet-ledger](https://github.com/ofreyssinet-ledger)! - My Ledger: fix & refactor logic of "is app supported by Ledger Live" depending on feature flags, and associated filters in apps catalog. Now this logic is in one single place and fully unit tested. + +- [#7685](https://github.com/LedgerHQ/ledger-live/pull/7685) [`238efb7`](https://github.com/LedgerHQ/ledger-live/commit/238efb7bb2a13f0e494338a9c9247d66c841577f) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Update Copy on manageKey Flow + +- [#7687](https://github.com/LedgerHQ/ledger-live/pull/7687) [`297ce51`](https://github.com/LedgerHQ/ledger-live/commit/297ce513f496f256efe8f9011734324125f462a5) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Handling alredy created key with new or same Ledger device + +- [#7656](https://github.com/LedgerHQ/ledger-live/pull/7656) [`6460687`](https://github.com/LedgerHQ/ledger-live/commit/646068770181c5cfd112ab050ca26d871cfce835) Thanks [@CremaFR](https://github.com/CremaFR)! - fix: btc fee drawer can be close on swap live app + +- [#7744](https://github.com/LedgerHQ/ledger-live/pull/7744) [`fcd8d52`](https://github.com/LedgerHQ/ledger-live/commit/fcd8d5272176a4acec4e396ed313d3578e1c5b86) Thanks [@valpinkman](https://github.com/valpinkman)! - Delete local app data when uninstalling apps + +- [#7556](https://github.com/LedgerHQ/ledger-live/pull/7556) [`ebbbe52`](https://github.com/LedgerHQ/ledger-live/commit/ebbbe521b62c91be646925ff6c87fd79357cff82) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Throw errors to avoid rejection on QRCode + +- [#7717](https://github.com/LedgerHQ/ledger-live/pull/7717) [`9a4a3bc`](https://github.com/LedgerHQ/ledger-live/commit/9a4a3bce55a2332ae4bdb13cc2bdbbb97ed7693b) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix minor bugs on both LL + +- [#7702](https://github.com/LedgerHQ/ledger-live/pull/7702) [`7430d8e`](https://github.com/LedgerHQ/ledger-live/commit/7430d8e2bb97be33dd2a21c31de8b9984f28a702) Thanks [@Justkant](https://github.com/Justkant)! - perf: improve perf by using the networks instead of listing currencies to match + +- [#7752](https://github.com/LedgerHQ/ledger-live/pull/7752) [`c68c312`](https://github.com/LedgerHQ/ledger-live/commit/c68c3121b93d38567f31682c9a4b191f29db02a0) Thanks [@kallen-ledger](https://github.com/kallen-ledger)! - Pass through from currency if exists in location to demo 3 + +- [#7573](https://github.com/LedgerHQ/ledger-live/pull/7573) [`0c80144`](https://github.com/LedgerHQ/ledger-live/commit/0c80144b8c16fc3729baa6503875d21af87b2752) Thanks [@liviuciulinaru](https://github.com/liviuciulinaru)! - [swap] setup demo3 flag and routes + +- [#7662](https://github.com/LedgerHQ/ledger-live/pull/7662) [`4485e37`](https://github.com/LedgerHQ/ledger-live/commit/4485e3792b6ad7517a923f220858e667dbc7c97a) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Add more precise name for LLD Instances + +- [#7592](https://github.com/LedgerHQ/ledger-live/pull/7592) [`a354886`](https://github.com/LedgerHQ/ledger-live/commit/a354886e05e12b519f89d93cee079bbff3104723) Thanks [@Wozacosta](https://github.com/Wozacosta)! - fixes display of account unit during send + +- [#7734](https://github.com/LedgerHQ/ledger-live/pull/7734) [`255f035`](https://github.com/LedgerHQ/ledger-live/commit/255f035b8415eb09683f959e37593e1969f5911c) Thanks [@LucasWerey](https://github.com/LucasWerey)! - Add rare satoshis icons to ui package and a mapping inside LLD to use them + +- [#7715](https://github.com/LedgerHQ/ledger-live/pull/7715) [`f4bb881`](https://github.com/LedgerHQ/ledger-live/commit/f4bb881f79b38d2a1798933a4a5cd713167fad72) Thanks [@CremaFR](https://github.com/CremaFR)! - fix: persistant gasOptions between evm chains creating crashes + +- [#7731](https://github.com/LedgerHQ/ledger-live/pull/7731) [`e1d6d7d`](https://github.com/LedgerHQ/ledger-live/commit/e1d6d7d72059db3db29c8968364c4d348398446b) Thanks [@LucasWerey](https://github.com/LucasWerey)! - Add vertical scroll inside optin prompt and correct variable name. Fix export account row from settings that was hidden when LS enabled + +- [#7585](https://github.com/LedgerHQ/ledger-live/pull/7585) [`aadad07`](https://github.com/LedgerHQ/ledger-live/commit/aadad0732479f99bf502378fd74805f5a6f842f4) Thanks [@CremaFR](https://github.com/CremaFR)! - fix: render loader on result for startExchange + +- [#7663](https://github.com/LedgerHQ/ledger-live/pull/7663) [`1a5bcec`](https://github.com/LedgerHQ/ledger-live/commit/1a5bcecb79d6c29b895f5d2d317a7aec00013acf) Thanks [@valpinkman](https://github.com/valpinkman)! - Avoid running watchloop when LS ff is disabled + +- [#7709](https://github.com/LedgerHQ/ledger-live/pull/7709) [`1f74063`](https://github.com/LedgerHQ/ledger-live/commit/1f7406327583cb61944cab18023e966b5ac467aa) Thanks [@CremaFR](https://github.com/CremaFR)! - btc and evm fee drawer display amount errors when editing fees too high + +- [#7711](https://github.com/LedgerHQ/ledger-live/pull/7711) [`e5c578b`](https://github.com/LedgerHQ/ledger-live/commit/e5c578b7be3fe0653bc7fced49eb5713b134f741) Thanks [@CremaFR](https://github.com/CremaFR)! - fix setTransaction fee drawer call to check error status + +- [#7660](https://github.com/LedgerHQ/ledger-live/pull/7660) [`9c584a0`](https://github.com/LedgerHQ/ledger-live/commit/9c584a08063dedc4eb4baeb3b0e719acf98a2087) Thanks [@sergiubreban](https://github.com/sergiubreban)! - removes old manifest id for buy-sell app + +- [#7527](https://github.com/LedgerHQ/ledger-live/pull/7527) [`c7b5135`](https://github.com/LedgerHQ/ledger-live/commit/c7b5135a2a81311fba8a706790ae3c7dadd4a32a) Thanks [@ofreyssinet-ledger](https://github.com/ofreyssinet-ledger)! - Fix firmware update for old firmware versions + +- [#7657](https://github.com/LedgerHQ/ledger-live/pull/7657) [`2359a8e`](https://github.com/LedgerHQ/ledger-live/commit/2359a8e34fbe1a1ac073b6d18d66d2942a5dd817) Thanks [@valpinkman](https://github.com/valpinkman)! - Prevent the use of webp for Custom Lock Screen + +- [#7680](https://github.com/LedgerHQ/ledger-live/pull/7680) [`714a096`](https://github.com/LedgerHQ/ledger-live/commit/714a096a9310c0f502381f8ec0869c6a662b6ec9) Thanks [@CremaFR](https://github.com/CremaFR)! - fix: uses native segwit empty address to compute btc fees + +- [#7563](https://github.com/LedgerHQ/ledger-live/pull/7563) [`ef82161`](https://github.com/LedgerHQ/ledger-live/commit/ef82161688fc49bf32cbc88f1837b15490e5d2b4) Thanks [@Wozacosta](https://github.com/Wozacosta)! - remove pivx code + +- [#7555](https://github.com/LedgerHQ/ledger-live/pull/7555) [`aa9110f`](https://github.com/LedgerHQ/ledger-live/commit/aa9110feeb862d4c340e698950d0133d0eb1efb1) Thanks [@ofreyssinet-ledger](https://github.com/ofreyssinet-ledger)! - Custom lock screen: disallow selection of gifs + +- [#7610](https://github.com/LedgerHQ/ledger-live/pull/7610) [`08fd8b4`](https://github.com/LedgerHQ/ledger-live/commit/08fd8b4c2150a32a72f2b943d1ef76724a1e2544) Thanks [@mwiercinska](https://github.com/mwiercinska)! - Add locale and ticker query params for buy/sell + +- [#7736](https://github.com/LedgerHQ/ledger-live/pull/7736) [`644332f`](https://github.com/LedgerHQ/ledger-live/commit/644332f58790fb89375b9ca8a4b58e5f1613c14f) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix Animation Color + +- [#7629](https://github.com/LedgerHQ/ledger-live/pull/7629) [`81468af`](https://github.com/LedgerHQ/ledger-live/commit/81468af073af1ccdeb3fdbcf6b2c998cebc68ab5) Thanks [@mwiercinska](https://github.com/mwiercinska)! - add translation for back to quote CTA in WebPTXPlayer + +- [#7700](https://github.com/LedgerHQ/ledger-live/pull/7700) [`55f40b1`](https://github.com/LedgerHQ/ledger-live/commit/55f40b1c9bbc91ba7b4aada849c94987546bad75) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Update analytics + +- [#7690](https://github.com/LedgerHQ/ledger-live/pull/7690) [`a3fd728`](https://github.com/LedgerHQ/ledger-live/commit/a3fd72861f2a7df676bd793062b3816fdb9d1f57) Thanks [@thesan](https://github.com/thesan)! - Refresh ledger sync QR code on expiration + +- [#7636](https://github.com/LedgerHQ/ledger-live/pull/7636) [`a0bb74b`](https://github.com/LedgerHQ/ledger-live/commit/a0bb74b8f3704ab9d5567c9d14c16cab9e0872f7) Thanks [@Wozacosta](https://github.com/Wozacosta)! - Move Cosmos and Cosmos-based coins to its own module + +- [#7654](https://github.com/LedgerHQ/ledger-live/pull/7654) [`351cef9`](https://github.com/LedgerHQ/ledger-live/commit/351cef9caa68c1f88d1d709206ad5c3d5f22998b) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Minor copy update for LedgerSync + +- [#7679](https://github.com/LedgerHQ/ledger-live/pull/7679) [`54578c3`](https://github.com/LedgerHQ/ledger-live/commit/54578c329baf4434f9c5d9accb8842da00e45630) Thanks [@ofreyssinet-ledger](https://github.com/ofreyssinet-ledger)! - Fix removal of custom lock screen on LLD + +- Updated dependencies [[`f8756b2`](https://github.com/LedgerHQ/ledger-live/commit/f8756b29a83048d423d500e16ea3f9789763b90d), [`87c160d`](https://github.com/LedgerHQ/ledger-live/commit/87c160d855b512d5a0394eaee7626e2b8cd431ee), [`5c738cb`](https://github.com/LedgerHQ/ledger-live/commit/5c738cbd35ce5d0ca39ad3b86a61cc6234d1bdf7), [`940d807`](https://github.com/LedgerHQ/ledger-live/commit/940d8073f6395cbcc2369f46aa6ad30216b00198), [`354d913`](https://github.com/LedgerHQ/ledger-live/commit/354d9138a4bd9b54001ff1330a8000ee94aea008), [`d60a022`](https://github.com/LedgerHQ/ledger-live/commit/d60a02238db9ed16142de4c1874e26d27aaaa98c), [`9c55e81`](https://github.com/LedgerHQ/ledger-live/commit/9c55e81c84d3372f2a7fd36248f970376aec905a), [`5de6b47`](https://github.com/LedgerHQ/ledger-live/commit/5de6b47f4fec831a24ccd58ee95d69b8c2c15d57), [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab), [`267526c`](https://github.com/LedgerHQ/ledger-live/commit/267526c3f8cc4863d4947ab3c28ba20dc5593028), [`b97b76c`](https://github.com/LedgerHQ/ledger-live/commit/b97b76cc99845b0240426f5ca75c765b615ccec5), [`1fb2b90`](https://github.com/LedgerHQ/ledger-live/commit/1fb2b909c5d97e373a0f72baa37578132bd8b24a), [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab), [`cc291f5`](https://github.com/LedgerHQ/ledger-live/commit/cc291f5466d80a2b7e9394338ab588ecd3db4623), [`fb9466a`](https://github.com/LedgerHQ/ledger-live/commit/fb9466a4d7827fd4759c726ad3ae0b43dddcacd3), [`f0eb405`](https://github.com/LedgerHQ/ledger-live/commit/f0eb405b52de5484ee98ac87e87522b33836224c), [`5758950`](https://github.com/LedgerHQ/ledger-live/commit/5758950841fbf8018dd848e745017484aec67333), [`ef99222`](https://github.com/LedgerHQ/ledger-live/commit/ef99222a5adcd9732d06600bc875309c440e084f), [`e5419de`](https://github.com/LedgerHQ/ledger-live/commit/e5419ded434a3f6a203c0195932b5b846fec0e2c), [`5ecbe88`](https://github.com/LedgerHQ/ledger-live/commit/5ecbe88474032b724d6c408ab63be08aa567e0fc), [`a84f3d3`](https://github.com/LedgerHQ/ledger-live/commit/a84f3d344e37301dc76f182c0f99b0b01106abfa), [`ce18c9b`](https://github.com/LedgerHQ/ledger-live/commit/ce18c9bde11fbd6cc196091716b1547354063d89), [`271f90d`](https://github.com/LedgerHQ/ledger-live/commit/271f90dc0f5b46ddaf136873dc034d4c44045dd0), [`313d0e4`](https://github.com/LedgerHQ/ledger-live/commit/313d0e42b81b69b57aa81a760465a414e6afd7f7), [`297ce51`](https://github.com/LedgerHQ/ledger-live/commit/297ce513f496f256efe8f9011734324125f462a5), [`fcd8d52`](https://github.com/LedgerHQ/ledger-live/commit/fcd8d5272176a4acec4e396ed313d3578e1c5b86), [`d2f7d9b`](https://github.com/LedgerHQ/ledger-live/commit/d2f7d9b418c374bd6b87927c1f67d58c118b556d), [`94afd9e`](https://github.com/LedgerHQ/ledger-live/commit/94afd9e0742d0e227b1e6ff953edee7a66ad61a3), [`0c80144`](https://github.com/LedgerHQ/ledger-live/commit/0c80144b8c16fc3729baa6503875d21af87b2752), [`4799d5d`](https://github.com/LedgerHQ/ledger-live/commit/4799d5de3fb1dcef2b01de31fe29b59e76922576), [`1353e7a`](https://github.com/LedgerHQ/ledger-live/commit/1353e7ae02f22e8f9194a1e3c34f9444785b6fb6), [`6ccd01c`](https://github.com/LedgerHQ/ledger-live/commit/6ccd01cd738362db00c9dbc74cd0a77ccc01b206), [`224e33c`](https://github.com/LedgerHQ/ledger-live/commit/224e33c93d2acd22c82892148b240df004284037), [`bc044e4`](https://github.com/LedgerHQ/ledger-live/commit/bc044e482ea2827dca281c44ec36526d63da5194), [`4799d5d`](https://github.com/LedgerHQ/ledger-live/commit/4799d5de3fb1dcef2b01de31fe29b59e76922576), [`ef82161`](https://github.com/LedgerHQ/ledger-live/commit/ef82161688fc49bf32cbc88f1837b15490e5d2b4), [`8e0ac04`](https://github.com/LedgerHQ/ledger-live/commit/8e0ac04ac8cdaaee59633ebdf219e5dcf44a10df), [`cd440bb`](https://github.com/LedgerHQ/ledger-live/commit/cd440bbd647633278d983a15803032c1e676d4fe), [`c8ac662`](https://github.com/LedgerHQ/ledger-live/commit/c8ac662e6f88349187f802741e14c3d5fb67cddb), [`c8c273c`](https://github.com/LedgerHQ/ledger-live/commit/c8c273c9a443a75b2fb85b831c8d40cf6ff068c6), [`6417959`](https://github.com/LedgerHQ/ledger-live/commit/641795937e14908ba9632a7b9744563b7e206be7), [`277648c`](https://github.com/LedgerHQ/ledger-live/commit/277648cbc0b58694a49d8d929c8ec0b89986f4cf), [`94bf322`](https://github.com/LedgerHQ/ledger-live/commit/94bf322023cf497b19399be8abcf54a57ea740d1), [`a3fd728`](https://github.com/LedgerHQ/ledger-live/commit/a3fd72861f2a7df676bd793062b3816fdb9d1f57), [`1bcff16`](https://github.com/LedgerHQ/ledger-live/commit/1bcff1673fa0cbc43f43201044d7e9425f8991f1), [`a0bb74b`](https://github.com/LedgerHQ/ledger-live/commit/a0bb74b8f3704ab9d5567c9d14c16cab9e0872f7), [`eb9a36f`](https://github.com/LedgerHQ/ledger-live/commit/eb9a36f6ee8487c9ffbb841c3e6c0ca84f68bb0a), [`9c2f1b3`](https://github.com/LedgerHQ/ledger-live/commit/9c2f1b3b6e11a37a6b5ecf02d1e1ae7f0258e3ae), [`1d1bfd1`](https://github.com/LedgerHQ/ledger-live/commit/1d1bfd164847431c0f4afe7ed8ae6d5df535c9cf), [`91374dd`](https://github.com/LedgerHQ/ledger-live/commit/91374dde37f0ec3b63817254b9e26c1eb02ed981), [`042e1ab`](https://github.com/LedgerHQ/ledger-live/commit/042e1abf2d0bdbdc906cb88e30770d4de1eef356), [`9a650da`](https://github.com/LedgerHQ/ledger-live/commit/9a650da9a147d6881f7082278d2bf764c37e1451), [`54578c3`](https://github.com/LedgerHQ/ledger-live/commit/54578c329baf4434f9c5d9accb8842da00e45630), [`d213d81`](https://github.com/LedgerHQ/ledger-live/commit/d213d8122647d559b7a0f44e2beffa5e39c3249b), [`e6b8cea`](https://github.com/LedgerHQ/ledger-live/commit/e6b8ceac486147f4000aab7f0ae7f89d2ac205b1), [`e7db725`](https://github.com/LedgerHQ/ledger-live/commit/e7db72552042ff4dd85bec236f6bd083fa3da533), [`9d58923`](https://github.com/LedgerHQ/ledger-live/commit/9d5892327b43e219b3b672e7a56e1e2d6413a83b)]: + - @ledgerhq/live-common@34.8.0 + - @ledgerhq/trustchain@0.3.0 + - @ledgerhq/errors@6.19.0 + - @ledgerhq/hw-transport-node-speculos-http@6.29.3 + - @ledgerhq/hw-transport-http@6.30.3 + - @ledgerhq/coin-bitcoin@0.8.0 + - @ledgerhq/coin-evm@2.2.0 + - @ledgerhq/domain-service@1.2.4 + - @ledgerhq/live-network@2.0.0 + - @ledgerhq/live-countervalues@0.2.5 + - @ledgerhq/coin-framework@0.18.0 + - @ledgerhq/types-live@6.51.0 + - @ledgerhq/live-countervalues-react@0.2.5 + - @ledgerhq/react-ui@0.16.0 + - @ledgerhq/live-env@2.3.0 + - @ledgerhq/live-wallet@0.6.0 + - @ledgerhq/types-cryptoassets@7.15.1 + - @ledgerhq/hw-trustchain@0.1.5 + - @ledgerhq/coin-cosmos@0.1.1 + - @ledgerhq/devices@8.4.3 + - @ledgerhq/hw-transport@6.31.3 + - @ledgerhq/hw-transport-node-hid-singleton@6.31.4 + - @ledgerhq/hw-transport-vault@1.3.3 + - @ledgerhq/live-nft@0.4.5 + - @ledgerhq/live-nft-react@0.4.5 + +## 2.86.0-next.1 + +### Patch Changes + +- [#7793](https://github.com/LedgerHQ/ledger-live/pull/7793) [`c76dfe4`](https://github.com/LedgerHQ/ledger-live/commit/c76dfe4102c5dbf9fb2c5a23ff8555d2741a053d) Thanks [@chrisduma-ledger](https://github.com/chrisduma-ledger)! - Fixes View Details button for the Swap Live App + +## 2.86.0-next.0 + +### Minor Changes + +- [#7634](https://github.com/LedgerHQ/ledger-live/pull/7634) [`940d807`](https://github.com/LedgerHQ/ledger-live/commit/940d8073f6395cbcc2369f46aa6ad30216b00198) Thanks [@Justkant](https://github.com/Justkant)! - feat: add dependencies support on wallet-api and dapp browser for transaction + +- [#7646](https://github.com/LedgerHQ/ledger-live/pull/7646) [`267526c`](https://github.com/LedgerHQ/ledger-live/commit/267526c3f8cc4863d4947ab3c28ba20dc5593028) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - Ledger Sync - Added the synchronization of a trustchain from mobile to desktop by scanning the QR code + +- [#7414](https://github.com/LedgerHQ/ledger-live/pull/7414) [`5758950`](https://github.com/LedgerHQ/ledger-live/commit/5758950841fbf8018dd848e745017484aec67333) Thanks [@hzheng-ledger](https://github.com/hzheng-ledger)! - Add ERC20 token support for filecoin + +- [#7737](https://github.com/LedgerHQ/ledger-live/pull/7737) [`5f88c36`](https://github.com/LedgerHQ/ledger-live/commit/5f88c36e77fb9064fd70bcb59c1763998dfbfc0f) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - Ledger Sync - Fix Desktop Analytics + +- [#7633](https://github.com/LedgerHQ/ledger-live/pull/7633) [`e5419de`](https://github.com/LedgerHQ/ledger-live/commit/e5419ded434a3f6a203c0195932b5b846fec0e2c) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Rework QRCode Step in LLD + Add TabSelector in react-ui + +- [#7714](https://github.com/LedgerHQ/ledger-live/pull/7714) [`5ecbe88`](https://github.com/LedgerHQ/ledger-live/commit/5ecbe88474032b724d6c408ab63be08aa567e0fc) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - Ledger Sync - Improve account names module to avoid erasing custom names with the default ones when two instances are pushing around the same time + +- [#7691](https://github.com/LedgerHQ/ledger-live/pull/7691) [`ce18c9b`](https://github.com/LedgerHQ/ledger-live/commit/ce18c9bde11fbd6cc196091716b1547354063d89) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - Ledger Sync - Added a Loading screen on LLM and LLD when initializing ledger sync while accounts are synchronizing + +- [#7776](https://github.com/LedgerHQ/ledger-live/pull/7776) [`3eafc83`](https://github.com/LedgerHQ/ledger-live/commit/3eafc83ced804fa63e1521e7defb3a0ce3e45a2f) Thanks [@CremaFR](https://github.com/CremaFR)! - fix: remove error from btc fee drawer + +- [#7696](https://github.com/LedgerHQ/ledger-live/pull/7696) [`dd4daf1`](https://github.com/LedgerHQ/ledger-live/commit/dd4daf1a1b5e38d46c2985bf99838c587bbc7ced) Thanks [@chrisduma-ledger](https://github.com/chrisduma-ledger)! - Adds confirmation message for Sell in LLD + +- [#7440](https://github.com/LedgerHQ/ledger-live/pull/7440) [`bc044e4`](https://github.com/LedgerHQ/ledger-live/commit/bc044e482ea2827dca281c44ec36526d63da5194) Thanks [@thesan](https://github.com/thesan)! - Request device access within `HWDeviceProvider` + +- [#7767](https://github.com/LedgerHQ/ledger-live/pull/7767) [`dbc0a9a`](https://github.com/LedgerHQ/ledger-live/commit/dbc0a9ab83f30c225950bdd5189216f7d4735c8e) Thanks [@CremaFR](https://github.com/CremaFR)! - fix fee drawer issues by prepararing tx + +- [#7572](https://github.com/LedgerHQ/ledger-live/pull/7572) [`c8c273c`](https://github.com/LedgerHQ/ledger-live/commit/c8c273c9a443a75b2fb85b831c8d40cf6ff068c6) Thanks [@valpinkman](https://github.com/valpinkman)! - Implement new app data backup and restore when installing, uninstalling or updating app on the device + +- [#7742](https://github.com/LedgerHQ/ledger-live/pull/7742) [`e6b8cea`](https://github.com/LedgerHQ/ledger-live/commit/e6b8ceac486147f4000aab7f0ae7f89d2ac205b1) Thanks [@CremaFR](https://github.com/CremaFR)! - fix: some issue with btc custom fees when reopening drawer + +- [#7706](https://github.com/LedgerHQ/ledger-live/pull/7706) [`84ea362`](https://github.com/LedgerHQ/ledger-live/commit/84ea362e10ef5885428248c5689ae9ae595e653f) Thanks [@thesan](https://github.com/thesan)! - Create the `/ledgersync` deeplink + +### Patch Changes + +- [#7541](https://github.com/LedgerHQ/ledger-live/pull/7541) [`7f588f3`](https://github.com/LedgerHQ/ledger-live/commit/7f588f36ff95a6c05fac4c971bf432fcc0101fcc) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Add Error screen when PinCode doesn't match + +- [#7763](https://github.com/LedgerHQ/ledger-live/pull/7763) [`0450315`](https://github.com/LedgerHQ/ledger-live/commit/045031517599cd4dd9e2809ab6bc7c57ca9fdf46) Thanks [@kallen-ledger](https://github.com/kallen-ledger)! - use account id instead of currency id for sla passthrough + +- [#7602](https://github.com/LedgerHQ/ledger-live/pull/7602) [`e8db656`](https://github.com/LedgerHQ/ledger-live/commit/e8db656c625d0bf6a00ab340af6e3b9d4d79498d) Thanks [@kallen-ledger](https://github.com/kallen-ledger)! - Add demo3 manifest ids + +- [#7565](https://github.com/LedgerHQ/ledger-live/pull/7565) [`6449fc7`](https://github.com/LedgerHQ/ledger-live/commit/6449fc7651cb327b3acf29f43fe13a170acde604) Thanks [@beths-ledger](https://github.com/beths-ledger)! - Add discover section deep link initial category filter to enable links like ledgerlive://discover?category=restaking to load the discover section with an initial category pre-selected. + +- [#7539](https://github.com/LedgerHQ/ledger-live/pull/7539) [`9581686`](https://github.com/LedgerHQ/ledger-live/commit/958168623e2c61cdd8b214e98dd132b59d966751) Thanks [@cksanders](https://github.com/cksanders)! - Fix Recover support to include LSP for Restore + +- [#7641](https://github.com/LedgerHQ/ledger-live/pull/7641) [`3b944af`](https://github.com/LedgerHQ/ledger-live/commit/3b944af87a841475b2946942b5e29b571e6ccc63) Thanks [@CremaFR](https://github.com/CremaFR)! - fix btc fee drawer for swaap + +- [#7745](https://github.com/LedgerHQ/ledger-live/pull/7745) [`917045c`](https://github.com/LedgerHQ/ledger-live/commit/917045c9985386d3a5ad879ae9fec0f32322ddaa) Thanks [@LucasWerey](https://github.com/LucasWerey)! - LLD ORDINALS add dummy table to display inscriptions inside BTC account screen. + +- [#7677](https://github.com/LedgerHQ/ledger-live/pull/7677) [`3de9eb6`](https://github.com/LedgerHQ/ledger-live/commit/3de9eb6725cd32a5c90c6fedb9cb1dfffb6e4306) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Revamp LedgerSyncDebugger + +- [#7593](https://github.com/LedgerHQ/ledger-live/pull/7593) [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab) Thanks [@lambertkevin](https://github.com/lambertkevin)! - Update `axios` to fixed version `1.7.3` + +- [#7682](https://github.com/LedgerHQ/ledger-live/pull/7682) [`9f39f91`](https://github.com/LedgerHQ/ledger-live/commit/9f39f9129668c22dc23f15be9304224ac17dce1d) Thanks [@CremaFR](https://github.com/CremaFR)! - fixed swap live app fee drawer error check sync + +- [#7664](https://github.com/LedgerHQ/ledger-live/pull/7664) [`f00f598`](https://github.com/LedgerHQ/ledger-live/commit/f00f598e32e7868e41fbd5d5d5822cc897959ff5) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Remove Export account when LedgerSync FF is On + +- [#7561](https://github.com/LedgerHQ/ledger-live/pull/7561) [`1fb2b90`](https://github.com/LedgerHQ/ledger-live/commit/1fb2b909c5d97e373a0f72baa37578132bd8b24a) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix get Members errors GetMember :Error: ["useGetMembers", null] data is undefined + +- [#7297](https://github.com/LedgerHQ/ledger-live/pull/7297) [`c01f17e`](https://github.com/LedgerHQ/ledger-live/commit/c01f17eaf57ef01021aecd5415cb64cedfe317a9) Thanks [@LucasWerey](https://github.com/LucasWerey)! - Add msw for integration tests. Add entry points for nft gallery newarch under ff. Mock some modules from polkadot that are not compatible with msw + +- [#7710](https://github.com/LedgerHQ/ledger-live/pull/7710) [`cc291f5`](https://github.com/LedgerHQ/ledger-live/commit/cc291f5466d80a2b7e9394338ab588ecd3db4623) Thanks [@lambertkevin](https://github.com/lambertkevin)! - Migrating the Matic currency to POL (see https://polygon.technology/blog/save-the-date-matic-pol-migration-coming-september-4th-everything-you-need-to-know) + +- [#7725](https://github.com/LedgerHQ/ledger-live/pull/7725) [`b2c4c51`](https://github.com/LedgerHQ/ledger-live/commit/b2c4c514afe35422c75f5de26c9ae45c67c10b01) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Update errors in trad + +- [#7672](https://github.com/LedgerHQ/ledger-live/pull/7672) [`fb9466a`](https://github.com/LedgerHQ/ledger-live/commit/fb9466a4d7827fd4759c726ad3ae0b43dddcacd3) Thanks [@hzheng-ledger](https://github.com/hzheng-ledger)! - Add support for jettons + +- [#7694](https://github.com/LedgerHQ/ledger-live/pull/7694) [`6f865fd`](https://github.com/LedgerHQ/ledger-live/commit/6f865fd52119a017ea20fd8f51b6e30ebf00fe68) Thanks [@CremaFR](https://github.com/CremaFR)! - fix: uses correct status for fee drawers and disable button if any error is present + +- [#7297](https://github.com/LedgerHQ/ledger-live/pull/7297) [`c01f17e`](https://github.com/LedgerHQ/ledger-live/commit/c01f17eaf57ef01021aecd5415cb64cedfe317a9) Thanks [@LucasWerey](https://github.com/LucasWerey)! - Rework of the nfts gallery under newArch to prepare Ordinals integration and setup for msw + +- [#7757](https://github.com/LedgerHQ/ledger-live/pull/7757) [`b606b71`](https://github.com/LedgerHQ/ledger-live/commit/b606b7143873c037c0507a479e2789917db82b48) Thanks [@liviuciulinaru](https://github.com/liviuciulinaru)! - error messages for transaction and fees drawers + +- [#7525](https://github.com/LedgerHQ/ledger-live/pull/7525) [`4799d5d`](https://github.com/LedgerHQ/ledger-live/commit/4799d5de3fb1dcef2b01de31fe29b59e76922576) Thanks [@valpinkman](https://github.com/valpinkman)! - Add new developer setting to mock app update in the manager + +- [#7756](https://github.com/LedgerHQ/ledger-live/pull/7756) [`1503fd7`](https://github.com/LedgerHQ/ledger-live/commit/1503fd772a040e1208802ab0d4e4469aba6e5005) Thanks [@LucasWerey](https://github.com/LucasWerey)! - add the ui of rare sats table for ordinals + +- [#7712](https://github.com/LedgerHQ/ledger-live/pull/7712) [`a84f3d3`](https://github.com/LedgerHQ/ledger-live/commit/a84f3d344e37301dc76f182c0f99b0b01106abfa) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Handle TrustchainAlreadyInitialized & TrustchainAlreadyInitializedWithOtherSeed on Scan QR + +- [#7678](https://github.com/LedgerHQ/ledger-live/pull/7678) [`b91295b`](https://github.com/LedgerHQ/ledger-live/commit/b91295b40dcdd8ab4768c49505e60bf51ebfae11) Thanks [@ofreyssinet-ledger](https://github.com/ofreyssinet-ledger)! - Improve logs export: merge logs from all process in chronological order and ordered keys in JSON. Fix compatibility of internal process logs with LogsViewer tool (timestamp was broken, pname was not used). + +- [#7569](https://github.com/LedgerHQ/ledger-live/pull/7569) [`fc6a11a`](https://github.com/LedgerHQ/ledger-live/commit/fc6a11ab619ca6c4ec9e69b5239f99ec28c9e734) Thanks [@ofreyssinet-ledger](https://github.com/ofreyssinet-ledger)! - Fix existing custom lock screen not being recognized in My Ledger ("Add" displayed instead of "Change" and no option to delete the current lock screen picture) + +- [#7577](https://github.com/LedgerHQ/ledger-live/pull/7577) [`9badf39`](https://github.com/LedgerHQ/ledger-live/commit/9badf390838517c751b61159ad2b0c8a0285d0ea) Thanks [@LucasWerey](https://github.com/LucasWerey)! - WS change wording + +- [#7632](https://github.com/LedgerHQ/ledger-live/pull/7632) [`271f90d`](https://github.com/LedgerHQ/ledger-live/commit/271f90dc0f5b46ddaf136873dc034d4c44045dd0) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - LLM / LLD - Fix the getOrCreateTrustchain that wasn't working when another instance destroyed the trustchain + +- [#7627](https://github.com/LedgerHQ/ledger-live/pull/7627) [`a442d80`](https://github.com/LedgerHQ/ledger-live/commit/a442d808bcc48a820623260b1501321ede85cb76) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Add CTAs on missing screens for LedgerSync + +- [#7766](https://github.com/LedgerHQ/ledger-live/pull/7766) [`77f9a5e`](https://github.com/LedgerHQ/ledger-live/commit/77f9a5e1b15d7ab0d3ff87ce328cbff84ae9c386) Thanks [@lpaquet-ledger](https://github.com/lpaquet-ledger)! - add forgetten param demo 3 to live app + +- [#7542](https://github.com/LedgerHQ/ledger-live/pull/7542) [`313d0e4`](https://github.com/LedgerHQ/ledger-live/commit/313d0e42b81b69b57aa81a760465a414e6afd7f7) Thanks [@ofreyssinet-ledger](https://github.com/ofreyssinet-ledger)! - My Ledger: fix & refactor logic of "is app supported by Ledger Live" depending on feature flags, and associated filters in apps catalog. Now this logic is in one single place and fully unit tested. + +- [#7685](https://github.com/LedgerHQ/ledger-live/pull/7685) [`238efb7`](https://github.com/LedgerHQ/ledger-live/commit/238efb7bb2a13f0e494338a9c9247d66c841577f) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Update Copy on manageKey Flow + +- [#7687](https://github.com/LedgerHQ/ledger-live/pull/7687) [`297ce51`](https://github.com/LedgerHQ/ledger-live/commit/297ce513f496f256efe8f9011734324125f462a5) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Handling alredy created key with new or same Ledger device + +- [#7656](https://github.com/LedgerHQ/ledger-live/pull/7656) [`6460687`](https://github.com/LedgerHQ/ledger-live/commit/646068770181c5cfd112ab050ca26d871cfce835) Thanks [@CremaFR](https://github.com/CremaFR)! - fix: btc fee drawer can be close on swap live app + +- [#7744](https://github.com/LedgerHQ/ledger-live/pull/7744) [`fcd8d52`](https://github.com/LedgerHQ/ledger-live/commit/fcd8d5272176a4acec4e396ed313d3578e1c5b86) Thanks [@valpinkman](https://github.com/valpinkman)! - Delete local app data when uninstalling apps + +- [#7556](https://github.com/LedgerHQ/ledger-live/pull/7556) [`ebbbe52`](https://github.com/LedgerHQ/ledger-live/commit/ebbbe521b62c91be646925ff6c87fd79357cff82) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Throw errors to avoid rejection on QRCode + +- [#7717](https://github.com/LedgerHQ/ledger-live/pull/7717) [`9a4a3bc`](https://github.com/LedgerHQ/ledger-live/commit/9a4a3bce55a2332ae4bdb13cc2bdbbb97ed7693b) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix minor bugs on both LL + +- [#7702](https://github.com/LedgerHQ/ledger-live/pull/7702) [`7430d8e`](https://github.com/LedgerHQ/ledger-live/commit/7430d8e2bb97be33dd2a21c31de8b9984f28a702) Thanks [@Justkant](https://github.com/Justkant)! - perf: improve perf by using the networks instead of listing currencies to match + +- [#7752](https://github.com/LedgerHQ/ledger-live/pull/7752) [`c68c312`](https://github.com/LedgerHQ/ledger-live/commit/c68c3121b93d38567f31682c9a4b191f29db02a0) Thanks [@kallen-ledger](https://github.com/kallen-ledger)! - Pass through from currency if exists in location to demo 3 + +- [#7573](https://github.com/LedgerHQ/ledger-live/pull/7573) [`0c80144`](https://github.com/LedgerHQ/ledger-live/commit/0c80144b8c16fc3729baa6503875d21af87b2752) Thanks [@liviuciulinaru](https://github.com/liviuciulinaru)! - [swap] setup demo3 flag and routes + +- [#7662](https://github.com/LedgerHQ/ledger-live/pull/7662) [`4485e37`](https://github.com/LedgerHQ/ledger-live/commit/4485e3792b6ad7517a923f220858e667dbc7c97a) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Add more precise name for LLD Instances + +- [#7592](https://github.com/LedgerHQ/ledger-live/pull/7592) [`a354886`](https://github.com/LedgerHQ/ledger-live/commit/a354886e05e12b519f89d93cee079bbff3104723) Thanks [@Wozacosta](https://github.com/Wozacosta)! - fixes display of account unit during send + +- [#7734](https://github.com/LedgerHQ/ledger-live/pull/7734) [`255f035`](https://github.com/LedgerHQ/ledger-live/commit/255f035b8415eb09683f959e37593e1969f5911c) Thanks [@LucasWerey](https://github.com/LucasWerey)! - Add rare satoshis icons to ui package and a mapping inside LLD to use them + +- [#7715](https://github.com/LedgerHQ/ledger-live/pull/7715) [`f4bb881`](https://github.com/LedgerHQ/ledger-live/commit/f4bb881f79b38d2a1798933a4a5cd713167fad72) Thanks [@CremaFR](https://github.com/CremaFR)! - fix: persistant gasOptions between evm chains creating crashes + +- [#7731](https://github.com/LedgerHQ/ledger-live/pull/7731) [`e1d6d7d`](https://github.com/LedgerHQ/ledger-live/commit/e1d6d7d72059db3db29c8968364c4d348398446b) Thanks [@LucasWerey](https://github.com/LucasWerey)! - Add vertical scroll inside optin prompt and correct variable name. Fix export account row from settings that was hidden when LS enabled + +- [#7585](https://github.com/LedgerHQ/ledger-live/pull/7585) [`aadad07`](https://github.com/LedgerHQ/ledger-live/commit/aadad0732479f99bf502378fd74805f5a6f842f4) Thanks [@CremaFR](https://github.com/CremaFR)! - fix: render loader on result for startExchange + +- [#7663](https://github.com/LedgerHQ/ledger-live/pull/7663) [`1a5bcec`](https://github.com/LedgerHQ/ledger-live/commit/1a5bcecb79d6c29b895f5d2d317a7aec00013acf) Thanks [@valpinkman](https://github.com/valpinkman)! - Avoid running watchloop when LS ff is disabled + +- [#7709](https://github.com/LedgerHQ/ledger-live/pull/7709) [`1f74063`](https://github.com/LedgerHQ/ledger-live/commit/1f7406327583cb61944cab18023e966b5ac467aa) Thanks [@CremaFR](https://github.com/CremaFR)! - btc and evm fee drawer display amount errors when editing fees too high + +- [#7711](https://github.com/LedgerHQ/ledger-live/pull/7711) [`e5c578b`](https://github.com/LedgerHQ/ledger-live/commit/e5c578b7be3fe0653bc7fced49eb5713b134f741) Thanks [@CremaFR](https://github.com/CremaFR)! - fix setTransaction fee drawer call to check error status + +- [#7660](https://github.com/LedgerHQ/ledger-live/pull/7660) [`9c584a0`](https://github.com/LedgerHQ/ledger-live/commit/9c584a08063dedc4eb4baeb3b0e719acf98a2087) Thanks [@sergiubreban](https://github.com/sergiubreban)! - removes old manifest id for buy-sell app + +- [#7527](https://github.com/LedgerHQ/ledger-live/pull/7527) [`c7b5135`](https://github.com/LedgerHQ/ledger-live/commit/c7b5135a2a81311fba8a706790ae3c7dadd4a32a) Thanks [@ofreyssinet-ledger](https://github.com/ofreyssinet-ledger)! - Fix firmware update for old firmware versions + +- [#7657](https://github.com/LedgerHQ/ledger-live/pull/7657) [`2359a8e`](https://github.com/LedgerHQ/ledger-live/commit/2359a8e34fbe1a1ac073b6d18d66d2942a5dd817) Thanks [@valpinkman](https://github.com/valpinkman)! - Prevent the use of webp for Custom Lock Screen + +- [#7680](https://github.com/LedgerHQ/ledger-live/pull/7680) [`714a096`](https://github.com/LedgerHQ/ledger-live/commit/714a096a9310c0f502381f8ec0869c6a662b6ec9) Thanks [@CremaFR](https://github.com/CremaFR)! - fix: uses native segwit empty address to compute btc fees + +- [#7563](https://github.com/LedgerHQ/ledger-live/pull/7563) [`ef82161`](https://github.com/LedgerHQ/ledger-live/commit/ef82161688fc49bf32cbc88f1837b15490e5d2b4) Thanks [@Wozacosta](https://github.com/Wozacosta)! - remove pivx code + +- [#7555](https://github.com/LedgerHQ/ledger-live/pull/7555) [`aa9110f`](https://github.com/LedgerHQ/ledger-live/commit/aa9110feeb862d4c340e698950d0133d0eb1efb1) Thanks [@ofreyssinet-ledger](https://github.com/ofreyssinet-ledger)! - Custom lock screen: disallow selection of gifs + +- [#7610](https://github.com/LedgerHQ/ledger-live/pull/7610) [`08fd8b4`](https://github.com/LedgerHQ/ledger-live/commit/08fd8b4c2150a32a72f2b943d1ef76724a1e2544) Thanks [@mwiercinska](https://github.com/mwiercinska)! - Add locale and ticker query params for buy/sell + +- [#7736](https://github.com/LedgerHQ/ledger-live/pull/7736) [`644332f`](https://github.com/LedgerHQ/ledger-live/commit/644332f58790fb89375b9ca8a4b58e5f1613c14f) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix Animation Color + +- [#7629](https://github.com/LedgerHQ/ledger-live/pull/7629) [`81468af`](https://github.com/LedgerHQ/ledger-live/commit/81468af073af1ccdeb3fdbcf6b2c998cebc68ab5) Thanks [@mwiercinska](https://github.com/mwiercinska)! - add translation for back to quote CTA in WebPTXPlayer + +- [#7700](https://github.com/LedgerHQ/ledger-live/pull/7700) [`55f40b1`](https://github.com/LedgerHQ/ledger-live/commit/55f40b1c9bbc91ba7b4aada849c94987546bad75) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Update analytics + +- [#7690](https://github.com/LedgerHQ/ledger-live/pull/7690) [`a3fd728`](https://github.com/LedgerHQ/ledger-live/commit/a3fd72861f2a7df676bd793062b3816fdb9d1f57) Thanks [@thesan](https://github.com/thesan)! - Refresh ledger sync QR code on expiration + +- [#7636](https://github.com/LedgerHQ/ledger-live/pull/7636) [`a0bb74b`](https://github.com/LedgerHQ/ledger-live/commit/a0bb74b8f3704ab9d5567c9d14c16cab9e0872f7) Thanks [@Wozacosta](https://github.com/Wozacosta)! - Move Cosmos and Cosmos-based coins to its own module + +- [#7654](https://github.com/LedgerHQ/ledger-live/pull/7654) [`351cef9`](https://github.com/LedgerHQ/ledger-live/commit/351cef9caa68c1f88d1d709206ad5c3d5f22998b) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Minor copy update for LedgerSync + +- [#7679](https://github.com/LedgerHQ/ledger-live/pull/7679) [`54578c3`](https://github.com/LedgerHQ/ledger-live/commit/54578c329baf4434f9c5d9accb8842da00e45630) Thanks [@ofreyssinet-ledger](https://github.com/ofreyssinet-ledger)! - Fix removal of custom lock screen on LLD + +- Updated dependencies [[`f8756b2`](https://github.com/LedgerHQ/ledger-live/commit/f8756b29a83048d423d500e16ea3f9789763b90d), [`87c160d`](https://github.com/LedgerHQ/ledger-live/commit/87c160d855b512d5a0394eaee7626e2b8cd431ee), [`5c738cb`](https://github.com/LedgerHQ/ledger-live/commit/5c738cbd35ce5d0ca39ad3b86a61cc6234d1bdf7), [`940d807`](https://github.com/LedgerHQ/ledger-live/commit/940d8073f6395cbcc2369f46aa6ad30216b00198), [`354d913`](https://github.com/LedgerHQ/ledger-live/commit/354d9138a4bd9b54001ff1330a8000ee94aea008), [`d60a022`](https://github.com/LedgerHQ/ledger-live/commit/d60a02238db9ed16142de4c1874e26d27aaaa98c), [`9c55e81`](https://github.com/LedgerHQ/ledger-live/commit/9c55e81c84d3372f2a7fd36248f970376aec905a), [`5de6b47`](https://github.com/LedgerHQ/ledger-live/commit/5de6b47f4fec831a24ccd58ee95d69b8c2c15d57), [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab), [`267526c`](https://github.com/LedgerHQ/ledger-live/commit/267526c3f8cc4863d4947ab3c28ba20dc5593028), [`b97b76c`](https://github.com/LedgerHQ/ledger-live/commit/b97b76cc99845b0240426f5ca75c765b615ccec5), [`1fb2b90`](https://github.com/LedgerHQ/ledger-live/commit/1fb2b909c5d97e373a0f72baa37578132bd8b24a), [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab), [`cc291f5`](https://github.com/LedgerHQ/ledger-live/commit/cc291f5466d80a2b7e9394338ab588ecd3db4623), [`fb9466a`](https://github.com/LedgerHQ/ledger-live/commit/fb9466a4d7827fd4759c726ad3ae0b43dddcacd3), [`f0eb405`](https://github.com/LedgerHQ/ledger-live/commit/f0eb405b52de5484ee98ac87e87522b33836224c), [`5758950`](https://github.com/LedgerHQ/ledger-live/commit/5758950841fbf8018dd848e745017484aec67333), [`ef99222`](https://github.com/LedgerHQ/ledger-live/commit/ef99222a5adcd9732d06600bc875309c440e084f), [`e5419de`](https://github.com/LedgerHQ/ledger-live/commit/e5419ded434a3f6a203c0195932b5b846fec0e2c), [`5ecbe88`](https://github.com/LedgerHQ/ledger-live/commit/5ecbe88474032b724d6c408ab63be08aa567e0fc), [`a84f3d3`](https://github.com/LedgerHQ/ledger-live/commit/a84f3d344e37301dc76f182c0f99b0b01106abfa), [`ce18c9b`](https://github.com/LedgerHQ/ledger-live/commit/ce18c9bde11fbd6cc196091716b1547354063d89), [`271f90d`](https://github.com/LedgerHQ/ledger-live/commit/271f90dc0f5b46ddaf136873dc034d4c44045dd0), [`313d0e4`](https://github.com/LedgerHQ/ledger-live/commit/313d0e42b81b69b57aa81a760465a414e6afd7f7), [`297ce51`](https://github.com/LedgerHQ/ledger-live/commit/297ce513f496f256efe8f9011734324125f462a5), [`fcd8d52`](https://github.com/LedgerHQ/ledger-live/commit/fcd8d5272176a4acec4e396ed313d3578e1c5b86), [`d2f7d9b`](https://github.com/LedgerHQ/ledger-live/commit/d2f7d9b418c374bd6b87927c1f67d58c118b556d), [`94afd9e`](https://github.com/LedgerHQ/ledger-live/commit/94afd9e0742d0e227b1e6ff953edee7a66ad61a3), [`0c80144`](https://github.com/LedgerHQ/ledger-live/commit/0c80144b8c16fc3729baa6503875d21af87b2752), [`4799d5d`](https://github.com/LedgerHQ/ledger-live/commit/4799d5de3fb1dcef2b01de31fe29b59e76922576), [`1353e7a`](https://github.com/LedgerHQ/ledger-live/commit/1353e7ae02f22e8f9194a1e3c34f9444785b6fb6), [`6ccd01c`](https://github.com/LedgerHQ/ledger-live/commit/6ccd01cd738362db00c9dbc74cd0a77ccc01b206), [`224e33c`](https://github.com/LedgerHQ/ledger-live/commit/224e33c93d2acd22c82892148b240df004284037), [`bc044e4`](https://github.com/LedgerHQ/ledger-live/commit/bc044e482ea2827dca281c44ec36526d63da5194), [`4799d5d`](https://github.com/LedgerHQ/ledger-live/commit/4799d5de3fb1dcef2b01de31fe29b59e76922576), [`ef82161`](https://github.com/LedgerHQ/ledger-live/commit/ef82161688fc49bf32cbc88f1837b15490e5d2b4), [`8e0ac04`](https://github.com/LedgerHQ/ledger-live/commit/8e0ac04ac8cdaaee59633ebdf219e5dcf44a10df), [`cd440bb`](https://github.com/LedgerHQ/ledger-live/commit/cd440bbd647633278d983a15803032c1e676d4fe), [`c8ac662`](https://github.com/LedgerHQ/ledger-live/commit/c8ac662e6f88349187f802741e14c3d5fb67cddb), [`c8c273c`](https://github.com/LedgerHQ/ledger-live/commit/c8c273c9a443a75b2fb85b831c8d40cf6ff068c6), [`6417959`](https://github.com/LedgerHQ/ledger-live/commit/641795937e14908ba9632a7b9744563b7e206be7), [`277648c`](https://github.com/LedgerHQ/ledger-live/commit/277648cbc0b58694a49d8d929c8ec0b89986f4cf), [`94bf322`](https://github.com/LedgerHQ/ledger-live/commit/94bf322023cf497b19399be8abcf54a57ea740d1), [`a3fd728`](https://github.com/LedgerHQ/ledger-live/commit/a3fd72861f2a7df676bd793062b3816fdb9d1f57), [`1bcff16`](https://github.com/LedgerHQ/ledger-live/commit/1bcff1673fa0cbc43f43201044d7e9425f8991f1), [`a0bb74b`](https://github.com/LedgerHQ/ledger-live/commit/a0bb74b8f3704ab9d5567c9d14c16cab9e0872f7), [`eb9a36f`](https://github.com/LedgerHQ/ledger-live/commit/eb9a36f6ee8487c9ffbb841c3e6c0ca84f68bb0a), [`9c2f1b3`](https://github.com/LedgerHQ/ledger-live/commit/9c2f1b3b6e11a37a6b5ecf02d1e1ae7f0258e3ae), [`1d1bfd1`](https://github.com/LedgerHQ/ledger-live/commit/1d1bfd164847431c0f4afe7ed8ae6d5df535c9cf), [`91374dd`](https://github.com/LedgerHQ/ledger-live/commit/91374dde37f0ec3b63817254b9e26c1eb02ed981), [`042e1ab`](https://github.com/LedgerHQ/ledger-live/commit/042e1abf2d0bdbdc906cb88e30770d4de1eef356), [`9a650da`](https://github.com/LedgerHQ/ledger-live/commit/9a650da9a147d6881f7082278d2bf764c37e1451), [`54578c3`](https://github.com/LedgerHQ/ledger-live/commit/54578c329baf4434f9c5d9accb8842da00e45630), [`d213d81`](https://github.com/LedgerHQ/ledger-live/commit/d213d8122647d559b7a0f44e2beffa5e39c3249b), [`e6b8cea`](https://github.com/LedgerHQ/ledger-live/commit/e6b8ceac486147f4000aab7f0ae7f89d2ac205b1), [`e7db725`](https://github.com/LedgerHQ/ledger-live/commit/e7db72552042ff4dd85bec236f6bd083fa3da533), [`9d58923`](https://github.com/LedgerHQ/ledger-live/commit/9d5892327b43e219b3b672e7a56e1e2d6413a83b)]: + - @ledgerhq/live-common@34.8.0-next.0 + - @ledgerhq/trustchain@0.3.0-next.0 + - @ledgerhq/errors@6.19.0-next.0 + - @ledgerhq/hw-transport-node-speculos-http@6.29.3-next.0 + - @ledgerhq/hw-transport-http@6.30.3-next.0 + - @ledgerhq/coin-bitcoin@0.8.0-next.0 + - @ledgerhq/coin-evm@2.2.0-next.0 + - @ledgerhq/domain-service@1.2.4-next.0 + - @ledgerhq/live-network@2.0.0-next.0 + - @ledgerhq/live-countervalues@0.2.5-next.0 + - @ledgerhq/coin-framework@0.18.0-next.0 + - @ledgerhq/types-live@6.51.0-next.0 + - @ledgerhq/live-countervalues-react@0.2.5-next.0 + - @ledgerhq/react-ui@0.16.0-next.0 + - @ledgerhq/live-env@2.3.0-next.0 + - @ledgerhq/live-wallet@0.6.0-next.0 + - @ledgerhq/types-cryptoassets@7.15.1-next.0 + - @ledgerhq/hw-trustchain@0.1.5-next.0 + - @ledgerhq/coin-cosmos@0.1.1-next.0 + - @ledgerhq/devices@8.4.3-next.0 + - @ledgerhq/hw-transport@6.31.3-next.0 + - @ledgerhq/hw-transport-node-hid-singleton@6.31.4-next.0 + - @ledgerhq/hw-transport-vault@1.3.3-next.0 + - @ledgerhq/live-nft@0.4.5-next.0 + - @ledgerhq/live-nft-react@0.4.5-next.0 + ## 2.85.1 ### Patch Changes diff --git a/apps/ledger-live-desktop/RELEASE_NOTES.md b/apps/ledger-live-desktop/RELEASE_NOTES.md index 8ca3d58a8056..cdcc3ffd2b5d 100644 --- a/apps/ledger-live-desktop/RELEASE_NOTES.md +++ b/apps/ledger-live-desktop/RELEASE_NOTES.md @@ -1,3 +1,19 @@ +# 2.86.0 + +### 🚀 Features + +You can now swap cross-chain with Exodus as a new provider. + +We’ve added support for TON tokens. + +FIL tokens are now also supported but limited to f0, f4 & 0x addresses. + +### 🌷 Improvements + +We’ve made it easier to reach your favorite provider quickly using the Buy flow. + +MATIC has been renamed to POL across the platform. + # 2.85.1 Some Windows users reported issues with device interactions. This has been fixed. diff --git a/apps/ledger-live-desktop/__mocks__/@polkadot/util-crypto.js b/apps/ledger-live-desktop/__mocks__/@polkadot/util-crypto.js new file mode 100644 index 000000000000..f053ebf7976e --- /dev/null +++ b/apps/ledger-live-desktop/__mocks__/@polkadot/util-crypto.js @@ -0,0 +1 @@ +module.exports = {}; diff --git a/apps/ledger-live-desktop/__mocks__/@polkadot/x-fetch.js b/apps/ledger-live-desktop/__mocks__/@polkadot/x-fetch.js new file mode 100644 index 000000000000..f053ebf7976e --- /dev/null +++ b/apps/ledger-live-desktop/__mocks__/@polkadot/x-fetch.js @@ -0,0 +1 @@ +module.exports = {}; diff --git a/apps/ledger-live-desktop/__mocks__/@polkadot/x-textdecoder.js b/apps/ledger-live-desktop/__mocks__/@polkadot/x-textdecoder.js new file mode 100644 index 000000000000..b297defd04d1 --- /dev/null +++ b/apps/ledger-live-desktop/__mocks__/@polkadot/x-textdecoder.js @@ -0,0 +1,3 @@ +module.exports = { + TextDecoder: global.TextDecoder, +}; diff --git a/apps/ledger-live-desktop/__mocks__/@polkadot/x-textencoder.js b/apps/ledger-live-desktop/__mocks__/@polkadot/x-textencoder.js new file mode 100644 index 000000000000..e4bca30f783b --- /dev/null +++ b/apps/ledger-live-desktop/__mocks__/@polkadot/x-textencoder.js @@ -0,0 +1,3 @@ +module.exports = { + TextEncoder: global.TextEncoder, +}; diff --git a/apps/ledger-live-desktop/__mocks__/@polkadot/x-ws.js b/apps/ledger-live-desktop/__mocks__/@polkadot/x-ws.js new file mode 100644 index 000000000000..f053ebf7976e --- /dev/null +++ b/apps/ledger-live-desktop/__mocks__/@polkadot/x-ws.js @@ -0,0 +1 @@ +module.exports = {}; diff --git a/apps/ledger-live-desktop/deeplinks-test-page.html b/apps/ledger-live-desktop/deeplinks-test-page.html index f26f973370a7..1a3746c305f9 100644 --- a/apps/ledger-live-desktop/deeplinks-test-page.html +++ b/apps/ledger-live-desktop/deeplinks-test-page.html @@ -226,11 +226,15 @@

Discover

🔗

- + +

Earn

diff --git a/apps/ledger-live-desktop/jest.config.js b/apps/ledger-live-desktop/jest.config.js index 663937af369a..4870e0403a02 100644 --- a/apps/ledger-live-desktop/jest.config.js +++ b/apps/ledger-live-desktop/jest.config.js @@ -11,6 +11,7 @@ const testPathIgnorePatterns = [ ".yalc", "cli/", "test-helpers/", + "src/.*/shared\\.(ts|tsx)$", ]; const moduleNameMapper = { @@ -23,6 +24,8 @@ const moduleNameMapper = { uuid: require.resolve("uuid"), "react-spring": require.resolve("react-spring"), "@braze/web-sdk": require.resolve("@braze/web-sdk"), + "@polkadot/x-fetch": "/__mocks__/x-fetch.js", + "@polkadot/x-ws": "/__mocks__/x-ws.js", }; const commonConfig = { @@ -37,7 +40,7 @@ const commonConfig = { }, moduleNameMapper, testPathIgnorePatterns, - setupFiles: ["jest-canvas-mock"], + setupFiles: ["jest-canvas-mock", "./jest.polyfills.js"], setupFilesAfterEnv: ["/tests/jestSetup.js"], extensionsToTreatAsEsm: [".ts", ".tsx", ".jsx"], transform: { @@ -56,11 +59,16 @@ const commonConfig = { moduleDirectories: ["node_modules", "./tests"], modulePaths: [compilerOptions.baseUrl], resolver: "/scripts/resolver.js", + testEnvironmentOptions: { + customExportConditions: [""], + }, }; module.exports = { collectCoverageFrom: ["src/**/*.{ts,tsx}", "!src/**/*.test.{ts,tsx}", "!src/**/*.spec.{ts,tsx}"], coverageReporters: ["json", "lcov", "json-summary"], + silent: false, + verbose: true, projects: [ { ...commonConfig, @@ -69,6 +77,7 @@ module.exports = { ...testPathIgnorePatterns, "(/__tests__/.*|(\\.|/)react\\.test|spec)\\.tsx", ], + testMatch: ["**/src/**/*.test.(ts|tsx)"], }, { ...commonConfig, diff --git a/apps/ledger-live-desktop/jest.polyfills.js b/apps/ledger-live-desktop/jest.polyfills.js new file mode 100644 index 000000000000..2b1943680bdb --- /dev/null +++ b/apps/ledger-live-desktop/jest.polyfills.js @@ -0,0 +1,23 @@ +/* eslint-disable @typescript-eslint/no-var-requires */ +/* eslint-disable no-undef */ +const { TextDecoder, TextEncoder } = require("node:util"); +const { ReadableStream } = require("node:stream/web"); + +Object.defineProperties(globalThis, { + TextDecoder: { value: TextDecoder }, + TextEncoder: { value: TextEncoder }, + ReadableStream: { value: ReadableStream }, +}); + +const { Blob, File } = require("node:buffer"); +const { fetch, Headers, FormData, Request, Response } = require("undici"); + +Object.defineProperties(globalThis, { + fetch: { value: fetch, writable: true }, + Blob: { value: Blob }, + File: { value: File }, + Headers: { value: Headers }, + FormData: { value: FormData }, + Request: { value: Request }, + Response: { value: Response }, +}); diff --git a/apps/ledger-live-desktop/package.json b/apps/ledger-live-desktop/package.json index bd03256008ed..97db33db1aa3 100644 --- a/apps/ledger-live-desktop/package.json +++ b/apps/ledger-live-desktop/package.json @@ -13,7 +13,7 @@ "license": "MIT", "private": true, "main": "./.webpack/main.bundle.js", - "version": "2.85.1", + "version": "2.86.0", "scripts": { "start:prod": "electron ./.webpack/main.bundle.js", "start": "cross-env NODE_ENV=development node ./tools/main.js", @@ -25,7 +25,7 @@ "lint:ci": "zx scripts/ci-lint.mjs", "lint:fix": "eslint src tools static tests --ext .js,.jsx,.json,.ts,.tsx --fix", "prettier": "prettier --write \"{src,tools,tests}/**/*.{js,jsx,json,ts,tsx}\"", - "prettier:check": "prettier -c \"{src,tools}/**/*.{js,jsx,json,ts,tsx}\"", + "prettier:check": "prettier -c \"{src,tools,tests}/**/*.{js,jsx,json,ts,tsx}\"", "preinstall-deps": "rimraf node_modules/paralleljs/package.json", "install-deps": "electron-builder install-app-deps", "postinstall": "node ./scripts/post-install.js", @@ -36,7 +36,7 @@ "pre-build": "node ./tools/dist --pre -v", "release": "node ./tools/dist --release -v", "test": "pnpm test:jest:coverage && pnpm test:playwright", - "test:jest": "jest src --maxWorkers=50%", + "test:jest": "jest --maxWorkers=50%", "test:jest:coverage": "pnpm test:jest --ci --coverage", "test:playwright:setup": "playwright install chromium", "test:playwright": "playwright test --config=tests/playwright.config.ts --project=mocked_tests", @@ -53,6 +53,7 @@ "dependencies": { "@braze/web-sdk": "^4.6.3", "@ledgerhq/coin-bitcoin": "workspace:^", + "@ledgerhq/coin-cosmos": "workspace:^", "@ledgerhq/coin-evm": "workspace:^", "@ledgerhq/coin-framework": "workspace:^", "@ledgerhq/devices": "workspace:*", @@ -101,12 +102,14 @@ "electron-updater": "^6.1.7", "firebase": "^9.6.6", "focus-trap": "^6.6.1", + "framer-motion": "^11.3.28", "fuse.js": "^6.6.2", "i18next": "^23.4.4", "invariant": "^2.2.4", "json-rpc-2.0": "^0.2.19", "jsqr": "^1.4.0", "lodash": "^4.17.21", + "msw": "^2.3.2", "prando": "^5.1.2", "prop-types": "^15.8.1", "qrcode": "^1.4.4", @@ -146,6 +149,7 @@ "tippy.js": "^6.3.7", "tree-kill": "^1.2.2", "uncontrollable": "^7.2.1", + "undici": "^6.19.2", "uuid": "^9.0.0", "winston": "^3.2.1", "winston-transport": "^4.3.0", @@ -198,7 +202,7 @@ "@types/write-file-atomic": "^4.0.0", "@vitejs/plugin-react": "^3.1.0", "allure-playwright": "2.15.1", - "axios": "1.3.4", + "axios": "1.7.3", "chalk": "^4.1.2", "cross-env": "^7.0.3", "debug": "^4.3.4", @@ -215,6 +219,7 @@ "jest-environment-jsdom": "^29.7.0", "listr": "^0.14.3", "listr-verbose-renderer": "^0.6.0", + "nock": "^13.0.5", "prebuild-install": "^7.1.1", "react-refresh": "^0.14.0", "react-test-renderer": "^18.2.0", @@ -226,4 +231,4 @@ "vite-plugin-electron": "0.4.9", "yargs": "^17.0.0" } -} +} \ No newline at end of file diff --git a/apps/ledger-live-desktop/scripts/resolver.js b/apps/ledger-live-desktop/scripts/resolver.js index bfe9490abeb7..66829ecebc34 100644 --- a/apps/ledger-live-desktop/scripts/resolver.js +++ b/apps/ledger-live-desktop/scripts/resolver.js @@ -1,29 +1,32 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - module.exports = (path, options) => { // Call the defaultResolver, so we leverage its cache, error handling, etc. return options.defaultResolver(path, { ...options, // Use packageFilter to process parsed `package.json` before the resolution (see https://www.npmjs.com/package/resolve#resolveid-opts-cb) packageFilter: pkg => { - // This is a workaround for https://github.com/uuidjs/uuid/pull/616 - // - // jest-environment-jsdom 28+ tries to use browser exports instead of default exports, - // but uuid only offers an ESM browser export and not a CommonJS one. Jest does not yet - // support ESM modules natively, so this causes a Jest error related to trying to parse - // "export" syntax. - // - // This workaround prevents Jest from considering uuid's module-based exports at all; - // it falls back to uuid's CommonJS+node "main" property. - // - // Once we're able to migrate our Jest config to ESM and a browser crypto - // implementation is available for the browser+ESM version of uuid to use (eg, via - // https://github.com/jsdom/jsdom/pull/3352 or a similar polyfill), this can go away. - if (pkg.name === "uuid") { + const pkgNamesToTarget = new Set([ + "rxjs", + "@firebase/auth", + "@firebase/storage", + "@firebase/functions", + "@firebase/database", + "@firebase/auth-compat", + "@firebase/database-compat", + "@firebase/app-compat", + "@firebase/firestore", + "@firebase/firestore-compat", + "@firebase/messaging", + "@firebase/util", + "firebase", + "uuid", + ]); + + if (pkgNamesToTarget.has(pkg.name)) { + // console.log('>>>', pkg.name) delete pkg["exports"]; delete pkg["module"]; } + return pkg; }, }); diff --git a/apps/ledger-live-desktop/src/live-common-set-supported-currencies.ts b/apps/ledger-live-desktop/src/live-common-set-supported-currencies.ts index 418f4e80f3d1..39a0d9048e20 100644 --- a/apps/ledger-live-desktop/src/live-common-set-supported-currencies.ts +++ b/apps/ledger-live-desktop/src/live-common-set-supported-currencies.ts @@ -42,7 +42,6 @@ setSupportedCurrencies([ "qtum", "bitcoin_gold", "komodo", - "pivx", "zencash", "bitcoin_testnet", "ethereum_sepolia", diff --git a/apps/ledger-live-desktop/src/main/mergeAllLogs.test.ts b/apps/ledger-live-desktop/src/main/mergeAllLogs.test.ts new file mode 100644 index 000000000000..b479b4e532a7 --- /dev/null +++ b/apps/ledger-live-desktop/src/main/mergeAllLogs.test.ts @@ -0,0 +1,158 @@ +import { Log } from "./logger"; +import { mergeAllLogs, mergeAllLogsJSON, MergeResult } from "./mergeAllLogs"; + +const internalLogsChronological: Array = [ + { date: new Date(1), message: "Internal log 1" } as Log, + { date: new Date(2), message: "Internal log 2" } as Log, + { date: new Date(2), message: "Internal log 3 (same date as internal 2)" } as Log, + { date: new Date(4), message: "Internal log 4" } as Log, + { date: new Date(4), message: "Internal log 5 (same date as internal 4)" } as Log, +]; + +const rendererLogsChronological: Array<{ timestamp: string; message: string }> = [ + { timestamp: new Date(1).toISOString(), message: "Renderer log 1 (same date as internal 1)" }, + { timestamp: new Date(3).toISOString(), message: "Renderer log 2" }, + { timestamp: new Date(3).toISOString(), message: "Renderer log 3" }, + { timestamp: new Date(4).toISOString(), message: "Renderer log 4 (same date as internal 4)" }, + { timestamp: new Date(5).toISOString(), message: "Renderer log 5" }, +]; + +const expectedMergedLogs: MergeResult = [ + { + message: + "Exporting logs: Only the last 8 logs are saved. To change this limit, set the EXPORT_MAX_LOGS env variable.", + logIndex: 0, + pname: "electron-main", + timestamp: "1970-01-01T00:00:00.000Z", + type: "exportLogsMeta", + }, + { + timestamp: "1970-01-01T00:00:00.002Z", + message: "Internal log 2", + pname: "electron-internal", + logIndex: 2, + }, + { + timestamp: "1970-01-01T00:00:00.002Z", + message: "Internal log 3 (same date as internal 2)", + pname: "electron-internal", + logIndex: 3, + }, + { + message: "Renderer log 2", + pname: "electron-renderer", + timestamp: "1970-01-01T00:00:00.003Z", + logIndex: 4, + }, + { + message: "Renderer log 3", + pname: "electron-renderer", + timestamp: "1970-01-01T00:00:00.003Z", + logIndex: 5, + }, + { + message: "Renderer log 4 (same date as internal 4)", + pname: "electron-renderer", + timestamp: "1970-01-01T00:00:00.004Z", + logIndex: 6, + }, + { + timestamp: "1970-01-01T00:00:00.004Z", + message: "Internal log 4", + pname: "electron-internal", + logIndex: 7, + }, + { + timestamp: "1970-01-01T00:00:00.004Z", + message: "Internal log 5 (same date as internal 4)", + pname: "electron-internal", + logIndex: 8, + }, + { + message: "Renderer log 5", + pname: "electron-renderer", + timestamp: "1970-01-01T00:00:00.005Z", + logIndex: 9, + }, +]; + +const expectedMergedLogsJSON = `\ +[ + { + "logIndex": 0, + "timestamp": "1970-01-01T00:00:00.000Z", + "pname": "electron-main", + "type": "exportLogsMeta", + "message": "Exporting logs: Only the last 8 logs are saved. To change this limit, set the EXPORT_MAX_LOGS env variable." + }, + { + "logIndex": 2, + "timestamp": "1970-01-01T00:00:00.002Z", + "pname": "electron-internal", + "message": "Internal log 2" + }, + { + "logIndex": 3, + "timestamp": "1970-01-01T00:00:00.002Z", + "pname": "electron-internal", + "message": "Internal log 3 (same date as internal 2)" + }, + { + "logIndex": 4, + "timestamp": "1970-01-01T00:00:00.003Z", + "pname": "electron-renderer", + "message": "Renderer log 2" + }, + { + "logIndex": 5, + "timestamp": "1970-01-01T00:00:00.003Z", + "pname": "electron-renderer", + "message": "Renderer log 3" + }, + { + "logIndex": 6, + "timestamp": "1970-01-01T00:00:00.004Z", + "pname": "electron-renderer", + "message": "Renderer log 4 (same date as internal 4)" + }, + { + "logIndex": 7, + "timestamp": "1970-01-01T00:00:00.004Z", + "pname": "electron-internal", + "message": "Internal log 4" + }, + { + "logIndex": 8, + "timestamp": "1970-01-01T00:00:00.004Z", + "pname": "electron-internal", + "message": "Internal log 5 (same date as internal 4)" + }, + { + "logIndex": 9, + "timestamp": "1970-01-01T00:00:00.005Z", + "pname": "electron-renderer", + "message": "Renderer log 5" + } +]`; + +describe("mergeAllLogs", () => { + it("should merge logs from the renderer process and logs recorded from the internal process", () => { + const mergedLogs = mergeAllLogs(rendererLogsChronological, internalLogsChronological, 8); + + console.log("mergedLogs", mergedLogs); + + expect(mergedLogs).toEqual(expectedMergedLogs); + }); +}); + +describe("mergeAllLogsJSON", () => { + it("return the merged logs with their keys properly ordered (logIndex, then date, then process, then message)", () => { + const mergedLogsJSON = mergeAllLogsJSON( + rendererLogsChronological, + internalLogsChronological, + 8, + ); + + expect(mergedLogsJSON).toEqual(expectedMergedLogsJSON); + }); +}); diff --git a/apps/ledger-live-desktop/src/main/mergeAllLogs.ts b/apps/ledger-live-desktop/src/main/mergeAllLogs.ts new file mode 100644 index 000000000000..40d865af44c6 --- /dev/null +++ b/apps/ledger-live-desktop/src/main/mergeAllLogs.ts @@ -0,0 +1,129 @@ +import { Log } from "./logger"; + +/** + * Custom JSON.stringify function that orders the keys in a specified order. + */ +export function customStringify(obj: unknown) { + const orderedKeys = [ + "logIndex", + "timestamp", + "pname", + "type", + "level", + "id", + "message", + "data", + "context", + ]; + + return JSON.stringify( + obj, + (_, value) => { + if (typeof value === "object" && value !== null && !Array.isArray(value)) { + const orderedObject: Record = {}; + + // Add the keys in the specified order + for (const key of orderedKeys) { + if (key in value) { + orderedObject[key] = value[key]; + } + } + + // Add the remaining keys + for (const key in value) { + if (!(key in orderedObject)) { + orderedObject[key] = value[key]; + } + } + + return orderedObject; + } + return value; + }, + 2, + ); +} + +export type MergeResult = Array< + | ({ + logIndex: number; + /** Process name */ + pname: string; + /** Date formatted in ISO string (this is badly named but we're keeping the legacy name for compatibility with the logs viewer) */ + timestamp: string; + } & Record) + | string +>; + +/** + * Merges logs from the renderer process and logs recorded from the internal process. + * The logs are ordered by date and the most recent logs are kept. + * + * @param rendererLogsChronological Logs from the renderer process, ordered by date. + * @param internalLogsChronological Logs from the internal process, ordered by date. + * @param maxLogCount The maximum number of logs to keep. + * @returns The merged logs, ordered by date. + */ +export function mergeAllLogs( + rendererLogsChronological: Array<{ timestamp: string }>, + internalLogsChronological: Array, + maxLogCount: number, +): MergeResult { + console.log( + `Saving ${rendererLogsChronological.length} logs from the renderer process and ${internalLogsChronological.length} logs from the internal process`, + ); + + function compareLogs( + a: { timestamp: string; pname: string; originalIndex: number }, + b: { timestamp: string; pname: string; originalIndex: number }, + ) { + const dateCompared = a.timestamp.localeCompare(b.timestamp); + if (dateCompared !== 0 || a.pname !== b.pname) return dateCompared; + return a.originalIndex - b.originalIndex; + } + + const allLogs: MergeResult = [ + ...rendererLogsChronological.map((log, index) => ({ + ...log, + pname: "electron-renderer", + originalIndex: index, // This is used to keep the order of the logs in case some logs in that collection have the same date + })), + ...internalLogsChronological.map((log, index) => { + const { date, ...rest } = log; + return { + ...rest, + pname: "electron-internal", + timestamp: typeof date === "string" ? date : date.toISOString(), + originalIndex: index, + }; + }), + ] + .sort(compareLogs) + .map((log, index) => { + const { originalIndex, ...rest } = log; + return { ...rest, logIndex: index }; + }) + .slice(-maxLogCount); + + if (rendererLogsChronological.length + internalLogsChronological.length > maxLogCount) { + allLogs.unshift({ + message: `Exporting logs: Only the last ${maxLogCount} logs are saved. To change this limit, set the EXPORT_MAX_LOGS env variable.`, + logIndex: 0, + type: "exportLogsMeta", + pname: "electron-main", + timestamp: new Date(0).toISOString(), + }); + } + + return allLogs; +} + +export function mergeAllLogsJSON( + rendererLogsChronological: Array<{ timestamp: string }>, + internalLogsChronological: Array, + maxLogCount: number, +) { + return customStringify( + mergeAllLogs(rendererLogsChronological, internalLogsChronological, maxLogCount), + ); +} diff --git a/apps/ledger-live-desktop/src/main/setup.ts b/apps/ledger-live-desktop/src/main/setup.ts index 196d9128d9d6..94f2132cfacc 100644 --- a/apps/ledger-live-desktop/src/main/setup.ts +++ b/apps/ledger-live-desktop/src/main/setup.ts @@ -7,8 +7,9 @@ import { log } from "@ledgerhq/logs"; import fs from "fs/promises"; import updater from "./updater"; import path from "path"; +import { mergeAllLogsJSON } from "./mergeAllLogs"; import { InMemoryLogger } from "./logger"; -import { setEnvUnsafe } from "@ledgerhq/live-env"; +import { getEnv, setEnvUnsafe } from "@ledgerhq/live-env"; /** * Sets env variables for the main process. @@ -36,31 +37,26 @@ ipcMain.handle( async (_event, path: Electron.SaveDialogReturnValue, rendererLogsStr: string) => { if (!path.canceled && path.filePath) { const inMemoryLogger = InMemoryLogger.getLogger(); - const internalLogs = inMemoryLogger.getLogs(); + const internalLogsChronological = inMemoryLogger.getLogs().reverse(); // The logs are in reverse order. // The deserialization would have been done internally by electron if `rendererLogs` was passed directly as a JS object/array. // But it avoids certain issues with the serialization/deserialization done by electron. - let rendererLogs: unknown[] = []; + let rendererLogsChronological: Array<{ timestamp: string }> = []; try { - rendererLogs = JSON.parse(rendererLogsStr) as unknown[]; + rendererLogsChronological = JSON.parse(rendererLogsStr).reverse(); // The logs are in reverse order. } catch (error) { console.error("Error while parsing logs from the renderer process", error); return; } - console.log( - `Saving ${rendererLogs.length} logs from the renderer process and ${internalLogs.length} logs from the internal process`, + fs.writeFile( + path.filePath, + mergeAllLogsJSON( + rendererLogsChronological, + internalLogsChronological, + getEnv("EXPORT_MAX_LOGS"), + ), ); - - // Merging according to a `date` (internal logs) / `timestamp` (most of renderer logs) does not seem necessary. - // Simply pushes all the internal logs after the renderer logs. - // Note: this is not respecting the `EXPORT_MAX_LOGS` env var, but this is fine. - rendererLogs.push( - { type: "logs-separator", message: "Logs coming from the internal process" }, - ...internalLogs, - ); - - fs.writeFile(path.filePath, JSON.stringify(rendererLogs, null, 2)); } else { console.warn("No path given to save logs"); } diff --git a/apps/ledger-live-desktop/src/newArch/components/ContextMenu/createContextMenuItems.ts b/apps/ledger-live-desktop/src/newArch/components/ContextMenu/createContextMenuItems.ts index 75c87257d00f..befe1ce2f99a 100644 --- a/apps/ledger-live-desktop/src/newArch/components/ContextMenu/createContextMenuItems.ts +++ b/apps/ledger-live-desktop/src/newArch/components/ContextMenu/createContextMenuItems.ts @@ -1,10 +1,11 @@ import { IconsLegacy } from "@ledgerhq/react-ui"; import { openModal } from "~/renderer/actions/modals"; +import { CollectibleType } from "LLD/features/Collectibles/types/Collectibles"; +import { CollectibleTypeEnum } from "LLD/features/Collectibles/types/enum/Collectibles"; import { Account } from "@ledgerhq/types-live"; import { Dispatch } from "redux"; import { TFunction } from "i18next"; import { RouteComponentProps } from "react-router-dom"; -import { CollectibleType, CollectibleTypeEnum } from "LLD/features/Collectibles/types/Collectibles"; type Props = { account: Account; diff --git a/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/hooks/useCommonLogic.tsx b/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/hooks/useCommonLogic.tsx index c388a185bccc..c2e2e237a8c7 100644 --- a/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/hooks/useCommonLogic.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/hooks/useCommonLogic.tsx @@ -30,7 +30,7 @@ export const useAnalyticsOptInPrompt = ({ entryPoint }: Props) => { const dispatch = useDispatch(); - const [isAnalitycsOptInPromptOpened, setIsAnalitycsOptInPromptOpened] = useState(false); + const [isAnalyticsOptInPromptOpened, setIsAnalyticsOptInPromptOpened] = useState(false); const [nextStep, setNextStep] = useState<(() => void) | null>(null); const flow = trackingKeysByFlow?.[entryPoint]; @@ -45,12 +45,12 @@ export const useAnalyticsOptInPrompt = ({ entryPoint }: Props) => { [ABTestingVariants.variantB]: privacyPolicyUrl, }; - const openAnalitycsOptInPrompt = useCallback( + const openAnalyticsOptInPrompt = useCallback( (routePath: string, callBack: () => void) => { - setIsAnalitycsOptInPromptOpened(true); + setIsAnalyticsOptInPromptOpened(true); setNextStep(() => callBack); }, - [setIsAnalitycsOptInPromptOpened], + [setIsAnalyticsOptInPromptOpened], ); const isEntryPointIncludedInFlagParams = lldAnalyticsOptInPromptFlag?.params?.entryPoints @@ -71,7 +71,7 @@ export const useAnalyticsOptInPrompt = ({ entryPoint }: Props) => { ); const onSubmit = () => { - setIsAnalitycsOptInPromptOpened(false); + setIsAnalyticsOptInPromptOpened(false); dispatch(setHasSeenAnalyticsOptInPrompt(true)); if (entryPoint === EntryPoint.onboarding) { nextStep?.(); @@ -80,8 +80,8 @@ export const useAnalyticsOptInPrompt = ({ entryPoint }: Props) => { }; const analyticsOptInPromptProps = { - onClose: () => setIsAnalitycsOptInPromptOpened(false), - isOpened: isAnalitycsOptInPromptOpened, + onClose: () => setIsAnalyticsOptInPromptOpened(false), + isOpened: isAnalyticsOptInPromptOpened, entryPoint: entryPoint, variant, }; @@ -101,8 +101,8 @@ export const useAnalyticsOptInPrompt = ({ entryPoint }: Props) => { }; return { - openAnalitycsOptInPrompt, - setIsAnalitycsOptInPromptOpened, + openAnalyticsOptInPrompt, + setIsAnalyticsOptInPromptOpened, onSubmit, analyticsOptInPromptProps, isFeatureFlagsAnalyticsPrefDisplayed: isFlagEnabled, diff --git a/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/hooks/useDisplayOnPortfolio.tsx b/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/hooks/useDisplayOnPortfolio.tsx index 5e16695df3b6..194ce8bba4ed 100644 --- a/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/hooks/useDisplayOnPortfolio.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/hooks/useDisplayOnPortfolio.tsx @@ -5,7 +5,7 @@ import { EntryPoint } from "../types/AnalyticsOptInPromptNavigator"; export const useDisplayOnPortfolioAnalytics = () => { const { analyticsOptInPromptProps, - setIsAnalitycsOptInPromptOpened, + setIsAnalyticsOptInPromptOpened, isFeatureFlagsAnalyticsPrefDisplayed, onSubmit, } = useAnalyticsOptInPrompt({ entryPoint: EntryPoint.portfolio }); @@ -16,8 +16,8 @@ export const useDisplayOnPortfolioAnalytics = () => { }; useEffect(() => { - if (isFeatureFlagsAnalyticsPrefDisplayed) setIsAnalitycsOptInPromptOpened(true); - }, [isFeatureFlagsAnalyticsPrefDisplayed, setIsAnalitycsOptInPromptOpened]); + if (isFeatureFlagsAnalyticsPrefDisplayed) setIsAnalyticsOptInPromptOpened(true); + }, [isFeatureFlagsAnalyticsPrefDisplayed, setIsAnalyticsOptInPromptOpened]); return { analyticsOptInPromptProps: extendedAnalyticsOptInPromptProps, diff --git a/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/screens/VariantA/Main/index.tsx b/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/screens/VariantA/Main/index.tsx index 30e68c892a98..2bb02fa82510 100644 --- a/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/screens/VariantA/Main/index.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/screens/VariantA/Main/index.tsx @@ -19,7 +19,14 @@ const Main = ({ shouldWeTrack, handleOpenPrivacyPolicy }: MainProps) => { return ( <> - + handleOpenPrivacyPolicy(page)} /> diff --git a/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/screens/VariantB/Analytics/index.tsx b/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/screens/VariantB/Analytics/index.tsx index 86274d20b998..7349e6f958a5 100644 --- a/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/screens/VariantB/Analytics/index.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/screens/VariantB/Analytics/index.tsx @@ -39,7 +39,13 @@ const AnalyticsScreen = ({ return ( <> - +
handleOpenPrivacyPolicy(page)} /> diff --git a/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/screens/VariantB/PersonalRecommendations/index.tsx b/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/screens/VariantB/PersonalRecommendations/index.tsx index c8defc6e009b..7a4cdf46a773 100644 --- a/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/screens/VariantB/PersonalRecommendations/index.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/screens/VariantB/PersonalRecommendations/index.tsx @@ -33,7 +33,7 @@ const RecommandationsScreen = ({ return ( <> - +
handleOpenPrivacyPolicy(page)} /> diff --git a/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/screens/VariantB/index.tsx b/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/screens/VariantB/index.tsx index 7ea8f9b8324f..dedde1a751ce 100644 --- a/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/screens/VariantB/index.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/AnalyticsOptInPrompt/screens/VariantB/index.tsx @@ -22,7 +22,7 @@ const VariantB = ({ entryPoint, onSubmit, step, setStep }: VariantBProps) => { }); return ( <> - + {step === 0 ? ( void; -}; - -type ViewProps = { - nftsInTheCollection: NftsInTheCollections[]; - account: Account; - displayShowMore: boolean; - onOpenGallery: () => void; - onReceive: () => void; - onOpenCollection: (collectionAddress: string) => void; - onShowMore: () => void; -}; +type ViewProps = ReturnType; type NftItemProps = { contract: string; @@ -66,7 +54,7 @@ const NftItem: React.FC = ({ > onClick(contract)} media={{ @@ -152,8 +140,8 @@ function View({ ); } -const NftCollection: React.FC = ({ account }) => { - return ; +const NftCollections: React.FC = ({ account }) => { + return ; }; -export default NftCollection; +export default NftCollections; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/Collection/useNftCollectionModel.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/Collections/useNftCollectionsModel.tsx similarity index 87% rename from apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/Collection/useNftCollectionModel.tsx rename to apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/Collections/useNftCollectionsModel.tsx index f65c37ead358..d14d62a8e132 100644 --- a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/Collection/useNftCollectionModel.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/Collections/useNftCollectionsModel.tsx @@ -1,5 +1,5 @@ import { useCallback, useEffect, useMemo, useState } from "react"; -import { Account } from "@ledgerhq/types-live"; +import { Account, ProtoNFT } from "@ledgerhq/types-live"; import { useDispatch, useSelector } from "react-redux"; import { useHistory } from "react-router-dom"; import { openModal } from "~/renderer/actions/modals"; @@ -7,15 +7,24 @@ import { hiddenNftCollectionsSelector } from "~/renderer/reducers/settings"; import { nftsByCollections } from "@ledgerhq/live-nft/index"; import { useFeature } from "@ledgerhq/live-common/featureFlags/index"; import { isThresholdValid, useNftGalleryFilter } from "@ledgerhq/live-nft-react"; -import { NftsInTheCollections as NftsInTheCollectionsType } from "./index"; -import { filterHiddenCollections, mapCollectionsToStructure } from "../../utils/collectionUtils"; +import { + filterHiddenCollections, + mapCollectionsToStructure, +} from "LLD/features/Collectibles/utils/collectionUtils"; + +type NftsInTheCollections = { + contract: string; + nft: ProtoNFT; + nftsNumber: number; + onClick: (collectionAddress: string) => void; +}; type Props = { account: Account; }; const INCREMENT = 5; -export const useNftCollectionModel = ({ account }: Props) => { +export const useNftCollectionsModel = ({ account }: Props) => { const history = useHistory(); const dispatch = useDispatch(); const nftsFromSimplehashFeature = useFeature("nftsFromSimplehash"); @@ -70,7 +79,7 @@ export const useNftCollectionModel = ({ account }: Props) => { [account.id, collections, hiddenNftCollections], ); - const nftsInTheCollection: NftsInTheCollectionsType[] = useMemo( + const nftsInTheCollection: NftsInTheCollections[] = useMemo( () => mapCollectionsToStructure(filteredCollections, numberOfVisibleCollections, onOpenCollection), [filteredCollections, numberOfVisibleCollections, onOpenCollection], diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/components/CommonStyled/index.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/components/CommonStyled/index.tsx new file mode 100644 index 000000000000..38a963cda32c --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/components/CommonStyled/index.tsx @@ -0,0 +1,27 @@ +import styled from "styled-components"; + +const Footer = styled.footer` + height: 24px; + margin-bottom: 24px; +`; + +const SpinnerContainer = styled.div` + display: flex; + flex: 1; + align-items: center; + justify-content: center; + padding: 20px; +`; +const SpinnerBackground = styled.div` + background: ${p => p.theme.colors.palette.background.paper}; + border-radius: 100%; + padding: 2px; + width: 24px; + height: 24px; + display: flex; + align-items: center; + justify-content: center; + border: 2px solid ${p => p.theme.colors.palette.background.paper}; +`; + +export { Footer, SpinnerBackground, SpinnerContainer }; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/Gallery/DetailDrawer/Actions.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/components/DetailDrawer/Actions.tsx similarity index 100% rename from apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/Gallery/DetailDrawer/Actions.tsx rename to apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/components/DetailDrawer/Actions.tsx diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/Gallery/DetailDrawer/index.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/components/DetailDrawer/index.tsx similarity index 98% rename from apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/Gallery/DetailDrawer/index.tsx rename to apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/components/DetailDrawer/index.tsx index 7748d2d4f95e..de51b35cb188 100644 --- a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/Gallery/DetailDrawer/index.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/components/DetailDrawer/index.tsx @@ -4,7 +4,7 @@ import { DetailDrawer } from "LLD/features/Collectibles/components/DetailDrawer" import useNftDetailDrawer from "LLD/features/Collectibles/hooks/useNftDetailDrawer"; import useCollectibles from "LLD/features/Collectibles/hooks/useCollectibles"; import { NftsDetailDrawerProps } from "LLD/features/Collectibles/types/Nfts"; -import { CollectibleTypeEnum } from "LLD/features/Collectibles/types/Collectibles"; +import { CollectibleTypeEnum } from "LLD/features/Collectibles/types/enum/Collectibles"; import Actions from "./Actions"; const NftDetailDrawer = ({ account, tokenId, isOpened, setIsOpened }: NftsDetailDrawerProps) => { diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/components/TokensList/index.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/components/TokensList/index.tsx new file mode 100644 index 000000000000..57efa57bfc30 --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/components/TokensList/index.tsx @@ -0,0 +1,36 @@ +import React from "react"; +import TokensList from "LLD/features/Collectibles/components/Gallery/TokenList"; +import { useTokensListModel } from "./useTokensListModel"; +import { BaseNftsProps } from "LLD/features/Collectibles/types/Collectibles"; +import NftDetailDrawer from "LLD/features/Collectibles/Nfts/components/DetailDrawer"; + +type ViewProps = ReturnType; + +function View({ + account, + formattedNfts, + isDrawerOpen, + nftIdToOpen, + setIsDrawerOpen, + onItemClick, +}: ViewProps) { + return ( + <> + + {isDrawerOpen && ( + + )} + + ); +} + +const NftTokensList: React.FC = ({ ...props }) => ( + +); + +export default NftTokensList; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/components/TokensList/useTokensListModel.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/components/TokensList/useTokensListModel.tsx new file mode 100644 index 000000000000..f0ee225494fe --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/components/TokensList/useTokensListModel.tsx @@ -0,0 +1,59 @@ +import { TokensListProps } from "LLD/features/Collectibles/types/TokensList"; +import { useSelector } from "react-redux"; +import { getNFTsByListOfIds } from "~/renderer/reducers/accounts"; +import { State } from "~/renderer/reducers"; +import { useNftMetadataBatch } from "@ledgerhq/live-nft-react"; +import { FieldStatus } from "LLD/features/Collectibles/types/enum/DetailDrawer"; +import { BaseNftsProps } from "LLD/features/Collectibles/types/Collectibles"; +import { useMemo, useState } from "react"; + +export const useTokensListModel = ({ nfts, account }: BaseNftsProps): TokensListProps => { + const nftsIdsList: string[] = Object.keys( + nfts.reduce((acc, nft) => ({ ...acc, [nft.id]: nft }), {}), + ); + + const nftsList = useSelector((state: State) => + getNFTsByListOfIds(state, { + nftIds: nftsIdsList, + }), + ); + + const metadata = useNftMetadataBatch( + nftsList.map(nft => ({ + contract: nft?.contract, + tokenId: nft?.tokenId, + currencyId: nft?.currencyId, + })), + ); + + const formattedNfts = useMemo(() => { + return metadata.map((meta, index) => ({ + id: nftsList[index]?.tokenId || "", + metadata: meta.metadata, + nft: nftsList[index], + collectibleId: nftsList[index]?.id || "", + standard: nftsList[index]?.standard || "", + amount: nftsList[index]?.amount || "", + tokenName: meta.metadata?.nftName || meta.metadata?.tokenName || "", + previewUri: meta?.metadata?.medias.preview.uri || "", + mediaType: meta?.metadata?.medias.preview.mediaType || "", + isLoading: meta?.status === FieldStatus.Loading || meta?.status === FieldStatus.Queued, + })); + }, [metadata, nftsList]); + + const [isDrawerOpen, setIsDrawerOpen] = useState(false); + const [nftIdToOpen, setNftIdToOpen] = useState(""); + const onItemClick = (id: string) => { + setNftIdToOpen(id); + setIsDrawerOpen(true); + }; + + return { + account: account, + formattedNfts: formattedNfts, + isDrawerOpen, + nftIdToOpen, + onItemClick, + setIsDrawerOpen, + }; +}; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/screens/Collection/index.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/screens/Collection/index.tsx new file mode 100644 index 000000000000..88805789eb45 --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/screens/Collection/index.tsx @@ -0,0 +1,102 @@ +import React, { memo, useEffect, useState } from "react"; +import useNftCollectionModel from "./useNftCollectionModel"; +import { useTranslation } from "react-i18next"; +import TrackPage from "~/renderer/analytics/TrackPage"; +import Box from "~/renderer/components/Box/Box"; +import Button from "~/renderer/components/Button"; +import Text from "~/renderer/components/Text"; +import { Flex, Icons } from "@ledgerhq/react-ui"; +import { Skeleton, Media, CollectionName, TableLayout } from "LLD/features/Collectibles/components"; +import TokensList from "../../components/TokensList"; +import OperationsList from "~/renderer/components/OperationsList"; +import Spinner from "~/renderer/components/Spinner"; +import { TrackingPageCategory } from "LLD/features/Collectibles/types/enum/Tracking"; +import { Footer, SpinnerContainer, SpinnerBackground } from "../../components/CommonStyled"; + +type ViewProps = ReturnType; + +function View({ + isLoading, + account, + collectionAddress, + nfts, + metadata, + slicedNfts, + listFooterRef, + maxVisibleNFTs, + filterOperation, + onSend, +}: ViewProps) { + const { t } = useTranslation(); + const [areItemsLoading, setAreItemsLoading] = useState(false); + + useEffect(() => { + setAreItemsLoading(maxVisibleNFTs < nfts.length); + }, [maxVisibleNFTs, nfts.length]); + + return ( + <> + + + + + + + + + + + {t("NFT.gallery.collection.header.contract", { + contract: collectionAddress, + })} + + + + + + + + + + + + + {account && } +
+ {areItemsLoading && ( + + + + + + )} +
+ +
+ + ); +} + +const NftCollection: React.FC = () => { + return ; +}; + +export default memo(NftCollection); diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/screens/Collection/useNftCollectionModel.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/screens/Collection/useNftCollectionModel.tsx new file mode 100644 index 000000000000..003b7a375b9e --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/screens/Collection/useNftCollectionModel.tsx @@ -0,0 +1,77 @@ +import { useNftMetadata } from "@ledgerhq/live-nft-react"; +import { nftsByCollections } from "@ledgerhq/live-nft/index"; +import { ProtoNFT, NFT, Operation } from "@ledgerhq/types-live"; +import { useCallback, useEffect, useMemo, useRef, useState } from "react"; +import { useDispatch, useSelector } from "react-redux"; +import { useHistory, useParams } from "react-router-dom"; +import { State } from "~/renderer/reducers"; +import { accountSelector } from "~/renderer/reducers/accounts"; +import { FieldStatus } from "LLD/features/Collectibles/types/enum/DetailDrawer"; +import { openModal } from "~/renderer/actions/modals"; +import { useOnScreen } from "LLD/hooks/useOnScreen"; + +const useNftCollectionModel = () => { + const dispatch = useDispatch(); + const history = useHistory(); + + const { id, collectionAddress } = useParams<{ id: string; collectionAddress: string }>(); + const account = useSelector((state: State) => accountSelector(state, { accountId: id })); + + const listFooterRef = useRef(null); + const [maxVisibleNFTs, setMaxVisibleNFTs] = useState(1); + + const nfts = useMemo<(ProtoNFT | NFT)[]>( + () => (nftsByCollections(account?.nfts, collectionAddress) as (ProtoNFT | NFT)[]) || [], + [account?.nfts, collectionAddress], + ); + + const [nft] = nfts; + const { status, metadata } = useNftMetadata(nft?.contract, nft?.tokenId, account?.currency.id); + const isLoading = useMemo(() => status === FieldStatus.Loading, [status]); + + const onSend = useCallback(() => { + dispatch( + openModal("MODAL_SEND", { + account, + isNFTSend: true, + nftCollection: collectionAddress, + }), + ); + }, [collectionAddress, dispatch, account]); + + const filterOperation = (op: Operation) => + !!op.nftOperations?.length && + !!op.nftOperations.find(nftOp => nftOp?.contract === collectionAddress); + + const updateMaxVisibleNtfs = () => setMaxVisibleNFTs(maxVisibleNFTs => maxVisibleNFTs + 5); + + useOnScreen({ + enabled: maxVisibleNFTs < nfts?.length, + onIntersect: updateMaxVisibleNtfs, + target: listFooterRef, + threshold: 0.5, + }); + + const slicedNfts = useMemo(() => nfts.slice(0, maxVisibleNFTs), [nfts, maxVisibleNFTs]); + + useEffect(() => { + if (slicedNfts.length <= 0) { + history.push(`/account/${account?.id}/`); + } + }, [account?.id, history, slicedNfts.length]); + + return { + isLoading, + collectionAddress, + account, + nfts, + metadata, + slicedNfts, + listFooterRef, + maxVisibleNFTs, + filterOperation, + onSend, + }; +}; + +export default useNftCollectionModel; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/screens/Gallery/components/LazyCollection/index.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/screens/Gallery/components/LazyCollection/index.tsx new file mode 100644 index 000000000000..a962f9a8fce5 --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/screens/Gallery/components/LazyCollection/index.tsx @@ -0,0 +1,67 @@ +import React, { memo, useEffect, useMemo } from "react"; +import { Box, Text } from "@ledgerhq/react-ui"; +import { CollectionName } from "LLD/features/Collectibles/components"; +import TokenList from "LLD/features/Collectibles/Nfts/components/TokensList"; +import { Account, ProtoNFT } from "@ledgerhq/types-live"; +import styled from "styled-components"; + +type LazyCollectionProps = { + account: Account; + collections: [string, ProtoNFT[]][]; + maxVisibleNFTs: number; + onSelectCollection: (contract: string) => void; + setIsLoading: (isLoading: boolean) => void; +}; + +const ClickableCollectionName = styled(Box)` + &:hover { + cursor: pointer; + } +`; + +const LazyCollection: React.FC = ({ + account, + collections, + maxVisibleNFTs, + onSelectCollection, + setIsLoading, +}) => { + const renderedCollections = useMemo(() => { + const renderedCollections: JSX.Element[] = []; + let displayedNFTs = 0; + collections.forEach(([contract, nfts]: [string, ProtoNFT[]]) => { + if (displayedNFTs > maxVisibleNFTs) return; + renderedCollections.push( +
+ onSelectCollection(contract)}> + + + + + {account && ( + <> + + + )} +
, + ); + displayedNFTs += nfts.length; + }); + return renderedCollections; + }, [collections, maxVisibleNFTs, account, onSelectCollection]); + + useEffect(() => { + const isLoading = renderedCollections.length < collections.length; + setIsLoading(isLoading); + }, [collections.length, renderedCollections, setIsLoading]); + + return <>{renderedCollections}; +}; + +export default memo(LazyCollection); diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/screens/Gallery/index.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/screens/Gallery/index.tsx new file mode 100644 index 000000000000..a7fc87cdc88e --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/screens/Gallery/index.tsx @@ -0,0 +1,74 @@ +import React, { memo, useState } from "react"; +import TrackPage from "~/renderer/analytics/TrackPage"; +import useNftGalleryModel from "./useNftGalleryModel"; +import Box from "~/renderer/components/Box"; +import Text from "~/renderer/components/Text"; +import Button from "~/renderer/components/Button"; +import { Flex, Icons } from "@ledgerhq/react-ui"; +import { TableLayout } from "LLD/features/Collectibles/components"; +import { useTranslation } from "react-i18next"; +import { Account } from "@ledgerhq/types-live"; +import Spinner from "~/renderer/components/Spinner"; +import LazyCollection from "./components/LazyCollection"; +import { TrackingPageCategory } from "LLD/features/Collectibles/types/enum/Tracking"; +import { Footer, SpinnerContainer, SpinnerBackground } from "../../components/CommonStyled"; + +type ViewProps = ReturnType; + +function View({ + account, + listFooterRef, + maxVisibleNFTs, + collections, + onSelectCollection, + onSend, +}: ViewProps) { + const { t } = useTranslation(); + const [isLoading, setIsLoading] = useState(false); + + return ( + + + + + + {t("NFT.gallery.title")} + + + + + + +
+ {isLoading ? ( + + + + + + ) : ( + + + {t("operationList.noMoreOperations")} + + + )} +
+
+ ); +} + +const NftGallery: React.FC<{}> = () => ; + +export default memo(NftGallery); diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/screens/Gallery/useNftGalleryModel.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/screens/Gallery/useNftGalleryModel.tsx new file mode 100644 index 000000000000..e22136ad0620 --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Nfts/screens/Gallery/useNftGalleryModel.tsx @@ -0,0 +1,103 @@ +import { useHistory, useParams } from "react-router-dom"; +import { useDispatch, useSelector } from "react-redux"; +import { State } from "~/renderer/reducers"; +import { accountSelector } from "~/renderer/reducers/accounts"; +import { hiddenNftCollectionsSelector } from "~/renderer/reducers/settings"; +import { useNftGalleryFilter, isThresholdValid } from "@ledgerhq/live-nft-react"; +import { nftsByCollections } from "@ledgerhq/live-nft"; +import { useCallback, useEffect, useMemo, useRef, useState } from "react"; +import { openModal } from "~/renderer/actions/modals"; +import { useOnScreen } from "LLD/hooks/useOnScreen"; +import useFeature from "@ledgerhq/live-common/featureFlags/useFeature"; +import { ChainsEnum } from "LLD/features/Collectibles/types/enum/Chains"; + +const defaultNumberOfVisibleNfts = 10; + +const useNftGalleryModel = () => { + const dispatch = useDispatch(); + const history = useHistory(); + const { id } = useParams<{ id: string }>(); + + const nftsFromSimplehashFeature = useFeature("nftsFromSimplehash"); + const threshold = nftsFromSimplehashFeature?.params?.threshold; + + const listFooterRef = useRef(null); + const [maxVisibleNFTs, setMaxVisibleNFTs] = useState(defaultNumberOfVisibleNfts); + + const { account, hiddenNftCollections } = useSelector((state: State) => ({ + account: accountSelector(state, { accountId: id }), + hiddenNftCollections: hiddenNftCollectionsSelector(state), + })); + + const { nfts, fetchNextPage, hasNextPage } = useNftGalleryFilter({ + nftsOwned: account?.nfts || [], + addresses: account?.freshAddress || "", + chains: [account?.currency.id ?? ChainsEnum.ETHEREUM], + threshold: isThresholdValid(threshold) ? Number(threshold) : 75, + }); + + const collections = useMemo(() => { + const allNfts = nftsFromSimplehashFeature?.enabled ? nfts : account?.nfts; + return Object.entries(nftsByCollections(allNfts)).filter( + ([contract]) => !hiddenNftCollections.includes(`${account?.id}|${contract}`), + ); + }, [account?.id, account?.nfts, hiddenNftCollections, nfts, nftsFromSimplehashFeature?.enabled]); + + useEffect(() => { + if (collections.length < 1) { + history.push(`/account/${account?.id}/`); + } + }, [account?.id, history, collections.length]); + + const onSend = useCallback(() => { + dispatch(openModal("MODAL_SEND", { account, isNFTSend: true })); + }, [dispatch, account]); + + const onSelectCollection = useCallback( + (collectionAddress: string) => { + history.push({ + pathname: `/account/${account?.id}/nft-collection/${collectionAddress}`, + }); + }, + [account?.id, history], + ); + + const updateMaxVisibleNtfs = useCallback(() => { + setMaxVisibleNFTs(prevMaxVisibleNFTs => prevMaxVisibleNFTs + 5); + if (hasNextPage) { + fetchNextPage(); + } + }, [hasNextPage, fetchNextPage]); + + useOnScreen({ + enabled: maxVisibleNFTs < nfts?.length, + onIntersect: updateMaxVisibleNtfs, + target: listFooterRef, + threshold: 0.5, + }); + + const nftsByCollection = nfts.reduce( + (acc, nft) => { + const collectionKey = nft.contract || "-"; + if (!acc[collectionKey]) { + acc[collectionKey] = []; + } + acc[collectionKey].push(nft); + return acc; + }, + {} as Record, + ); + + return { + account, + hiddenNftCollections, + nftsByCollection, + listFooterRef, + collections, + maxVisibleNFTs, + onSend, + onSelectCollection, + }; +}; + +export default useNftGalleryModel; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/Icons.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/Icons.tsx new file mode 100644 index 000000000000..feb7ec041fe5 --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/Icons.tsx @@ -0,0 +1,73 @@ +import React from "react"; +import { Icons } from "@ledgerhq/react-ui"; +import { IconProps } from "../../types/Collection"; + +export const mappingKeysWithIconAndName = { + alpha: { icon: (props: IconProps) => , name: "Alpha" }, + black_epic: { + icon: (props: IconProps) => , + name: "Black Epic", + }, + black_legendary: { + icon: (props: IconProps) => , + name: "Black Legendary", + }, + black_mythic: { + icon: (props: IconProps) => , + name: "Black Mythic", + }, + black_rare: { + icon: (props: IconProps) => , + name: "Black Rare", + }, + black_uncommon: { + icon: (props: IconProps) => , + name: "Black Uncommon", + }, + block_9: { icon: (props: IconProps) => , name: "Block 9" }, + block_9_450x: { + icon: (props: IconProps) => , + name: "Block 9 450x", + }, + block_78: { icon: (props: IconProps) => , name: "Block 78" }, + block_286: { + icon: (props: IconProps) => , + name: "Block 286", + }, + block_666: { + icon: (props: IconProps) => , + name: "Block 666", + }, + common: { icon: (props: IconProps) => , name: "Common" }, + epic: { icon: (props: IconProps) => , name: "Epic" }, + first_tx: { + icon: (props: IconProps) => , + name: "First Transaction", + }, + hitman: { icon: (props: IconProps) => , name: "Hitman" }, + jpeg: { icon: (props: IconProps) => , name: "JPEG" }, + legacy: { icon: (props: IconProps) => , name: "Legacy" }, + legendary: { + icon: (props: IconProps) => , + name: "Legendary", + }, + mythic: { icon: (props: IconProps) => , name: "Mythic" }, + nakamoto: { icon: (props: IconProps) => , name: "Nakamoto" }, + omega: { icon: (props: IconProps) => , name: "Omega" }, + paliblock: { + icon: (props: IconProps) => , + name: "PaliBlock Palindrome", + }, + palindrome: { + icon: (props: IconProps) => , + name: "Palindrome", + }, + palinception: { + icon: (props: IconProps) => , + name: "Palinception", + }, + pizza: { icon: (props: IconProps) => , name: "Pizza" }, + rare: { icon: (props: IconProps) => , name: "Rare" }, + uncommon: { icon: (props: IconProps) => , name: "Uncommon" }, + vintage: { icon: (props: IconProps) => , name: "Vintage" }, +}; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/Inscriptions/index.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/Inscriptions/index.tsx new file mode 100644 index 000000000000..4691340a2152 --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/Inscriptions/index.tsx @@ -0,0 +1,80 @@ +import React from "react"; +import { Account } from "@ledgerhq/types-live"; +import { Box, Flex } from "@ledgerhq/react-ui"; +import { useInscriptionsModel } from "./useInscriptionsModel"; +import TableContainer from "~/renderer/components/TableContainer"; +import TableHeader from "LLD/features/Collectibles/components/Collection/TableHeader"; +import { OrdinalsRowProps, TableHeaderTitleKey } from "LLD/features/Collectibles/types/Collection"; +import TableRow from "LLD/features/Collectibles/components/Collection/TableRow"; +import ShowMore from "LLD/features/Collectibles/components/Collection/ShowMore"; +import { MediaProps } from "LLD/features/Collectibles/types/Media"; + +type ViewProps = ReturnType; + +type Props = { + account: Account; +}; + +export type InscriptionsItemProps = { + isLoading: boolean; + tokenName: string; + collectionName: string; + tokenIcons: OrdinalsRowProps["tokenIcons"]; + media: MediaProps; + onClick: () => void; +}; + +const Item: React.FC = ({ + isLoading, + tokenName, + collectionName, + tokenIcons, + media, + onClick, +}) => { + return ( + + ); +}; + +function View({ displayedObjects, displayShowMore, onShowMore }: ViewProps) { + return ( + + + + {/** titlekey doesn't need to be translated so we keep it hard coded */} + {displayedObjects ? ( + displayedObjects.map((item, index) => ( + + )) + ) : ( + + {"NOTHING TO SHOW"} + + )} + {displayShowMore && } + + + ); +} + +const Inscriptions: React.FC = ({ account }: Props) => { + return ; +}; + +export default Inscriptions; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/Inscriptions/useInscriptionsModel.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/Inscriptions/useInscriptionsModel.tsx new file mode 100644 index 000000000000..05900b0790e9 --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/Inscriptions/useInscriptionsModel.tsx @@ -0,0 +1,32 @@ +import { useEffect, useMemo, useState } from "react"; +import { Account } from "@ledgerhq/types-live"; +import { InscriptionsItemProps } from "./index"; +import { mockedItems as InscriptionsMocked } from "LLD/features/Collectibles/__integration__/mockedInscriptions"; +type Props = { + account: Account; +}; + +export const useInscriptionsModel = ({ account }: Props) => { + const [displayShowMore, setDisplayShowMore] = useState(false); + const [displayedObjects, setDisplayedObjects] = useState([]); + + const mockedItems: InscriptionsItemProps[] = useMemo(() => [...InscriptionsMocked], []); + + useEffect(() => { + if (mockedItems.length > 3) setDisplayShowMore(true); + setDisplayedObjects(mockedItems.slice(0, 3)); + }, [mockedItems]); + + const onShowMore = () => { + setDisplayedObjects(prevDisplayedObjects => { + const newDisplayedObjects = [ + ...prevDisplayedObjects, + ...mockedItems.slice(prevDisplayedObjects.length, prevDisplayedObjects.length + 3), + ]; + if (newDisplayedObjects.length === mockedItems.length) setDisplayShowMore(false); + return newDisplayedObjects; + }); + }; + + return { account, displayedObjects, displayShowMore, onShowMore }; +}; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/RareSats/Item.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/RareSats/Item.tsx new file mode 100644 index 000000000000..6845c31536f4 --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/RareSats/Item.tsx @@ -0,0 +1,43 @@ +import React from "react"; +import RowLayout from "LLD/features/Collectibles/Ordinals/components/RareSats/RowLayout"; +import IconContainer from "LLD/features/Collectibles/components/Collection/TableRow/IconContainer"; +import TokenTitle from "LLD/features/Collectibles/components/Collection/TableRow/TokenTitle"; +import { RareSat } from "LLD/features/Collectibles/types/Ordinals"; +import { Text, Flex } from "@ledgerhq/react-ui"; + +const Item = ({ + icons, + name, + year, + count, + utxo_size, + isMultipleRow, +}: RareSat & { isMultipleRow: boolean }) => { + const firstColumn = ( + + {icons && } + + + ); + const secondColumn = ( + + {year} + + ); + const thirdColumn = ( + + {utxo_size} + + ); + + return ( + + ); +}; + +export default Item; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/RareSats/RowLayout.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/RareSats/RowLayout.tsx new file mode 100644 index 000000000000..31449ce9ec39 --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/RareSats/RowLayout.tsx @@ -0,0 +1,53 @@ +import React from "react"; +import { Flex } from "@ledgerhq/react-ui"; +import styled from "styled-components"; + +type Props = { + firstColumnElement: JSX.Element; + secondColumnElement: JSX.Element; + thirdColumnElement?: JSX.Element; + bgColor?: string; + isMultipleRow?: boolean; +}; + +const Container = styled(Flex)` + &:first-child { + border-top: 1px solid ${p => p.theme.colors.palette.text.shade10}; + padding-top: 15px; + } + &:last-child { + padding-bottom: 15px; + } +`; + +const RowLayout: React.FC = ({ + firstColumnElement, + secondColumnElement, + thirdColumnElement, + bgColor, + isMultipleRow, +}) => { + const verticalPadding = isMultipleRow ? 1 : 3; + return ( + + {firstColumnElement} + + + {secondColumnElement} + + + {thirdColumnElement} + + + + ); +}; + +export default RowLayout; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/RareSats/TableHeader.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/RareSats/TableHeader.tsx new file mode 100644 index 000000000000..8ce914bf20f9 --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/RareSats/TableHeader.tsx @@ -0,0 +1,27 @@ +import React from "react"; +import { Text } from "@ledgerhq/react-ui"; +import { useTranslation } from "react-i18next"; +import RowLayout from "./RowLayout"; + +export const TableHeader = () => { + const { t } = useTranslation(); + + const Column = (translationKey: string) => ( + + {t(translationKey)} + + ); + + const firstColumn = Column("ordinals.rareSats.table.type"); + const secondColumn = Column("ordinals.rareSats.table.year"); + const thirdColumn = Column("ordinals.rareSats.table.utxo"); + + return ( + + ); +}; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/RareSats/helpers.ts b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/RareSats/helpers.ts new file mode 100644 index 000000000000..23e7080c2dea --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/RareSats/helpers.ts @@ -0,0 +1,107 @@ +import { mappingKeysWithIconAndName } from "../Icons"; +import { MappingKeys } from "LLD/features/Collectibles/types/Ordinals"; +import { IconProps } from "LLD/features/Collectibles/types/Collection"; +import { RareSat } from "LLD/features/Collectibles/types/Ordinals"; +import { + Satributes, + Subrange, + SatRange, + MockedRareSat, + Sat, + Icons, +} from "LLD/features/Collectibles/types/RareSats"; + +export const processSatType = ( + type: string, + satributes: Satributes, + icons: Icons, + displayNames: string[], + totalCount: number, +) => { + const attribute = satributes[type as MappingKeys]; + if (attribute && attribute.count) { + displayNames.push(type); + if (mappingKeysWithIconAndName[type as MappingKeys]) { + icons[type] = mappingKeysWithIconAndName[type as MappingKeys].icon; + } + totalCount = attribute.count; + } + return { displayNames, totalCount }; +}; + +export const processSatTypes = (satTypes: string[], satributes: Satributes) => { + let displayNames: string[] = []; + let totalCount = 0; + const icons: { [key: string]: ({ size, color, style }: IconProps) => JSX.Element } = {}; + + satTypes.forEach(type => { + const result = processSatType(type, satributes, icons, displayNames, totalCount); + displayNames = result.displayNames; + totalCount = result.totalCount; + }); + + return { displayNames, totalCount, icons }; +}; + +export const processSubrange = ( + subrange: Subrange, + satributes: Satributes, + year: string, + value: number, +) => { + const { sat_types } = subrange; + const { displayNames, totalCount, icons } = processSatTypes(sat_types, satributes); + + const name = displayNames + .map(dn => mappingKeysWithIconAndName[dn.toLowerCase().replace(" ", "_") as MappingKeys]?.name) + .filter(Boolean) + .join(" / "); + + return { + count: totalCount.toString() + (totalCount === 1 ? " sat" : " sats"), + display_name: displayNames.join(" / "), + year, + utxo_size: value.toString(), + icons, + name, + }; +}; + +export const processSatRanges = (satRanges: SatRange[], satributes: Satributes) => { + return satRanges.flatMap(range => { + const { year, value, subranges } = range; + return subranges.flatMap(subrange => processSubrange(subrange, satributes, year, value)); + }); +}; + +export const processRareSat = (sat: Sat) => { + const { extra_metadata } = sat; + const satributes = extra_metadata.utxo_details.satributes as Satributes; + const satRanges = extra_metadata.utxo_details.sat_ranges; + return processSatRanges(satRanges, satributes); +}; + +export const processRareSats = (rareSats: MockedRareSat[]) => { + return rareSats.flatMap(item => item.nfts.flatMap(processRareSat)); +}; + +export const groupRareSats = (processedRareSats: RareSat[]) => { + return processedRareSats.reduce( + (acc, sat) => { + if (!acc[sat.utxo_size]) { + acc[sat.utxo_size] = []; + } + acc[sat.utxo_size].push(sat); + return acc; + }, + {} as Record, + ); +}; + +export const finalizeRareSats = (groupedRareSats: Record) => { + return Object.entries(groupedRareSats).map(([utxo_size, sats]) => ({ + utxo_size, + sats, + isMultipleRow: sats.length > 1, + })); +}; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/RareSats/index.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/RareSats/index.tsx new file mode 100644 index 000000000000..838d4a0c957f --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/RareSats/index.tsx @@ -0,0 +1,43 @@ +import React from "react"; +import { useRareSatsModel } from "./useRareSatsModel"; +import TableContainer from "~/renderer/components/TableContainer"; +import TableHeader from "LLD/features/Collectibles/components/Collection/TableHeader"; +import Item from "./Item"; +import { TableHeaderTitleKey } from "LLD/features/Collectibles/types/Collection"; +import { Box, Flex } from "@ledgerhq/react-ui"; +import { TableHeader as TableHeaderContainer } from "./TableHeader"; + +type ViewProps = ReturnType; + +function View({ rareSats }: ViewProps) { + return ( + + + + + + {rareSats + ? rareSats.map(rareSatGroup => ( + + {rareSatGroup.sats.map(rareSat => ( + + ))} + + )) + : null} + {/** wait for design */} + + + + ); +} + +const RareSats = () => { + return ; +}; + +export default RareSats; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/RareSats/useRareSatsModel.ts b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/RareSats/useRareSatsModel.ts new file mode 100644 index 000000000000..931c590a56d8 --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/components/RareSats/useRareSatsModel.ts @@ -0,0 +1,12 @@ +import { mockedRareSats } from "LLD/features/Collectibles/__integration__/mockedRareSats"; +import { processRareSats, groupRareSats, finalizeRareSats } from "./helpers"; + +type RareSatsProps = {}; + +export const useRareSatsModel = (_props: RareSatsProps) => { + const processedRareSats = processRareSats(mockedRareSats); + const groupedRareSats = groupRareSats(processedRareSats); + const finalRareSats = finalizeRareSats(groupedRareSats); + + return { rareSats: finalRareSats }; +}; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/screens/Account/index.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/screens/Account/index.tsx new file mode 100644 index 000000000000..30aed15cccc5 --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/Ordinals/screens/Account/index.tsx @@ -0,0 +1,20 @@ +import React from "react"; +import { Account } from "@ledgerhq/types-live"; +import Inscriptions from "../../components/Inscriptions"; +import RareSats from "../../components/RareSats"; +import { Flex } from "@ledgerhq/react-ui"; + +type Props = { + account: Account; +}; + +const OrdinalsAccount: React.FC = ({ account }) => { + return ( + + + + + ); +}; + +export default OrdinalsAccount; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/__integration__/mockedAccount.ts b/apps/ledger-live-desktop/src/newArch/features/Collectibles/__integration__/mockedAccount.ts new file mode 100644 index 000000000000..a58285206bfa --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/__integration__/mockedAccount.ts @@ -0,0 +1,197 @@ +import { Account } from "@ledgerhq/types-live"; +import BigNumber from "bignumber.js"; + +export const account: Account = { + type: "Account", + id: "js:2:ethereum:0x823ePB4bDa11da33a7F1C907D1171e5995Fe33c7:", + used: true, + seedIdentifier: "", + derivationMode: "", + index: 2, + freshAddress: "", + freshAddressPath: "", + blockHeight: 20372078, + creationDate: new Date(), + balance: new BigNumber(0), + spendableBalance: new BigNumber(0), + operations: [], + operationsCount: 0, + pendingOperations: [], + currency: { + type: "CryptoCurrency", + id: "ethereum", + coinType: 60, + name: "Ethereum", + managerAppName: "Ethereum", + ticker: "ETH", + scheme: "ethereum", + color: "#0ebdcd", + symbol: "Ξ", + family: "evm", + blockAvgTime: 15, + units: [ + { + name: "ether", + code: "ETH", + magnitude: 18, + }, + { + name: "Gwei", + code: "Gwei", + magnitude: 9, + }, + { + name: "Mwei", + code: "Mwei", + magnitude: 6, + }, + { + name: "Kwei", + code: "Kwei", + magnitude: 3, + }, + { + name: "wei", + code: "wei", + magnitude: 0, + }, + ], + ethereumLikeInfo: { + chainId: 1, + }, + explorerViews: [ + { + tx: "https://etherscan.io/tx/$hash", + address: "https://etherscan.io/address/$address", + token: "https://etherscan.io/token/$contractAddress?a=$address", + }, + ], + keywords: ["eth", "ethereum"], + explorerId: "eth", + }, + lastSyncDate: new Date(), + swapHistory: [], + syncHash: "", + balanceHistoryCache: { + HOUR: { + balances: [], + latestDate: 1721768400000, + }, + DAY: { + balances: [], + latestDate: 1721685600000, + }, + WEEK: { + balances: [], + latestDate: 1721512800000, + }, + }, + subAccounts: [], + nfts: [ + { + id: "js:2:ethereum:0x823ePB4bDa11da33a7F1C907D1171e5995Fe33c7:+0xe3BE0054Da2F8da5002E8bdD8AA4c7fDf851E86D+34+ethereum", + tokenId: "34", + amount: new BigNumber(1), + contract: "0xe3BE0054Da2F8da5002E8bdD8AA4c7fDf851E86D", + standard: "ERC721", + currencyId: "ethereum", + }, + { + id: "js:2:ethereum:0x823ePB4bDa11da33a7F1C907D1171e5995Fe33c7:+0xe3BE0054Da2F8da5002E8bdD8AA4c7fDf851E86D+32+ethereum", + tokenId: "32", + amount: new BigNumber(1), + contract: "0xe3BE0054Da2F8da5002E8bdD8AA4c7fDf851E86D", + standard: "ERC721", + currencyId: "ethereum", + }, + { + id: "js:2:ethereum:0x823ePB4bDa11da33a7F1C907D1171e5995Fe33c7:+0xe3BE0054Da2F8da5002E8bdD8AA4c7fDf851E86D+35+ethereum", + tokenId: "35", + amount: new BigNumber(1), + contract: "0xe3BE0054Da2F8da5002E8bdD8AA4c7fDf851E86D", + standard: "ERC721", + currencyId: "ethereum", + }, + { + id: "js:2:ethereum:0x823ePB4bDa11da33a7F1C907D1171e5995Fe33c7:+0xe3BE0054Da2F8da5002E8bdD8AA4c7fDf851E86D+31+ethereum", + tokenId: "31", + amount: new BigNumber(1), + contract: "0xe3BE0054Da2F8da5002E8bdD8AA4c7fDf851E86D", + standard: "ERC721", + currencyId: "ethereum", + }, + { + id: "js:2:ethereum:0x823ePB4bDa11da33a7F1C907D1171e5995Fe33c7:+0xe3BE0054Da2F8da5002E8bdD8AA4c7fDf851E86D+4+ethereum", + tokenId: "4", + amount: new BigNumber(1), + contract: "0xe3BE0054Da2F8da5002E8bdD8AA4c7fDf851E86D", + standard: "ERC721", + currencyId: "ethereum", + }, + { + id: "js:2:ethereum:0x823ePB4bDa11da33a7F1C907D1171e5995Fe33c7:+0x92E64D1a27f4F42ecAF0EF7f725f119751113A38+564+ethereum", + tokenId: "564", + amount: new BigNumber(1), + contract: "0x92E64D1a27f4F42ecAF0EF7f725f119751113A38", + standard: "ERC721", + currencyId: "ethereum", + }, + + { + id: "js:2:ethereum:0x823ePB4bDa11da33a7F1C907D1171e5995Fe33c7:+0x19DBc1c820dd3F13260829a4E06Dda6d9EF758DB+95+ethereum", + tokenId: "95", + amount: new BigNumber(1), + contract: "0x19DBc1c820dd3F13260829a4E06Dda6d9EF758DB", + standard: "ERC721", + currencyId: "ethereum", + }, + { + id: "js:2:ethereum:0x823ePB4bDa11da33a7F1C907D1171e5995Fe33c7:+0xfcA598e0Fcfe1ec1305b451c1d60498DB511fA70+105+ethereum", + tokenId: "105", + amount: new BigNumber(1), + contract: "0xfcA598e0Fcfe1ec1305b451c1d60498DB511fA70", + standard: "ERC721", + currencyId: "ethereum", + }, + { + id: "js:2:ethereum:0x823ePB4bDa11da33a7F1C907D1171e5995Fe33c7:+0xe064E0b6cEca44f561752a232C4395c0d52Ed0c4+23+ethereum", + tokenId: "23", + amount: new BigNumber(1), + contract: "0xe064E0b6cEca44f561752a232C4395c0d52Ed0c4", + standard: "ERC721", + currencyId: "ethereum", + }, + { + id: "js:2:ethereum:0x823ePB4bDa11da33a7F1C907D1171e5995Fe33c7:+0xdFDE78d2baEc499fe18f2bE74B6c287eED9511d7+33000139+ethereum", + tokenId: "33000139", + amount: new BigNumber(1), + contract: "0xdFDE78d2baEc499fe18f2bE74B6c287eED9511d7", + standard: "ERC721", + currencyId: "ethereum", + }, + { + id: "js:2:ethereum:0x823ePB4bDa11da33a7F1C907D1171e5995Fe33c7:+0xa7d8d9ef8D8Ce8992Df33D8b8CF4Aebabd5bD270+225000979+ethereum", + tokenId: "225000979", + amount: new BigNumber(1), + contract: "0xa7d8d9ef8D8Ce8992Df33D8b8CF4Aebabd5bD270", + standard: "ERC721", + currencyId: "ethereum", + }, + { + id: "js:2:ethereum:0x823ePB4bDa11da33a7F1C907D1171e5995Fe33c7:+0xf2D8eBF6BC7c4A59D72358BB4031A9ad1010b787+0+ethereum", + tokenId: "0", + amount: new BigNumber(1), + contract: "0xf2D8eBF6BC7c4A59D72358BB4031A9ad1010b787", + standard: "ERC1155", + currencyId: "ethereum", + }, + { + id: "js:2:ethereum:0x823ePB4bDa11da33a7F1C907D1171e5995Fe33c7:+0x9D0f5277D19075eC1201fF94a483c5bCEe718d20+458+ethereum", + tokenId: "458", + amount: new BigNumber(1), + contract: "0x9D0f5277D19075eC1201fF94a483c5bCEe718d20", + standard: "ERC721", + currencyId: "ethereum", + }, + ], +}; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/__integration__/mockedInscriptions.ts b/apps/ledger-live-desktop/src/newArch/features/Collectibles/__integration__/mockedInscriptions.ts new file mode 100644 index 000000000000..9d849c33eae6 --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/__integration__/mockedInscriptions.ts @@ -0,0 +1,90 @@ +import { Icons } from "@ledgerhq/react-ui"; +import { InscriptionsItemProps } from "../Ordinals/components/Inscriptions"; + +export const mockedItems: InscriptionsItemProps[] = [ + { + isLoading: false, + tokenName: "NodeMonke#5673", + collectionName: "NodeMonkes", + tokenIcons: [Icons.OrdinalsAlpha, Icons.OrdinalsPaliblockPalindrome], + media: { + uri: "https://www.cryptoslam.io/_next/image?url=https%3A%2F%2Fd6rvidx1ucs57.cloudfront.net%2Fcryptoslam-token-images.s3.amazonaws.com%2FBitcoin%2Fnodemonkes%2Fimage%2Ff976d219206858d782cccd90d25882cc77cafd3d6c159728f0d3407e25961ab0i0.png%3Fd%3D354%26u%3Dhttps%253A%252F%252Fcryptoslam-token-images.s3.amazonaws.com%252FBitcoin%252Fnodemonkes%252Fimage%252Ff976d219206858d782cccd90d25882cc77cafd3d6c159728f0d3407e25961ab0i0.png&w=1920&q=75", + previewUri: + "https://www.cryptoslam.io/_next/image?url=https%3A%2F%2Fd6rvidx1ucs57.cloudfront.net%2Fcryptoslam-token-images.s3.amazonaws.com%2FBitcoin%2Fnodemonkes%2Fimage%2Ff976d219206858d782cccd90d25882cc77cafd3d6c159728f0d3407e25961ab0i0.png%3Fd%3D354%26u%3Dhttps%253A%252F%252Fcryptoslam-token-images.s3.amazonaws.com%252FBitcoin%252Fnodemonkes%252Fimage%252Ff976d219206858d782cccd90d25882cc77cafd3d6c159728f0d3407e25961ab0i0.png&w=1920&q=75", + mediaType: "image", + isLoading: false, + useFallback: true, + contentType: "image", + }, + onClick: () => console.log("clicked"), + }, + { + isLoading: false, + tokenName: "NodeMonke#5673#22", + collectionName: "NodeMonkes#2", + tokenIcons: [Icons.OrdinalsAlpha, Icons.OrdinalsPaliblockPalindrome], + media: { + uri: "https://www.cryptoslam.io/_next/image?url=https%3A%2F%2Fd6rvidx1ucs57.cloudfront.net%2Fcryptoslam-token-images.s3.amazonaws.com%2FBitcoin%2Fnodemonkes%2Fimage%2F33199e5e35a90b516d274e8c076ca205436db00a36bc5a99d2f0e26110ca7abai0.png%3Fd%3D354%26u%3Dhttps%253A%252F%252Fcryptoslam-token-images.s3.amazonaws.com%252FBitcoin%252Fnodemonkes%252Fimage%252F33199e5e35a90b516d274e8c076ca205436db00a36bc5a99d2f0e26110ca7abai0.png&w=1920&q=75", + previewUri: + "https://www.cryptoslam.io/_next/image?url=https%3A%2F%2Fd6rvidx1ucs57.cloudfront.net%2Fcryptoslam-token-images.s3.amazonaws.com%2FBitcoin%2Fnodemonkes%2Fimage%2F33199e5e35a90b516d274e8c076ca205436db00a36bc5a99d2f0e26110ca7abai0.png%3Fd%3D354%26u%3Dhttps%253A%252F%252Fcryptoslam-token-images.s3.amazonaws.com%252FBitcoin%252Fnodemonkes%252Fimage%252F33199e5e35a90b516d274e8c076ca205436db00a36bc5a99d2f0e26110ca7abai0.png&w=1920&q=75", + mediaType: "image", + isLoading: false, + useFallback: true, + contentType: "image", + }, + onClick: () => console.log("clicked"), + }, + { + isLoading: false, + tokenName: "NodeMonke#5673#33", + collectionName: "NodeMonkes#2", + tokenIcons: [], + media: { + uri: "https://www.cryptoslam.io/_next/image?url=https%3A%2F%2Fd6rvidx1ucs57.cloudfront.net%2Fcryptoslam-token-images.s3.amazonaws.com%2FBitcoin%2Fnodemonkes%2Fimage%2F33199e5e35a90b516d274e8c076ca205436db00a36bc5a99d2f0e26110ca7abai0.png%3Fd%3D354%26u%3Dhttps%253A%252F%252Fcryptoslam-token-images.s3.amazonaws.com%252FBitcoin%252Fnodemonkes%252Fimage%252F33199e5e35a90b516d274e8c076ca205436db00a36bc5a99d2f0e26110ca7abai0.png&w=1920&q=75", + previewUri: + "https://www.cryptoslam.io/_next/image?url=https%3A%2F%2Fd6rvidx1ucs57.cloudfront.net%2Fcryptoslam-token-images.s3.amazonaws.com%2FBitcoin%2Fnodemonkes%2Fimage%2F33199e5e35a90b516d274e8c076ca205436db00a36bc5a99d2f0e26110ca7abai0.png%3Fd%3D354%26u%3Dhttps%253A%252F%252Fcryptoslam-token-images.s3.amazonaws.com%252FBitcoin%252Fnodemonkes%252Fimage%252F33199e5e35a90b516d274e8c076ca205436db00a36bc5a99d2f0e26110ca7abai0.png&w=1920&q=75", + mediaType: "image", + isLoading: false, + useFallback: true, + contentType: "image", + }, + onClick: () => console.log("clicked"), + }, + { + isLoading: false, + tokenName: "NodeMonke#5673#44", + collectionName: "NodeMonkes#2", + tokenIcons: [Icons.OrdinalsBlackLegendary], + media: { + uri: "https://www.cryptoslam.io/_next/image?url=https%3A%2F%2Fd6rvidx1ucs57.cloudfront.net%2Fcryptoslam-token-images.s3.amazonaws.com%2FBitcoin%2Fnodemonkes%2Fimage%2F33199e5e35a90b516d274e8c076ca205436db00a36bc5a99d2f0e26110ca7abai0.png%3Fd%3D354%26u%3Dhttps%253A%252F%252Fcryptoslam-token-images.s3.amazonaws.com%252FBitcoin%252Fnodemonkes%252Fimage%252F33199e5e35a90b516d274e8c076ca205436db00a36bc5a99d2f0e26110ca7abai0.png&w=1920&q=75", + previewUri: + "https://www.cryptoslam.io/_next/image?url=https%3A%2F%2Fd6rvidx1ucs57.cloudfront.net%2Fcryptoslam-token-images.s3.amazonaws.com%2FBitcoin%2Fnodemonkes%2Fimage%2F33199e5e35a90b516d274e8c076ca205436db00a36bc5a99d2f0e26110ca7abai0.png%3Fd%3D354%26u%3Dhttps%253A%252F%252Fcryptoslam-token-images.s3.amazonaws.com%252FBitcoin%252Fnodemonkes%252Fimage%252F33199e5e35a90b516d274e8c076ca205436db00a36bc5a99d2f0e26110ca7abai0.png&w=1920&q=75", + mediaType: "image", + isLoading: false, + useFallback: true, + contentType: "image", + }, + onClick: () => console.log("clicked"), + }, + { + isLoading: false, + tokenName: "NodeMonke#5673#55", + collectionName: "NodeMonkes#2", + tokenIcons: [ + Icons.OrdinalsBlock9450X, + Icons.OrdinalsPaliblockPalindrome, + Icons.OrdinalsBlock9, + Icons.OrdinalsHitman, + ], + media: { + uri: "https://www.cryptoslam.io/_next/image?url=https%3A%2F%2Fd6rvidx1ucs57.cloudfront.net%2Fcryptoslam-token-images.s3.amazonaws.com%2FBitcoin%2Fnodemonkes%2Fimage%2F33199e5e35a90b516d274e8c076ca205436db00a36bc5a99d2f0e26110ca7abai0.png%3Fd%3D354%26u%3Dhttps%253A%252F%252Fcryptoslam-token-images.s3.amazonaws.com%252FBitcoin%252Fnodemonkes%252Fimage%252F33199e5e35a90b516d274e8c076ca205436db00a36bc5a99d2f0e26110ca7abai0.png&w=1920&q=75", + previewUri: + "https://www.cryptoslam.io/_next/image?url=https%3A%2F%2Fd6rvidx1ucs57.cloudfront.net%2Fcryptoslam-token-images.s3.amazonaws.com%2FBitcoin%2Fnodemonkes%2Fimage%2F33199e5e35a90b516d274e8c076ca205436db00a36bc5a99d2f0e26110ca7abai0.png%3Fd%3D354%26u%3Dhttps%253A%252F%252Fcryptoslam-token-images.s3.amazonaws.com%252FBitcoin%252Fnodemonkes%252Fimage%252F33199e5e35a90b516d274e8c076ca205436db00a36bc5a99d2f0e26110ca7abai0.png&w=1920&q=75", + mediaType: "image", + isLoading: false, + useFallback: true, + contentType: "image", + }, + onClick: () => console.log("clicked"), + }, +]; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/__integration__/mockedRareSats.ts b/apps/ledger-live-desktop/src/newArch/features/Collectibles/__integration__/mockedRareSats.ts new file mode 100644 index 000000000000..c7413c9fae4f --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/__integration__/mockedRareSats.ts @@ -0,0 +1,1384 @@ +// Mock account from Simplehash Docs +export const mockedRareSats = [ + { + next_cursor: null, + next: null, + previous: null, + nfts: [ + { + nft_id: "utxo.7893390614d9a5608e39ea637e5794f7564d3fcdd5ad46105f349c2cf45272fb.1", + chain: "utxo", + contract_address: "", + token_id: "1", + name: null, + description: null, + previews: { + image_small_url: null, + image_medium_url: null, + image_large_url: null, + image_opengraph_url: null, + blurhash: null, + predominant_color: null, + }, + image_url: null, + image_properties: null, + video_url: null, + video_properties: null, + audio_url: null, + audio_properties: null, + model_url: null, + model_properties: null, + other_url: null, + other_properties: null, + background_color: null, + external_url: null, + created_date: "2024-03-14T11:34:34", + status: "minted", + token_count: 1, + owner_count: 1, + owners: [ + { + owner_address: "", + quantity: 1, + quantity_string: "1", + first_acquired_date: "2024-03-14T11:34:34", + last_acquired_date: "2024-03-14T11:34:34", + }, + ], + contract: { + type: "UTXO", + name: null, + symbol: null, + deployed_by: null, + deployed_via_contract: null, + owned_by: null, + has_multiple_collections: false, + }, + collection: { + collection_id: null, + name: null, + description: null, + image_url: null, + image_properties: null, + banner_image_url: null, + category: null, + is_nsfw: null, + external_url: null, + twitter_username: null, + discord_url: null, + instagram_username: null, + medium_username: null, + telegram_url: null, + marketplace_pages: [], + metaplex_mint: null, + metaplex_candy_machine: null, + metaplex_first_verified_creator: null, + spam_score: null, + floor_prices: [], + top_bids: [], + distinct_owner_count: null, + distinct_nft_count: null, + total_quantity: null, + chains: [], + top_contracts: [], + collection_royalties: [], + }, + last_sale: null, + first_created: { + minted_to: "", + quantity: 1, + quantity_string: "1", + timestamp: "2024-03-14T11:34:34", + block_number: 834655, + transaction: "", + transaction_initiator: null, + }, + rarity: { + rank: null, + score: null, + unique_attributes: null, + }, + royalty: [], + extra_metadata: { + attributes: [], + utxo_details: { + distinct_rare_sats: 0, + satributes: { + common: { + count: 8000, + display_name: "Common", + description: "Any sat that is not the first sat of its block", + icon: "https://cdn.simplehash.com/rare_sats/satribute_common.png", + }, + }, + sat_ranges: [ + { + starting_sat: 574534229491726, + value: 8000, + distinct_rare_sats: 0, + year: "2011", + subranges: [ + { + starting_sat: 574534229491726, + value: 8000, + sat_types: ["common"], + }, + ], + }, + ], + block_number: 834655, + value: 8000, + script_pub_key: { + asm: "", + desc: "", + hex: "", + address: "", + type: "", + }, + }, + image_original_url: null, + animation_original_url: null, + metadata_original_url: null, + }, + }, + { + nft_id: "utxo.7893390614d9a5608e39ea637e5794f7564d3fcdd5ad46105f349c2cf45272fb.0", + chain: "utxo", + contract_address: "", + token_id: "0", + name: null, + description: null, + previews: { + image_small_url: null, + image_medium_url: null, + image_large_url: null, + image_opengraph_url: null, + blurhash: null, + predominant_color: null, + }, + image_url: null, + image_properties: null, + video_url: null, + video_properties: null, + audio_url: null, + audio_properties: null, + model_url: null, + model_properties: null, + other_url: null, + other_properties: null, + background_color: null, + external_url: null, + created_date: "2024-03-14T11:34:34", + status: "minted", + token_count: 1, + owner_count: 1, + owners: [ + { + owner_address: "", + quantity: 1, + quantity_string: "1", + first_acquired_date: "2024-03-14T11:34:34", + last_acquired_date: "2024-03-14T11:34:34", + }, + ], + contract: { + type: "UTXO", + name: null, + symbol: null, + deployed_by: null, + deployed_via_contract: null, + owned_by: null, + has_multiple_collections: false, + }, + collection: { + collection_id: null, + name: null, + description: null, + image_url: null, + image_properties: null, + banner_image_url: null, + category: null, + is_nsfw: null, + external_url: null, + twitter_username: null, + discord_url: null, + instagram_username: null, + medium_username: null, + telegram_url: null, + marketplace_pages: [], + metaplex_mint: null, + metaplex_candy_machine: null, + metaplex_first_verified_creator: null, + spam_score: null, + floor_prices: [], + top_bids: [], + distinct_owner_count: null, + distinct_nft_count: null, + total_quantity: null, + chains: [], + top_contracts: [], + collection_royalties: [], + }, + last_sale: null, + first_created: { + minted_to: "", + quantity: 1, + quantity_string: "1", + timestamp: "2024-03-14T11:34:34", + block_number: 834655, + transaction: "", + transaction_initiator: null, + }, + rarity: { + rank: null, + score: null, + unique_attributes: null, + }, + royalty: [], + extra_metadata: { + attributes: [], + utxo_details: { + distinct_rare_sats: 0, + satributes: { + common: { + count: 9000, + display_name: "Common", + description: "Any sat that is not the first sat of its block", + icon: "https://cdn.simplehash.com/rare_sats/satribute_common.png", + }, + }, + sat_ranges: [ + { + starting_sat: 574534229482726, + value: 9000, + distinct_rare_sats: 0, + year: "2011", + subranges: [ + { + starting_sat: 574534229482726, + value: 9000, + sat_types: ["common"], + }, + ], + }, + ], + block_number: 834655, + value: 9000, + script_pub_key: { + asm: "", + desc: "", + hex: "", + address: "", + type: "", + }, + }, + image_original_url: null, + animation_original_url: null, + metadata_original_url: null, + }, + }, + { + nft_id: "utxo.51fb634f0fefa3441e1a60090d9e292ce1f0803258c2dae818410db4192c89f6.0", + chain: "utxo", + contract_address: "", + token_id: "0", + name: null, + description: null, + previews: { + image_small_url: null, + image_medium_url: null, + image_large_url: null, + image_opengraph_url: null, + blurhash: null, + predominant_color: null, + }, + image_url: null, + image_properties: null, + video_url: null, + video_properties: null, + audio_url: null, + audio_properties: null, + model_url: null, + model_properties: null, + other_url: null, + other_properties: null, + background_color: null, + external_url: null, + created_date: "2024-03-08T10:37:28", + status: "minted", + token_count: 1, + owner_count: 1, + owners: [ + { + owner_address: "", + quantity: 1, + quantity_string: "1", + first_acquired_date: "2024-03-08T10:37:28", + last_acquired_date: "2024-03-08T10:37:28", + }, + ], + contract: { + type: "UTXO", + name: null, + symbol: null, + deployed_by: null, + deployed_via_contract: null, + owned_by: null, + has_multiple_collections: false, + }, + collection: { + collection_id: null, + name: null, + description: null, + image_url: null, + image_properties: null, + banner_image_url: null, + category: null, + is_nsfw: null, + external_url: null, + twitter_username: null, + discord_url: null, + instagram_username: null, + medium_username: null, + telegram_url: null, + marketplace_pages: [], + metaplex_mint: null, + metaplex_candy_machine: null, + metaplex_first_verified_creator: null, + spam_score: null, + floor_prices: [], + top_bids: [], + distinct_owner_count: null, + distinct_nft_count: null, + total_quantity: null, + chains: [], + top_contracts: [], + collection_royalties: [], + }, + last_sale: null, + first_created: { + minted_to: "", + quantity: 1, + quantity_string: "1", + timestamp: "2024-03-08T10:37:28", + block_number: 833719, + transaction: "", + transaction_initiator: null, + }, + rarity: { + rank: null, + score: null, + unique_attributes: null, + }, + royalty: [], + extra_metadata: { + attributes: [], + utxo_details: { + distinct_rare_sats: 0, + satributes: { + common: { + count: 600, + display_name: "Common", + description: "Any sat that is not the first sat of its block", + icon: "https://cdn.simplehash.com/rare_sats/satribute_common.png", + }, + }, + sat_ranges: [ + { + starting_sat: 1032093336971063, + value: 600, + distinct_rare_sats: 0, + year: "2012", + subranges: [ + { + starting_sat: 1032093336971063, + value: 600, + sat_types: ["common"], + }, + ], + }, + ], + block_number: 833719, + value: 600, + script_pub_key: { + asm: "", + desc: "", + hex: "", + address: "", + type: "witness_v1_taproot", + }, + }, + image_original_url: null, + animation_original_url: null, + metadata_original_url: null, + }, + }, + { + nft_id: "utxo.b2011509f56ca83378d5e72e413ed5c939cfa4ff3d82680c1b12b5a6b406ac95.0", + chain: "utxo", + contract_address: "", + token_id: "0", + name: null, + description: null, + previews: { + image_small_url: null, + image_medium_url: null, + image_large_url: null, + image_opengraph_url: null, + blurhash: null, + predominant_color: null, + }, + image_url: null, + image_properties: null, + video_url: null, + video_properties: null, + audio_url: null, + audio_properties: null, + model_url: null, + model_properties: null, + other_url: null, + other_properties: null, + background_color: null, + external_url: null, + created_date: "2024-03-08T10:33:01", + status: "minted", + token_count: 1, + owner_count: 1, + owners: [ + { + owner_address: "", + quantity: 1, + quantity_string: "1", + first_acquired_date: "2024-03-08T10:33:01", + last_acquired_date: "2024-03-08T10:33:01", + }, + ], + contract: { + type: "UTXO", + name: null, + symbol: null, + deployed_by: null, + deployed_via_contract: null, + owned_by: null, + has_multiple_collections: false, + }, + collection: { + collection_id: null, + name: null, + description: null, + image_url: null, + image_properties: null, + banner_image_url: null, + category: null, + is_nsfw: null, + external_url: null, + twitter_username: null, + discord_url: null, + instagram_username: null, + medium_username: null, + telegram_url: null, + marketplace_pages: [], + metaplex_mint: null, + metaplex_candy_machine: null, + metaplex_first_verified_creator: null, + spam_score: null, + floor_prices: [], + top_bids: [], + distinct_owner_count: null, + distinct_nft_count: null, + total_quantity: null, + chains: [], + top_contracts: [], + collection_royalties: [], + }, + last_sale: null, + first_created: { + minted_to: "", + quantity: 1, + quantity_string: "1", + timestamp: "2024-03-08T10:33:01", + block_number: 833718, + transaction: "", + transaction_initiator: null, + }, + rarity: { + rank: null, + score: null, + unique_attributes: null, + }, + royalty: [], + extra_metadata: { + attributes: [], + utxo_details: { + distinct_rare_sats: 0, + satributes: { + common: { + count: 600, + display_name: "Common", + description: "Any sat that is not the first sat of its block", + icon: "https://cdn.simplehash.com/rare_sats/satribute_common.png", + }, + }, + sat_ranges: [ + { + starting_sat: 1032093336949888, + value: 600, + distinct_rare_sats: 0, + year: "2012", + subranges: [ + { + starting_sat: 1032093336949888, + value: 600, + sat_types: ["common"], + }, + ], + }, + ], + block_number: 833718, + value: 600, + script_pub_key: { + asm: "", + desc: "", + hex: "", + address: "", + type: "", + }, + }, + image_original_url: null, + animation_original_url: null, + metadata_original_url: null, + }, + }, + { + nft_id: "utxo.398901189471c069dd74068a2884e02829c831432e705b28a0c337696e681b97.0", + chain: "utxo", + contract_address: "", + token_id: "0", + name: null, + description: null, + previews: { + image_small_url: null, + image_medium_url: null, + image_large_url: null, + image_opengraph_url: null, + blurhash: null, + predominant_color: null, + }, + image_url: null, + image_properties: null, + video_url: null, + video_properties: null, + audio_url: null, + audio_properties: null, + model_url: null, + model_properties: null, + other_url: null, + other_properties: null, + background_color: null, + external_url: null, + created_date: "2024-03-08T10:06:46", + status: "minted", + token_count: 1, + owner_count: 1, + owners: [ + { + owner_address: "", + quantity: 1, + quantity_string: "1", + first_acquired_date: "2024-03-08T10:06:46", + last_acquired_date: "2024-03-08T10:06:46", + }, + ], + contract: { + type: "UTXO", + name: null, + symbol: null, + deployed_by: null, + deployed_via_contract: null, + owned_by: null, + has_multiple_collections: false, + }, + collection: { + collection_id: null, + name: null, + description: null, + image_url: null, + image_properties: null, + banner_image_url: null, + category: null, + is_nsfw: null, + external_url: null, + twitter_username: null, + discord_url: null, + instagram_username: null, + medium_username: null, + telegram_url: null, + marketplace_pages: [], + metaplex_mint: null, + metaplex_candy_machine: null, + metaplex_first_verified_creator: null, + spam_score: null, + floor_prices: [], + top_bids: [], + distinct_owner_count: null, + distinct_nft_count: null, + total_quantity: null, + chains: [], + top_contracts: [], + collection_royalties: [], + }, + last_sale: null, + first_created: { + minted_to: "", + quantity: 1, + quantity_string: "1", + timestamp: "2024-03-08T10:06:46", + block_number: 833714, + transaction: "", + transaction_initiator: null, + }, + rarity: { + rank: null, + score: null, + unique_attributes: null, + }, + royalty: [], + extra_metadata: { + attributes: [], + utxo_details: { + distinct_rare_sats: 0, + satributes: { + common: { + count: 600, + display_name: "Common", + description: "Any sat that is not the first sat of its block", + icon: "https://cdn.simplehash.com/rare_sats/satribute_common.png", + }, + }, + sat_ranges: [ + { + starting_sat: 1032093336943299, + value: 600, + distinct_rare_sats: 0, + year: "2012", + subranges: [ + { + starting_sat: 1032093336943299, + value: 600, + sat_types: ["common"], + }, + ], + }, + ], + block_number: 833714, + value: 600, + script_pub_key: { + asm: "", + desc: "", + hex: "", + address: "", + type: "", + }, + }, + image_original_url: null, + animation_original_url: null, + metadata_original_url: null, + }, + }, + { + nft_id: "utxo.68f11cb8770c6e761a5763bb47f00b368e03a4960046f441617c46edad2b0215.5", + chain: "utxo", + contract_address: "", + token_id: "5", + name: null, + description: null, + previews: { + image_small_url: null, + image_medium_url: null, + image_large_url: null, + image_opengraph_url: null, + blurhash: null, + predominant_color: null, + }, + image_url: null, + image_properties: null, + video_url: null, + video_properties: null, + audio_url: null, + audio_properties: null, + model_url: null, + model_properties: null, + other_url: null, + other_properties: null, + background_color: null, + external_url: null, + created_date: "2024-03-08T09:47:36", + status: "minted", + token_count: 1, + owner_count: 1, + owners: [ + { + owner_address: "", + quantity: 1, + quantity_string: "1", + first_acquired_date: "2024-03-08T09:47:36", + last_acquired_date: "2024-03-08T09:47:36", + }, + ], + contract: { + type: "UTXO", + name: null, + symbol: null, + deployed_by: null, + deployed_via_contract: null, + owned_by: null, + has_multiple_collections: false, + }, + collection: { + collection_id: "0123456789abcdeffedcba9876543210", + name: "Rare Sats", + description: + 'Rare Sats are attributes, or "satributes," ascribed to different types of sats. Sats are the smallest unit of a Bitcoin, and satributes commemorate special moments like when a sat was mined or used in a transaction.', + image_url: null, + image_properties: null, + banner_image_url: null, + category: null, + is_nsfw: null, + external_url: null, + twitter_username: null, + discord_url: null, + instagram_username: null, + medium_username: null, + telegram_url: null, + marketplace_pages: [], + metaplex_mint: null, + metaplex_candy_machine: null, + metaplex_first_verified_creator: null, + spam_score: null, + floor_prices: [], + top_bids: [], + distinct_owner_count: 5284108, + distinct_nft_count: 7259220, + total_quantity: 7259196, + chains: ["utxo"], + top_contracts: [], + collection_royalties: [], + }, + last_sale: null, + first_created: { + minted_to: "", + quantity: 1, + quantity_string: "1", + timestamp: "2024-03-08T09:47:36", + block_number: 833711, + transaction: "", + transaction_initiator: null, + }, + rarity: { + rank: null, + score: null, + unique_attributes: null, + }, + royalty: [], + extra_metadata: { + attributes: [], + utxo_details: { + distinct_rare_sats: 330, + satributes: { + block_78: { + count: 330, + display_name: "Block 78", + description: + "Sats mined by Hal Finney in block 78 which was the first block mined by someone other than Satoshi", + icon: "https://cdn.simplehash.com/rare_sats/satribute_block78.png", + }, + vintage: { + count: 330, + display_name: "Vintage", + description: "Sats mined in the first 1,000 blocks", + icon: "https://cdn.simplehash.com/rare_sats/satribute_vintage.png", + }, + }, + sat_ranges: [ + { + starting_sat: 392582274563, + value: 330, + distinct_rare_sats: 330, + year: "2009", + subranges: [ + { + starting_sat: 392582274563, + value: 330, + sat_types: ["block_78", "vintage"], + }, + ], + }, + ], + block_number: 833711, + value: 330, + script_pub_key: { + asm: "", + desc: "", + hex: "", + address: "", + type: "", + }, + }, + image_original_url: null, + animation_original_url: null, + metadata_original_url: null, + }, + }, + { + nft_id: "utxo.68f11cb8770c6e761a5763bb47f00b368e03a4960046f441617c46edad2b0215.4", + chain: "utxo", + contract_address: "", + token_id: "4", + name: null, + description: null, + previews: { + image_small_url: null, + image_medium_url: null, + image_large_url: null, + image_opengraph_url: null, + blurhash: null, + predominant_color: null, + }, + image_url: null, + image_properties: null, + video_url: null, + video_properties: null, + audio_url: null, + audio_properties: null, + model_url: null, + model_properties: null, + other_url: null, + other_properties: null, + background_color: null, + external_url: null, + created_date: "2024-03-08T09:47:36", + status: "minted", + token_count: 1, + owner_count: 1, + owners: [ + { + owner_address: "", + quantity: 1, + quantity_string: "1", + first_acquired_date: "2024-03-08T09:47:36", + last_acquired_date: "2024-03-08T09:47:36", + }, + ], + contract: { + type: "UTXO", + name: null, + symbol: null, + deployed_by: null, + deployed_via_contract: null, + owned_by: null, + has_multiple_collections: false, + }, + collection: { + collection_id: "0123456789abcdeffedcba9876543210", + name: "Rare Sats", + description: + 'Rare Sats are attributes, or "satributes," ascribed to different types of sats. Sats are the smallest unit of a Bitcoin, and satributes commemorate special moments like when a sat was mined or used in a transaction.', + image_url: null, + image_properties: null, + banner_image_url: null, + category: null, + is_nsfw: null, + external_url: null, + twitter_username: null, + discord_url: null, + instagram_username: null, + medium_username: null, + telegram_url: null, + marketplace_pages: [], + metaplex_mint: null, + metaplex_candy_machine: null, + metaplex_first_verified_creator: null, + spam_score: null, + floor_prices: [], + top_bids: [], + distinct_owner_count: 5284108, + distinct_nft_count: 7259220, + total_quantity: 7259196, + chains: ["utxo"], + top_contracts: [], + collection_royalties: [], + }, + last_sale: null, + first_created: { + minted_to: "", + quantity: 1, + quantity_string: "1", + timestamp: "2024-03-08T09:47:36", + block_number: 833711, + transaction: "", + transaction_initiator: null, + }, + rarity: { + rank: null, + score: null, + unique_attributes: null, + }, + royalty: [], + extra_metadata: { + attributes: [], + utxo_details: { + distinct_rare_sats: 330, + satributes: { + vintage: { + count: 330, + display_name: "Vintage", + description: "Sats mined in the first 1,000 blocks", + icon: "https://cdn.simplehash.com/rare_sats/satribute_vintage.png", + }, + }, + sat_ranges: [ + { + starting_sat: 4834087454144, + value: 330, + distinct_rare_sats: 330, + year: "2009", + subranges: [ + { + starting_sat: 4834087454144, + value: 330, + sat_types: ["vintage"], + }, + ], + }, + ], + block_number: 833711, + value: 330, + script_pub_key: { + asm: "", + desc: "", + hex: "", + address: "", + type: "", + }, + }, + image_original_url: null, + animation_original_url: null, + metadata_original_url: null, + }, + }, + { + nft_id: "utxo.68f11cb8770c6e761a5763bb47f00b368e03a4960046f441617c46edad2b0215.3", + chain: "utxo", + contract_address: "", + token_id: "3", + name: null, + description: null, + previews: { + image_small_url: null, + image_medium_url: null, + image_large_url: null, + image_opengraph_url: null, + blurhash: null, + predominant_color: null, + }, + image_url: null, + image_properties: null, + video_url: null, + video_properties: null, + audio_url: null, + audio_properties: null, + model_url: null, + model_properties: null, + other_url: null, + other_properties: null, + background_color: null, + external_url: null, + created_date: "2024-03-08T09:47:36", + status: "minted", + token_count: 1, + owner_count: 1, + owners: [ + { + owner_address: "", + quantity: 1, + quantity_string: "1", + first_acquired_date: "2024-03-08T09:47:36", + last_acquired_date: "2024-03-08T09:47:36", + }, + ], + contract: { + type: "UTXO", + name: null, + symbol: null, + deployed_by: null, + deployed_via_contract: null, + owned_by: null, + has_multiple_collections: false, + }, + collection: { + collection_id: "0123456789abcdeffedcba9876543210", + name: "Rare Sats", + description: + 'Rare Sats are attributes, or "satributes," ascribed to different types of sats. Sats are the smallest unit of a Bitcoin, and satributes commemorate special moments like when a sat was mined or used in a transaction.', + image_url: null, + image_properties: null, + banner_image_url: null, + category: null, + is_nsfw: null, + external_url: null, + twitter_username: null, + discord_url: null, + instagram_username: null, + medium_username: null, + telegram_url: null, + marketplace_pages: [], + metaplex_mint: null, + metaplex_candy_machine: null, + metaplex_first_verified_creator: null, + spam_score: null, + floor_prices: [], + top_bids: [], + distinct_owner_count: 5284108, + distinct_nft_count: 7259220, + total_quantity: 7259196, + chains: ["utxo"], + top_contracts: [], + collection_royalties: [], + }, + last_sale: null, + first_created: { + minted_to: "", + quantity: 1, + quantity_string: "1", + timestamp: "2024-03-08T09:47:36", + block_number: 833711, + transaction: "", + transaction_initiator: null, + }, + rarity: { + rank: null, + score: null, + unique_attributes: null, + }, + royalty: [], + extra_metadata: { + attributes: [], + utxo_details: { + distinct_rare_sats: 330, + satributes: { + pizza: { + count: 330, + display_name: "Pizza", + description: + "Sat from the 10,000 Bitcoins used to purchase two Papa John's pizzas on May 22, 2010", + icon: "https://cdn.simplehash.com/rare_sats/satribute_pizza.png", + }, + }, + sat_ranges: [ + { + starting_sat: 265675444186667, + value: 330, + distinct_rare_sats: 330, + year: "2010", + subranges: [ + { + starting_sat: 265675444186667, + value: 330, + sat_types: ["pizza"], + }, + ], + }, + ], + block_number: 833711, + value: 330, + script_pub_key: { + asm: "", + desc: "", + hex: "", + address: "", + type: "", + }, + }, + image_original_url: null, + animation_original_url: null, + metadata_original_url: null, + }, + }, + { + nft_id: "utxo.68f11cb8770c6e761a5763bb47f00b368e03a4960046f441617c46edad2b0215.2", + chain: "utxo", + contract_address: "", + token_id: "2", + name: null, + description: null, + previews: { + image_small_url: null, + image_medium_url: null, + image_large_url: null, + image_opengraph_url: null, + blurhash: null, + predominant_color: null, + }, + image_url: null, + image_properties: null, + video_url: null, + video_properties: null, + audio_url: null, + audio_properties: null, + model_url: null, + model_properties: null, + other_url: null, + other_properties: null, + background_color: null, + external_url: null, + created_date: "2024-03-08T09:47:36", + status: "minted", + token_count: 1, + owner_count: 1, + owners: [ + { + owner_address: "", + quantity: 1, + quantity_string: "1", + first_acquired_date: "2024-03-08T09:47:36", + last_acquired_date: "2024-03-08T09:47:36", + }, + ], + contract: { + type: "UTXO", + name: null, + symbol: null, + deployed_by: null, + deployed_via_contract: null, + owned_by: null, + has_multiple_collections: false, + }, + collection: { + collection_id: "0123456789abcdeffedcba9876543210", + name: "Rare Sats", + description: + 'Rare Sats are attributes, or "satributes," ascribed to different types of sats. Sats are the smallest unit of a Bitcoin, and satributes commemorate special moments like when a sat was mined or used in a transaction.', + image_url: null, + image_properties: null, + banner_image_url: null, + category: null, + is_nsfw: null, + external_url: null, + twitter_username: null, + discord_url: null, + instagram_username: null, + medium_username: null, + telegram_url: null, + marketplace_pages: [], + metaplex_mint: null, + metaplex_candy_machine: null, + metaplex_first_verified_creator: null, + spam_score: null, + floor_prices: [], + top_bids: [], + distinct_owner_count: 5284108, + distinct_nft_count: 7259220, + total_quantity: 7259196, + chains: ["utxo"], + top_contracts: [], + collection_royalties: [], + }, + last_sale: null, + first_created: { + minted_to: "", + quantity: 1, + quantity_string: "1", + timestamp: "2024-03-08T09:47:36", + block_number: 833711, + transaction: "", + transaction_initiator: null, + }, + rarity: { + rank: null, + score: null, + unique_attributes: null, + }, + royalty: [], + extra_metadata: { + attributes: [], + utxo_details: { + distinct_rare_sats: 547, + satributes: { + jpeg: { + count: 547, + display_name: "JPEG", + description: + "Sats involved in the possible first bitcoin trade for an image on February 24, 2010", + icon: "https://cdn.simplehash.com/rare_sats/satribute_jpeg.png", + }, + }, + sat_ranges: [ + { + starting_sat: 152060443363905, + value: 547, + distinct_rare_sats: 547, + year: "2009", + subranges: [ + { + starting_sat: 152060443363905, + value: 547, + sat_types: ["jpeg"], + }, + ], + }, + ], + block_number: 833711, + value: 547, + script_pub_key: { + asm: "", + desc: "", + hex: "", + address: "", + type: "", + }, + }, + image_original_url: null, + animation_original_url: null, + metadata_original_url: null, + }, + }, + { + nft_id: "utxo.68f11cb8770c6e761a5763bb47f00b368e03a4960046f441617c46edad2b0215.1", + chain: "utxo", + contract_address: "", + token_id: "1", + name: null, + description: null, + previews: { + image_small_url: null, + image_medium_url: null, + image_large_url: null, + image_opengraph_url: null, + blurhash: null, + predominant_color: null, + }, + image_url: null, + image_properties: null, + video_url: null, + video_properties: null, + audio_url: null, + audio_properties: null, + model_url: null, + model_properties: null, + other_url: null, + other_properties: null, + background_color: null, + external_url: null, + created_date: "2024-03-08T09:47:36", + status: "minted", + token_count: 1, + owner_count: 1, + owners: [ + { + owner_address: "", + quantity: 1, + quantity_string: "1", + first_acquired_date: "2024-03-08T09:47:36", + last_acquired_date: "2024-03-08T09:47:36", + }, + ], + contract: { + type: "UTXO", + name: null, + symbol: null, + deployed_by: null, + deployed_via_contract: null, + owned_by: null, + has_multiple_collections: false, + }, + collection: { + collection_id: "0123456789abcdeffedcba9876543210", + name: "Rare Sats", + description: + 'Rare Sats are attributes, or "satributes," ascribed to different types of sats. Sats are the smallest unit of a Bitcoin, and satributes commemorate special moments like when a sat was mined or used in a transaction.', + image_url: null, + image_properties: null, + banner_image_url: null, + category: null, + is_nsfw: null, + external_url: null, + twitter_username: null, + discord_url: null, + instagram_username: null, + medium_username: null, + telegram_url: null, + marketplace_pages: [], + metaplex_mint: null, + metaplex_candy_machine: null, + metaplex_first_verified_creator: null, + spam_score: null, + floor_prices: [], + top_bids: [], + distinct_owner_count: 5284108, + distinct_nft_count: 7259220, + total_quantity: 7259196, + chains: ["utxo"], + top_contracts: [], + collection_royalties: [], + }, + last_sale: null, + first_created: { + minted_to: "", + quantity: 1, + quantity_string: "1", + timestamp: "2024-03-08T09:47:36", + block_number: 833711, + transaction: "", + transaction_initiator: null, + }, + rarity: { + rank: null, + score: null, + unique_attributes: null, + }, + royalty: [], + extra_metadata: { + attributes: [], + utxo_details: { + distinct_rare_sats: 555, + satributes: { + nakamoto: { + count: 555, + display_name: "Nakamoto", + description: "Sat mined by Satoshi Nakamoto", + icon: "https://cdn.simplehash.com/rare_sats/satribute_nakamoto.png", + }, + }, + sat_ranges: [ + { + starting_sat: 95469010861290, + value: 555, + distinct_rare_sats: 555, + year: "2009", + subranges: [ + { + starting_sat: 95469010861290, + value: 555, + sat_types: ["nakamoto"], + }, + ], + }, + ], + block_number: 833711, + value: 555, + script_pub_key: { + asm: "", + desc: "", + hex: "", + address: "", + type: "", + }, + }, + image_original_url: null, + animation_original_url: null, + metadata_original_url: null, + }, + }, + ], + }, +]; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/__integration__/nftsCollection.test.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/__integration__/nftsCollection.test.tsx index d2202da4de32..5104ff9891f1 100644 --- a/apps/ledger-live-desktop/src/newArch/features/Collectibles/__integration__/nftsCollection.test.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/__integration__/nftsCollection.test.tsx @@ -2,73 +2,80 @@ * @jest-environment jsdom */ import React from "react"; -import { render, screen } from "tests/testUtils"; -import { account, NftCollectionTest, NoNftCollectionTest } from "./shared"; +import { render, screen, waitFor } from "tests/testUtils"; +import { NftCollectionTest, NoNftCollectionTest } from "./shared"; +import { account } from "./mockedAccount"; + +jest.mock( + "electron", + () => ({ ipcRenderer: { on: jest.fn(), send: jest.fn(), invoke: jest.fn() } }), + { virtual: true }, +); describe("displayNftCollection", () => { - it("should display NFTs collection", async () => { + it("should display NFTs collections", async () => { render(, { initialState: { accounts: [account], - overriddenFeatureFlagsSelector: { - nftsFromSimplehash: false, - }, }, initialRoute: `/`, }); - await expect(screen.getByText(/0x670fd103b1a08628e9557cd66b87ded841115190/i)).toBeVisible(); + await waitFor(() => expect(screen.getByText(/momentum/i)).toBeVisible()); await expect(screen.getByText(/receive nft/i)).toBeVisible(); await expect(screen.getByText(/see gallery/i)).toBeVisible(); + await expect(screen.getByText(/see more collections/i)).toBeVisible(); }); it("should open the NFTs gallery", async () => { const { user } = render(, { initialState: { accounts: [account], - overriddenFeatureFlagsSelector: { - nftsFromSimplehash: false, - }, }, initialRoute: `/`, }); - await expect(screen.getByText(/0x670fd103b1a08628e9557cd66b87ded841115190/i)).toBeVisible(); + await waitFor(() => expect(screen.getByText(/momentum/i)).toBeVisible()); await expect(screen.getByText(/receive nft/i)).toBeVisible(); await expect(screen.getByText(/see gallery/i)).toBeVisible(); await user.click(screen.getByText(/see gallery/i)); await expect(screen.getByText(/all nft/i)).toBeVisible(); - // Check breadcrumb and page title - await expect(screen.getAllByText(/nft/i).length).toBe(2); }); - it("should open the corresponding NFTs collection and it should open detail drawer", async () => { + it("should open the corresponding NFTs collection and the correct detail drawer", async () => { const { user } = render(, { initialState: { accounts: [account], - overriddenFeatureFlagsSelector: { - nftsFromSimplehash: false, - }, }, initialRoute: `/`, }); - await expect(screen.getByText(/0x670fd103b1a08628e9557cd66b87ded841115190/i)).toBeVisible(); - await expect(screen.getByText(/receive nft/i)).toBeVisible(); - await expect(screen.getByText(/see gallery/i)).toBeVisible(); - await user.click(screen.getByText(/0x670fd103b1a08628e9557cd66b87ded841115190/i)); - await expect(screen.getByText(/all nft/i)).toBeVisible(); - // Check breadcrumb and page title - await expect(screen.getAllByText(/0x670fd103b1a08628e9557cd66b87ded841115190/i).length).toBe(2); + // Check initial state + await waitFor(() => expect(screen.getByText(/momentum/i)).toBeVisible()); + + // Open specific collection + await user.click(screen.getByText(/momentum/i)); + await waitFor(() => expect(screen.getByText(/ID: 35/i)).toBeVisible()); + + // Open Detail drawer + await user.click(screen.getByText(/ID: 35/i)); + await screen.findByTestId("side-drawer-container"); + await screen.findByTestId("drawer-close-button"); + await screen.findByText(/properties/i); + + // Open external viewer + await user.click(screen.getByTestId("external-viewer-button")); + await expect(screen.getByText(/open in opensea.io/i)).toBeVisible(); + + // Close drawer + await waitFor(() => user.click(screen.getByTestId("drawer-close-button"))); + await waitFor(() => expect(screen.queryByTestId("side-drawer-container")).toBeNull()); }); it("should not display nft", async () => { render(, { initialState: { accounts: [account], - overriddenFeatureFlagsSelector: { - nftsFromSimplehash: false, - }, }, initialRoute: `/`, }); diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/__integration__/shared.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/__integration__/shared.tsx index dffdf0d34556..e7faeee601a7 100644 --- a/apps/ledger-live-desktop/src/newArch/features/Collectibles/__integration__/shared.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/__integration__/shared.tsx @@ -1,24 +1,23 @@ import { genAccount } from "@ledgerhq/coin-framework/lib/mocks/account"; import React from "react"; import { Switch, Route, withRouter } from "react-router"; -import NftCollection from "../Nfts/Collection"; -import NFTGallery from "~/renderer/screens/nft/Gallery"; import NftBreadCrumb from "LLD/components/BreadCrumb"; - -export const account = genAccount("ethereum1", { - withNft: true, - operationsSize: 30, -}); +import NFTGallery from "../Nfts/screens/Gallery"; +import NftCollection from "../Nfts/screens/Collection"; +import NftCollections from "../Nfts/Collections"; +import { account } from "./mockedAccount"; const NftCollectionNavigation = () => ( - } /> + } /> + } /> } /> ); const NftCollectionTestBase = () => ( <> +
@@ -27,7 +26,8 @@ const NftCollectionTestBase = () => ( export const NftCollectionTest = withRouter(NftCollectionTestBase); export const NoNftCollectionTest = withRouter(() => ( <> +
- + )); diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/Collection/EmptyCollection.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/Collection/EmptyCollection.tsx index 64bcd621f23d..464912b45c42 100644 --- a/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/Collection/EmptyCollection.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/Collection/EmptyCollection.tsx @@ -1,7 +1,8 @@ import React, { ReactNode } from "react"; import styled from "styled-components"; import { useTranslation } from "react-i18next"; -import { CollectibleTypeEnum, CollectibleType } from "LLD/features/Collectibles/types/Collectibles"; +import { CollectibleType } from "LLD/features/Collectibles/types/Collectibles"; +import { CollectibleTypeEnum } from "LLD/features/Collectibles/types/enum/Collectibles"; import Text from "~/renderer/components/Text"; import LabelWithExternalIcon from "~/renderer/components/LabelWithExternalIcon"; import { supportLinkByTokenType } from "~/config/urls"; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/Collection/TableHeader.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/Collection/TableHeader.tsx index cde9e9547356..9892c5ead189 100644 --- a/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/Collection/TableHeader.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/Collection/TableHeader.tsx @@ -2,7 +2,7 @@ import { Flex } from "@ledgerhq/react-ui"; import React from "react"; import { useTranslation } from "react-i18next"; import { TableHeader as HeaderContainer } from "~/renderer/components/TableContainer"; -import { TableHeaderProps as Props } from "../../types/Collection"; +import { TableHeaderProps as Props } from "LLD/features/Collectibles/types/Collection"; const TableHeader: React.FC = ({ titleKey, actions }) => { const { t } = useTranslation(); diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/Collection/TableRow/IconContainer.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/Collection/TableRow/IconContainer.tsx new file mode 100644 index 000000000000..79bd9ee94c49 --- /dev/null +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/Collection/TableRow/IconContainer.tsx @@ -0,0 +1,29 @@ +import React from "react"; +import { Flex } from "@ledgerhq/react-ui"; +import { IconProps } from "LLD/features/Collectibles/types/Collection"; + +type Props = { + icons: (({ size, color, style }: IconProps) => JSX.Element)[]; +}; + +const IconContainer: React.FC = ({ icons }) => { + return ( + + {icons.map((Icon, index) => ( + + ))} + + ); +}; + +export default IconContainer; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/Collection/TableRow/TokenTitle.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/Collection/TableRow/TokenTitle.tsx index d41eed6c96c3..c5d11986eaf9 100644 --- a/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/Collection/TableRow/TokenTitle.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/Collection/TableRow/TokenTitle.tsx @@ -1,18 +1,39 @@ import React from "react"; import { Skeleton } from "../../Skeleton"; -import { Text } from "@ledgerhq/react-ui"; +import { Flex, Text } from "@ledgerhq/react-ui"; type Props = { tokenName: string | string[]; isLoading: boolean; + collectionName?: string; + complementaryData?: string; }; -const TokenTitle: React.FC = ({ tokenName, isLoading }) => { +const TokenTitle: React.FC = ({ + tokenName, + isLoading, + collectionName, + complementaryData, +}) => { + const isInsideRareSatRow = Boolean(complementaryData); return ( - - {tokenName} - + + + {tokenName} + + + {collectionName || complementaryData} + + ); }; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/Collection/TableRow/index.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/Collection/TableRow/index.tsx index c51d8e2eab55..6c0ef4bf55d2 100644 --- a/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/Collection/TableRow/index.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/Collection/TableRow/index.tsx @@ -10,6 +10,7 @@ import { } from "LLD/features/Collectibles/utils/typeGuardsChecker"; import { RowProps as Props } from "LLD/features/Collectibles/types/Collection"; import TokenTitle from "./TokenTitle"; +import IconContainer from "./IconContainer"; const Container = styled(Box)` &.disabled { @@ -37,14 +38,18 @@ const TableRow: React.FC = props => { const nftCount = () => { return ( - + <> {isNFTRow(props) && ( - - {props.numberOfNfts || 0} - + + + {props.numberOfNfts || 0} + + + )} + {isOrdinalsRow(props) && props.tokenIcons.length != 0 && ( + )} - {isOrdinalsRow(props) && null} - + ); }; @@ -59,7 +64,11 @@ const TableRow: React.FC = props => { > {mediaBox()} - + {nftCount()} diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/CollectionName.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/CollectionName.tsx index 7da030f526a4..188f2ac4627a 100644 --- a/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/CollectionName.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/CollectionName.tsx @@ -4,8 +4,9 @@ import { Account, ProtoNFT } from "@ledgerhq/types-live"; import NFTCollectionContextMenu from "~/renderer/components/ContextMenu/NFTCollectionContextMenu"; import { Skeleton } from "LLD/features/Collectibles/components"; import styled from "styled-components"; -import { IconsLegacy } from "@ledgerhq/react-ui"; -import { FieldStatus } from "LLD/features/Collectibles/types/DetailDrawer"; +import { Flex, IconsLegacy } from "@ledgerhq/react-ui"; +import { FieldStatus } from "LLD/features/Collectibles/types/enum/DetailDrawer"; +import { Text } from "@ledgerhq/react-ui"; const Dots = styled.div` justify-content: flex-end; @@ -18,19 +19,22 @@ const Dots = styled.div` color: ${p => p.theme.colors.palette.text.shade80}; } `; -const Container = styled.div` - display: flex; - column-gap: 10px; -`; type Props = { nft?: ProtoNFT; fallback?: string; account?: Account; showHideMenu?: boolean; -}; // TODO Make me pretty + collectiblesNumber?: number; +}; -const CollectionNameComponent: React.FC = ({ nft, fallback, account, showHideMenu }) => { +const CollectionNameComponent: React.FC = ({ + nft, + fallback, + account, + showHideMenu, + collectiblesNumber, +}) => { const { status, metadata } = useNftCollectionMetadata(nft?.contract, nft?.currencyId); const { tokenName } = metadata || {}; const loading = status === FieldStatus.Loading; @@ -38,8 +42,13 @@ const CollectionNameComponent: React.FC = ({ nft, fallback, account, show return ( - + {tokenName || fallback || "-"} + {collectiblesNumber && ( + + ({collectiblesNumber}) + + )} {isComponentReady && ( = ({ nft, fallback, account, show )} - +
); }; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/DetailDrawer/components/CopyableField.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/DetailDrawer/components/CopyableField.tsx index b30bff336e4c..b6decd673b3c 100644 --- a/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/DetailDrawer/components/CopyableField.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/DetailDrawer/components/CopyableField.tsx @@ -8,6 +8,7 @@ const CopyableFieldContainer = styled.div` display: inline-flex; position: relative; max-width: 100%; + min-width: 4.5rem; ${GradientHover} { display: none; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/DetailDrawer/components/DetailField.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/DetailDrawer/components/DetailField.tsx index d0cd6c6788dc..29de511adc54 100644 --- a/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/DetailDrawer/components/DetailField.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/DetailDrawer/components/DetailField.tsx @@ -32,7 +32,7 @@ const Pre = styled.span` white-space: pre-line; display: block; unicode-bidi: embed; - line-break: anywhere; + word-break: break-word; line-height: 15px; `; diff --git a/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/DetailDrawer/components/ExternalViewerButton.tsx b/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/DetailDrawer/components/ExternalViewerButton.tsx index 609829d0f7d9..c391c72d7392 100644 --- a/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/DetailDrawer/components/ExternalViewerButton.tsx +++ b/apps/ledger-live-desktop/src/newArch/features/Collectibles/components/DetailDrawer/components/ExternalViewerButton.tsx @@ -1,7 +1,8 @@ import React, { useCallback, memo, ReactElement } from "react"; import styled from "styled-components"; import { useHistory } from "react-router-dom"; -import { ExternalViewerButtonProps, ItemType } from "LLD/features/Collectibles/types/DetailDrawer"; +import { ExternalViewerButtonProps } from "LLD/features/Collectibles/types/DetailDrawer"; +import { ItemType } from "LLD/features/Collectibles/types/enum/DetailDrawer"; import Box from "~/renderer/components/Box"; import Button from "~/renderer/components/Button"; import DropDownSelector, { DropDownItem } from "~/renderer/components/DropDownSelector"; @@ -76,6 +77,7 @@ const ExternalViewerButtonComponent: React.FC = ({ {() => ( diff --git a/apps/ledger-live-desktop/src/renderer/components/LiveAppDrawer.tsx b/apps/ledger-live-desktop/src/renderer/components/LiveAppDrawer.tsx index 34a67578068e..bb20bc94266d 100644 --- a/apps/ledger-live-desktop/src/renderer/components/LiveAppDrawer.tsx +++ b/apps/ledger-live-desktop/src/renderer/components/LiveAppDrawer.tsx @@ -30,6 +30,7 @@ import CompleteExchange, { } from "~/renderer/modals/Platform/Exchange/CompleteExchange/Body"; import { ExchangeType } from "@ledgerhq/live-common/wallet-api/Exchange/server"; import { Exchange } from "@ledgerhq/live-common/exchange/types"; +import { renderLoading } from "./DeviceAction/rendering"; const Divider = styled(Box)` border: 1px solid ${p => p.theme.colors.palette.divider}; @@ -61,6 +62,9 @@ export function isStartExchangeData(data: unknown): data is StartExchangeData { export const LiveAppDrawer = () => { const [dismissDisclaimerChecked, setDismissDisclaimerChecked] = useState(false); + const { t } = useTranslation(); + const dispatch = useDispatch(); + // @ts-expect-error how to type payload? const { isOpen, @@ -77,8 +81,6 @@ export const LiveAppDrawer = () => { }; } = useSelector(platformAppDrawerStateSelector); - const { t } = useTranslation(); - const dispatch = useDispatch(); const onContinue = useCallback(() => { if (payload && payload.type === "DAPP_DISCLAIMER") { const { manifest, disclaimerId, next } = payload; @@ -89,11 +91,14 @@ export const LiveAppDrawer = () => { next(manifest, dismissDisclaimerChecked); } }, [dismissDisclaimerChecked, dispatch, payload]); + const drawerContent = useMemo(() => { if (!payload) { return null; } + const { type, manifest, data } = payload; + const action = createAction(connectApp, startExchange); switch (type) { case "DAPP_INFO": @@ -156,6 +161,7 @@ export const LiveAppDrawer = () => { renderLoading()} onResult={result => { if ("startExchangeResult" in result) { data.onResult(result.startExchangeResult); diff --git a/apps/ledger-live-desktop/src/renderer/components/MainSideBar/index.tsx b/apps/ledger-live-desktop/src/renderer/components/MainSideBar/index.tsx index dc96f936321e..b7501f8ef18d 100644 --- a/apps/ledger-live-desktop/src/renderer/components/MainSideBar/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/components/MainSideBar/index.tsx @@ -30,7 +30,7 @@ import UpdateDot from "~/renderer/components/Updater/UpdateDot"; import { Dot } from "~/renderer/components/Dot"; import Stars from "~/renderer/components/Stars"; import useEnv from "@ledgerhq/live-common/hooks/useEnv"; -import { CARD_APP_ID } from "~/renderer/screens/card"; +import { BAANX_APP_ID } from "~/renderer/screens/card/CardPlatformApp"; import TopGradient from "./TopGradient"; import Hide from "./Hide"; import { track } from "~/renderer/analytics/segment"; @@ -223,7 +223,7 @@ const MainSideBar = () => { const location = useLocation(); const dispatch = useDispatch(); const { t } = useTranslation(); - const manifest = useRemoteLiveAppManifest(CARD_APP_ID); + const manifest = useRemoteLiveAppManifest(BAANX_APP_ID); const isCardDisabled = !manifest; /** redux navigation locked state */ diff --git a/apps/ledger-live-desktop/src/renderer/components/Onboarding/Screens/SelectUseCase/index.tsx b/apps/ledger-live-desktop/src/renderer/components/Onboarding/Screens/SelectUseCase/index.tsx index 0d076536c327..471f0770d5e0 100644 --- a/apps/ledger-live-desktop/src/renderer/components/Onboarding/Screens/SelectUseCase/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/components/Onboarding/Screens/SelectUseCase/index.tsx @@ -206,14 +206,11 @@ export function SelectUseCase({ setUseCase, setOpenedPedagogyModal }: Props) { onClick={() => { track("Onboarding - Restore With Recover"); - if ( - deviceModelId && - [DeviceModelId.nanoX, DeviceModelId.stax].includes(deviceModelId) - ) { + if (deviceModelId === DeviceModelId.nanoS) { + dispatch(openModal("MODAL_PROTECT_DISCOVER", undefined)); + } else { setUseCase(UseCase.recover); history.push(`/onboarding/${UseCase.recover}/${ScreenId.pairMyNano}`); - } else { - dispatch(openModal("MODAL_PROTECT_DISCOVER", undefined)); } }} /> diff --git a/apps/ledger-live-desktop/src/renderer/components/Onboarding/Screens/Welcome/index.tsx b/apps/ledger-live-desktop/src/renderer/components/Onboarding/Screens/Welcome/index.tsx index 241f2cf602cb..a0a21a35c5a2 100644 --- a/apps/ledger-live-desktop/src/renderer/components/Onboarding/Screens/Welcome/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/components/Onboarding/Screens/Welcome/index.tsx @@ -146,7 +146,7 @@ export function Welcome() { const { analyticsOptInPromptProps, isFeatureFlagsAnalyticsPrefDisplayed, - openAnalitycsOptInPrompt, + openAnalyticsOptInPrompt, onSubmit, } = useAnalyticsOptInPrompt({ entryPoint: EntryPoint.onboarding, @@ -182,7 +182,7 @@ export function Welcome() { variant="main" onClick={_ => { isFeatureFlagsAnalyticsPrefDisplayed - ? openAnalitycsOptInPrompt("Onboarding", handleAcceptTermsAndGetStarted) + ? openAnalyticsOptInPrompt("Onboarding", handleAcceptTermsAndGetStarted) : handleAcceptTermsAndGetStarted(); }} mb="5" @@ -194,7 +194,7 @@ export function Welcome() { variant="main" onClick={_ => { isFeatureFlagsAnalyticsPrefDisplayed - ? openAnalitycsOptInPrompt("Onboarding", buyNanoX) + ? openAnalyticsOptInPrompt("Onboarding", buyNanoX) : buyNanoX(); }} outline={true} diff --git a/apps/ledger-live-desktop/src/renderer/components/TopBar/ActivityIndicator.tsx b/apps/ledger-live-desktop/src/renderer/components/TopBar/ActivityIndicator.tsx index e6631040a40d..ca9c3be61b6a 100644 --- a/apps/ledger-live-desktop/src/renderer/components/TopBar/ActivityIndicator.tsx +++ b/apps/ledger-live-desktop/src/renderer/components/TopBar/ActivityIndicator.tsx @@ -14,7 +14,7 @@ import Tooltip from "../Tooltip"; import TranslatedError from "../TranslatedError"; import Box from "../Box"; import { ItemContainer } from "./shared"; -import { useWalletSyncUserState } from "~/newArch/features/WalletSync/components/WalletSyncContext"; +import { useWalletSyncUserState } from "LLD/features/WalletSync/components/WalletSyncContext"; export default function ActivityIndicatorInner() { const wsUserState = useWalletSyncUserState(); diff --git a/apps/ledger-live-desktop/src/renderer/components/TopBar/index.tsx b/apps/ledger-live-desktop/src/renderer/components/TopBar/index.tsx index 150f67d5040a..1c4b6948cbac 100644 --- a/apps/ledger-live-desktop/src/renderer/components/TopBar/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/components/TopBar/index.tsx @@ -11,6 +11,8 @@ import Box from "~/renderer/components/Box"; import Tooltip from "~/renderer/components/Tooltip"; import Breadcrumb from "~/renderer/components/Breadcrumb"; import HelpSideBar from "~/renderer/modals/Help"; +import BreadCrumbNewArch from "LLD/components/BreadCrumb"; +import { useFeature } from "@ledgerhq/live-common/featureFlags/index"; // TODO: ActivityIndicator import ActivityIndicator from "./ActivityIndicator"; @@ -49,6 +51,8 @@ const TopBar = () => { const hasPassword = useSelector(hasPasswordSelector); const hasAccounts = useSelector(hasAccountsSelector); const discreetMode = useSelector(discreetModeSelector); + const nftReworked = useFeature("lldNftsGalleryNewArch"); + const isNftReworkedEnabled = nftReworked?.enabled; const [helpSideBarVisible, setHelpSideBarVisible] = useState(false); const handleLock = useCallback(() => dispatch(lock()), [dispatch]); const handleDiscreet = useCallback( @@ -68,7 +72,7 @@ const TopBar = () => { - + {isNftReworkedEnabled ? : } {hasAccounts && ( <> diff --git a/apps/ledger-live-desktop/src/renderer/components/Web3AppWebview/WalletAPIWebview.tsx b/apps/ledger-live-desktop/src/renderer/components/Web3AppWebview/WalletAPIWebview.tsx index aa86f51b2546..c1237d6124bb 100644 --- a/apps/ledger-live-desktop/src/renderer/components/Web3AppWebview/WalletAPIWebview.tsx +++ b/apps/ledger-live-desktop/src/renderer/components/Web3AppWebview/WalletAPIWebview.tsx @@ -121,6 +121,7 @@ function useUiHook(manifest: AppManifest, tracking: Record { setDrawer( @@ -297,5 +297,5 @@ export function useSelectAccount({ ); }, [currencies, manifest.id, setCurrentAccountHist]); - return { onSelectAccount }; + return { onSelectAccount, currentAccount }; } diff --git a/apps/ledger-live-desktop/src/renderer/components/WebPTXPlayer/TopBar.tsx b/apps/ledger-live-desktop/src/renderer/components/WebPTXPlayer/TopBar.tsx index 9fa2d1120e1b..e05907d83484 100644 --- a/apps/ledger-live-desktop/src/renderer/components/WebPTXPlayer/TopBar.tsx +++ b/apps/ledger-live-desktop/src/renderer/components/WebPTXPlayer/TopBar.tsx @@ -1,6 +1,6 @@ import React, { RefObject, useCallback, useEffect, useMemo, useRef } from "react"; import { useHistory, useRouteMatch } from "react-router"; -import { Trans } from "react-i18next"; +import { Trans, useTranslation } from "react-i18next"; import styled from "styled-components"; import { LiveAppManifest } from "@ledgerhq/live-common/platform/types"; import { rgba } from "~/renderer/styles/helpers"; @@ -101,6 +101,7 @@ export type Props = { }; export const TopBar = ({ manifest, webviewAPIRef, webviewState }: Props) => { + const { t } = useTranslation(); const lastMatchingURL = useRef(null); const history = useHistory(); const match = useRouteMatch(); @@ -171,8 +172,8 @@ export const TopBar = ({ manifest, webviewAPIRef, webviewState }: Props) => { const getButtonLabel = useCallback(() => { const lastScreen = localStorage.getItem("last-screen") || ""; - return lastScreen === "compare_providers" ? "Quote" : manifest.name; - }, [localStorage, manifest]); + return lastScreen === "compare_providers" ? t("common.quote") : manifest.name; + }, [localStorage, manifest, t]); const handleReload = useCallback(() => { const webview = safeGetRefValue(webviewAPIRef); diff --git a/apps/ledger-live-desktop/src/renderer/components/WebPlatformPlayer/TopBar.tsx b/apps/ledger-live-desktop/src/renderer/components/WebPlatformPlayer/TopBar.tsx index 7ceca9c27183..9d3503011dff 100644 --- a/apps/ledger-live-desktop/src/renderer/components/WebPlatformPlayer/TopBar.tsx +++ b/apps/ledger-live-desktop/src/renderer/components/WebPlatformPlayer/TopBar.tsx @@ -18,7 +18,6 @@ import { WebviewAPI, WebviewState } from "../Web3AppWebview/types"; import Spinner from "../Spinner"; import { getAccountCurrency } from "@ledgerhq/live-common/account/helpers"; import { useDebounce } from "@ledgerhq/live-common/hooks/useDebounce"; -import { useDappCurrentAccount } from "@ledgerhq/live-common/wallet-api/useDappLogic"; import { CurrentAccountHistDB, safeGetRefValue } from "@ledgerhq/live-common/wallet-api/react"; import Wallet from "~/renderer/icons/Wallet"; import { getDefaultAccountName } from "@ledgerhq/live-wallet/accountName"; @@ -142,7 +141,6 @@ export const TopBar = ({ webviewState, }: Props) => { const { name, icon } = manifest; - const { currentAccount } = useDappCurrentAccount(currentAccountHistDb); const { shouldDisplayName = true, @@ -183,7 +181,7 @@ export const TopBar = ({ webview.goForward(); }, [webviewAPIRef]); - const { onSelectAccount } = useSelectAccount({ manifest, currentAccountHistDb }); + const { onSelectAccount, currentAccount } = useSelectAccount({ manifest, currentAccountHistDb }); const isLoading = useDebounce(webviewState.loading, 100); diff --git a/apps/ledger-live-desktop/src/renderer/drawers/OperationDetails/index.tsx b/apps/ledger-live-desktop/src/renderer/drawers/OperationDetails/index.tsx index bcbf19ce9517..ea7c3f7f7a00 100644 --- a/apps/ledger-live-desktop/src/renderer/drawers/OperationDetails/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/drawers/OperationDetails/index.tsx @@ -358,6 +358,7 @@ const OperationD = (props: Props) => { showCode val={amount} fontSize={7} + data-testid="amountReceived-drawer" disableRounding /> diff --git a/apps/ledger-live-desktop/src/renderer/families/bitcoin/SendAmountFields.tsx b/apps/ledger-live-desktop/src/renderer/families/bitcoin/SendAmountFields.tsx index f7992002a077..3b684e45b92f 100644 --- a/apps/ledger-live-desktop/src/renderer/families/bitcoin/SendAmountFields.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/bitcoin/SendAmountFields.tsx @@ -11,18 +11,10 @@ import SelectFeeStrategy, { OnClickType } from "~/renderer/components/SelectFeeS import SendFeeMode from "~/renderer/components/SendFeeMode"; import Text from "~/renderer/components/Text"; import Tooltip from "~/renderer/components/Tooltip"; -import { context } from "~/renderer/drawers/Provider"; import CoinControlModal from "./CoinControlModal"; import { FeesField } from "./FeesField"; import { BitcoinFamily } from "./types"; import useBitcoinPickingStrategy from "./useBitcoinPickingStrategy"; -import Alert from "~/renderer/components/Alert"; -import TranslatedError from "~/renderer/components/TranslatedError"; -import { useDispatch } from "react-redux"; -import { useHistory } from "react-router"; -import { closeAllModal } from "~/renderer/actions/modals"; -import { setTrackingSource } from "~/renderer/analytics/TrackPage"; -import { Flex } from "@ledgerhq/react-ui"; type Props = NonNullable["component"]; @@ -44,33 +36,16 @@ const Fields: Props = ({ }) => { const bridge = getAccountBridge(account); const { t } = useTranslation(); - const { state: drawerState, setDrawer } = React.useContext(context); const [coinControlOpened, setCoinControlOpened] = useState(false); - const [isAdvanceMode, setAdvanceMode] = useState(!transaction.feesStrategy); + const [isAdvanceMode, setAdvanceMode] = useState( + !transaction.feesStrategy || transaction.feesStrategy === "custom", + ); const strategies = useFeesStrategy(account, transaction); const onCoinControlOpen = useCallback(() => setCoinControlOpened(true), []); const onCoinControlClose = useCallback(() => setCoinControlOpened(false), []); const { item } = useBitcoinPickingStrategy(transaction.utxoStrategy.strategy); const canNext = account.bitcoinResources?.utxos?.length; - const dispatch = useDispatch(); - const history = useHistory(); - - const onBuyClick = useCallback(() => { - dispatch(closeAllModal()); - setTrackingSource("send flow"); - history.push({ - pathname: "/exchange", - state: { - currency: account.currency.id, - account: account.id, - mode: "buy", // buy or sell - }, - }); - }, [account.currency.id, account.id, dispatch, history]); - - const { errors } = status; - const { gasPrice: messageGas } = errors; /* TODO: How do we set default RBF to be true ? (@gre) * Meanwhile, using this trick (please don't kill me) */ @@ -95,7 +70,6 @@ const Fields: Props = ({ feesStrategy, }), ); - if (drawerState.open) setDrawer(undefined); }, // eslint-disable-next-line react-hooks/exhaustive-deps [updateTransaction, bridge], @@ -183,13 +157,6 @@ const Fields: Props = ({ mapStrategies={mapStrategies} status={status} /> - {messageGas && ( - - - - - - )} )} diff --git a/apps/ledger-live-desktop/src/renderer/families/cosmos/AccountBalanceSummaryFooter.tsx b/apps/ledger-live-desktop/src/renderer/families/cosmos/AccountBalanceSummaryFooter.tsx index 9ed31856141b..253aa460eca2 100644 --- a/apps/ledger-live-desktop/src/renderer/families/cosmos/AccountBalanceSummaryFooter.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/cosmos/AccountBalanceSummaryFooter.tsx @@ -12,7 +12,7 @@ import Text from "~/renderer/components/Text"; import InfoCircle from "~/renderer/icons/InfoCircle"; import ToolTip from "~/renderer/components/Tooltip"; import { CosmosAccount } from "@ledgerhq/live-common/families/cosmos/types"; -import { CosmosAPI } from "@ledgerhq/live-common/families/cosmos/api/Cosmos"; +import { CosmosAPI } from "@ledgerhq/coin-cosmos/api/Cosmos"; import { SubAccount } from "@ledgerhq/types-live"; import { useAccountUnit } from "~/renderer/hooks/useAccountUnit"; diff --git a/apps/ledger-live-desktop/src/renderer/families/cosmos/ClaimRewardsFlowModal/Body.tsx b/apps/ledger-live-desktop/src/renderer/families/cosmos/ClaimRewardsFlowModal/Body.tsx index 16dddd1dbdca..0e035da2ddc7 100644 --- a/apps/ledger-live-desktop/src/renderer/families/cosmos/ClaimRewardsFlowModal/Body.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/cosmos/ClaimRewardsFlowModal/Body.tsx @@ -23,7 +23,7 @@ import StepClaimRewards, { StepClaimRewardsFooter } from "./steps/StepClaimRewar import GenericStepConnectDevice from "~/renderer/modals/Send/steps/GenericStepConnectDevice"; import StepConfirmation, { StepConfirmationFooter } from "./steps/StepConfirmation"; import logger from "~/renderer/logger"; -import { CosmosAccount } from "@ledgerhq/live-common/families/cosmos/types"; +import type { CosmosAccount } from "@ledgerhq/coin-cosmos/types/index"; export type Data = { account: CosmosAccount; diff --git a/apps/ledger-live-desktop/src/renderer/families/cosmos/ClaimRewardsFlowModal/fields/ModeSelectorField.tsx b/apps/ledger-live-desktop/src/renderer/families/cosmos/ClaimRewardsFlowModal/fields/ModeSelectorField.tsx index 5457f858c9f2..c40af92b4203 100644 --- a/apps/ledger-live-desktop/src/renderer/families/cosmos/ClaimRewardsFlowModal/fields/ModeSelectorField.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/cosmos/ClaimRewardsFlowModal/fields/ModeSelectorField.tsx @@ -5,7 +5,7 @@ import ToggleButton from "~/renderer/components/ToggleButton"; import InfoCircle from "~/renderer/icons/InfoCircle"; import Text from "~/renderer/components/Text"; import Popover from "~/renderer/components/Popover"; -import { CosmosLikeTransaction } from "@ledgerhq/live-common/families/cosmos/types"; +import type { CosmosLikeTransaction } from "@ledgerhq/coin-cosmos/types/index"; const options = [ { value: "claimRewardCompound", diff --git a/apps/ledger-live-desktop/src/renderer/families/cosmos/ClaimRewardsFlowModal/steps/StepClaimRewards.tsx b/apps/ledger-live-desktop/src/renderer/families/cosmos/ClaimRewardsFlowModal/steps/StepClaimRewards.tsx index fdfe7d5c172c..710332ecef5e 100644 --- a/apps/ledger-live-desktop/src/renderer/families/cosmos/ClaimRewardsFlowModal/steps/StepClaimRewards.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/cosmos/ClaimRewardsFlowModal/steps/StepClaimRewards.tsx @@ -14,10 +14,11 @@ import Text from "~/renderer/components/Text"; import DelegationSelectorField from "../fields/DelegationSelectorField"; import ErrorBanner from "~/renderer/components/ErrorBanner"; import AccountFooter from "~/renderer/modals/Send/AccountFooter"; -import { +import type { CosmosLikeTransaction, CosmosMappedDelegation, -} from "@ledgerhq/live-common/families/cosmos/types"; +} from "@ledgerhq/coin-cosmos/types/index"; + import { useAccountUnit } from "~/renderer/hooks/useAccountUnit"; export default function StepClaimRewards({ diff --git a/apps/ledger-live-desktop/src/renderer/families/cosmos/ClaimRewardsFlowModal/types.ts b/apps/ledger-live-desktop/src/renderer/families/cosmos/ClaimRewardsFlowModal/types.ts index d7edc05242f1..64c26984b85d 100644 --- a/apps/ledger-live-desktop/src/renderer/families/cosmos/ClaimRewardsFlowModal/types.ts +++ b/apps/ledger-live-desktop/src/renderer/families/cosmos/ClaimRewardsFlowModal/types.ts @@ -2,11 +2,12 @@ import { TFunction } from "i18next"; import { Device } from "@ledgerhq/live-common/hw/actions/types"; import { Step } from "~/renderer/components/Stepper"; import { Operation } from "@ledgerhq/types-live"; -import { +import type { CosmosAccount, Transaction, TransactionStatus, -} from "@ledgerhq/live-common/families/cosmos/types"; +} from "@ledgerhq/coin-cosmos/types/index"; + import { OpenModal } from "~/renderer/actions/modals"; export type StepId = "claimRewards" | "connectDevice" | "confirmation"; export type StepProps = { diff --git a/apps/ledger-live-desktop/src/renderer/families/cosmos/Delegation/index.tsx b/apps/ledger-live-desktop/src/renderer/families/cosmos/Delegation/index.tsx index df155112a242..35f6c9e442f5 100644 --- a/apps/ledger-live-desktop/src/renderer/families/cosmos/Delegation/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/cosmos/Delegation/index.tsx @@ -19,16 +19,16 @@ import LinkWithExternalIcon from "~/renderer/components/LinkWithExternalIcon"; import IconChartLine from "~/renderer/icons/ChartLine"; import { Header, UnbondingHeader } from "./Header"; import { Row, UnbondingRow } from "./Row"; -import cosmosBase from "@ledgerhq/live-common/families/cosmos/chain/cosmosBase"; import ToolTip from "~/renderer/components/Tooltip"; import ClaimRewards from "~/renderer/icons/ClaimReward"; import DelegateIcon from "~/renderer/icons/Delegate"; import TableContainer, { TableHeader } from "~/renderer/components/TableContainer"; import { CosmosAccount } from "@ledgerhq/live-common/families/cosmos/types"; import { DelegationActionsModalName } from "../modals"; -import cryptoFactory from "@ledgerhq/live-common/families/cosmos/chain/chain"; +import cryptoFactory from "@ledgerhq/coin-cosmos/chain/chain"; import { useLocalizedUrl } from "~/renderer/hooks/useLocalizedUrls"; import { useAccountUnit } from "~/renderer/hooks/useAccountUnit"; +import cosmosBase from "@ledgerhq/coin-cosmos/chain/cosmosBase"; const Wrapper = styled(Box).attrs(() => ({ p: 3, diff --git a/apps/ledger-live-desktop/src/renderer/families/cosmos/DelegationFlowModal/Body.tsx b/apps/ledger-live-desktop/src/renderer/families/cosmos/DelegationFlowModal/Body.tsx index 178382230082..3c552904ba29 100644 --- a/apps/ledger-live-desktop/src/renderer/families/cosmos/DelegationFlowModal/Body.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/cosmos/DelegationFlowModal/Body.tsx @@ -19,7 +19,7 @@ import { getCurrentDevice } from "~/renderer/reducers/devices"; import { OpenModal, openModal } from "~/renderer/actions/modals"; import StepAmount, { StepAmountFooter } from "./steps/StepAmount"; -import cryptoFactory from "@ledgerhq/live-common/families/cosmos/chain/chain"; +import cryptoFactory from "@ledgerhq/coin-cosmos/chain/chain"; import { BigNumber } from "bignumber.js"; import Stepper from "~/renderer/components/Stepper"; import StepDelegation, { StepDelegationFooter } from "./steps/StepDelegation"; diff --git a/apps/ledger-live-desktop/src/renderer/families/cosmos/DelegationFlowModal/Info/index.tsx b/apps/ledger-live-desktop/src/renderer/families/cosmos/DelegationFlowModal/Info/index.tsx index 6cdbf7b38d2a..05d8f927d02c 100644 --- a/apps/ledger-live-desktop/src/renderer/families/cosmos/DelegationFlowModal/Info/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/cosmos/DelegationFlowModal/Info/index.tsx @@ -6,7 +6,7 @@ import EarnRewardsInfoModal from "~/renderer/components/EarnRewardsInfoModal"; import WarnBox from "~/renderer/components/WarnBox"; import { openURL } from "~/renderer/linking"; import LinkWithExternalIcon from "~/renderer/components/LinkWithExternalIcon"; -import cryptoFactory from "@ledgerhq/live-common/families/cosmos/chain/chain"; +import cryptoFactory from "@ledgerhq/coin-cosmos/chain/chain"; import { CosmosAccount } from "@ledgerhq/live-common/families/cosmos/types"; export type Props = { diff --git a/apps/ledger-live-desktop/src/renderer/families/cosmos/RedelegationFlowModal/steps/StepStarter.tsx b/apps/ledger-live-desktop/src/renderer/families/cosmos/RedelegationFlowModal/steps/StepStarter.tsx index 07e634afda50..5a5f18a01662 100644 --- a/apps/ledger-live-desktop/src/renderer/families/cosmos/RedelegationFlowModal/steps/StepStarter.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/cosmos/RedelegationFlowModal/steps/StepStarter.tsx @@ -11,7 +11,7 @@ import Rewards from "~/renderer/images/rewards.svg"; import Alert from "~/renderer/components/Alert"; import LinkWithExternalIcon from "~/renderer/components/LinkWithExternalIcon"; import { openURL } from "~/renderer/linking"; -import cryptoFactory from "@ledgerhq/live-common/families/cosmos/chain/chain"; +import cryptoFactory from "@ledgerhq/coin-cosmos/chain/chain"; import { urls } from "~/config/urls"; import { useLocalizedUrl } from "~/renderer/hooks/useLocalizedUrls"; diff --git a/apps/ledger-live-desktop/src/renderer/families/cosmos/RedelegationFlowModal/steps/StepValidators.tsx b/apps/ledger-live-desktop/src/renderer/families/cosmos/RedelegationFlowModal/steps/StepValidators.tsx index 042a42f9ff5e..c59063eff92b 100644 --- a/apps/ledger-live-desktop/src/renderer/families/cosmos/RedelegationFlowModal/steps/StepValidators.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/cosmos/RedelegationFlowModal/steps/StepValidators.tsx @@ -19,7 +19,7 @@ import ChevronRight from "~/renderer/icons/ChevronRightSmall"; import CosmosFamilyLedgerValidatorIcon from "~/renderer/families/cosmos/shared/components/CosmosFamilyLedgerValidatorIcon"; import Text from "~/renderer/components/Text"; import AccountFooter from "~/renderer/modals/Send/AccountFooter"; -import cryptoFactory from "@ledgerhq/live-common/families/cosmos/chain/chain"; +import cryptoFactory from "@ledgerhq/coin-cosmos/chain/chain"; import { CosmosMappedDelegation } from "@ledgerhq/live-common/families/cosmos/types"; const SelectButton = styled(Base)` diff --git a/apps/ledger-live-desktop/src/renderer/families/cosmos/TransactionConfirmFields.tsx b/apps/ledger-live-desktop/src/renderer/families/cosmos/TransactionConfirmFields.tsx index 03d5a7adbd4a..c679388ec7b4 100644 --- a/apps/ledger-live-desktop/src/renderer/families/cosmos/TransactionConfirmFields.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/cosmos/TransactionConfirmFields.tsx @@ -73,7 +73,7 @@ export const CosmosDelegateValidatorsField = ({ const { validators } = transaction; const currencyId = mainAccount.currency.id; const { validators: cosmosValidators } = useCosmosFamilyPreloadData(currencyId); - const mappedValidators = mapDelegationInfo(validators || [], cosmosValidators, unit); + const mappedValidators = mapDelegationInfo(validators || [], cosmosValidators, unit, transaction); return mappedValidators && mappedValidators.length > 0 ? ( diff --git a/apps/ledger-live-desktop/src/renderer/families/cosmos/UndelegationFlowModal/steps/Amount.tsx b/apps/ledger-live-desktop/src/renderer/families/cosmos/UndelegationFlowModal/steps/Amount.tsx index 6e8bb353af0c..2fd54cbf57d1 100644 --- a/apps/ledger-live-desktop/src/renderer/families/cosmos/UndelegationFlowModal/steps/Amount.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/cosmos/UndelegationFlowModal/steps/Amount.tsx @@ -16,7 +16,7 @@ import Text from "~/renderer/components/Text"; import Alert from "~/renderer/components/Alert"; import ErrorBanner from "~/renderer/components/ErrorBanner"; import AccountFooter from "~/renderer/modals/Send/AccountFooter"; -import cryptoFactory from "@ledgerhq/live-common/families/cosmos/chain/chain"; +import cryptoFactory from "@ledgerhq/coin-cosmos/chain/chain"; export default function StepAmount({ account, diff --git a/apps/ledger-live-desktop/src/renderer/families/cosmos/operationDetails.tsx b/apps/ledger-live-desktop/src/renderer/families/cosmos/operationDetails.tsx index 5eb6c205eb63..8b6c7079fe68 100644 --- a/apps/ledger-live-desktop/src/renderer/families/cosmos/operationDetails.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/cosmos/operationDetails.tsx @@ -2,7 +2,7 @@ import { getAccountCurrency } from "@ledgerhq/live-common/account/index"; import { formatCurrencyUnit } from "@ledgerhq/live-common/currencies/index"; import { getAddressExplorer, getDefaultExplorerView } from "@ledgerhq/live-common/explorers"; -import cryptoFactory from "@ledgerhq/live-common/families/cosmos/chain/chain"; +import cryptoFactory from "@ledgerhq/coin-cosmos/chain/chain"; import { mapDelegationInfo } from "@ledgerhq/live-common/families/cosmos/logic"; import { useCosmosFamilyPreloadData } from "@ledgerhq/live-common/families/cosmos/react"; import { diff --git a/apps/ledger-live-desktop/src/renderer/families/cosmos/shared/components/CosmosFamilyLedgerValidatorIcon.tsx b/apps/ledger-live-desktop/src/renderer/families/cosmos/shared/components/CosmosFamilyLedgerValidatorIcon.tsx index abc61dbd8125..ed73634b3889 100644 --- a/apps/ledger-live-desktop/src/renderer/families/cosmos/shared/components/CosmosFamilyLedgerValidatorIcon.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/cosmos/shared/components/CosmosFamilyLedgerValidatorIcon.tsx @@ -1,10 +1,11 @@ import { CosmosValidatorItem } from "@ledgerhq/live-common/families/cosmos/types"; import React from "react"; -import cosmosBase from "@ledgerhq/live-common/families/cosmos/chain/cosmosBase"; +import cosmosBase from "@ledgerhq/coin-cosmos/chain/cosmosBase"; import { IconContainer } from "~/renderer/components/Delegation/ValidatorRow"; import LedgerLiveLogo from "~/renderer/components/LedgerLiveLogo"; import Logo from "~/renderer/icons/Logo"; import FirstLetterIcon from "~/renderer/components/FirstLetterIcon"; + const CosmosFamilyLedgerValidatorIcon = ({ validator, }: { diff --git a/apps/ledger-live-desktop/src/renderer/families/cosmos/shared/components/CosmosFamilyValidatorRow.tsx b/apps/ledger-live-desktop/src/renderer/families/cosmos/shared/components/CosmosFamilyValidatorRow.tsx index f817b0f8ef33..22597bcdb259 100644 --- a/apps/ledger-live-desktop/src/renderer/families/cosmos/shared/components/CosmosFamilyValidatorRow.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/cosmos/shared/components/CosmosFamilyValidatorRow.tsx @@ -1,6 +1,6 @@ import { formatCurrencyUnit } from "@ledgerhq/live-common/currencies/index"; import { getDefaultExplorerView, getAddressExplorer } from "@ledgerhq/live-common/explorers"; -import cryptoFactory from "@ledgerhq/live-common/families/cosmos/chain/chain"; +import cryptoFactory from "@ledgerhq/coin-cosmos/chain/chain"; import { CosmosValidatorItem } from "@ledgerhq/live-common/families/cosmos/types"; import { CryptoCurrency, Unit } from "@ledgerhq/types-cryptoassets"; import { BigNumber } from "bignumber.js"; diff --git a/apps/ledger-live-desktop/src/renderer/families/evm/SendAmountFields/index.tsx b/apps/ledger-live-desktop/src/renderer/families/evm/SendAmountFields/index.tsx index f750ec718502..bfb477d60c0f 100644 --- a/apps/ledger-live-desktop/src/renderer/families/evm/SendAmountFields/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/evm/SendAmountFields/index.tsx @@ -25,8 +25,7 @@ const Root: NonNullable["component"] = props => { const bridge: AccountBridge = getAccountBridge(account); const { errors } = props.status; - const { gasPrice: messageGas } = errors; - + const { gasPrice: messageGas, amount: messageAmount } = errors; const dispatch = useDispatch(); const history = useHistory(); @@ -112,10 +111,10 @@ const Root: NonNullable["component"] = props => { )} - {messageGas && ( + {(messageGas || messageAmount) && ( - - + + )} diff --git a/apps/ledger-live-desktop/src/renderer/families/filecoin/TransactionConfirmFields.tsx b/apps/ledger-live-desktop/src/renderer/families/filecoin/TransactionConfirmFields.tsx index eea43bbd8124..c97bb00d58b1 100644 --- a/apps/ledger-live-desktop/src/renderer/families/filecoin/TransactionConfirmFields.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/filecoin/TransactionConfirmFields.tsx @@ -26,6 +26,7 @@ const fieldComponents = { "filecoin.gasPremium": FilecoinField, "filecoin.gasLimit": FilecoinField, "filecoin.method": FilecoinField, + "filecoin.recipient": FilecoinField, }; export default { fieldComponents, diff --git a/apps/ledger-live-desktop/src/renderer/families/ton/CommentField.tsx b/apps/ledger-live-desktop/src/renderer/families/ton/CommentField.tsx index 154434ffa97e..09a302497386 100644 --- a/apps/ledger-live-desktop/src/renderer/families/ton/CommentField.tsx +++ b/apps/ledger-live-desktop/src/renderer/families/ton/CommentField.tsx @@ -38,7 +38,7 @@ const CommentField = ({ // on the ledger-live mobile return ( - - + + diff --git a/apps/ledger-live-desktop/src/renderer/DesktopStorageProvider.ts b/apps/ledger-live-desktop/src/renderer/hooks/storage-provider/DesktopAppDataStorageProvider.ts similarity index 94% rename from apps/ledger-live-desktop/src/renderer/DesktopStorageProvider.ts rename to apps/ledger-live-desktop/src/renderer/hooks/storage-provider/DesktopAppDataStorageProvider.ts index 2393ede2515e..042c16d79c5d 100644 --- a/apps/ledger-live-desktop/src/renderer/DesktopStorageProvider.ts +++ b/apps/ledger-live-desktop/src/renderer/hooks/storage-provider/DesktopAppDataStorageProvider.ts @@ -1,5 +1,5 @@ import { - StorageProvider, + StorageProvider as AppDataStorageProvider, AppStorageType, AppStorageKey, isAppStorageType, @@ -10,7 +10,7 @@ import { * The storage provider for LLD that implements the StorageProvider interface. * This a temporary placement for the DesktopStorageProvider, it could be moved to the appropriate location if needed. */ -export class DesktopStorageProvider implements StorageProvider { +export class DesktopAppDataStorageProvider implements AppDataStorageProvider { /** * Retrieves the value associated with the specified key from the storage. * diff --git a/apps/ledger-live-desktop/src/renderer/hooks/storage-provider/useAppDataStorage.tsx b/apps/ledger-live-desktop/src/renderer/hooks/storage-provider/useAppDataStorage.tsx new file mode 100644 index 000000000000..e1a70a6df3d4 --- /dev/null +++ b/apps/ledger-live-desktop/src/renderer/hooks/storage-provider/useAppDataStorage.tsx @@ -0,0 +1,19 @@ +import React, { createContext, useContext } from "react"; +import { DesktopAppDataStorageProvider } from "./DesktopAppDataStorageProvider"; + +const AppDataStorageContext = createContext(new DesktopAppDataStorageProvider()); + +export const useAppDataStorageProvider = () => { + return useContext(AppDataStorageContext); +}; + +type Props = { + children: React.ReactNode; +}; + +export function AppDataStorageProvider({ children }: Props) { + const storage = useAppDataStorageProvider(); + return ( + {children} + ); +} diff --git a/apps/ledger-live-desktop/src/renderer/hooks/useDeeplinking.ts b/apps/ledger-live-desktop/src/renderer/hooks/useDeeplinking.ts index 5e98962531f6..0834195f8231 100644 --- a/apps/ledger-live-desktop/src/renderer/hooks/useDeeplinking.ts +++ b/apps/ledger-live-desktop/src/renderer/hooks/useDeeplinking.ts @@ -18,6 +18,7 @@ import { Account, SubAccount } from "@ledgerhq/types-live"; import { useStorylyContext } from "~/storyly/StorylyProvider"; import { useNavigateToPostOnboardingHubCallback } from "~/renderer/components/PostOnboardingHub/logic/useNavigateToPostOnboardingHubCallback"; import { usePostOnboardingDeeplinkHandler } from "@ledgerhq/live-common/postOnboarding/hooks/index"; +import { setDrawerVisibility as setLedgerSyncDrawerVisibility } from "../actions/walletSync"; const getAccountsOrSubAccountsByCurrency = ( currency: CryptoOrTokenCurrency, @@ -346,6 +347,11 @@ export function useDeepLinkHandler() { postOnboardingDeeplinkHandler(query.device); break; } + case "ledgersync": { + navigate("/settings/display"); + dispatch(setLedgerSyncDrawerVisibility(true)); + break; + } case "portfolio": default: navigate("/"); diff --git a/apps/ledger-live-desktop/src/renderer/icons/ExternalLink.tsx b/apps/ledger-live-desktop/src/renderer/icons/ExternalLink.tsx index 7171cf42b5be..2547d369bfc5 100644 --- a/apps/ledger-live-desktop/src/renderer/icons/ExternalLink.tsx +++ b/apps/ledger-live-desktop/src/renderer/icons/ExternalLink.tsx @@ -5,8 +5,8 @@ const path = ( d="M12.19 2.75H10a.75.75 0 0 1 0-1.5h4a.75.75 0 0 1 .75.75v4a.75.75 0 1 1-1.5 0V3.81L7.197 9.865a.75.75 0 0 1-1.06-1.061l6.052-6.053zm-.94 5.917a.75.75 0 1 1 1.5 0v4c0 1.15-.933 2.083-2.083 2.083H3.333a2.083 2.083 0 0 1-2.083-2.083V5.333c0-1.15.933-2.083 2.083-2.083h4a.75.75 0 1 1 0 1.5h-4a.583.583 0 0 0-.583.583v7.334c0 .322.261.583.583.583h7.334a.583.583 0 0 0 .583-.583v-4z" /> ); -const ExternalLink = ({ size }: { size: number }) => ( - +const ExternalLink = ({ size, dataTestId }: { size: number; dataTestId?: string }) => ( + {path} ); diff --git a/apps/ledger-live-desktop/src/renderer/modals/CreateLocalManifest/FormLiveAppSelector.tsx b/apps/ledger-live-desktop/src/renderer/modals/CreateLocalManifest/FormLiveAppSelector.tsx index a70f3324e2a2..6a9b5827d0e9 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/CreateLocalManifest/FormLiveAppSelector.tsx +++ b/apps/ledger-live-desktop/src/renderer/modals/CreateLocalManifest/FormLiveAppSelector.tsx @@ -11,7 +11,7 @@ type Props = { choices: string[]; multipleChoices: boolean; path: string; - initalValue: string[] | string; + initialValue?: string[] | string; handleChange: (path: string, value: unknown) => void; }; @@ -22,10 +22,10 @@ function FormLiveAppSelector({ fieldName, optional, multipleChoices, - initalValue, + initialValue, }: Props) { const [selectedValues, setValues] = useState( - initalValue ? (multipleChoices ? [...initalValue] : initalValue) : [], + initialValue ? (multipleChoices ? [...initialValue] : initialValue) : [], ); useEffect(() => { diff --git a/apps/ledger-live-desktop/src/renderer/modals/CreateLocalManifest/index.tsx b/apps/ledger-live-desktop/src/renderer/modals/CreateLocalManifest/index.tsx index 0b28f5db4bfd..24f914590f5e 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/CreateLocalManifest/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/modals/CreateLocalManifest/index.tsx @@ -174,7 +174,7 @@ function FormLocalManifest({ path={path} handleChange={handleChange} multipleChoices={false} - initalValue={value} + initialValue={value} > ); } @@ -281,7 +281,7 @@ function FormLocalManifest({ path={path} handleChange={handleChange} multipleChoices={true} - initalValue={form[key]} + initialValue={form[key]} > ); } @@ -300,7 +300,7 @@ function FormLocalManifest({ path={path} handleChange={handleChange} multipleChoices={false} - initalValue={value as string} + initialValue={value as string} > ); } diff --git a/apps/ledger-live-desktop/src/renderer/modals/Platform/Exchange/CompleteExchange/Body.tsx b/apps/ledger-live-desktop/src/renderer/modals/Platform/Exchange/CompleteExchange/Body.tsx index a9139b76adbe..1bd8e0495e0f 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/Platform/Exchange/CompleteExchange/Body.tsx +++ b/apps/ledger-live-desktop/src/renderer/modals/Platform/Exchange/CompleteExchange/Body.tsx @@ -6,15 +6,16 @@ import { ExchangeSwap } from "@ledgerhq/live-common/exchange/swap/types"; import { getUpdateAccountWithUpdaterParams } from "@ledgerhq/live-common/exchange/swap/getUpdateAccountWithUpdaterParams"; import { useBroadcast } from "@ledgerhq/live-common/hooks/useBroadcast"; import { Transaction } from "@ledgerhq/live-common/generated/types"; -import { TokenCurrency } from "@ledgerhq/types-cryptoassets"; +import { CryptoCurrency, Currency, TokenCurrency } from "@ledgerhq/types-cryptoassets"; import { updateAccountWithUpdater } from "~/renderer/actions/accounts"; -import { BodyContent, BodyContentProps } from "./BodyContent"; +import { BodyContent } from "./BodyContent"; import { BigNumber } from "bignumber.js"; import { AccountLike } from "@ledgerhq/types-live"; import { DisabledTransactionBroadcastError } from "@ledgerhq/errors"; import { useRedirectToSwapHistory } from "~/renderer/screens/exchange/Swap2/utils"; import { getEnv } from "@ledgerhq/live-env"; import styled from "styled-components"; +import { ExchangeType } from "@ledgerhq/live-common/wallet-api/react"; export type Data = { provider: string; @@ -31,6 +32,21 @@ export type Data = { magnitudeAwareRate?: BigNumber; }; +export enum ExchangeModeEnum { + Sell = "sell", + Swap = "swap", +} + +export type ExchangeMode = "sell" | "swap"; + +type ResultsState = { + mode: ExchangeMode; + swapId?: string; + provider: string; + sourceCurrency: Currency; + targetCurrency?: Currency; +}; + export function isCompleteExchangeData(data: unknown): data is Data { if (data === null || typeof data !== "object") { return false; @@ -52,9 +68,7 @@ const Body = ({ data, onClose }: { data: Data; onClose?: () => void | undefined const dispatch = useDispatch(); const { onResult, onCancel, swapId, magnitudeAwareRate, ...exchangeParams } = data; const { exchange, provider, transaction: transactionParams } = exchangeParams; - const { fromAccount: account, fromParentAccount: parentAccount } = exchange; - // toAccount exists only in swap mode const toAccount = "toAccount" in exchange ? exchange.toAccount : undefined; @@ -102,7 +116,7 @@ const Body = ({ data, onClose }: { data: Data; onClose?: () => void | undefined const [transaction, setTransaction] = useState(); const [signedOperation, setSignedOperation] = useState(); const [error, setError] = useState(); - const [result, setResult] = useState(); + const [result, setResult] = useState(); const signRequest = useMemo( () => @@ -140,47 +154,87 @@ const Body = ({ data, onClose }: { data: Data; onClose?: () => void | undefined [dispatch, exchange, transactionParams, provider], ); - const onBroadcastSuccess = useCallback( - (operation: Operation) => { - // If swap we save to swap history and keep open the drawer - if (swapId && toAccount && magnitudeAwareRate && sourceCurrency && targetCurrency) { - const newResult = { - operation, - swapId, - }; - updateAccount({ - result: newResult, - magnitudeAwareRate, - }); - setResult({ + const getResultByTransactionType = ( + isSwapTransaction: "" | CryptoCurrency | TokenCurrency | null | undefined, + ) => { + return isSwapTransaction + ? { swapId, + mode: ExchangeModeEnum.Swap, provider, - sourceCurrency, - targetCurrency, - }); - - if (getEnv("DISABLE_TRANSACTION_BROADCAST")) { - return onCancel(new DisabledTransactionBroadcastError()); + sourceCurrency: sourceCurrency as Currency, + targetCurrency: targetCurrency as Currency, } - onResult(operation); - // else not swap i.e card and sell we close the drawer + : { + provider, + mode: ExchangeModeEnum.Sell, + sourceCurrency: sourceCurrency as Currency, + }; + }; + + const handleTransactionResult = (result: ResultsState, operation: Operation) => { + setResult(result); + + onResult(operation); + }; + + const handleSwapTransaction = (operation: Operation, result: ResultsState) => { + const newResult = { + operation, + swapId: swapId as string, + }; + + updateAccount({ + result: newResult, + magnitudeAwareRate: magnitudeAwareRate as BigNumber, + }); + + handleTransactionResult(result, operation); + }; + + const handleSellTransaction = (operation: Operation, result: ResultsState) => { + handleTransactionResult(result, operation); + }; + + const onBroadcastSuccess = useCallback( + (operation: Operation) => { + if (getEnv("DISABLE_TRANSACTION_BROADCAST")) { + return onCancel(new DisabledTransactionBroadcastError()); + } + + const isSwapTransaction = + swapId && toAccount && magnitudeAwareRate && sourceCurrency && targetCurrency; + + const isSellTransaction = + (data.exchangeType === ExchangeType.SELL || data.exchangeType === ExchangeType.SELL_NG) && + sourceCurrency; + + const result = getResultByTransactionType(isSwapTransaction); + + if (isSwapTransaction) { + handleSwapTransaction(operation, result); + } else if (isSellTransaction) { + handleSellTransaction(operation, result); } else { + // old platform exchange flow onResult(operation); onClose?.(); } }, + // Disabling exhaustive-deps because adding handleSellTransaction and handleSwapTransaction would make it change on every render + // eslint-disable-next-line react-hooks/exhaustive-deps [ - setResult, - onResult, - onCancel, - onClose, - updateAccount, + swapId, + toAccount, magnitudeAwareRate, - provider, sourceCurrency, targetCurrency, - swapId, - toAccount, + data.exchangeType, + updateAccount, + provider, + onResult, + onCancel, + onClose, ], ); diff --git a/apps/ledger-live-desktop/src/renderer/modals/Platform/Exchange/CompleteExchange/BodyContent.tsx b/apps/ledger-live-desktop/src/renderer/modals/Platform/Exchange/CompleteExchange/BodyContent.tsx index 1816f6878494..6b62f9069d07 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/Platform/Exchange/CompleteExchange/BodyContent.tsx +++ b/apps/ledger-live-desktop/src/renderer/modals/Platform/Exchange/CompleteExchange/BodyContent.tsx @@ -6,12 +6,12 @@ import connectApp from "@ledgerhq/live-common/hw/connectApp"; import { createAction } from "@ledgerhq/live-common/hw/actions/completeExchange"; import { createAction as txCreateAction } from "@ledgerhq/live-common/hw/actions/transaction"; import completeExchange from "@ledgerhq/live-common/exchange/platform/completeExchange"; -import { TokenCurrency } from "@ledgerhq/types-cryptoassets"; +import { Currency, TokenCurrency } from "@ledgerhq/types-cryptoassets"; import DeviceAction from "~/renderer/components/DeviceAction"; import BigSpinner from "~/renderer/components/BigSpinner"; import ErrorDisplay from "~/renderer/components/ErrorDisplay"; import { TransactionBroadcastedContent } from "./TransactionBroadcastedContent"; -import { SwapSelectorStateType } from "@ledgerhq/live-common/exchange/swap/types"; +import { ExchangeMode } from "./Body"; const exchangeAction = createAction(completeExchange); const sendAction = txCreateAction(connectApp); @@ -37,10 +37,11 @@ export type BodyContentProps = { amountExpectedTo?: number; }; result?: { - swapId: string; + swapId?: string; + mode: ExchangeMode; provider: string; - sourceCurrency: SwapSelectorStateType["currency"]; - targetCurrency: SwapSelectorStateType["currency"]; + sourceCurrency: Currency; + targetCurrency?: Currency; }; onOperationSigned: (value: SignedOperation) => void; onTransactionComplete: (value: Transaction) => void; @@ -58,6 +59,7 @@ export const BodyContent = (props: BodyContentProps) => { return ( void; }; export function TransactionBroadcastedContent(props: TransactionBroadcastedContentProps) { - const { swapId, provider, sourceCurrency, targetCurrency, onViewDetails } = props; - + const { swapId, provider, sourceCurrency, targetCurrency, onViewDetails, mode } = props; const swapDefaultTrack = useGetSwapTrackingProperties(); + return ( - {targetCurrency && ( - - - + {mode === ExchangeModeEnum.Swap && swapId && targetCurrency && ( + <> + + + + + + + + + + + )} + {mode === ExchangeModeEnum.Sell && sourceCurrency && ( + <> + + + + )} - - - - - - ); } diff --git a/apps/ledger-live-desktop/src/renderer/modals/Send/fields/RecipientField.react.test.tsx b/apps/ledger-live-desktop/src/renderer/modals/Send/fields/RecipientField.react.test.tsx index 6aebf84ddccf..e5da6e3c497f 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/Send/fields/RecipientField.react.test.tsx +++ b/apps/ledger-live-desktop/src/renderer/modals/Send/fields/RecipientField.react.test.tsx @@ -1,8 +1,9 @@ +import nock from "nock"; import React from "react"; import axios from "axios"; +import { TFunction } from "i18next"; import BigNumber from "bignumber.js"; import { render, screen, waitFor } from "tests/testUtils"; - import { getCryptoCurrencyById, setSupportedCurrencies, @@ -13,21 +14,23 @@ import { useFeature } from "@ledgerhq/live-common/featureFlags/index"; import { DomainServiceProvider } from "@ledgerhq/domain-service/hooks/index"; import { Transaction, TransactionStatus } from "@ledgerhq/live-common/generated/types"; import RecipientField from "./RecipientField"; -import { TFunction } from "i18next"; // Temp mock to prevent error on sentry init jest.mock("../../../../sentry/install", () => ({ init: () => null, })); -jest.mock("axios"); - -const mockedAxios = jest.mocked(axios); +nock.disableNetConnect(); jest.mock("@ledgerhq/live-common/featureFlags/index", () => ({ useFeature: jest.fn(), })); +jest.mock("../../../components/FirebaseFeatureFlags", () => ({ + // eslint-disable-next-line @typescript-eslint/no-explicit-any + FirebaseFeatureFlagsProvider: ({ children }: { children: any }) => children, +})); + const mockedUseFeature = jest.mocked(useFeature); const mockedOnChangeTransaction = jest.fn().mockImplementation(t => t); @@ -335,6 +338,7 @@ describe("RecipientField", () => { }); it("should not change domain because currency not supported", async () => { + const spy = jest.spyOn(axios, "request"); const { user } = setup(null, null, polygonMockAccount); const input = screen.getByRole("textbox"); await user.type(input, "0x16bb635bc5c398b63a0fbb38dac84da709eb3e86"); @@ -345,7 +349,7 @@ describe("RecipientField", () => { recipientDomain: undefined, }), ); - expect(mockedAxios).not.toHaveBeenCalled(); + expect(spy).not.toHaveBeenCalled(); }); }); diff --git a/apps/ledger-live-desktop/src/renderer/modals/Send/steps/StepSummary.tsx b/apps/ledger-live-desktop/src/renderer/modals/Send/steps/StepSummary.tsx index 532194c4ce9d..3e8138ee4902 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/Send/steps/StepSummary.tsx +++ b/apps/ledger-live-desktop/src/renderer/modals/Send/steps/StepSummary.tsx @@ -57,7 +57,7 @@ const WARN_FROM_UTXO_COUNT = 50; const StepSummary = (props: StepProps) => { const { account, parentAccount, transaction, status, currencyName, isNFTSend } = props; const mainAccount = account && getMainAccount(account, parentAccount); - const unit = useMaybeAccountUnit(mainAccount); + const unit = useMaybeAccountUnit(account); const accountName = useMaybeAccountName(account); if (!account || !mainAccount || !transaction) { diff --git a/apps/ledger-live-desktop/src/renderer/modals/SignTransaction/Body.tsx b/apps/ledger-live-desktop/src/renderer/modals/SignTransaction/Body.tsx index 1d33d2b8e1a3..e12427def021 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/SignTransaction/Body.tsx +++ b/apps/ledger-live-desktop/src/renderer/modals/SignTransaction/Body.tsx @@ -30,6 +30,7 @@ export type Params = { canEditFees: boolean; stepId?: StepId; useApp?: string; + dependencies?: string[]; account: AccountLike; transactionData: Partial; onResult: (signedOperation: SignedOperation) => void; @@ -223,6 +224,7 @@ export default function Body({ onChangeStepId, onClose, setError, stepId, params manifestId: params.manifestId, manifestName: params.manifestName, useApp: params.useApp, + dependencies: params.dependencies, steps, errorSteps, device, diff --git a/apps/ledger-live-desktop/src/renderer/modals/SignTransaction/steps/StepConnectDevice.tsx b/apps/ledger-live-desktop/src/renderer/modals/SignTransaction/steps/StepConnectDevice.tsx index 18579106f001..a6daf0345245 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/SignTransaction/steps/StepConnectDevice.tsx +++ b/apps/ledger-live-desktop/src/renderer/modals/SignTransaction/steps/StepConnectDevice.tsx @@ -1,8 +1,10 @@ -import React from "react"; +import React, { useMemo } from "react"; import TrackPage from "~/renderer/analytics/TrackPage"; import { getMainAccount } from "@ledgerhq/live-common/account/index"; import GenericStepConnectDevice from "./GenericStepConnectDevice"; import { StepProps } from "../types"; +import { dependenciesToAppRequests } from "@ledgerhq/live-common/hw/actions/app"; + export default function StepConnectDevice({ account, parentAccount, @@ -10,13 +12,22 @@ export default function StepConnectDevice({ status, transitionTo, useApp, + dependencies, onTransactionError, onTransactionSigned, manifestId, manifestName, }: StepProps) { - // Nb setting the mainAccount as a dependency will ensure latest versions of plugins. - const dependencies = (account && [getMainAccount(account, parentAccount)]) || []; + const connectDependencies = useMemo(() => { + const appRequests = dependenciesToAppRequests(dependencies); + + if (account) { + // Nb setting the mainAccount as a dependency will ensure latest versions of plugins. + return [{ currency: getMainAccount(account, parentAccount).currency }, ...appRequests]; + } + return appRequests; + }, [account, dependencies, parentAccount]); + return ( <> @@ -29,7 +40,7 @@ export default function StepConnectDevice({ transitionTo={transitionTo} onTransactionError={onTransactionError} onTransactionSigned={onTransactionSigned} - dependencies={dependencies} + dependencies={connectDependencies} manifestId={manifestId} manifestName={manifestName} requireLatestFirmware diff --git a/apps/ledger-live-desktop/src/renderer/modals/SignTransaction/types.ts b/apps/ledger-live-desktop/src/renderer/modals/SignTransaction/types.ts index 58a140d716b5..68ca995a665e 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/SignTransaction/types.ts +++ b/apps/ledger-live-desktop/src/renderer/modals/SignTransaction/types.ts @@ -10,6 +10,7 @@ export type StepProps = { transitionTo: (a: string) => void; openedFromAccount: boolean; useApp?: string; + dependencies?: string[]; device: Device | undefined | null; account: AccountLike | undefined | null; parentAccount: Account | undefined | null; diff --git a/apps/ledger-live-desktop/src/renderer/modals/SimpleHashTools/index.tsx b/apps/ledger-live-desktop/src/renderer/modals/SimpleHashTools/index.tsx index 85f3c259e0e8..ec88031582f3 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/SimpleHashTools/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/modals/SimpleHashTools/index.tsx @@ -29,7 +29,7 @@ const getItems = ( const items = [ { key: "spam", - label: t("settings.experimental.features.testSimpleHash.tabs.spam"), + label: t("settings.developer.debugSimpleHash.testSimpleHash.tabs.spam"), value: , onClick: hooks.spam.onClick, cta: t("settings.developer.debugSimpleHash.debugSpamNft.report"), @@ -38,7 +38,7 @@ const getItems = ( }, { key: "refresh", - label: t("settings.experimental.features.testSimpleHash.tabs.refresh"), + label: t("settings.developer.debugSimpleHash.testSimpleHash.tabs.refresh"), value: , onClick: hooks.refresh.onClick, cta: t("settings.developer.debugSimpleHash.debugRefreshMetadata.refresh"), @@ -47,7 +47,7 @@ const getItems = ( }, { key: "check", - label: t("settings.experimental.features.testSimpleHash.tabs.check"), + label: t("settings.developer.debugSimpleHash.testSimpleHash.tabs.check"), value: , onClick: hooks.check.onClick, cta: t("settings.developer.debugSimpleHash.debugCheckSpamScore.check"), @@ -84,7 +84,7 @@ const SimpleHashToolsDebugger = () => { } + title={} noScroll render={() => ( <> diff --git a/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/Disclaimer.tsx b/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/Disclaimer.tsx index 6330f239963c..b8aac8ba8d64 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/Disclaimer.tsx +++ b/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/Disclaimer.tsx @@ -6,7 +6,7 @@ import TrackPage from "~/renderer/analytics/TrackPage"; import Markdown, { Notes } from "~/renderer/components/Markdown"; type Props = { - firmware?: FirmwareUpdateContext; + firmware: FirmwareUpdateContext; onContinue(): void; }; diff --git a/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/helpers/createFirmwareUpdateSteps.ts b/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/helpers/createFirmwareUpdateSteps.ts index b03f75f8cf2d..882af5c2fd44 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/helpers/createFirmwareUpdateSteps.ts +++ b/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/helpers/createFirmwareUpdateSteps.ts @@ -10,6 +10,16 @@ import { Step, StepId, STEPS } from "../types"; import { isDeviceLocalizationSupported } from "@ledgerhq/live-common/device/use-cases/isDeviceLocalizationSupported"; import { isCustomLockScreenSupported } from "@ledgerhq/live-common/device/use-cases/isCustomLockScreenSupported"; +export function isRestoreStepEnabled( + deviceModelId: DeviceModelId, + firmware: FirmwareUpdateContext, +): boolean { + return ( + isCustomLockScreenSupported(deviceModelId) || + isDeviceLocalizationSupported(firmware.final.name, deviceModelId) + ); +} + export const createFirmwareUpdateSteps = ({ firmware, withFinal, @@ -17,15 +27,13 @@ export const createFirmwareUpdateSteps = ({ deviceModelId, stateStepId, }: { - firmware?: FirmwareUpdateContext; + firmware: FirmwareUpdateContext; withFinal: boolean; withResetStep: boolean; deviceModelId: DeviceModelId; stateStepId: StepId; }) => { - const hasRestoreStep = - isCustomLockScreenSupported(deviceModelId) || - (firmware && isDeviceLocalizationSupported(firmware.final.name, deviceModelId)); + const hasRestoreStep = isRestoreStepEnabled(deviceModelId, firmware); const restoreStepLabel = stateStepId === STEPS.FINISH diff --git a/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/index.tsx b/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/index.tsx index e4e1e6a2ce4e..507f5729a559 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/index.tsx @@ -22,7 +22,7 @@ export type Props = { withAppsToReinstall: boolean; onDrawerClose: (reinstall?: boolean) => void; onRequestClose: () => void; - firmware?: FirmwareUpdateContext; + firmware: FirmwareUpdateContext; stepId: StepId; error?: Error | null | undefined; deviceModelId: DeviceModelId; @@ -55,7 +55,7 @@ const UpdateModal = ({ const [err, setErr] = useState(error || null); const [CLSBackup, setCLSBackup] = useState(); const [updatedDeviceInfo, setUpdatedDeviceInfo] = useState(undefined); - const withFinal = useMemo(() => hasFinalFirmware(firmware?.final), [firmware]); + const withFinal = useMemo(() => hasFinalFirmware(firmware.final), [firmware]); const [cancel, setCancel] = useState(false); const isDisconnectedDeviceError = err instanceof DisconnectedDevice; @@ -120,7 +120,7 @@ const UpdateModal = ({ setUpdatedDeviceInfo, appsToBeReinstalled: withAppsToReinstall, - transitionTo: setStateStepId, + transitionTo: setStateStepId, // FIXME: this is a really bad idea that should be reworked, as the steps are determined dynamically, a child might want to transition to a step that doesn't exist CLSBackup, deviceModelId, error: err, diff --git a/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/steps/01-step-prepare.tsx b/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/steps/01-step-prepare.tsx index 46e8d2793717..515536998eac 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/steps/01-step-prepare.tsx +++ b/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/steps/01-step-prepare.tsx @@ -163,6 +163,11 @@ const StepPrepare = ({ // the firmware update payload to the device whereas now we are backing up the CLS too // but only for stax or europa. const deviceId = device?.deviceId ?? ""; + + // Back app data for installed apps before initiating the firmware update. + // TODO: + + // This is the backup of the CLS for stax or flex devices. const maybeCLSBackup = deviceInfo.onboarded && isCustomLockScreenSupported(deviceModelId) ? customLockScreenFetch({ diff --git a/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/steps/02-step-flash-mcu.tsx b/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/steps/02-step-flash-mcu.tsx index 94a91d7c7675..4d1040cbb3ce 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/steps/02-step-flash-mcu.tsx +++ b/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/steps/02-step-flash-mcu.tsx @@ -5,7 +5,6 @@ import styled from "styled-components"; import { DeviceModelId } from "@ledgerhq/devices"; import { DeviceInfo, FirmwareUpdateContext } from "@ledgerhq/types-live"; import { hasFinalFirmware } from "@ledgerhq/live-common/hw/hasFinalFirmware"; -import { isDeviceLocalizationSupported } from "@ledgerhq/live-common/device/use-cases/isDeviceLocalizationSupported"; import firmwareUpdateMain from "@ledgerhq/live-common/hw/firmwareUpdate-main"; import { withDevicePolling } from "@ledgerhq/live-common/hw/deviceAccess"; import getDeviceInfo from "@ledgerhq/live-common/hw/getDeviceInfo"; @@ -17,6 +16,7 @@ import { mockedEventEmitter } from "~/renderer/components/debug/DebugMock"; import Installing from "../Installing"; import { Body as StepUpdatingBody } from "./02-step-updating"; import { StepProps } from "../types"; +import { isRestoreStepEnabled } from "../helpers/createFirmwareUpdateSteps"; const Container = styled(Box).attrs(() => ({ alignItems: "center", @@ -98,9 +98,8 @@ const StepFlashMcu = ({ .subscribe({ next: setUpdatedDeviceInfo, complete: () => { - const shouldGoToLanguageStep = - firmware && isDeviceLocalizationSupported(firmware.final.name, deviceModelId); - transitionTo(shouldGoToLanguageStep ? "restore" : "finish"); + const nextStep = isRestoreStepEnabled(deviceModelId, firmware) ? "restore" : "finish"; + transitionTo(nextStep); }, error: (error: Error) => { setError(error); @@ -132,8 +131,6 @@ const StepFlashMcu = ({ // Updates the MCU useEffect(() => { - if (!firmware) return; - setTimeout(() => { setInitialDelayPhase(false); }, DELAY_PHASE); diff --git a/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/steps/02-step-updating.tsx b/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/steps/02-step-updating.tsx index 5a9f066e5a2e..75038435d84a 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/steps/02-step-updating.tsx +++ b/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/steps/02-step-updating.tsx @@ -12,6 +12,7 @@ import { mockedEventEmitter } from "~/renderer/components/debug/DebugMock"; import { renderFirmwareUpdating } from "~/renderer/components/DeviceAction/rendering"; import useTheme from "~/renderer/hooks/useTheme"; import { StepProps } from "../types"; +import { isRestoreStepEnabled } from "../helpers/createFirmwareUpdateSteps"; const Container = styled(Box).attrs(() => ({ alignItems: "center", @@ -56,7 +57,8 @@ const StepUpdating = ({ .subscribe({ next: setUpdatedDeviceInfo, complete: () => { - transitionTo("restore"); + const nextStep = isRestoreStepEnabled(deviceModelId, firmware) ? "restore" : "finish"; + transitionTo(nextStep); }, error: (error: Error) => { setError(error); diff --git a/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/types.ts b/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/types.ts index e45f55b10820..51f4745b5523 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/types.ts +++ b/apps/ledger-live-desktop/src/renderer/modals/UpdateFirmwareModal/types.ts @@ -13,7 +13,7 @@ export const STEPS = { export type StepId = (typeof STEPS)[keyof typeof STEPS]; export type StepProps = { - firmware?: FirmwareUpdateContext; + firmware: FirmwareUpdateContext; appsToBeReinstalled: boolean; onDrawerClose: (reinstall?: boolean) => void; error?: Error | null | undefined; diff --git a/apps/ledger-live-desktop/src/renderer/modals/WalletSyncDebugger/index.tsx b/apps/ledger-live-desktop/src/renderer/modals/WalletSyncDebugger/index.tsx index d5bf8e2f1741..2a642208276e 100644 --- a/apps/ledger-live-desktop/src/renderer/modals/WalletSyncDebugger/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/modals/WalletSyncDebugger/index.tsx @@ -1,92 +1,36 @@ import React, { useMemo, useState } from "react"; import { Trans, useTranslation } from "react-i18next"; import Modal, { ModalBody } from "~/renderer/components/Modal"; -import Select from "~/renderer/components/Select"; import { ScrollArea } from "~/renderer/components/Onboarding/ScrollArea"; -import { Flex, Text } from "@ledgerhq/react-ui"; -import { Flow, Step } from "~/renderer/reducers/walletSync"; -import Switch from "~/renderer/components/Switch"; -import ButtonV3 from "~/renderer/components/ButtonV3"; -import { useDispatch } from "react-redux"; -import { - addInstance, - setFaked, - setFlow, - setQrCodePinCode, - setQrCodeUrl, -} from "~/renderer/actions/walletSync"; -import { useHistory } from "react-router"; -import styled, { useTheme } from "styled-components"; -import { TrustchainMember } from "@ledgerhq/trustchain/types"; -import { FlowOptions } from "LLD/features/WalletSync/hooks/useFlows"; - -type State = { - flow: Flow; - step: Step | null; - instances: TrustchainMember[]; +import { Flex } from "@ledgerhq/react-ui"; +import TabBar from "~/renderer/components/TabBar"; +import { GeneratorLedgerSync } from "~/renderer/screens/settings/sections/Developer/WalletSync/Generator"; +import { CheckerLedgerSync } from "~/renderer/screens/settings/sections/Developer/WalletSync/Checker"; + +const getItems = (t: (a: string) => string) => { + const items = [ + { + key: "generator", + label: t("settings.developer.debugWalletSync.modal.generator.title"), + value: , + }, + { + key: "checker", + label: t("settings.developer.debugWalletSync.modal.check.title"), + value: , + }, + ]; + + return items; }; const WalletSyncDebugger = () => { const { t } = useTranslation(); - const { colors } = useTheme(); - const history = useHistory(); - const dispatch = useDispatch(); - - const [state, setState] = useState({ - flow: Flow.Activation, - step: Step.CreateOrSynchronize, - instances: [], - }); - - const flowsOptions = Object.keys(FlowOptions).map(flow => ({ - label: flow, - value: flow as Flow, - })); - - const stepOptions = useMemo(() => { - const currentFlow = FlowOptions[state.flow]; - return Object.values(currentFlow.steps).map(step => ({ - label: step, - value: step, - })); - }, [state.flow]); - - const apply = () => { - if (state.flow && state.step) { - dispatch(setFlow({ flow: state.flow, step: state.step })); - dispatch(setFaked(true)); + const [activeTabIndex, setActiveTabIndex] = useState(0); - dispatch(setQrCodePinCode("392")); - dispatch(setQrCodeUrl("url")); + const items = useMemo(() => getItems(t), [t]); - if (state.instances.length > 0) - state.instances.forEach(instance => dispatch(addInstance(instance))); - - history.push("/settings"); - setTimeout(() => { - const aboutPageNode = document.getElementById("setting-walletSync"); - aboutPageNode?.scrollIntoView({ behavior: "smooth" }); - }, 0); - } - }; - - const generateInstances = () => { - if (state.instances.length > 0) { - setState({ ...state, instances: [] }); - return; - } - const instances = Array.from( - { length: Math.floor(Math.random() * 5) }, - (_, index) => - ({ - id: String(index), - name: index % 2 === 0 ? `Iphone ${index + 1}` : "macOS", - permissions: index % 2 === 0 ? 1 : 2, - }) as TrustchainMember, - ); - - setState({ ...state, instances }); - }; + const activeItem = useMemo(() => items[activeTabIndex], [activeTabIndex, items]); return ( { } + title={} noScroll render={() => ( - - - - {t("settings.experimental.features.testWalletSync.modal.flow")} - -
-                        {`"${key}"`} : {JSON.stringify(value, null, 2)}
-                      
- - ))} - - - { - apply(); - onClose(); - }} - disabled={!state.step} - > - {t("settings.experimental.features.testWalletSync.modal.cta")} - -
- + + )} /> )} @@ -171,17 +69,3 @@ const WalletSyncDebugger = () => { ); }; export default WalletSyncDebugger; - -const StingifyComponent = styled(Flex)` - max-height: 300px; - overflow-y: auto; - - ::-webkit-scrollbar-thumb { - background-color: ${p => p.theme.colors.opacityDefault.c20}; - } - - ::-webkit-scrollbar-track { - background-color: ${p => p.theme.colors.opacityDefault.c10}; - border-radius: 8px; - } -`; diff --git a/apps/ledger-live-desktop/src/renderer/reducers/accounts.ts b/apps/ledger-live-desktop/src/renderer/reducers/accounts.ts index 722ad096ec74..bb391069b0f5 100644 --- a/apps/ledger-live-desktop/src/renderer/reducers/accounts.ts +++ b/apps/ledger-live-desktop/src/renderer/reducers/accounts.ts @@ -187,6 +187,20 @@ export const getNFTById = createSelector( ) => nftId, (nfts, nftId) => nfts.find(nft => nft?.id === nftId), ); + +export const getNFTsByListOfIds = createSelector( + getAllNFTs, + ( + _: State, + { + nftIds, + }: { + nftIds: string[]; + }, + ) => nftIds, + (nfts, nftIds) => nfts.filter(nft => nft && nft.id && nftIds.includes(nft.id)), +); + export const flattenAccountsSelector = createSelector(accountsSelector, flattenAccounts); /** diff --git a/apps/ledger-live-desktop/src/renderer/reducers/walletSync.ts b/apps/ledger-live-desktop/src/renderer/reducers/walletSync.ts index d4678d1cefc4..49bca4bb680a 100644 --- a/apps/ledger-live-desktop/src/renderer/reducers/walletSync.ts +++ b/apps/ledger-live-desktop/src/renderer/reducers/walletSync.ts @@ -7,7 +7,7 @@ export enum Flow { Synchronize = "Synchronize", ManageInstances = "ManageInstances", ManageBackup = "ManageBackup", - WalletSyncActivated = "WalletSyncActivated", + LedgerSyncActivated = "LedgerSyncActivated", } export enum Step { @@ -21,14 +21,20 @@ export enum Step { CreateOrSynchronize = "CreateOrSynchronize", DeviceAction = "DeviceAction", CreateOrSynchronizeTrustChain = "CreateOrSynchronizeTrustChain", + ActivationLoading = "ActivationLoading", ActivationFinal = "ActivationFinal", SynchronizationFinal = "SynchronizationFinal", SynchronizationError = "SynchronizationError", + AlreadySecuredSameSeed = "AlreadySecuredSameSeed", + AlreadySecuredOtherSeed = "AlreadySecuredOtherSeed", //Synchronize SynchronizeMode = "SynchronizeMode", SynchronizeWithQRCode = "SynchronizeWithQRCode", PinCode = "PinCode", + PinCodeError = "PinCodeError", + SynchronizeLoading = "SynchronizeLoading", + UnbackedError = "UnbackedError", Synchronized = "Synchronized", //ManageInstances @@ -41,13 +47,15 @@ export enum Step { AutoRemoveInstance = "AutoRemoveInstance", //walletSyncActivated - WalletSyncActivated = "WalletSyncActivated", + LedgerSyncActivated = "LedgerSyncActivated", } export type WalletSyncState = { isDrawerOpen: boolean; flow: Flow; step: Step; + nextStep: Step | null; + hasTrustchainBeenCreated: boolean | null; instances: TrustchainMember[]; hasBeenfaked: boolean; qrCodeUrl: string | null; @@ -58,15 +66,24 @@ export const initialStateWalletSync: WalletSyncState = { isDrawerOpen: false, flow: Flow.Activation, step: Step.CreateOrSynchronize, + nextStep: null, + hasTrustchainBeenCreated: null, instances: [], hasBeenfaked: false, qrCodePinCode: null, qrCodeUrl: null, }; +export type ChangeFlowPayload = { + flow: Flow; + step: Step; + nextStep?: Step | null; + hasTrustchainBeenCreated?: boolean | null; +}; + type HandlersPayloads = { WALLET_SYNC_CHANGE_DRAWER_VISIBILITY: boolean; - WALLET_SYNC_CHANGE_FLOW: { flow: Flow; step: Step }; + WALLET_SYNC_CHANGE_FLOW: ChangeFlowPayload; WALLET_SYNC_CHANGE_ADD_INSTANCE: TrustchainMember; WALLET_SYNC_CHANGE_REMOVE_INSTANCE: TrustchainMember; WALLET_SYNC_CHANGE_CLEAN_INSTANCES: undefined; @@ -92,11 +109,15 @@ const handlers: WalletSyncHandlers = { }), WALLET_SYNC_CHANGE_FLOW: ( state: WalletSyncState, - { payload: { flow, step } }: { payload: { flow: Flow; step: Step } }, + { + payload: { flow, step, nextStep = null, hasTrustchainBeenCreated = null }, + }: { payload: ChangeFlowPayload }, ) => ({ ...state, flow, step, + nextStep, + hasTrustchainBeenCreated, }), WALLET_SYNC_CHANGE_ADD_INSTANCE: ( state: WalletSyncState, @@ -147,6 +168,11 @@ export const walletSyncFlowSelector = (state: { walletSync: WalletSyncState }) = state.walletSync.flow; export const walletSyncStepSelector = (state: { walletSync: WalletSyncState }) => state.walletSync.step; +export const walletSyncNextStepSelector = (state: { walletSync: WalletSyncState }) => + state.walletSync.nextStep; +export const walletSyncHasTrustchainBeenCreatedSelector = (state: { + walletSync: WalletSyncState; +}) => state.walletSync.hasTrustchainBeenCreated; export const walletSyncInstancesSelector = (state: { walletSync: WalletSyncState }) => state.walletSync.instances; diff --git a/apps/ledger-live-desktop/src/renderer/screens/account/index.tsx b/apps/ledger-live-desktop/src/renderer/screens/account/index.tsx index fe47f0b6854a..26c74695c8c6 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/account/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/account/index.tsx @@ -27,6 +27,8 @@ import Box from "~/renderer/components/Box"; import OperationsList from "~/renderer/components/OperationsList"; import useTheme from "~/renderer/hooks/useTheme"; import Collections from "~/renderer/screens/nft/Collections"; +import NftCollections from "LLD/features/Collectibles/Nfts/Collections"; +import OrdinalsAccount from "LLD/features/Collectibles/Ordinals/screens/Account"; import BalanceSummary from "./BalanceSummary"; import AccountHeader from "./AccountHeader"; import AccountHeaderActions, { AccountHeaderSettingsButton } from "./AccountHeaderActions"; @@ -41,6 +43,7 @@ import TopBanner from "~/renderer/components/TopBanner"; import { useLocalizedUrl } from "~/renderer/hooks/useLocalizedUrls"; import { urls } from "~/config/urls"; import { CurrencyConfig } from "@ledgerhq/coin-framework/config"; +import { useFeature } from "@ledgerhq/live-common/featureFlags/index"; type Params = { id: string; @@ -105,6 +108,12 @@ const AccountPage = ({ const [shouldFilterTokenOpsZeroAmount] = useFilterTokenOperationsZeroAmount(); const hiddenNftCollections = useSelector(hiddenNftCollectionsSelector); + const nftReworked = useFeature("lldNftsGalleryNewArch"); + const isNftReworkedEnabled = nftReworked?.enabled; + + const ordinalsFF = useFeature("lldnewArchOrdinals"); + const isOrdinalsEnabled = ordinalsFF?.enabled; + const filterOperations = useCallback( (operation: Operation, account: AccountLike) => { // Remove operations linked to address poisoning @@ -204,7 +213,14 @@ const AccountPage = ({ ) : null} {account.type === "Account" && isNFTActive(account.currency) ? ( - + isNftReworkedEnabled ? ( + + ) : ( + + ) + ) : null} + {isOrdinalsEnabled && account.type === "Account" && account.currency.id === "bitcoin" ? ( + ) : null} {account.type === "Account" ? : null} + {manifest ? ( + ), + }} + /> + ) : null} + + ); +} diff --git a/apps/ledger-live-desktop/src/renderer/screens/card/index.tsx b/apps/ledger-live-desktop/src/renderer/screens/card/index.tsx index b67c71c1611b..59d19258a114 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/card/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/card/index.tsx @@ -1,49 +1,78 @@ -import { useRemoteLiveAppManifest } from "@ledgerhq/live-common/platform/providers/RemoteLiveAppProvider/index"; import React from "react"; import { useLocation } from "react-router-dom"; +import { useSelector } from "react-redux"; +import Card from "~/renderer/components/Box/Card"; +import { + developerModeSelector, + languageSelector, + localeSelector, +} from "~/renderer/reducers/settings"; +import { useRemoteLiveAppManifest } from "@ledgerhq/live-common/platform/providers/RemoteLiveAppProvider/index"; import useTheme from "~/renderer/hooks/useTheme"; -import { Card } from "~/renderer/components/Box"; -import WebPlatformPlayer from "~/renderer/components/WebPlatformPlayer"; -export const CARD_APP_ID = "cl-card"; +import WebPTXPlayer from "~/renderer/components/WebPTXPlayer"; +import { LiveAppManifest } from "@ledgerhq/live-common/platform/types"; +import { useFeature } from "@ledgerhq/live-common/featureFlags/index"; +import { CARD_APP_ID } from "@ledgerhq/live-common/wallet-api/constants"; +import { useLocalLiveAppManifest } from "@ledgerhq/live-common/wallet-api/LocalLiveAppProvider/index"; +import CardPlatformApp from "./CardPlatformApp"; + +const LiveAppCard = () => { + const { state: urlParams, search } = useLocation(); + const searchParams = new URLSearchParams(search); + const locale = useSelector(localeSelector); + const language = useSelector(languageSelector); + const devMode = useSelector(developerModeSelector); -/** - * FIXME - * Duplicate from src/renderer/screens/platform/App.js - */ + const mockManifest: LiveAppManifest | undefined = + process.env.MOCK_REMOTE_LIVE_MANIFEST && JSON.parse(process.env.MOCK_REMOTE_LIVE_MANIFEST)[0]; -export default function CardPlatformApp() { - const { state: urlParams } = useLocation(); - const manifest = useRemoteLiveAppManifest(CARD_APP_ID); + const localManifest = useLocalLiveAppManifest(CARD_APP_ID); + const remoteManifest = useRemoteLiveAppManifest(CARD_APP_ID); + const manifest = localManifest || mockManifest || remoteManifest; const themeType = useTheme().colors.palette.type; - // TODO for next urlscheme evolutions: - // - check if local settings allow to launch an app from this branch, else display an error - // - check if the app is available in store, else display a loader if apps are getting fetched from remote, else display an error stating that the app doesn't exist + /** + * Given the user is on an internal app (webview url is owned by LL) we must reset the session + * to ensure the context is reset. last-screen is used to give an external app's webview context + * of the last screen the user was on before navigating to the external app screen. + */ + if (manifest?.id) { + const { localStorage } = window; + localStorage.removeItem("last-screen"); + localStorage.removeItem("manifest-id"); + } return ( {manifest ? ( - ), + lang: language, + locale: locale, + devMode, + ...Object.fromEntries(searchParams.entries()), }} /> ) : null} ); -} +}; + +const CardDapp = () => { + const ptxCardFlag = useFeature("ptxCard"); + if (ptxCardFlag?.enabled) { + return ; + } else { + return ; // Baanx card + } +}; +export default CardDapp; diff --git a/apps/ledger-live-desktop/src/renderer/screens/customImage/Step1ChooseImage.tsx b/apps/ledger-live-desktop/src/renderer/screens/customImage/Step1ChooseImage.tsx index 71f544c415f2..924b1db1c5ef 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/customImage/Step1ChooseImage.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/customImage/Step1ChooseImage.tsx @@ -19,10 +19,6 @@ import useIsMounted from "@ledgerhq/live-common/hooks/useIsMounted"; import TrackPage from "~/renderer/analytics/TrackPage"; import { analyticsPageNames, analyticsFlowName } from "./shared"; import { useTrack } from "~/renderer/analytics/segment"; -import { setDrawer } from "~/renderer/drawers/Provider"; -import RemoveCustomImage from "../manager/DeviceDashboard/DeviceInformationSummary/RemoveCustomImage"; -import { useSelector } from "react-redux"; -import { lastSeenCustomImageSelector } from "~/renderer/reducers/settings"; type Props = StepProps & { onResult: (res: ImageBase64Data) => void; @@ -30,6 +26,8 @@ type Props = StepProps & { isShowingNftGallery?: boolean; setIsShowingNftGallery: (_: boolean) => void; loading?: boolean; + hasCustomLockScreen?: boolean; + onClickRemoveCustomImage: () => void; }; const defaultMediaTypes = ["original", "big", "preview"]; @@ -47,8 +45,16 @@ const extractNftBase64 = (metadata: NFTMetadata) => { }; const StepChooseImage: React.FC = props => { - const { loading, setLoading, onResult, onError, isShowingNftGallery, setIsShowingNftGallery } = - props; + const { + loading, + setLoading, + onResult, + onError, + isShowingNftGallery, + setIsShowingNftGallery, + hasCustomLockScreen, + onClickRemoveCustomImage, + } = props; const isMounted = useIsMounted(); const { t } = useTranslation(); const track = useTrack(); @@ -103,12 +109,6 @@ const StepChooseImage: React.FC = props => { [isMounted, onError, selectedNftId], ); - const lastSeenCustomImage = useSelector(lastSeenCustomImageSelector); - - const onRemove = useCallback(() => { - setDrawer(RemoveCustomImage, {}); - }, []); - return ( = props => { }); }} /> - {lastSeenCustomImage?.size ? ( + {hasCustomLockScreen ? ( {t("removeCurrentPicture.cta")} diff --git a/apps/ledger-live-desktop/src/renderer/screens/customImage/index.tsx b/apps/ledger-live-desktop/src/renderer/screens/customImage/index.tsx index ec912681dd58..f2e798b82732 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/customImage/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/customImage/index.tsx @@ -36,6 +36,7 @@ import TrackPage, { setTrackingSource } from "~/renderer/analytics/TrackPage"; import { useTrack } from "~/renderer/analytics/segment"; import DeviceModelPicker from "~/renderer/components/CustomImage/DeviceModelPicker"; import { useCompleteActionCallback } from "~/renderer/components/PostOnboardingHub/logic/useCompleteAction"; +import RemoveCustomImage from "../manager/DeviceDashboard/DeviceInformationSummary/RemoveCustomImage"; type Props = { imageUri?: string; @@ -43,6 +44,8 @@ type Props = { isFromPostOnboardingEntryPoint?: boolean; reopenPreviousDrawer?: () => void; deviceModelId: DeviceModelId | null; + hasCustomLockScreen?: boolean; + setHasCustomLockScreen?: (value: boolean) => void; }; const orderedSteps: Step[] = [ @@ -55,8 +58,14 @@ const orderedSteps: Step[] = [ const ErrorDisplayV2 = withV2StyleProvider(ErrorDisplay); const CustomImage: React.FC = props => { - const { imageUri, isFromNFTEntryPoint, reopenPreviousDrawer, isFromPostOnboardingEntryPoint } = - props; + const { + imageUri, + isFromNFTEntryPoint, + reopenPreviousDrawer, + isFromPostOnboardingEntryPoint, + hasCustomLockScreen, + setHasCustomLockScreen, + } = props; const { t } = useTranslation(); const track = useTrack(); const { setAnalyticsDrawerName } = useContext(analyticsDrawerContext); @@ -153,8 +162,9 @@ const CustomImage: React.FC = props => { }, []); const handleStepTransferResult = useCallback(() => { + setHasCustomLockScreen && setHasCustomLockScreen(true); setTransferDone(true); - }, []); + }, [setHasCustomLockScreen]); const handleError = useCallback( (step: Step, error: Error) => { @@ -230,6 +240,20 @@ const CustomImage: React.FC = props => { ) : null; + const [isShowingRemoveCustomImage, setIsShowingRemoveCustomImage] = useState(false); + const onClickRemoveCustomImage = useCallback(() => { + setIsShowingRemoveCustomImage(true); + }, []); + + if (isShowingRemoveCustomImage) { + return ( + setDrawer()} + onRemoved={setHasCustomLockScreen ? () => setHasCustomLockScreen(false) : undefined} + /> + ); + } + return ( = props => { setLoading={setSourceLoading} isShowingNftGallery={isShowingNftGallery} setIsShowingNftGallery={setIsShowingNftGallery} + hasCustomLockScreen={hasCustomLockScreen} + onClickRemoveCustomImage={onClickRemoveCustomImage} /> { + return ( + + + + + + + + + + + + + + + ); +}; + +export default SellCompleted; diff --git a/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/App/App.tsx b/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/App/App.tsx new file mode 100644 index 000000000000..ecbb5d8de74b --- /dev/null +++ b/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/App/App.tsx @@ -0,0 +1,53 @@ +import { useSwapLiveConfig } from "@ledgerhq/live-common/exchange/swap/hooks/index"; +import { useRemoteLiveAppManifest } from "@ledgerhq/live-common/platform/providers/RemoteLiveAppProvider/index"; +import { useLocalLiveAppManifest } from "@ledgerhq/live-common/wallet-api/LocalLiveAppProvider/index"; +import React, { useState } from "react"; +import styled from "styled-components"; +import SwapWebView from "~/renderer/screens/exchange/Swap2/Form/SwapWebViewDemo3"; + +const Root = styled.div` + display: flex; + flex-direction: column; + justify-content: flex-start; +`; + +// TODO: fix with proper error handling +const ErrorWrapper = styled.div` + width: auto; + display: inline-flex; + align-self: center; + align-items: center; + justify-self: center; + justify-content: center; + padding: 24px; + border-radius: 14px; + background-color: rgba(255, 0, 0, 0.3); + color: #fff; + font-weight: 500; +`; + +export function SwapApp() { + const [unavailable, setUnavailable] = useState(false); + const swapLiveEnabledFlag = useSwapLiveConfig(); + const swapLiveAppManifestID = swapLiveEnabledFlag?.params?.manifest_id; + + const localManifest = useLocalLiveAppManifest(swapLiveAppManifestID || undefined); + const remoteManifest = useRemoteLiveAppManifest(swapLiveAppManifestID || undefined); + const manifest = localManifest || remoteManifest; + + if (!manifest) { + // TODO: fix with proper error handling + return Unable to load application: missing manifest; + } + + if (unavailable) { + // TODO: fix with proper error handling + return Unable to load application: Unavailable; + } + + return ( + + setUnavailable(true)} /> + + ); +} diff --git a/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/App/index.ts b/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/App/index.ts new file mode 100644 index 000000000000..c85430266518 --- /dev/null +++ b/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/App/index.ts @@ -0,0 +1 @@ +export * from "./App"; diff --git a/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/Form/ExchangeDrawer/SwapCompleted.tsx b/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/Form/ExchangeDrawer/SwapCompleted.tsx index f884f3ec07a1..9ca129c4de46 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/Form/ExchangeDrawer/SwapCompleted.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/Form/ExchangeDrawer/SwapCompleted.tsx @@ -12,23 +12,13 @@ import { GradientHover } from "~/renderer/drawers/OperationDetails/styledCompone import IconCheck from "~/renderer/icons/Check"; import IconClock from "~/renderer/icons/Clock"; import { openURL } from "~/renderer/linking"; -import { colors } from "~/renderer/styles/theme"; import { track } from "~/renderer/analytics/segment"; import { getSwapProvider, AdditionalProviderConfig, } from "@ledgerhq/live-common/exchange/providers/swap"; +import { IconWrapper, WrapperClock } from "../../../shared/shared-styles"; -const IconWrapper = styled(Box)` - background: ${colors.lightGreen}; - color: ${colors.positiveGreen}; - width: 50px; - height: 50px; - border-radius: 25px; - align-items: center; - justify-content: center; - position: relative; -`; const Pill = styled(Text)` user-select: text; border-radius: 4px; @@ -59,16 +49,6 @@ const SwapIdWrapper = styled(Box).attrs(p => ({ } } `; -const WrapperClock = styled(Box).attrs(() => ({ - bg: "palette.background.paper", - color: "palette.text.shade60", -}))` - border-radius: 50%; - position: absolute; - bottom: -2px; - right: -2px; - padding: 2px; -`; const SwapCompleted = ({ swapId, diff --git a/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/Form/FeesDrawerLiveApp/index.tsx b/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/Form/FeesDrawerLiveApp/index.tsx index 2fd7b637a9c5..1301efcecc60 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/Form/FeesDrawerLiveApp/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/exchange/Swap2/Form/FeesDrawerLiveApp/index.tsx @@ -9,7 +9,6 @@ import { t } from "i18next"; import { Transaction } from "@ledgerhq/live-common/generated/types"; import { Button, Divider } from "@ledgerhq/react-ui"; import { getAccountBridge } from "@ledgerhq/live-common/bridge/impl"; -import ErrorBanner from "~/renderer/components/ErrorBanner"; type Props = { setTransaction: SwapTransactionType["setTransaction"]; @@ -37,33 +36,50 @@ export default function FeesDrawerLiveApp({ const [isOpen, setIsOpen] = useState(true); const [transaction, setTransactionState] = useState(initialTransaction); const [transactionStatus, setTransactionStatus] = useState(status); + const bridge = getAccountBridge(mainAccount, parentAccount); const handleSetTransaction = useCallback( (transaction: Transaction) => { - setTransactionState(transaction); - setTransaction(transaction); + const account = mainAccount.type === "TokenAccount" ? parentAccount : mainAccount; + bridge + .prepareTransaction(account, transaction) + .then(preparedTransaction => + bridge.getTransactionStatus(account, preparedTransaction).then(status => { + setTransactionStatus(status); + setTransactionState(preparedTransaction); + setTransaction(preparedTransaction); + }), + ) + .catch(error => { + console.error("Error preparing transaction:", error); + }); }, - [setTransaction], + [setTransaction, bridge, mainAccount, parentAccount], ); - const bridge = getAccountBridge(mainAccount, parentAccount); - const handleUpdateTransaction = useCallback( (updater: (arg0: Transaction) => Transaction) => { + const account = mainAccount.type === "TokenAccount" ? parentAccount : mainAccount; setTransactionState(prevTransaction => { - const updatedTransaction = updater(prevTransaction); - setTransaction(updatedTransaction); + let updatedTransaction = updater(prevTransaction); bridge - .getTransactionStatus( - mainAccount.type === "TokenAccount" ? parentAccount : mainAccount, - transaction, + .prepareTransaction(account, updatedTransaction) + .then(preparedTransaction => + bridge.getTransactionStatus(account, preparedTransaction).then(status => { + setTransactionStatus(status); + setTransaction(preparedTransaction); + updatedTransaction = preparedTransaction; + }), ) - .then(setTransactionStatus); + .catch(error => { + console.error("Error updating transaction:", error); + return prevTransaction; + }); return updatedTransaction; }); }, - [setTransaction, bridge, mainAccount, transaction, parentAccount], + [setTransaction, bridge, mainAccount, parentAccount], ); const mapStrategies = useCallback( @@ -102,7 +118,7 @@ export default function FeesDrawerLiveApp({ - {transactionStatus.errors?.amount && ( - - - - )} - + {!ledgerSyncFF?.enabled && ( + + + + )} - ""} accounts={[]} /> + ""} + accounts={[]} + dataTestId="save-operation-history-btn" + /> ); diff --git a/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Accounts/HideEmptyTokenAccountsToggle.tsx b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Accounts/HideEmptyTokenAccountsToggle.tsx index d361d9e22722..fbc6227a6237 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Accounts/HideEmptyTokenAccountsToggle.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Accounts/HideEmptyTokenAccountsToggle.tsx @@ -17,7 +17,7 @@ export default function HideEmptyTokenAccountsToggle() { ); diff --git a/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Accounts/index.tsx b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Accounts/index.tsx index b5170eeace31..cd5aff1b899c 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Accounts/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Accounts/index.tsx @@ -10,10 +10,12 @@ import BlacklistedTokens from "./BlacklistedTokens"; import HiddenNftCollections from "./HiddenNFTCollections"; export default function SectionAccounts() { const { t } = useTranslation(); + return ( + { const dispatch = useDispatch(); const allowDebugApps = useSelector(allowDebugAppsSelector); diff --git a/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/MockAppUpdate.tsx b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/MockAppUpdate.tsx new file mode 100644 index 000000000000..d893db302348 --- /dev/null +++ b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/MockAppUpdate.tsx @@ -0,0 +1,26 @@ +import useEnv from "@ledgerhq/live-common/hooks/useEnv"; +import { setEnv } from "@ledgerhq/live-env"; +import React, { useCallback } from "react"; + +import Track from "~/renderer/analytics/Track"; +import Switch from "~/renderer/components/Switch"; + +const MockAppUpdate = () => { + const env = useEnv("MOCK_APP_UPDATE"); + + const onSetMockAppUpdate = useCallback((checked: boolean) => { + setEnv("MOCK_APP_UPDATE", checked); + }, []); + + return ( + <> + + + + ); +}; +export default MockAppUpdate; diff --git a/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/OnboardingAppInstallDebug.tsx b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/OnboardingAppInstallDebug.tsx index 137f6e2a7061..ee5686c2f610 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/OnboardingAppInstallDebug.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/OnboardingAppInstallDebug.tsx @@ -136,7 +136,7 @@ const OnboardingAppInstallDebugScreen = () => { /> )} - + diff --git a/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/SimpleHashTools/SimpleHashTools.tsx b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/SimpleHashTools/SimpleHashTools.tsx index 4b11fbd3807d..3ae2066c3481 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/SimpleHashTools/SimpleHashTools.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/SimpleHashTools/SimpleHashTools.tsx @@ -14,11 +14,11 @@ const SimpleHashTools = () => { ); return ( ); diff --git a/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/WalletSync/Checker/index.tsx b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/WalletSync/Checker/index.tsx new file mode 100644 index 000000000000..e21cc2719624 --- /dev/null +++ b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/WalletSync/Checker/index.tsx @@ -0,0 +1,139 @@ +import { Alert, Flex, Icons, Text } from "@ledgerhq/react-ui"; + +import React, { useState } from "react"; +import { useTranslation } from "react-i18next"; +import { useLedgerSyncInfo } from "~/newArch/features/WalletSync/hooks/useLedgerSyncInfo"; +import ButtonV3 from "~/renderer/components/ButtonV3"; +import Ellipsis from "~/renderer/components/Ellipsis"; +import FakeLink from "~/renderer/components/FakeLink"; + +export function CheckerLedgerSync() { + const { t } = useTranslation(); + const [copied, setCopied] = useState(false); + + const { walletState, trustchain } = useLedgerSyncInfo(); + + const elements = [ + { + key: t("settings.developer.debugWalletSync.modal.check.trustchain.name"), + value: + trustchain?.rootId ?? + t("settings.developer.debugWalletSync.modal.check.trustchain.emptyId"), + copy: true, + tiny: true, + }, + { + key: t("settings.developer.debugWalletSync.modal.check.trustchain.applicationPath"), + value: + trustchain?.applicationPath ?? + t("settings.developer.debugWalletSync.modal.check.trustchain.emptyApplicationPath"), + copy: true, + tiny: false, + }, + { + key: t("settings.developer.debugWalletSync.modal.check.trustchain.cloudSyncVersion"), + value: "v" + String(walletState.walletSyncState.version), + copy: true, + tiny: false, + }, + { + key: t("settings.developer.debugWalletSync.modal.check.trustchain.uniported"), + value: String(walletState.nonImportedAccountInfos.length), + copy: true, + tiny: false, + }, + ]; + + function copyToClipboard(text?: string) { + setCopied(true); + if (navigator.clipboard && text) { + navigator.clipboard.writeText(text); + } + setTimeout(() => { + setCopied(false); + }, 3000); + } + + const exportToJson = () => { + const jsonObject: Record = {}; + + elements.forEach(element => { + jsonObject[element.key] = element.value; + }); + + const jsonString = `data:text/json;charset=utf-8,${encodeURIComponent( + JSON.stringify(jsonObject, null, 2), + )}`; + + const link = document.createElement("a"); + link.href = jsonString; + link.download = "ledgerSyncInfo.json"; + + document.body.appendChild(link); + link.click(); + document.body.removeChild(link); + }; + + return ( + + {elements.map((element, index) => ( + + + {element.key} + + + {element.tiny ? ( + + copyToClipboard(element.value)} + color={"primary.c80"} + key={0} + ml={2} + variant={"small"} + > + {element.value} + + + ) : ( + copyToClipboard(element.value)} + color={"primary.c80"} + key={0} + ml={2} + variant={"body"} + > + {element.value} + + )} + + {element.copy && ( + copyToClipboard(element.value)} color="neutral.c70"> + + + )} + + ))} + + { + exportToJson(); + }} + > + {t("settings.developer.debugWalletSync.modal.check.export")} + + + {copied && ( + ( + + {t("settings.developer.debugWalletSync.modal.check.copied")} + + )} + /> + )} + + ); +} diff --git a/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/WalletSync/Generator/index.tsx b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/WalletSync/Generator/index.tsx new file mode 100644 index 000000000000..2d64bcdea8c6 --- /dev/null +++ b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/WalletSync/Generator/index.tsx @@ -0,0 +1,167 @@ +import React, { useMemo, useState } from "react"; +import Select from "~/renderer/components/Select"; +import { Flex, Text } from "@ledgerhq/react-ui"; +import { Flow, Step } from "~/renderer/reducers/walletSync"; +import Switch from "~/renderer/components/Switch"; +import ButtonV3 from "~/renderer/components/ButtonV3"; +import { useDispatch } from "react-redux"; +import { + addInstance, + setFaked, + setFlow, + setQrCodePinCode, + setQrCodeUrl, +} from "~/renderer/actions/walletSync"; +import { useHistory } from "react-router"; +import styled, { useTheme } from "styled-components"; +import { TrustchainMember } from "@ledgerhq/trustchain/types"; +import { FlowOptions } from "LLD/features/WalletSync/hooks/useFlows"; +import { useTranslation } from "react-i18next"; + +type State = { + flow: Flow; + step: Step | null; + instances: TrustchainMember[]; +}; + +export function GeneratorLedgerSync() { + const dispatch = useDispatch(); + const { t } = useTranslation(); + const { colors } = useTheme(); + const history = useHistory(); + + const [state, setState] = useState({ + flow: Flow.Activation, + step: Step.CreateOrSynchronize, + instances: [], + }); + + const flowsOptions = Object.keys(FlowOptions).map(flow => ({ + label: flow, + value: flow as Flow, + })); + + const stepOptions = useMemo(() => { + const currentFlow = FlowOptions[state.flow]; + return Object.values(currentFlow.steps).map(step => ({ + label: step, + value: step, + })); + }, [state.flow]); + + const apply = () => { + if (state.flow && state.step) { + dispatch(setFlow({ flow: state.flow, step: state.step })); + dispatch(setFaked(true)); + + dispatch(setQrCodePinCode("392")); + dispatch(setQrCodeUrl("url")); + + if (state.instances.length > 0) + state.instances.forEach(instance => dispatch(addInstance(instance))); + + history.push("/settings"); + setTimeout(() => { + const aboutPageNode = document.getElementById("setting-walletSync"); + aboutPageNode?.scrollIntoView({ behavior: "smooth" }); + }, 0); + } + }; + + const generateInstances = () => { + if (state.instances.length > 0) { + setState({ ...state, instances: [] }); + return; + } + const instances = Array.from( + { length: Math.floor(Math.random() * 5) }, + (_, index) => + ({ + id: String(index), + name: index % 2 === 0 ? `Iphone ${index + 1}` : "macOS", + permissions: index % 2 === 0 ? 1 : 2, + }) as TrustchainMember, + ); + + setState({ ...state, instances }); + }; + return ( + + + {t("settings.developer.debugWalletSync.modal.generator.flow")} + + { + if (option) { + setState({ ...state, step: option.value as Step }); + } + }} + value={{ label: String(state.step), value: String(state.step) }} + options={stepOptions} + /> + + + + {t("settings.developer.debugWalletSync.modal.generator.instance")} + 0} onChange={generateInstances} /> + + + + {Object.entries(state).map(([key, value]) => ( + +
+              {`"${key}"`} : {JSON.stringify(value, null, 2)}
+            
+
+ ))} +
+ + { + apply(); + // onClose(); + }} + disabled={!state.step} + > + {t("settings.developer.debugWalletSync.modal.generator.cta")} + +
+ ); +} + +const StingifyComponent = styled(Flex)` + max-height: 300px; + overflow-y: auto; + + ::-webkit-scrollbar-thumb { + background-color: ${p => p.theme.colors.opacityDefault.c20}; + } + + ::-webkit-scrollbar-track { + background-color: ${p => p.theme.colors.opacityDefault.c10}; + border-radius: 8px; + } +`; diff --git a/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/WalletSync/WalletSyncTester.tsx b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/WalletSync/WalletSyncTester.tsx index 587b76dba129..302c5c2ede2c 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/WalletSync/WalletSyncTester.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/WalletSync/WalletSyncTester.tsx @@ -14,11 +14,11 @@ const WalletSyncTester = () => { ); return ( ); diff --git a/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/index.tsx b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/index.tsx index 254b2ffea40c..91dadf07b9d1 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/index.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/Developer/index.tsx @@ -23,6 +23,7 @@ import AllowDebugReactQueryToggle from "./AllowDebugReactQueryToggle"; import { FeatureToggle } from "@ledgerhq/live-common/featureFlags/index"; import WalletSyncTester from "./WalletSync/WalletSyncTester"; import SimpleHashTools from "./SimpleHashTools/SimpleHashTools"; +import MockAppUpdate from "./MockAppUpdate"; const Default = () => { const { t } = useTranslation(); @@ -49,6 +50,13 @@ const Default = () => { + + + + diff --git a/apps/ledger-live-desktop/src/renderer/screens/settings/sections/General/WalletSync.tsx b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/General/WalletSync.tsx index c3a8d61c916f..1b08b286efc4 100644 --- a/apps/ledger-live-desktop/src/renderer/screens/settings/sections/General/WalletSync.tsx +++ b/apps/ledger-live-desktop/src/renderer/screens/settings/sections/General/WalletSync.tsx @@ -9,13 +9,15 @@ import { walletSyncStepSelector, } from "~/renderer/reducers/walletSync"; import { resetWalletSync, setDrawerVisibility } from "~/renderer/actions/walletSync"; -import { trustchainSelector } from "@ledgerhq/trustchain/store"; + import { - useWalletSyncAnalytics, + useLedgerSyncAnalytics, AnalyticsPage, -} from "LLD/features/WalletSync/hooks/useWalletSyncAnalytics"; + AnalyticsFlow, + StepsOutsideFlow, +} from "LLD/features/WalletSync/hooks/useLedgerSyncAnalytics"; import { BackRef, WalletSyncRouter } from "LLD/features/WalletSync/screens/router"; -import { useFlows, STEPS_WITH_BACK } from "~/newArch/features/WalletSync/hooks/useFlows"; +import { useFlows, STEPS_WITH_BACK } from "LLD/features/WalletSync/hooks/useFlows"; /** * @@ -37,14 +39,19 @@ const WalletSyncRow = () => { const currentStep = useSelector(walletSyncStepSelector); const hasBeenFaked = useSelector(walletSyncFakedSelector); const hasBack = useMemo(() => STEPS_WITH_BACK.includes(currentStep), [currentStep]); - const trustchain = useSelector(trustchainSelector); - const { onClickTrack, onActionTrack } = useWalletSyncAnalytics(); + const hasFlowEvent = useMemo(() => !StepsOutsideFlow.includes(currentStep), [currentStep]); + + const { onClickTrack, onActionTrack } = useLedgerSyncAnalytics(); const handleBack = () => { if (childRef.current && hasBack) { childRef.current.goBack(); - onActionTrack({ button: "Back", step: currentStep, flow: "Wallet Sync" }); + onActionTrack({ + button: "Back", + step: currentStep, + flow: hasFlowEvent ? AnalyticsFlow : undefined, + }); } }; @@ -52,15 +59,19 @@ const WalletSyncRow = () => { if (hasBeenFaked) { dispatch(resetWalletSync()); } else { - onActionTrack({ button: "Close", step: currentStep, flow: "Wallet Sync" }); + onActionTrack({ + button: "Close", + step: currentStep, + flow: hasFlowEvent ? AnalyticsFlow : undefined, + }); } dispatch(setDrawerVisibility(false)); }; const openDrawer = () => { if (!hasBeenFaked) { - goToWelcomeScreenWalletSync(!!trustchain?.rootId); - onClickTrack({ button: "Wallet Sync", page: AnalyticsPage.SettingsGeneral }); + goToWelcomeScreenWalletSync(); + onClickTrack({ button: "Manage Ledger Sync", page: AnalyticsPage.SettingsGeneral }); } dispatch(setDrawerVisibility(true)); }; diff --git a/apps/ledger-live-desktop/static/i18n/en/app.json b/apps/ledger-live-desktop/static/i18n/en/app.json index a993ea314788..266ecad8cbaf 100644 --- a/apps/ledger-live-desktop/static/i18n/en/app.json +++ b/apps/ledger-live-desktop/static/i18n/en/app.json @@ -145,7 +145,8 @@ "add": "Add", "or": "OR", "clearAll": "Clear all", - "buyLedger": "Buy a Ledger" + "buyLedger": "Buy a Ledger", + "quote": "Quote" }, "devices": { "nanoS": "Nano S", @@ -1868,8 +1869,8 @@ "targetAccount": "Target Account" }, "sell": { - "notice": "Verify the Sell details on your device before sending it. The addresses are exchanged securely so you don’t have to verify them.", - "confirm": "Confirm Sell transaction" + "notice": "Verify the details on your device before sending it. The addresses are exchanged securely so you don’t have to verify them.", + "confirm": "Confirm transaction" }, "fund": { "notice": "Verify the Fund details on your device before sending it. The addresses are exchanged securely so you don't have to verify them.", @@ -2189,7 +2190,13 @@ }, "sell": { "title": "Sell", - "titleCrypto": "Sell {{currency}}" + "titleCrypto": "Sell {{currency}}", + "exchangeDrawer": { + "completed": { + "title": "Transaction broadcast successfully", + "description": "Your operation has been sent to the network for confirmation. Please wait for your transaction to be confirmed and for the provider to process it." + } + } }, "receive": { "title": "Receive", @@ -3999,7 +4006,7 @@ "stock": "Regional market indicator", "stockDesc": "Choose Western to display market increases in blue or Eastern to display them in red.", "walletSync": "Ledger Sync", - "walletSyncDesc": "Simply secure your app data and synchronize multiple Ledger Live instances.", + "walletSyncDesc": "Securely sync your accounts across multiple Ledger Live instances", "marketPerformanceWidget": "Market Performance Widget", "marketPerformanceWidgetDesc": "Enable this feature to view the top gainers and losers over selected timeframes on the portfolio page." }, @@ -4025,6 +4032,16 @@ "placeholder": "Exchange provider's info in CAL format" }, "debugSimpleHash": { + "testSimpleHash": { + "title": "SimpleHash Tools", + "description": "Provides some useful tools using SimpleHash", + "cta": "Open", + "tabs": { + "spam": "Spam Report", + "refresh": "Refresh Metadata", + "check": "Spam Score" + } + }, "debugSpamNft": { "report": "Report", "contractAddress": "Contract Address", @@ -4084,8 +4101,38 @@ }, "back": "Go back" }, + "debugWalletSync": { + "title": "Ledger Sync Debugger", + "description": "Allows you to launch a specific LedgerSync flow or check current state of LedgerSync", + "cta": "Open", + "modal": { + "check": { + "title": "Checker", + "trustchain": { + "name": "Trustchain ID : ", + "emptyId": "Empty ID", + "applicationPath": "Application path : ", + "emptyApplicationPath": "Empty Application path", + "cloudSyncVersion": "Cloud sync version : ", + "lastSyncInfo": "Last sync info : ", + "uniported": "Non-imported accounts : " + }, + "copied": "Text copied to clipboard!", + "export": "Export" + }, + "generator": { + "title": "Generator", + "flow": "Select a Flow", + "step": "Select a Step", + "instance": "Generate Members", + "cta": "Apply" + } + } + }, "experimentalApps": "Allow experimental apps", "experimentalAppsDesc": "Display and allow opening experimental tagged platform apps.", + "mockAppUpdate": "Mock app update", + "mockAppUpdateDesc": "Display available app update in My Ledger, it will reinstall the same app version", "catalogUrl": "Set the catalog apps provider", "catalogUrlDesc": "Enter your custom catalog provider URL", "enablePlatformDevTools": "Enable platform dev tools", @@ -4248,27 +4295,6 @@ "enableNetworkLogs": { "title": "Enable network logs", "description": "Enable network logs in the console (error logs are always enabled)" - }, - "testWalletSync": { - "title": "Test Ledger Sync", - "description": "Allows you to launch a specific LedgerSync flow", - "cta": "Test", - "modal": { - "flow": "Select a Flow", - "step": "Select a Step", - "instance": "Generate Members", - "cta": "Apply" - } - }, - "testSimpleHash": { - "title": "SimpleHash Tools", - "description": "Provides some useful tools using SimpleHash", - "cta": "Open", - "tabs": { - "spam": "Spam Report", - "refresh": "Refresh Metadata", - "check": "Spam Score" - } } } }, @@ -5567,6 +5593,13 @@ "title": "Impossible to calculate amount and fees", "description": "Impossible to calculate amount and fees" }, + "InvalidRecipientForTokenTransfer": { + "title": "Invalid recipient for token transfer, supported account types for token transfer: [f0, f4, 0x]" + }, + "FilecoinFeeEstimationFailed": { + "title": "Sorry, fee estimation failed", + "description": "Fee estimation failed on the network. Check inputs, transaction most likely to fail" + }, "NotEnoughBalance": { "title": "Sorry, insufficient funds", "description": "Please make sure the account has enough funds." @@ -5635,14 +5668,14 @@ }, "SwapRateExpiredError": { "title": "Rate Expired", - "description": "The exchange transaction could not be completed as the rate has expired. Please refresh the rates and try your swap again." + "description": "Exchange rate expired. Please refresh and try again." }, "PayinExtraIdError": { "message": "Missing required extraId required for swap" }, "SwapGenericAPIError": { "title": "Something went wrong", - "description": "The exchange transaction did not go through. Please try again or contact support." + "description": "Transaction failed. Please try again." }, "TimeoutError": { "title": "Sorry, server took too long to respond", @@ -5668,6 +5701,17 @@ "title": "Something went wrong. Please reconnect your device", "description": "{{message}}" }, + "TrustchainEjected": { + "title": "Not Synced anymore" + }, + "TrustchainNotAllowed": { + "title": "You are not in sync anymore", + "description": "Please try again or contact Ledger Support." + }, + "TrustchainNotFound": { + "title": "Something went wrong while fetching your data", + "description": "Please try again or contact Ledger Support." + }, "DeviceShouldStayInApp": { "title": "Please open the {{appName}} app", "description": "Keep the {{appName}} app open while we find your accounts" @@ -5800,7 +5844,7 @@ "title": "Priority fee is higher than necessary. You might be overpaying" }, "MaxFeeTooLow": { - "title": "Max fee is lower than the recommended value" + "title": "Fee is lower than the recommended value" }, "PriorityFeeHigherThanMaxFee": { "title": "Max priority fee cannot be higher than max fee" @@ -6182,6 +6226,24 @@ }, "BitcoinInfrastructureError": { "title": "We are experiencing an issue with our Bitcoin infrastructure. Please try again later." + }, + "TonExcessFee": { + "title": "It constitutes a token transfer. You will pay 0.1 TON in fees, and any extra will be returned to you." + }, + "TonNotEnoughBalanceInParentAccount": { + "title": "Insufficient funds in main account (TON) to calculate fees. The minimum required balance is 0.1 TON." + }, + "TonMinimumRequired": { + "title": "Insufficient funds. The minimum required balance is 0.02 TON." + }, + "BackupAppDataError": { + "title": "Error during app data backup" + }, + "RestoreAppDataError": { + "title": "Error restoring app data" + }, + "DeleteAppDataError": { + "title": "Error deleting app data" } }, "cryptoOrg": { @@ -6377,17 +6439,18 @@ }, "walletSync": { "title": "Ledger Sync", + "close": "Close", "activate": { "title": "Sync your accounts across all platforms", "description": "Your Ledger will generate an encryption key, ensuring your data remains private and retrievable only by you.", "cta": "Sync your accounts" }, - "alreadySync": "Already created a key?", + "alreadySync": "Already synced a Ledger Live app?", "manage": { "cta": "Manage", "synchronize": { "label": "Synchronize", - "description": "Synchronize your app data with another Ledger Live app for a seemless experience." + "description": "Synchronize your accounts with another Ledger Live app for a seamless experience." }, "backup": { "label": "Manage Key", @@ -6418,6 +6481,16 @@ "cta": "Connect another Ledger", "ctaDelete": "Delete my encryption key" }, + "alreadySecureError": { + "title": "This app is already secured by this Ledger", + "description": "If you are attempting to create a new backup, please connect the Ledger device you used to create your other encryption key.", + "cta": "I understand" + }, + "alreadySecureOtherSeedError": { + "title": "You can’t use this Ledger to sync", + "description": "If you still wish to synchronize the two apps, please delete your key and try again.", + "cta": "Delete my encryption key" + }, "autoRemoveError": { "title": "You can’t remove the current instance", "description": "For security reasons, you cannot remove the instance you are currently using without deleting your encryption key.", @@ -6441,13 +6514,13 @@ "title": "Manage your key", "options": { "deleteBackup": { - "title": "Delete your data", - "description": "All synced data will be deleted." + "title": "Delete your backup", + "description": "All synced accounts will be removed. This won’t affect your local accounts." } }, "deleteBackup": { "title": "Do you really want to delete your encryption key?", - "description": "By clicking delete, your devices will be unsynchronized and all synchronized data will be deleted. Rest assured that taking this action does not impact your funds. You may resync your accounts at any time.", + "description": "By clicking delete, your apps will be unsynchronized, and your backup will be deleted. Rest assured, this action does not affect your funds or your accounts in Ledger Live. You may resync your accounts at any time.", "delete": "Delete", "cancel": "Cancel" }, @@ -6463,7 +6536,7 @@ "title": "Choose your sync method", "description": "You can choose to sync directly with your Ledger, or by scanning a QR code on Ledger Live.", "scan": { - "title": "Scan a QR code", + "title": "Display QR code", "description": "Synchronize by scanning a QR code" }, "connectDevice": { @@ -6472,18 +6545,40 @@ } }, "qrCode": { - "title": "Synchronize", - "hint": "Trying to sync two Ledger Live desktop apps? Click here.", - "description": "Scan and synchronize your accounts with another Ledger Live app", - "steps": { - "step1": "Open the Ledger Live app you want to sync", - "step2": "Go to <0>Settings > <0>General > <0>Ledger Sync > <0>Synchronize > <0>Show QR", - "step3": "Scan QR code until loader hits 100%." + "title": "Synchronize Instances", + "options": { + "mobile": "Mobile", + "desktop": "Desktop" + }, + "mobile": { + "description": "Scan and synchronize your accounts with another Ledger Live app", + "steps": { + "step1": "Open the Ledger Live app you want to sync", + "step2": "Go to <0>Settings > <0>General > <0>Ledger Sync > <0>Synchronize > <0>Show QR", + "step3": "Scan QR code" + } + }, + "desktop": { + "description": "Synchronize your accounts with another Ledger Live app", + "steps": { + "step1": "Open the Ledger Live app you want to sync", + "step2": "Go to <0>Settings > <0>General > <0>Ledger Sync > <0>Synchronize > <0>Use your Ledger", + "step3": "Connect your Ledger" + } } }, + "unbackedError": { + "title": "You need to create your encryption key first", + "description": "Please make sure you’ve created an encryption key on one of your Ledger Live apps before continuing your synchronization.", + "cta": "Create your encryption key" + }, "pinCode": { "title": "Enter the code", - "description": "Type the code displayed on the other Ledger Live you want to sync with." + "description": "Type the code displayed on the other Ledger Live you want to sync with.", + "error": { + "title": "Codes do not match", + "description": "Make sure the code you type is the one displayed on the other Ledger Live instance." + } } }, "manageInstances": { @@ -6496,5 +6591,15 @@ "title": "Continue on your Ledger {{wording}}", "description": "Follow the instruction which appear on your Ledger’s Trusted Display." } + }, + "ordinals": { + "rareSats": { + "title": "Rare Sats", + "table": { + "type": "Sat Type / Amount", + "year": "Year", + "utxo": "UTXO size" + } + } } } diff --git a/apps/ledger-live-desktop/tests/component/layout.component.ts b/apps/ledger-live-desktop/tests/component/layout.component.ts index 8e9f2b0acef6..ede653f0105d 100644 --- a/apps/ledger-live-desktop/tests/component/layout.component.ts +++ b/apps/ledger-live-desktop/tests/component/layout.component.ts @@ -34,6 +34,7 @@ export class Layout extends Component { // general readonly inputError = this.page.locator("id=input-error"); // no data-testid because css style is applied + readonly inputWarning = this.page.getByTestId("alert-insufficient-funds-warning"); private loadingSpinner = this.page.getByTestId("loading-spinner"); readonly logo = this.page.getByTestId("logo"); @@ -93,10 +94,18 @@ export class Layout extends Component { await this.discreetTooltip.waitFor({ state: "hidden" }); // makes sure the tooltip has disappeared to prevent flakiness } + @step("Go to Settings") async goToSettings() { await this.topbarSettingsButton.click(); } + @step("Check warning message") + async checkWarningMessage(expectedWarningMessage: RegExp) { + await this.inputWarning.waitFor({ state: "visible" }); + const warningText = await this.inputWarning.innerText(); + expect(warningText).toMatch(expectedWarningMessage); + } + @step("Check if the error message is the same as expected") async checkErrorMessage(errorMessage: string | null) { if (errorMessage !== null) { diff --git a/apps/ledger-live-desktop/tests/component/modal.component.ts b/apps/ledger-live-desktop/tests/component/modal.component.ts index d105883b12ba..ab49f6b48167 100644 --- a/apps/ledger-live-desktop/tests/component/modal.component.ts +++ b/apps/ledger-live-desktop/tests/component/modal.component.ts @@ -61,6 +61,7 @@ export class Modal extends Component { await this.backButton.click(); } + @step("Close modal") async close() { await this.closeButton.click(); } diff --git a/apps/ledger-live-desktop/tests/enum/Account.ts b/apps/ledger-live-desktop/tests/enum/Account.ts index 4596b13ed582..72487e364cae 100644 --- a/apps/ledger-live-desktop/tests/enum/Account.ts +++ b/apps/ledger-live-desktop/tests/enum/Account.ts @@ -193,8 +193,8 @@ export class Account { "Tezos 2", "tz1g3uEPZ9T3AhUZDTbGW9V43JRfizJmSnPv", ); - static readonly MATIC_1 = new Account( - Currency.MATIC, + static readonly POL_1 = new Account( + Currency.POL, "Polygon 1", "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", ); @@ -205,12 +205,18 @@ export class Account { "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", ); - static readonly ETH_USDT = new Account( + static readonly ETH_USDT_1 = new Account( Currency.ETH_USDT, "Ethereum 1", "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", ); + static readonly ETH_USDT_2 = new Account( + Currency.ETH_USDT, + "Ethereum 2", + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad", + ); + static readonly ETH_LIDO = new Account( Currency.ETH_LIDO, "Ethereum 1", @@ -253,26 +259,32 @@ export class Account { "TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1", ); - static readonly BSC_BUSD = new Account( + static readonly BSC_BUSD_1 = new Account( Currency.BSC_BUSD, "Binance Smart Chain 1", "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", ); + static readonly BSC_BUSD_2 = new Account( + Currency.BSC_BUSD, + "Binance Smart Chain 2", + "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad", + ); + static readonly BSC_SHIBA = new Account( Currency.BSC_SHIBA, "Binance Smart Chain 1", "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", ); - static readonly MATIC_DAI = new Account( - Currency.MATIC_DAI, + static readonly POL_DAI_1 = new Account( + Currency.POL_DAI, "Polygon 1", "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", ); - static readonly MATIC_UNI = new Account( - Currency.MATIC_UNI, + static readonly POL_UNI = new Account( + Currency.POL_UNI, "Polygon 1", "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", ); diff --git a/apps/ledger-live-desktop/tests/enum/AppInfos.ts b/apps/ledger-live-desktop/tests/enum/AppInfos.ts new file mode 100644 index 000000000000..51b79ec1adea --- /dev/null +++ b/apps/ledger-live-desktop/tests/enum/AppInfos.ts @@ -0,0 +1,128 @@ +import { DeviceLabels } from "./DeviceLabels"; + +export class AppInfos { + constructor( + public readonly name: string, + public readonly sendPattern?: DeviceLabels[], + public readonly receivePattern?: DeviceLabels[], + public readonly lsPattern?: DeviceLabels[], + ) {} + static readonly BITCOIN = new AppInfos( + "Bitcoin", + [ + DeviceLabels.AMOUT, + DeviceLabels.ADDRESS, + DeviceLabels.CONTINUE, + DeviceLabels.REJECT, + DeviceLabels.SIGN, + ], + [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + ); + static readonly BITCOIN_TESTNET = new AppInfos( + "Bitcoin Test", + [ + DeviceLabels.AMOUT, + DeviceLabels.ADDRESS, + DeviceLabels.CONTINUE, + DeviceLabels.REJECT, + DeviceLabels.SIGN, + ], + [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + ); + static readonly DOGECOIN = new AppInfos( + "Dogecoin", + [DeviceLabels.AMOUT, DeviceLabels.ADDRESS, DeviceLabels.ACCEPT, DeviceLabels.REJECT], + [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + ); + static readonly ETHEREUM = new AppInfos( + "Ethereum", + [DeviceLabels.AMOUT, DeviceLabels.TO, DeviceLabels.ACCEPT, DeviceLabels.REJECT], + [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + ); + static readonly ETHEREUM_HOLESKY = new AppInfos( + "Ethereum Holesky", + [DeviceLabels.AMOUT, DeviceLabels.TO, DeviceLabels.ACCEPT, DeviceLabels.REJECT], + [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + ); + static readonly ETHEREUM_SEPOLIA = new AppInfos( + "Ethereum Sepolia", + [DeviceLabels.AMOUT, DeviceLabels.TO, DeviceLabels.ACCEPT, DeviceLabels.REJECT], + [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + ); + static readonly ETHEREUM_CLASSIC = new AppInfos( + "Ethereum Classic", + [DeviceLabels.AMOUT, DeviceLabels.TO, DeviceLabels.ACCEPT, DeviceLabels.REJECT], + [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + ); + static readonly SOLANA = new AppInfos( + "Solana", + [DeviceLabels.TRANSFER, DeviceLabels.RECIPIENT, DeviceLabels.APPROVE, DeviceLabels.REJECT], + [DeviceLabels.PUBKEY, DeviceLabels.APPROVE, DeviceLabels.REJECT], + ); + static readonly POLKADOT = new AppInfos( + "Polkadot", + [DeviceLabels.DEST, DeviceLabels.AMOUT, DeviceLabels.CAPS_APPROVE, DeviceLabels.CAPS_REJECT], + [DeviceLabels.ADDRESS, DeviceLabels.CAPS_APPROVE, DeviceLabels.CAPS_REJECT], + ); + static readonly TRON = new AppInfos( + "Tron", + [DeviceLabels.AMOUT, DeviceLabels.TO, DeviceLabels.SIGN, DeviceLabels.CANCEL], + [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.CANCEL], + ); + static readonly RIPPLE = new AppInfos( + "Ripple", + [DeviceLabels.AMOUT, DeviceLabels.DESTINATION, DeviceLabels.SIGN, DeviceLabels.REJECT], + [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + ); + static readonly CARDANO = new AppInfos( + "Cardano", + [DeviceLabels.SEND, DeviceLabels.SEND_TO_ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + [DeviceLabels.ADDRESS, DeviceLabels.CONFIRM, DeviceLabels.REJECT], + ); + static readonly STELLAR = new AppInfos( + "Stellar", + [DeviceLabels.SEND, DeviceLabels.DESTINATION, DeviceLabels.FINALIZE, DeviceLabels.CANCEL], + [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + ); + static readonly BITCOIN_CASH = new AppInfos( + "Bitcoin Cash", + [DeviceLabels.AMOUT, DeviceLabels.ADDRESS, DeviceLabels.ACCEPT, DeviceLabels.REJECT], + [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + ); + static readonly ALGORAND = new AppInfos( + "Algorand", + [ + DeviceLabels.AMOUT, + DeviceLabels.RECEIVER, + DeviceLabels.CAPS_APPROVE, + DeviceLabels.CAPS_REJECT, + ], + [DeviceLabels.ADDRESS, DeviceLabels.CAPS_APPROVE, DeviceLabels.CAPS_REJECT], + ); + static readonly COSMOS = new AppInfos( + "Cosmos", + [DeviceLabels.AMOUT, DeviceLabels.TO, DeviceLabels.CAPS_APPROVE, DeviceLabels.CAPS_REJECT], + [DeviceLabels.ADDRESS, DeviceLabels.CAPS_APPROVE, DeviceLabels.CAPS_REJECT], + ); + static readonly TEZOS = new AppInfos( + "Tezos", + [DeviceLabels.AMOUT, DeviceLabels.DESTINATION, DeviceLabels.ACCEPT, DeviceLabels.REJECT], + [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + ); + static readonly POLYGON = new AppInfos( + "Polygon", + [DeviceLabels.AMOUT, DeviceLabels.ADDRESS, DeviceLabels.ACCEPT, DeviceLabels.REJECT], + [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + ); + static readonly BINANCE_SMART_CHAIN = new AppInfos( + "Binance Smart Chain", + [DeviceLabels.AMOUT, DeviceLabels.ADDRESS, DeviceLabels.ACCEPT, DeviceLabels.REJECT], + [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + ); + static readonly TON = new AppInfos( + "Ton", + [DeviceLabels.AMOUT, DeviceLabels.TO, DeviceLabels.APPROVE, DeviceLabels.REJECT], + [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + ); + static readonly LS = new AppInfos("LedgerSync", [DeviceLabels.LOGIN_LEDGER_SYNC]); +} diff --git a/apps/ledger-live-desktop/tests/enum/Currency.ts b/apps/ledger-live-desktop/tests/enum/Currency.ts index 8adc837776c5..0a70443e095a 100644 --- a/apps/ledger-live-desktop/tests/enum/Currency.ts +++ b/apps/ledger-live-desktop/tests/enum/Currency.ts @@ -1,237 +1,45 @@ -import { DeviceLabels } from "./DeviceLabels"; +import { AppInfos } from "./AppInfos"; export class Currency { constructor( public readonly name: string, public readonly ticker: string, - public readonly deviceLabel: string, - public readonly sendPattern: DeviceLabels[], - public readonly receivePattern: DeviceLabels[], + public readonly speculosApp: AppInfos, ) {} - static readonly BTC = new Currency( - "Bitcoin", - "BTC", - "Bitcoin", - [ - DeviceLabels.AMOUT, - DeviceLabels.ADDRESS, - DeviceLabels.CONTINUE, - DeviceLabels.REJECT, - DeviceLabels.SIGN, - ], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); - static readonly tBTC = new Currency( - "Bitcoin Testnet", - "𝚝BTC", - "Bitcoin Testnet", - [ - DeviceLabels.AMOUT, - DeviceLabels.ADDRESS, - DeviceLabels.CONTINUE, - DeviceLabels.REJECT, - DeviceLabels.SIGN, - ], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); - static readonly DOGE = new Currency( - "Dogecoin", - "DOGE", - "Dogecoin", - [DeviceLabels.AMOUT, DeviceLabels.ADDRESS, DeviceLabels.ACCEPT, DeviceLabels.REJECT], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); - static readonly ETH = new Currency( - "Ethereum", - "ETH", - "Ethereum", - [DeviceLabels.AMOUT, DeviceLabels.TO, DeviceLabels.ACCEPT, DeviceLabels.REJECT], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); - static readonly tETH = new Currency( - "Ethereum Holesky", - "𝚝ETH", - "Ethereum Holesky", - [DeviceLabels.AMOUT, DeviceLabels.TO, DeviceLabels.ACCEPT, DeviceLabels.REJECT], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); - static readonly sepETH = new Currency( - "Ethereum Sepolia", - "𝚝ETH", - "Ethereum Sepolia", - [DeviceLabels.AMOUT, DeviceLabels.TO, DeviceLabels.ACCEPT, DeviceLabels.REJECT], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); - static readonly ETC = new Currency( - "Ethereum Classic", - "ETC", - "Ethereum Classic", - [DeviceLabels.AMOUT, DeviceLabels.TO, DeviceLabels.ACCEPT, DeviceLabels.REJECT], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); - static readonly SOL = new Currency( - "Solana", - "SOL", - "Solana", - [DeviceLabels.TRANSFER, DeviceLabels.RECIPIENT, DeviceLabels.APPROVE, DeviceLabels.REJECT], - [DeviceLabels.PUBKEY, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); + static readonly BTC = new Currency("Bitcoin", "BTC", AppInfos.BITCOIN); - static readonly DOT = new Currency( - "Polkadot", - "DOT", - "Polkadot", - [DeviceLabels.DEST, DeviceLabels.AMOUT, DeviceLabels.CAPS_APPROVE, DeviceLabels.CAPS_REJECT], - [DeviceLabels.ADDRESS, DeviceLabels.CAPS_APPROVE, DeviceLabels.CAPS_REJECT], - ); - static readonly TRX = new Currency( - "Tron", - "TRX", - "Tron", - [DeviceLabels.AMOUT, DeviceLabels.TO, DeviceLabels.SIGN, DeviceLabels.CANCEL], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.CANCEL], - ); - static readonly XRP = new Currency( - "Ripple", - "XRP", - "Ripple", - [DeviceLabels.AMOUT, DeviceLabels.DESTINATION, DeviceLabels.SIGN, DeviceLabels.REJECT], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); - static readonly ADA = new Currency( - "Cardano", - "ADA", - "Cardano", - [DeviceLabels.SEND, DeviceLabels.SEND_TO_ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - [DeviceLabels.ADDRESS, DeviceLabels.CONFIRM, DeviceLabels.REJECT], - ); - static readonly XLM = new Currency( - "Stellar", - "XLM", - "Stellar", - [DeviceLabels.SEND, DeviceLabels.DESTINATION, DeviceLabels.FINALIZE, DeviceLabels.CANCEL], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); - static readonly BCH = new Currency( - "Bitcoin Cash", - "BCH", - "Bitcoin Cash", - [DeviceLabels.AMOUT, DeviceLabels.ADDRESS, DeviceLabels.ACCEPT, DeviceLabels.REJECT], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); - static readonly ALGO = new Currency( - "Algorand", - "ALGO", - "Algorand", - [ - DeviceLabels.AMOUT, - DeviceLabels.RECEIVER, - DeviceLabels.CAPS_APPROVE, - DeviceLabels.CAPS_REJECT, - ], - [DeviceLabels.ADDRESS, DeviceLabels.CAPS_APPROVE, DeviceLabels.CAPS_REJECT], - ); - static readonly ATOM = new Currency( - "Cosmos", - "ATOM", - "Cosmos", - [DeviceLabels.AMOUT, DeviceLabels.TO, DeviceLabels.CAPS_APPROVE, DeviceLabels.CAPS_REJECT], - [DeviceLabels.ADDRESS, DeviceLabels.CAPS_APPROVE, DeviceLabels.CAPS_REJECT], - ); - static readonly XTZ = new Currency( - "Tezos", - "XTZ", - "Tezos", - [DeviceLabels.AMOUT, DeviceLabels.DESTINATION, DeviceLabels.ACCEPT, DeviceLabels.REJECT], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); - static readonly MATIC = new Currency( - "Polygon", - "MATIC", - "Polygon", - [DeviceLabels.AMOUT, DeviceLabels.ADDRESS, DeviceLabels.ACCEPT, DeviceLabels.REJECT], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); - static readonly BSC = new Currency( - "Binance Smart Chain", - "BNB", - "Binance Smart Chain", - [DeviceLabels.AMOUT, DeviceLabels.ADDRESS, DeviceLabels.ACCEPT, DeviceLabels.REJECT], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); - static readonly ETH_USDT = new Currency( - "Tether USD", - "USDT", - "Ethereum", - [DeviceLabels.AMOUT, DeviceLabels.TO, DeviceLabels.ACCEPT, DeviceLabels.REJECT], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); - static readonly ETH_LIDO = new Currency( - "LIDO Staked ETH", - "STETH", - "Ethereum", - [DeviceLabels.AMOUT, DeviceLabels.TO, DeviceLabels.ACCEPT, DeviceLabels.REJECT], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); - static readonly XLM_USCD = new Currency( - "USDC", - "usdc", - "Stellar", - [DeviceLabels.SEND, DeviceLabels.DESTINATION, DeviceLabels.FINALIZE, DeviceLabels.CANCEL], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); - static readonly ALGO_USDT = new Currency( - "Tether USDt", - "USDT", - "Algorand", - [ - DeviceLabels.AMOUT, - DeviceLabels.RECEIVER, - DeviceLabels.CAPS_APPROVE, - DeviceLabels.CAPS_REJECT, - ], - [DeviceLabels.ADDRESS, DeviceLabels.CAPS_APPROVE, DeviceLabels.CAPS_REJECT], - ); - static readonly TRX_USDT = new Currency( - "Tether USD", - "USDT", - "Tron", - [DeviceLabels.AMOUT, DeviceLabels.TO, DeviceLabels.SIGN, DeviceLabels.CANCEL], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.CANCEL], - ); - static readonly TRX_BTT = new Currency( - "BitTorrent", - "BTT", - "Tron", - [DeviceLabels.AMOUT, DeviceLabels.TO, DeviceLabels.SIGN, DeviceLabels.CANCEL], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.CANCEL], - ); + static readonly tBTC = new Currency("Bitcoin Testnet", "𝚝BTC", AppInfos.BITCOIN_TESTNET); + static readonly DOGE = new Currency("Dogecoin", "DOGE", AppInfos.DOGECOIN); + static readonly ETH = new Currency("Ethereum", "ETH", AppInfos.ETHEREUM); + static readonly tETH = new Currency("Ethereum Holesky", "𝚝ETH", AppInfos.ETHEREUM_HOLESKY); + static readonly sepETH = new Currency("Ethereum Sepolia", "𝚝ETH", AppInfos.ETHEREUM_SEPOLIA); + static readonly ETC = new Currency("Ethereum Classic", "ETC", AppInfos.ETHEREUM_CLASSIC); + static readonly SOL = new Currency("Solana", "SOL", AppInfos.SOLANA); + + static readonly DOT = new Currency("Polkadot", "DOT", AppInfos.POLKADOT); + static readonly TRX = new Currency("Tron", "TRX", AppInfos.TRON); + static readonly XRP = new Currency("XRP", "XRP", AppInfos.RIPPLE); + static readonly ADA = new Currency("Cardano", "ADA", AppInfos.CARDANO); + static readonly XLM = new Currency("Stellar", "XLM", AppInfos.STELLAR); + static readonly BCH = new Currency("Bitcoin Cash", "BCH", AppInfos.BITCOIN_CASH); + static readonly ALGO = new Currency("Algorand", "ALGO", AppInfos.ALGORAND); + static readonly ATOM = new Currency("Cosmos", "ATOM", AppInfos.COSMOS); + static readonly XTZ = new Currency("Tezos", "XTZ", AppInfos.TEZOS); + static readonly POL = new Currency("Polygon", "POL", AppInfos.POLYGON); + static readonly BSC = new Currency("Binance Smart Chain", "BNB", AppInfos.BINANCE_SMART_CHAIN); + static readonly TON = new Currency("Ton", "TON", AppInfos.TON); + static readonly ETH_USDT = new Currency("Tether USD", "USDT", AppInfos.ETHEREUM); + static readonly ETH_LIDO = new Currency("LIDO Staked ETH", "STETH", AppInfos.ETHEREUM); + static readonly XLM_USCD = new Currency("USDC", "usdc", AppInfos.STELLAR); + static readonly ALGO_USDT = new Currency("Tether USDt", "USDT", AppInfos.ALGORAND); + static readonly TRX_USDT = new Currency("Tether USD", "USDT", AppInfos.TRON); + static readonly TRX_BTT = new Currency("BitTorrent", "BTT", AppInfos.TRON); static readonly BSC_BUSD = new Currency( "Binance-Peg BUSD Token", "BUSD", - "Binance Smart Chain", - [DeviceLabels.AMOUT, DeviceLabels.ADDRESS, DeviceLabels.ACCEPT, DeviceLabels.REJECT], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); - static readonly BSC_SHIBA = new Currency( - "Shiba Inu", - "SHIB", - "Binance Smart Chain", - [DeviceLabels.AMOUT, DeviceLabels.ADDRESS, DeviceLabels.ACCEPT, DeviceLabels.REJECT], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); - static readonly MATIC_DAI = new Currency( - "(PoS) Dai Stablecoin", - "DAI", - "Polygon", - [DeviceLabels.AMOUT, DeviceLabels.ADDRESS, DeviceLabels.ACCEPT, DeviceLabels.REJECT], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], - ); - static readonly MATIC_UNI = new Currency( - "Uniswap (PoS)", - "UNI", - "Polygon", - [DeviceLabels.AMOUT, DeviceLabels.ADDRESS, DeviceLabels.ACCEPT, DeviceLabels.REJECT], - [DeviceLabels.ADDRESS, DeviceLabels.APPROVE, DeviceLabels.REJECT], + AppInfos.BINANCE_SMART_CHAIN, ); + static readonly BSC_SHIBA = new Currency("Shiba Inu", "SHIB", AppInfos.BINANCE_SMART_CHAIN); + static readonly POL_DAI = new Currency("(PoS) Dai Stablecoin", "DAI", AppInfos.POLYGON); + static readonly POL_UNI = new Currency("Uniswap (PoS)", "UNI", AppInfos.POLYGON); } diff --git a/apps/ledger-live-desktop/tests/enum/DeviceLabels.ts b/apps/ledger-live-desktop/tests/enum/DeviceLabels.ts index 093d94e84c19..abffbaa6029b 100644 --- a/apps/ledger-live-desktop/tests/enum/DeviceLabels.ts +++ b/apps/ledger-live-desktop/tests/enum/DeviceLabels.ts @@ -23,4 +23,5 @@ export enum DeviceLabels { TRANSACTION_FEE = "Transaction fee", FINALIZE = "Finalize", RECEIVER = "Receiver", + LOGIN_LEDGER_SYNC = "Log in to Ledger Sync", } diff --git a/apps/ledger-live-desktop/tests/featureFlags.ts b/apps/ledger-live-desktop/tests/featureFlags.ts new file mode 100644 index 000000000000..29cb26032b44 --- /dev/null +++ b/apps/ledger-live-desktop/tests/featureFlags.ts @@ -0,0 +1,19 @@ +import { DEFAULT_FEATURES } from "@ledgerhq/live-common/featureFlags/index"; + +import { FeatureId, Feature, Features } from "@ledgerhq/types-live"; + +/* getFeature provides a basic behavior to mock how we retrieve feature flags values + * and allows overrides for our tests + */ +export const getFeature = ({ + key, + localOverrides, +}: { + key: T; + appLanguage?: string; + allowOverride?: boolean; + localOverrides?: { [key in FeatureId]?: Feature | undefined }; +}): Features[T] => { + if (localOverrides?.[key]) return localOverrides?.[key] as Features[T]; + return DEFAULT_FEATURES[key]; +}; diff --git a/apps/ledger-live-desktop/tests/fixtures/common.ts b/apps/ledger-live-desktop/tests/fixtures/common.ts index 9a594d3ca283..82d6e8e497e3 100644 --- a/apps/ledger-live-desktop/tests/fixtures/common.ts +++ b/apps/ledger-live-desktop/tests/fixtures/common.ts @@ -3,18 +3,19 @@ import fsPromises from "fs/promises"; import * as path from "path"; import { OptionalFeatureMap } from "@ledgerhq/types-live"; import { getEnv, setEnv } from "@ledgerhq/live-env"; -import { startSpeculos, stopSpeculos, specs } from "../utils/speculos"; +import { startSpeculos, stopSpeculos, specs } from "@ledgerhq/live-common/e2e/speculos"; import { Application } from "tests/page"; -import { generateUUID, safeAppendFile } from "tests/utils/fileUtils"; +import { safeAppendFile } from "tests/utils/fileUtils"; import { launchApp } from "tests/utils/electronUtils"; import { captureArtifacts } from "tests/utils/allureUtils"; -import { Currency } from "tests/enum/Currency"; +import { randomUUID } from "crypto"; +import { AppInfos } from "tests/enum/AppInfos"; type TestFixtures = { lang: string; theme: "light" | "dark" | "no-preference" | undefined; - speculosCurrency: Currency; + speculosApp: AppInfos; userdata: string; userdataDestinationPath: string; userdataOriginalFile: string; @@ -41,7 +42,7 @@ export const test = base.extend({ userdata: undefined, featureFlags: undefined, simulateCamera: undefined, - speculosCurrency: undefined, + speculosApp: undefined, app: async ({ page }, use) => { const app = new Application(page); @@ -49,7 +50,7 @@ export const test = base.extend({ }, userdataDestinationPath: async ({}, use) => { - await use(path.join(__dirname, "../artifacts/userdata", generateUUID())); + await use(path.join(__dirname, "../artifacts/userdata", randomUUID())); }, userdataOriginalFile: async ({ userdata }, use) => { await use(path.join(__dirname, "../userdata/", `${userdata}.json`)); @@ -68,7 +69,7 @@ export const test = base.extend({ env, featureFlags, simulateCamera, - speculosCurrency, + speculosApp, }, use, testInfo, @@ -82,7 +83,7 @@ export const test = base.extend({ let device: any | undefined; - if (IS_NOT_MOCK && speculosCurrency) { + if (IS_NOT_MOCK && speculosApp) { // Ensure the portCounter stays within the valid port range if (portCounter > MAX_PORT) { portCounter = BASE_PORT; @@ -94,7 +95,7 @@ export const test = base.extend({ ); device = await startSpeculos( testInfo.title.replace(/ /g, "_"), - specs[speculosCurrency.deviceLabel.replace(/ /g, "_")], + specs[speculosApp.name.replace(/ /g, "_")], ); setEnv("SPECULOS_API_PORT", device?.ports.apiPort?.toString()); } diff --git a/apps/ledger-live-desktop/tests/handlers/fixtures/nfts/index.ts b/apps/ledger-live-desktop/tests/handlers/fixtures/nfts/index.ts new file mode 100644 index 000000000000..28e912f84400 --- /dev/null +++ b/apps/ledger-live-desktop/tests/handlers/fixtures/nfts/index.ts @@ -0,0 +1,7 @@ +import mockedResponse1 from "./mockedResponse1.json"; +import mockedResponse2 from "./mockedResponse2.json"; + +export const mockedResponse = { + tokenInfos1: mockedResponse1, + simplehash: mockedResponse2, +}; diff --git a/apps/ledger-live-desktop/tests/handlers/fixtures/nfts/mockedResponse1.json b/apps/ledger-live-desktop/tests/handlers/fixtures/nfts/mockedResponse1.json new file mode 100644 index 000000000000..0cf3f48e346c --- /dev/null +++ b/apps/ledger-live-desktop/tests/handlers/fixtures/nfts/mockedResponse1.json @@ -0,0 +1,997 @@ +[ + { + "status": 200, + "result": { + "contract": "0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d", + "tokenId": "34", + "tokenName": "Momentum by Rik Oostenbroek", + "nftName": "Momentum #34", + "media": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/34?resource_type=image", + "medias": { + "preview": { + "uri": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/34?resource_type=image", + "mediaType": "image/png" + }, + "big": { + "uri": "https://ldg.mo.cloudinary.net/stg/big/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/34?resource_type=image", + "mediaType": "image/jpeg" + }, + "original": { + "uri": "https://ldg.mo.cloudinary.net/stg/original/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/34?resource_type=image", + "mediaType": "image/jpeg" + } + }, + "description": "Momentum encapsulates pivotal moments of velocity and engineering in a curated set of 200 evocative images. Every detail, every nuance, is a testament to the relentless pursuit of perfection. Crafted with a system that zeroes in on the quintessential race lap and the myriad challenges drivers confront, \"Momentum\" marks Rik's debut in the realm of 3D generative processes. While Rik's signature lies in meticulously chosen color palettes, this collection ventures into uncharted territory, allowing data and machine to dictate the final outcome. The result? A revolutionary ensemble, echoing a harmonious dialogue between artist and algorithm, reminiscent of the symbiosis between driver and vehicle.\n\nLeveraging unparalleled 8K resolution, \"Momentum\" is crafted for both pristine digital display and as stunning fine-art prints.\n\n**Artist**: Rik Oostenbroek \n**Year**: 2023 \n**Medium**: 3D Generative \n**Output**: 1/1, 200 pieces \n**Resolution**: 8k 300dpi \n\nThis work was exhibited as part of Velocity Series by Oracle Red Bull Racing and Bybit. Curated by AOI.", + "tokenNameThumbnail": null, + "properties": [ + { + "key": "Palette", + "value": "Horizon" + }, + { + "key": "Structure", + "value": "Balanced" + }, + { + "key": "Backdrop", + "value": "Fade" + }, + { + "key": "Weather", + "value": "Radiant" + }, + { + "key": "Form", + "value": "Turbulent" + }, + { + "key": "Precision", + "value": "Sharp" + }, + { + "key": "Shift", + "value": "Max" + }, + { + "key": "Magnitude", + "value": "Sleek" + }, + { + "key": "Focus", + "value": "Neutral" + } + ], + "links": { + "rarible": "https://rarible.com/token/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d:34", + "opensea": "https://opensea.io/assets/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/34", + "explorer": "https://etherscan.io/nft/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/34", + "etherscan": "https://etherscan.io/nft/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/34" + }, + "staxImage": null + } + }, + { + "status": 200, + "result": { + "contract": "0x92e64d1a27f4f42ecaf0ef7f725f119751113a38", + "tokenId": "564", + "tokenName": "The Vault of Wonders: Chapter 1 - The Abyssal Unseen by Boldtron", + "nftName": "Aquaticus Petalis", + "media": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/564?resource_type=video", + "medias": { + "preview": { + "uri": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/564?resource_type=video", + "mediaType": "image/png" + }, + "big": { + "uri": "https://ldg.mo.cloudinary.net/stg/big/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/564?resource_type=video", + "mediaType": "video/mp4" + }, + "original": { + "uri": "https://ldg.mo.cloudinary.net/stg/original/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/564?resource_type=video", + "mediaType": "video/mp4" + } + }, + "description": "*\"The Vault of Wonders: Chapter 1 - The Abyssal Unseen\"*\n*This collection by artistic duo Xavier and Daniel, the Boldtron twins, showcases a groundbreaking advancement in AI video technology that marries the historical curiosity of Renaissance cabinets with the enigmatic depths of the abyssal ocean. The work features creatures once only imaginable, now realized through sophisticated AI tools, embodying a symbiosis of natural traits and digital craftsmanship that challenges the boundaries between the organic and the fabricated.*\nHistorically, the Renaissance cabinets of curiosities collected wonders that blurred the lines between natural history and imaginative interpretation, much like \"The Abyssal Unseen\" blurs the lines between biological reality and digital fabrication. These cabinets often featured exotic specimens that tantalized both the intellect and the imagination, serving as precursors to modern museums by engaging the viewer in a dialogue about the diversity of the natural world and the oddities it contains. In parallel, this collection invites viewers to reflect on the authenticity and ontology of beings born from digital code, urging a reconsideration of what constitutes 'life' in the digital age.\nThe use of looping in the twins' videos draws a direct line to the early mechanics of animated art, where repetition served not just as a technical necessity but as a method to enchant and engage. The loop in digital media, historically rooted in the ceaseless repetition of stroboscopic motion and zoetrope animations, here transcends its origins to breathe life-like rhythm into pixelated creations. This looping, mirroring the endless cycles found in nature—from the regeneration of deep-sea biota to the rhythmic pulsations of abyssal creatures—embeds each digital organism within the broader narrative of perpetual life cycles.\nThe abyssal theme of the collection resonates with the scarcely explored and poorly understood regions of the deep ocean, where organisms thrive in conditions that defy human survivability. The biological adaptations of these creatures—developed in response to extreme pressure, darkness, and scarcity—find a digital echo in the creations of the Boldtron twins, whose work illuminates the adaptability and creativity necessary to explore and depict uncharted territories, whether they lie at the bottom of the ocean or within lines of code.\nFurthermore, the detailed character design reflects the painstakingly precise methodologies of both ancient scientific illustration and modern digital animation. Just as naturalists of the past rendered detailed drawings to capture the complexity of unknown species, the Boldtron twins employ advanced digital tools to sculpt intricate details that invite close scrutiny, echoing the meticulous art of historical explorers and artists who documented the mysterious and the unseen.\nIn conclusion, \"The Vault of Wonders: Chapter 1 - The Abyssal Unseen\" is not merely a collection of digital art; it is an intellectual exploration that connects the rich history of scientific and artistic curiosity with contemporary digital creativity. It challenges visitors to ponder the evolving relationship between nature and technology, encouraging a deeper appreciation of how digital environments can not only mimic but also extend the natural world in forms that challenge our perceptions and expand our understanding of life itself.\nAs you traverse this digital cabinet of curiosities, consider each piece not only as a visual spectacle but as a node in the vast network of cultural and scientific exploration that has sought to understand and depict the realms beyond the immediate reach of human senses.\n\nVideos by BOLDTRON\nMusic and Sound Design by MYGAL \nMYGAL is a distinguished Spanish DJ and producer. He has made a significant impact on the international music scene, showcasing his talent with performances for renowned fashion brands such as Jacquemus at the prestigious Boiler Room. His notable collaborations extend to sharing the stage with globally acclaimed artists, including the likes of Dua Lipa.", + "tokenNameThumbnail": null, + "properties": [ + { + "key": "Artist", + "value": "Boldtron" + }, + { + "key": "Type", + "value": "Families" + }, + { + "key": "Families", + "value": "Floris Vermiculae" + } + ], + "links": { + "rarible": "https://rarible.com/token/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38:564", + "opensea": "https://opensea.io/assets/ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/564", + "explorer": "https://etherscan.io/nft/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/564", + "etherscan": "https://etherscan.io/nft/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/564" + }, + "staxImage": null + } + }, + { + "status": 200, + "result": { + "contract": "0x19dbc1c820dd3f13260829a4e06dda6d9ef758db", + "tokenId": "95", + "tokenName": "Entangled", + "nftName": "Entangled #95", + "media": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/95?resource_type=image", + "medias": { + "preview": { + "uri": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/95?resource_type=image", + "mediaType": "image/png" + }, + "big": { + "uri": "https://ldg.mo.cloudinary.net/stg/big/ethereum/1/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/95?resource_type=image", + "mediaType": "image/png" + }, + "original": { + "uri": "https://ldg.mo.cloudinary.net/stg/original/ethereum/1/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/95?resource_type=image", + "mediaType": "image/png" + } + }, + "description": "Entangled is a cross-chain, generative art project developed as a series of particle simulations that interact with each other in various ways across separate blockchains and browser windows. Inspired by the phenomenon of quantum entanglement, this project aims to connect two, often separate, parts of the generative art community by directly linking them together.\n \nEntangled features two distinct on-chain NFT collections residing on the Ethereum and Tezos blockchains. These collections are connected through shared interactions in real-time, using cross-chain and local storage technologies to enable a system whereby particles in separate browser instances respond to and mirror each other.\n\nThe series consist of a total of 512 unique editions (256 on each blockchain) that are randomly paired with a corresponding iteration on the other. When two or more instances are opened in separate browser windows they will start to interact in different ways depending on whether they are paired or not, or if an entangled pair is owned by the same collector.", + "tokenNameThumbnail": null, + "properties": [ + { + "key": "color scheme", + "value": "1" + }, + { + "key": "inverted pair", + "value": "no" + }, + { + "key": "motion 0", + "value": "a1-1" + }, + { + "key": "motion 1", + "value": "b0" + }, + { + "key": "connection twists", + "value": "3" + }, + { + "key": "main type", + "value": "sphere" + }, + { + "key": "core type", + "value": "sphere" + } + ], + "links": { + "rarible": "https://rarible.com/token/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db:95", + "opensea": "https://opensea.io/assets/ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/95", + "explorer": "https://etherscan.io/nft/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/95", + "etherscan": "https://etherscan.io/nft/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/95" + }, + "staxImage": null + } + }, + { + "status": 200, + "result": { + "contract": "0xfca598e0fcfe1ec1305b451c1d60498db511fa70", + "tokenId": "105", + "tokenName": "Ray Marching the Moon: Full & New", + "nftName": "Ray Marching the Full Moon May 12, 2025", + "media": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0xfca598e0fcfe1ec1305b451c1d60498db511fa70/105?resource_type=image", + "medias": { + "preview": { + "uri": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0xfca598e0fcfe1ec1305b451c1d60498db511fa70/105?resource_type=image", + "mediaType": "image/png" + }, + "big": { + "uri": "https://ldg.mo.cloudinary.net/stg/big/ethereum/1/0xfca598e0fcfe1ec1305b451c1d60498db511fa70/105?resource_type=image", + "mediaType": "image/png" + }, + "original": { + "uri": "https://ldg.mo.cloudinary.net/stg/original/ethereum/1/0xfca598e0fcfe1ec1305b451c1d60498db511fa70/105?resource_type=image", + "mediaType": "image/png" + } + }, + "description": "_Ray Marching the Moon: Full & New_ is comprised of 120 NFTs locked at mint time and to be unlocked in batches of 5 during each subsequent full moon and new moon over one year. This artwork is associated with the moon phase of the 12th of May 2025 and will be unlocked on that day at 00:00 GMT.", + "tokenNameThumbnail": null, + "properties": [ + { + "key": "Moon phase", + "value": "Full" + }, + { + "key": "Unlock date", + "value": "1747008000" + } + ], + "links": { + "rarible": "https://rarible.com/token/0xfca598e0fcfe1ec1305b451c1d60498db511fa70:105", + "opensea": "https://opensea.io/assets/ethereum/0xfca598e0fcfe1ec1305b451c1d60498db511fa70/105", + "explorer": "https://etherscan.io/nft/0xfca598e0fcfe1ec1305b451c1d60498db511fa70/105", + "etherscan": "https://etherscan.io/nft/0xfca598e0fcfe1ec1305b451c1d60498db511fa70/105" + }, + "staxImage": null + } + }, + { + "status": 200, + "result": { + "contract": "0xe064e0b6ceca44f561752a232c4395c0d52ed0c4", + "tokenId": "23", + "tokenName": "Marterium", + "nftName": "Incubita", + "media": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0xe064e0b6ceca44f561752a232c4395c0d52ed0c4/23?resource_type=video", + "medias": { + "preview": { + "uri": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0xe064e0b6ceca44f561752a232c4395c0d52ed0c4/23?resource_type=video", + "mediaType": "image/png" + }, + "big": { + "uri": "https://ldg.mo.cloudinary.net/stg/big/ethereum/1/0xe064e0b6ceca44f561752a232c4395c0d52ed0c4/23?resource_type=video", + "mediaType": "video/mp4" + }, + "original": { + "uri": "https://ldg.mo.cloudinary.net/stg/original/ethereum/1/0xe064e0b6ceca44f561752a232c4395c0d52ed0c4/23?resource_type=video", + "mediaType": "video/mp4" + } + }, + "description": "Where algorithms meet abstraction in the genesis of digital wealth.", + "tokenNameThumbnail": null, + "properties": [ + { + "key": "Artist", + "value": "Marterium" + } + ], + "links": { + "rarible": "https://rarible.com/token/0xe064e0b6ceca44f561752a232c4395c0d52ed0c4:23", + "opensea": "https://opensea.io/assets/ethereum/0xe064e0b6ceca44f561752a232c4395c0d52ed0c4/23", + "explorer": "https://etherscan.io/nft/0xe064e0b6ceca44f561752a232c4395c0d52ed0c4/23", + "etherscan": "https://etherscan.io/nft/0xe064e0b6ceca44f561752a232c4395c0d52ed0c4/23" + }, + "staxImage": null + } + }, + { + "status": 200, + "result": { + "contract": "0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d", + "tokenId": "4", + "tokenName": "Momentum by Rik Oostenbroek", + "nftName": "Momentum #4", + "media": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/4?resource_type=image", + "medias": { + "preview": { + "uri": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/4?resource_type=image", + "mediaType": "image/png" + }, + "big": { + "uri": "https://ldg.mo.cloudinary.net/stg/big/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/4?resource_type=image", + "mediaType": "image/jpeg" + }, + "original": { + "uri": "https://ldg.mo.cloudinary.net/stg/original/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/4?resource_type=image", + "mediaType": "image/jpeg" + } + }, + "description": "Momentum encapsulates pivotal moments of velocity and engineering in a curated set of 200 evocative images. Every detail, every nuance, is a testament to the relentless pursuit of perfection. Crafted with a system that zeroes in on the quintessential race lap and the myriad challenges drivers confront, \"Momentum\" marks Rik's debut in the realm of 3D generative processes. While Rik's signature lies in meticulously chosen color palettes, this collection ventures into uncharted territory, allowing data and machine to dictate the final outcome. The result? A revolutionary ensemble, echoing a harmonious dialogue between artist and algorithm, reminiscent of the symbiosis between driver and vehicle.\n\nLeveraging unparalleled 8K resolution, \"Momentum\" is crafted for both pristine digital display and as stunning fine-art prints.\n\n**Artist**: Rik Oostenbroek \n**Year**: 2023 \n**Medium**: 3D Generative \n**Output**: 1/1, 200 pieces \n**Resolution**: 8k 300dpi \n\nThis work was exhibited as part of Velocity Series by Oracle Red Bull Racing and Bybit. Curated by AOI.", + "tokenNameThumbnail": null, + "properties": [ + { + "key": "Palette", + "value": "Momentum" + }, + { + "key": "Structure", + "value": "Balanced" + }, + { + "key": "Backdrop", + "value": "Fade" + }, + { + "key": "Weather", + "value": "Overcast" + }, + { + "key": "Form", + "value": "Sway" + }, + { + "key": "Precision", + "value": "Blurry" + }, + { + "key": "Shift", + "value": "Min" + }, + { + "key": "Magnitude", + "value": "Moderate" + }, + { + "key": "Focus", + "value": "Lateral" + } + ], + "links": { + "rarible": "https://rarible.com/token/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d:4", + "opensea": "https://opensea.io/assets/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/4", + "explorer": "https://etherscan.io/nft/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/4", + "etherscan": "https://etherscan.io/nft/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/4" + }, + "staxImage": null + } + }, + { + "status": 200, + "result": { + "contract": "0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d", + "tokenId": "31", + "tokenName": "Momentum by Rik Oostenbroek", + "nftName": "Momentum #31", + "media": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/31?resource_type=image", + "medias": { + "preview": { + "uri": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/31?resource_type=image", + "mediaType": "image/png" + }, + "big": { + "uri": "https://ldg.mo.cloudinary.net/stg/big/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/31?resource_type=image", + "mediaType": "image/jpeg" + }, + "original": { + "uri": "https://ldg.mo.cloudinary.net/stg/original/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/31?resource_type=image", + "mediaType": "image/jpeg" + } + }, + "description": "Momentum encapsulates pivotal moments of velocity and engineering in a curated set of 200 evocative images. Every detail, every nuance, is a testament to the relentless pursuit of perfection. Crafted with a system that zeroes in on the quintessential race lap and the myriad challenges drivers confront, \"Momentum\" marks Rik's debut in the realm of 3D generative processes. While Rik's signature lies in meticulously chosen color palettes, this collection ventures into uncharted territory, allowing data and machine to dictate the final outcome. The result? A revolutionary ensemble, echoing a harmonious dialogue between artist and algorithm, reminiscent of the symbiosis between driver and vehicle.\n\nLeveraging unparalleled 8K resolution, \"Momentum\" is crafted for both pristine digital display and as stunning fine-art prints.\n\n**Artist**: Rik Oostenbroek \n**Year**: 2023 \n**Medium**: 3D Generative \n**Output**: 1/1, 200 pieces \n**Resolution**: 8k 300dpi \n\nThis work was exhibited as part of Velocity Series by Oracle Red Bull Racing and Bybit. Curated by AOI.", + "tokenNameThumbnail": null, + "properties": [ + { + "key": "Palette", + "value": "Horizon" + }, + { + "key": "Structure", + "value": "Subtle" + }, + { + "key": "Backdrop", + "value": "Fade" + }, + { + "key": "Weather", + "value": "Overcast" + }, + { + "key": "Form", + "value": "Sway" + }, + { + "key": "Precision", + "value": "Blurry" + }, + { + "key": "Shift", + "value": "Mid" + }, + { + "key": "Magnitude", + "value": "Moderate" + }, + { + "key": "Focus", + "value": "Lateral" + } + ], + "links": { + "rarible": "https://rarible.com/token/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d:31", + "opensea": "https://opensea.io/assets/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/31", + "explorer": "https://etherscan.io/nft/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/31", + "etherscan": "https://etherscan.io/nft/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/31" + }, + "staxImage": null + } + }, + { + "status": 200, + "result": { + "contract": "0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d", + "tokenId": "35", + "tokenName": "Momentum by Rik Oostenbroek", + "nftName": "Momentum #35", + "media": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/35?resource_type=image", + "medias": { + "preview": { + "uri": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/35?resource_type=image", + "mediaType": "image/png" + }, + "big": { + "uri": "https://ldg.mo.cloudinary.net/stg/big/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/35?resource_type=image", + "mediaType": "image/jpeg" + }, + "original": { + "uri": "https://ldg.mo.cloudinary.net/stg/original/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/35?resource_type=image", + "mediaType": "image/jpeg" + } + }, + "description": "Momentum encapsulates pivotal moments of velocity and engineering in a curated set of 200 evocative images. Every detail, every nuance, is a testament to the relentless pursuit of perfection. Crafted with a system that zeroes in on the quintessential race lap and the myriad challenges drivers confront, \"Momentum\" marks Rik's debut in the realm of 3D generative processes. While Rik's signature lies in meticulously chosen color palettes, this collection ventures into uncharted territory, allowing data and machine to dictate the final outcome. The result? A revolutionary ensemble, echoing a harmonious dialogue between artist and algorithm, reminiscent of the symbiosis between driver and vehicle.\n\nLeveraging unparalleled 8K resolution, \"Momentum\" is crafted for both pristine digital display and as stunning fine-art prints.\n\n**Artist**: Rik Oostenbroek \n**Year**: 2023 \n**Medium**: 3D Generative \n**Output**: 1/1, 200 pieces \n**Resolution**: 8k 300dpi \n\nThis work was exhibited as part of Velocity Series by Oracle Red Bull Racing and Bybit. Curated by AOI.", + "tokenNameThumbnail": null, + "properties": [ + { + "key": "Palette", + "value": "Horizon" + }, + { + "key": "Structure", + "value": "Subtle" + }, + { + "key": "Backdrop", + "value": "Solid" + }, + { + "key": "Weather", + "value": "Overcast" + }, + { + "key": "Form", + "value": "Sway" + }, + { + "key": "Precision", + "value": "Blurry" + }, + { + "key": "Shift", + "value": "Max" + }, + { + "key": "Magnitude", + "value": "Moderate" + }, + { + "key": "Focus", + "value": "Lateral" + } + ], + "links": { + "rarible": "https://rarible.com/token/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d:35", + "opensea": "https://opensea.io/assets/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/35", + "explorer": "https://etherscan.io/nft/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/35", + "etherscan": "https://etherscan.io/nft/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/35" + }, + "staxImage": null + } + }, + { + "status": 200, + "result": { + "contract": "0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d", + "tokenId": "32", + "tokenName": "Momentum by Rik Oostenbroek", + "nftName": "Momentum #32", + "media": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/32?resource_type=image", + "medias": { + "preview": { + "uri": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/32?resource_type=image", + "mediaType": "image/png" + }, + "big": { + "uri": "https://ldg.mo.cloudinary.net/stg/big/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/32?resource_type=image", + "mediaType": "image/jpeg" + }, + "original": { + "uri": "https://ldg.mo.cloudinary.net/stg/original/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/32?resource_type=image", + "mediaType": "image/jpeg" + } + }, + "description": "Momentum encapsulates pivotal moments of velocity and engineering in a curated set of 200 evocative images. Every detail, every nuance, is a testament to the relentless pursuit of perfection. Crafted with a system that zeroes in on the quintessential race lap and the myriad challenges drivers confront, \"Momentum\" marks Rik's debut in the realm of 3D generative processes. While Rik's signature lies in meticulously chosen color palettes, this collection ventures into uncharted territory, allowing data and machine to dictate the final outcome. The result? A revolutionary ensemble, echoing a harmonious dialogue between artist and algorithm, reminiscent of the symbiosis between driver and vehicle.\n\nLeveraging unparalleled 8K resolution, \"Momentum\" is crafted for both pristine digital display and as stunning fine-art prints.\n\n**Artist**: Rik Oostenbroek \n**Year**: 2023 \n**Medium**: 3D Generative \n**Output**: 1/1, 200 pieces \n**Resolution**: 8k 300dpi \n\nThis work was exhibited as part of Velocity Series by Oracle Red Bull Racing and Bybit. Curated by AOI.", + "tokenNameThumbnail": null, + "properties": [ + { + "key": "Palette", + "value": "Drift" + }, + { + "key": "Structure", + "value": "Subtle" + }, + { + "key": "Backdrop", + "value": "Fade" + }, + { + "key": "Weather", + "value": "Radiant" + }, + { + "key": "Form", + "value": "Pristine" + }, + { + "key": "Precision", + "value": "Sharp" + }, + { + "key": "Shift", + "value": "Mid" + }, + { + "key": "Magnitude", + "value": "Sleek" + }, + { + "key": "Focus", + "value": "Lateral" + } + ], + "links": { + "rarible": "https://rarible.com/token/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d:32", + "opensea": "https://opensea.io/assets/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/32", + "explorer": "https://etherscan.io/nft/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/32", + "etherscan": "https://etherscan.io/nft/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/32" + }, + "staxImage": null + } + }, + { + "status": 200, + "result": { + "contract": "0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d", + "tokenId": "34", + "tokenName": "Momentum by Rik Oostenbroek", + "nftName": "Momentum #34", + "media": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/34?resource_type=image", + "medias": { + "preview": { + "uri": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/34?resource_type=image", + "mediaType": "image/png" + }, + "big": { + "uri": "https://ldg.mo.cloudinary.net/stg/big/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/34?resource_type=image", + "mediaType": "image/jpeg" + }, + "original": { + "uri": "https://ldg.mo.cloudinary.net/stg/original/ethereum/1/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/34?resource_type=image", + "mediaType": "image/jpeg" + } + }, + "description": "Momentum encapsulates pivotal moments of velocity and engineering in a curated set of 200 evocative images. Every detail, every nuance, is a testament to the relentless pursuit of perfection. Crafted with a system that zeroes in on the quintessential race lap and the myriad challenges drivers confront, \"Momentum\" marks Rik's debut in the realm of 3D generative processes. While Rik's signature lies in meticulously chosen color palettes, this collection ventures into uncharted territory, allowing data and machine to dictate the final outcome. The result? A revolutionary ensemble, echoing a harmonious dialogue between artist and algorithm, reminiscent of the symbiosis between driver and vehicle.\n\nLeveraging unparalleled 8K resolution, \"Momentum\" is crafted for both pristine digital display and as stunning fine-art prints.\n\n**Artist**: Rik Oostenbroek \n**Year**: 2023 \n**Medium**: 3D Generative \n**Output**: 1/1, 200 pieces \n**Resolution**: 8k 300dpi \n\nThis work was exhibited as part of Velocity Series by Oracle Red Bull Racing and Bybit. Curated by AOI.", + "tokenNameThumbnail": null, + "properties": [ + { + "key": "Palette", + "value": "Horizon" + }, + { + "key": "Structure", + "value": "Balanced" + }, + { + "key": "Backdrop", + "value": "Fade" + }, + { + "key": "Weather", + "value": "Radiant" + }, + { + "key": "Form", + "value": "Turbulent" + }, + { + "key": "Precision", + "value": "Sharp" + }, + { + "key": "Shift", + "value": "Max" + }, + { + "key": "Magnitude", + "value": "Sleek" + }, + { + "key": "Focus", + "value": "Neutral" + } + ], + "links": { + "rarible": "https://rarible.com/token/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d:34", + "opensea": "https://opensea.io/assets/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/34", + "explorer": "https://etherscan.io/nft/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/34", + "etherscan": "https://etherscan.io/nft/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/34" + }, + "staxImage": null + } + }, + { + "status": 200, + "result": { + "contract": "0x92e64d1a27f4f42ecaf0ef7f725f119751113a38", + "tokenId": "335", + "tokenName": "The Vault of Wonders: Chapter 1 - The Abyssal Unseen by Boldtron", + "nftName": "Rugosus Curvatus", + "media": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/335?resource_type=video", + "medias": { + "preview": { + "uri": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/335?resource_type=video", + "mediaType": "image/png" + }, + "big": { + "uri": "https://ldg.mo.cloudinary.net/stg/big/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/335?resource_type=video", + "mediaType": "video/mp4" + }, + "original": { + "uri": "https://ldg.mo.cloudinary.net/stg/original/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/335?resource_type=video", + "mediaType": "video/mp4" + } + }, + "description": "*\"The Vault of Wonders: Chapter 1 - The Abyssal Unseen\"*\n*This collection by artistic duo Xavier and Daniel, the Boldtron twins, showcases a groundbreaking advancement in AI video technology that marries the historical curiosity of Renaissance cabinets with the enigmatic depths of the abyssal ocean. The work features creatures once only imaginable, now realized through sophisticated AI tools, embodying a symbiosis of natural traits and digital craftsmanship that challenges the boundaries between the organic and the fabricated.*\nHistorically, the Renaissance cabinets of curiosities collected wonders that blurred the lines between natural history and imaginative interpretation, much like \"The Abyssal Unseen\" blurs the lines between biological reality and digital fabrication. These cabinets often featured exotic specimens that tantalized both the intellect and the imagination, serving as precursors to modern museums by engaging the viewer in a dialogue about the diversity of the natural world and the oddities it contains. In parallel, this collection invites viewers to reflect on the authenticity and ontology of beings born from digital code, urging a reconsideration of what constitutes 'life' in the digital age.\nThe use of looping in the twins' videos draws a direct line to the early mechanics of animated art, where repetition served not just as a technical necessity but as a method to enchant and engage. The loop in digital media, historically rooted in the ceaseless repetition of stroboscopic motion and zoetrope animations, here transcends its origins to breathe life-like rhythm into pixelated creations. This looping, mirroring the endless cycles found in nature—from the regeneration of deep-sea biota to the rhythmic pulsations of abyssal creatures—embeds each digital organism within the broader narrative of perpetual life cycles.\nThe abyssal theme of the collection resonates with the scarcely explored and poorly understood regions of the deep ocean, where organisms thrive in conditions that defy human survivability. The biological adaptations of these creatures—developed in response to extreme pressure, darkness, and scarcity—find a digital echo in the creations of the Boldtron twins, whose work illuminates the adaptability and creativity necessary to explore and depict uncharted territories, whether they lie at the bottom of the ocean or within lines of code.\nFurthermore, the detailed character design reflects the painstakingly precise methodologies of both ancient scientific illustration and modern digital animation. Just as naturalists of the past rendered detailed drawings to capture the complexity of unknown species, the Boldtron twins employ advanced digital tools to sculpt intricate details that invite close scrutiny, echoing the meticulous art of historical explorers and artists who documented the mysterious and the unseen.\nIn conclusion, \"The Vault of Wonders: Chapter 1 - The Abyssal Unseen\" is not merely a collection of digital art; it is an intellectual exploration that connects the rich history of scientific and artistic curiosity with contemporary digital creativity. It challenges visitors to ponder the evolving relationship between nature and technology, encouraging a deeper appreciation of how digital environments can not only mimic but also extend the natural world in forms that challenge our perceptions and expand our understanding of life itself.\nAs you traverse this digital cabinet of curiosities, consider each piece not only as a visual spectacle but as a node in the vast network of cultural and scientific exploration that has sought to understand and depict the realms beyond the immediate reach of human senses.\n\nVideos by BOLDTRON\nMusic and Sound Design by MYGAL \nMYGAL is a distinguished Spanish DJ and producer. He has made a significant impact on the international music scene, showcasing his talent with performances for renowned fashion brands such as Jacquemus at the prestigious Boiler Room. His notable collaborations extend to sharing the stage with globally acclaimed artists, including the likes of Dua Lipa.", + "tokenNameThumbnail": null, + "properties": [ + { + "key": "Artist", + "value": "Boldtron" + }, + { + "key": "Type", + "value": "Families" + }, + { + "key": "Families", + "value": "Caesius Cyaneus" + } + ], + "links": { + "rarible": "https://rarible.com/token/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38:335", + "opensea": "https://opensea.io/assets/ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/335", + "explorer": "https://etherscan.io/nft/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/335", + "etherscan": "https://etherscan.io/nft/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/335" + }, + "staxImage": null + } + }, + { + "status": 200, + "result": { + "contract": "0x92e64d1a27f4f42ecaf0ef7f725f119751113a38", + "tokenId": "667", + "tokenName": "The Vault of Wonders: Chapter 1 - The Abyssal Unseen by Boldtron", + "nftName": "Ranulae Orbiculus", + "media": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/667?resource_type=video", + "medias": { + "preview": { + "uri": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/667?resource_type=video", + "mediaType": "image/png" + }, + "big": { + "uri": "https://ldg.mo.cloudinary.net/stg/big/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/667?resource_type=video", + "mediaType": "video/mp4" + }, + "original": { + "uri": "https://ldg.mo.cloudinary.net/stg/original/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/667?resource_type=video", + "mediaType": "video/mp4" + } + }, + "description": "*\"The Vault of Wonders: Chapter 1 - The Abyssal Unseen\"*\n*This collection by artistic duo Xavier and Daniel, the Boldtron twins, showcases a groundbreaking advancement in AI video technology that marries the historical curiosity of Renaissance cabinets with the enigmatic depths of the abyssal ocean. The work features creatures once only imaginable, now realized through sophisticated AI tools, embodying a symbiosis of natural traits and digital craftsmanship that challenges the boundaries between the organic and the fabricated.*\nHistorically, the Renaissance cabinets of curiosities collected wonders that blurred the lines between natural history and imaginative interpretation, much like \"The Abyssal Unseen\" blurs the lines between biological reality and digital fabrication. These cabinets often featured exotic specimens that tantalized both the intellect and the imagination, serving as precursors to modern museums by engaging the viewer in a dialogue about the diversity of the natural world and the oddities it contains. In parallel, this collection invites viewers to reflect on the authenticity and ontology of beings born from digital code, urging a reconsideration of what constitutes 'life' in the digital age.\nThe use of looping in the twins' videos draws a direct line to the early mechanics of animated art, where repetition served not just as a technical necessity but as a method to enchant and engage. The loop in digital media, historically rooted in the ceaseless repetition of stroboscopic motion and zoetrope animations, here transcends its origins to breathe life-like rhythm into pixelated creations. This looping, mirroring the endless cycles found in nature—from the regeneration of deep-sea biota to the rhythmic pulsations of abyssal creatures—embeds each digital organism within the broader narrative of perpetual life cycles.\nThe abyssal theme of the collection resonates with the scarcely explored and poorly understood regions of the deep ocean, where organisms thrive in conditions that defy human survivability. The biological adaptations of these creatures—developed in response to extreme pressure, darkness, and scarcity—find a digital echo in the creations of the Boldtron twins, whose work illuminates the adaptability and creativity necessary to explore and depict uncharted territories, whether they lie at the bottom of the ocean or within lines of code.\nFurthermore, the detailed character design reflects the painstakingly precise methodologies of both ancient scientific illustration and modern digital animation. Just as naturalists of the past rendered detailed drawings to capture the complexity of unknown species, the Boldtron twins employ advanced digital tools to sculpt intricate details that invite close scrutiny, echoing the meticulous art of historical explorers and artists who documented the mysterious and the unseen.\nIn conclusion, \"The Vault of Wonders: Chapter 1 - The Abyssal Unseen\" is not merely a collection of digital art; it is an intellectual exploration that connects the rich history of scientific and artistic curiosity with contemporary digital creativity. It challenges visitors to ponder the evolving relationship between nature and technology, encouraging a deeper appreciation of how digital environments can not only mimic but also extend the natural world in forms that challenge our perceptions and expand our understanding of life itself.\nAs you traverse this digital cabinet of curiosities, consider each piece not only as a visual spectacle but as a node in the vast network of cultural and scientific exploration that has sought to understand and depict the realms beyond the immediate reach of human senses.\n\nVideos by BOLDTRON\nMusic and Sound Design by MYGAL \nMYGAL is a distinguished Spanish DJ and producer. He has made a significant impact on the international music scene, showcasing his talent with performances for renowned fashion brands such as Jacquemus at the prestigious Boiler Room. His notable collaborations extend to sharing the stage with globally acclaimed artists, including the likes of Dua Lipa.", + "tokenNameThumbnail": null, + "properties": [ + { + "key": "Artist", + "value": "Boldtron" + }, + { + "key": "Type", + "value": "Families" + }, + { + "key": "Families", + "value": "Dispersahylas" + } + ], + "links": { + "rarible": "https://rarible.com/token/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38:667", + "opensea": "https://opensea.io/assets/ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/667", + "explorer": "https://etherscan.io/nft/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/667", + "etherscan": "https://etherscan.io/nft/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/667" + }, + "staxImage": null + } + }, + { + "status": 200, + "result": { + "contract": "0x92e64d1a27f4f42ecaf0ef7f725f119751113a38", + "tokenId": "675", + "tokenName": "The Vault of Wonders: Chapter 1 - The Abyssal Unseen by Boldtron", + "nftName": "Dalmatina Anura", + "media": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/675?resource_type=video", + "medias": { + "preview": { + "uri": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/675?resource_type=video", + "mediaType": "image/png" + }, + "big": { + "uri": "https://ldg.mo.cloudinary.net/stg/big/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/675?resource_type=video", + "mediaType": "video/mp4" + }, + "original": { + "uri": "https://ldg.mo.cloudinary.net/stg/original/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/675?resource_type=video", + "mediaType": "video/mp4" + } + }, + "description": "*\"The Vault of Wonders: Chapter 1 - The Abyssal Unseen\"*\n*This collection by artistic duo Xavier and Daniel, the Boldtron twins, showcases a groundbreaking advancement in AI video technology that marries the historical curiosity of Renaissance cabinets with the enigmatic depths of the abyssal ocean. The work features creatures once only imaginable, now realized through sophisticated AI tools, embodying a symbiosis of natural traits and digital craftsmanship that challenges the boundaries between the organic and the fabricated.*\nHistorically, the Renaissance cabinets of curiosities collected wonders that blurred the lines between natural history and imaginative interpretation, much like \"The Abyssal Unseen\" blurs the lines between biological reality and digital fabrication. These cabinets often featured exotic specimens that tantalized both the intellect and the imagination, serving as precursors to modern museums by engaging the viewer in a dialogue about the diversity of the natural world and the oddities it contains. In parallel, this collection invites viewers to reflect on the authenticity and ontology of beings born from digital code, urging a reconsideration of what constitutes 'life' in the digital age.\nThe use of looping in the twins' videos draws a direct line to the early mechanics of animated art, where repetition served not just as a technical necessity but as a method to enchant and engage. The loop in digital media, historically rooted in the ceaseless repetition of stroboscopic motion and zoetrope animations, here transcends its origins to breathe life-like rhythm into pixelated creations. This looping, mirroring the endless cycles found in nature—from the regeneration of deep-sea biota to the rhythmic pulsations of abyssal creatures—embeds each digital organism within the broader narrative of perpetual life cycles.\nThe abyssal theme of the collection resonates with the scarcely explored and poorly understood regions of the deep ocean, where organisms thrive in conditions that defy human survivability. The biological adaptations of these creatures—developed in response to extreme pressure, darkness, and scarcity—find a digital echo in the creations of the Boldtron twins, whose work illuminates the adaptability and creativity necessary to explore and depict uncharted territories, whether they lie at the bottom of the ocean or within lines of code.\nFurthermore, the detailed character design reflects the painstakingly precise methodologies of both ancient scientific illustration and modern digital animation. Just as naturalists of the past rendered detailed drawings to capture the complexity of unknown species, the Boldtron twins employ advanced digital tools to sculpt intricate details that invite close scrutiny, echoing the meticulous art of historical explorers and artists who documented the mysterious and the unseen.\nIn conclusion, \"The Vault of Wonders: Chapter 1 - The Abyssal Unseen\" is not merely a collection of digital art; it is an intellectual exploration that connects the rich history of scientific and artistic curiosity with contemporary digital creativity. It challenges visitors to ponder the evolving relationship between nature and technology, encouraging a deeper appreciation of how digital environments can not only mimic but also extend the natural world in forms that challenge our perceptions and expand our understanding of life itself.\nAs you traverse this digital cabinet of curiosities, consider each piece not only as a visual spectacle but as a node in the vast network of cultural and scientific exploration that has sought to understand and depict the realms beyond the immediate reach of human senses.\n\nVideos by BOLDTRON\nMusic and Sound Design by MYGAL \nMYGAL is a distinguished Spanish DJ and producer. He has made a significant impact on the international music scene, showcasing his talent with performances for renowned fashion brands such as Jacquemus at the prestigious Boiler Room. His notable collaborations extend to sharing the stage with globally acclaimed artists, including the likes of Dua Lipa.", + "tokenNameThumbnail": null, + "properties": [ + { + "key": "Artist", + "value": "Boldtron" + }, + { + "key": "Type", + "value": "Families" + }, + { + "key": "Families", + "value": "Dispersahylas" + } + ], + "links": { + "rarible": "https://rarible.com/token/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38:675", + "opensea": "https://opensea.io/assets/ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/675", + "explorer": "https://etherscan.io/nft/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/675", + "etherscan": "https://etherscan.io/nft/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/675" + }, + "staxImage": null + } + }, + { + "status": 200, + "result": { + "contract": "0x92e64d1a27f4f42ecaf0ef7f725f119751113a38", + "tokenId": "564", + "tokenName": "The Vault of Wonders: Chapter 1 - The Abyssal Unseen by Boldtron", + "nftName": "Aquaticus Petalis", + "media": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/564?resource_type=video", + "medias": { + "preview": { + "uri": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/564?resource_type=video", + "mediaType": "image/png" + }, + "big": { + "uri": "https://ldg.mo.cloudinary.net/stg/big/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/564?resource_type=video", + "mediaType": "video/mp4" + }, + "original": { + "uri": "https://ldg.mo.cloudinary.net/stg/original/ethereum/1/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/564?resource_type=video", + "mediaType": "video/mp4" + } + }, + "description": "*\"The Vault of Wonders: Chapter 1 - The Abyssal Unseen\"*\n*This collection by artistic duo Xavier and Daniel, the Boldtron twins, showcases a groundbreaking advancement in AI video technology that marries the historical curiosity of Renaissance cabinets with the enigmatic depths of the abyssal ocean. The work features creatures once only imaginable, now realized through sophisticated AI tools, embodying a symbiosis of natural traits and digital craftsmanship that challenges the boundaries between the organic and the fabricated.*\nHistorically, the Renaissance cabinets of curiosities collected wonders that blurred the lines between natural history and imaginative interpretation, much like \"The Abyssal Unseen\" blurs the lines between biological reality and digital fabrication. These cabinets often featured exotic specimens that tantalized both the intellect and the imagination, serving as precursors to modern museums by engaging the viewer in a dialogue about the diversity of the natural world and the oddities it contains. In parallel, this collection invites viewers to reflect on the authenticity and ontology of beings born from digital code, urging a reconsideration of what constitutes 'life' in the digital age.\nThe use of looping in the twins' videos draws a direct line to the early mechanics of animated art, where repetition served not just as a technical necessity but as a method to enchant and engage. The loop in digital media, historically rooted in the ceaseless repetition of stroboscopic motion and zoetrope animations, here transcends its origins to breathe life-like rhythm into pixelated creations. This looping, mirroring the endless cycles found in nature—from the regeneration of deep-sea biota to the rhythmic pulsations of abyssal creatures—embeds each digital organism within the broader narrative of perpetual life cycles.\nThe abyssal theme of the collection resonates with the scarcely explored and poorly understood regions of the deep ocean, where organisms thrive in conditions that defy human survivability. The biological adaptations of these creatures—developed in response to extreme pressure, darkness, and scarcity—find a digital echo in the creations of the Boldtron twins, whose work illuminates the adaptability and creativity necessary to explore and depict uncharted territories, whether they lie at the bottom of the ocean or within lines of code.\nFurthermore, the detailed character design reflects the painstakingly precise methodologies of both ancient scientific illustration and modern digital animation. Just as naturalists of the past rendered detailed drawings to capture the complexity of unknown species, the Boldtron twins employ advanced digital tools to sculpt intricate details that invite close scrutiny, echoing the meticulous art of historical explorers and artists who documented the mysterious and the unseen.\nIn conclusion, \"The Vault of Wonders: Chapter 1 - The Abyssal Unseen\" is not merely a collection of digital art; it is an intellectual exploration that connects the rich history of scientific and artistic curiosity with contemporary digital creativity. It challenges visitors to ponder the evolving relationship between nature and technology, encouraging a deeper appreciation of how digital environments can not only mimic but also extend the natural world in forms that challenge our perceptions and expand our understanding of life itself.\nAs you traverse this digital cabinet of curiosities, consider each piece not only as a visual spectacle but as a node in the vast network of cultural and scientific exploration that has sought to understand and depict the realms beyond the immediate reach of human senses.\n\nVideos by BOLDTRON\nMusic and Sound Design by MYGAL \nMYGAL is a distinguished Spanish DJ and producer. He has made a significant impact on the international music scene, showcasing his talent with performances for renowned fashion brands such as Jacquemus at the prestigious Boiler Room. His notable collaborations extend to sharing the stage with globally acclaimed artists, including the likes of Dua Lipa.", + "tokenNameThumbnail": null, + "properties": [ + { + "key": "Artist", + "value": "Boldtron" + }, + { + "key": "Type", + "value": "Families" + }, + { + "key": "Families", + "value": "Floris Vermiculae" + } + ], + "links": { + "rarible": "https://rarible.com/token/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38:564", + "opensea": "https://opensea.io/assets/ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/564", + "explorer": "https://etherscan.io/nft/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/564", + "etherscan": "https://etherscan.io/nft/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/564" + }, + "staxImage": null + } + }, + { + "status": 200, + "result": { + "contract": "0x19dbc1c820dd3f13260829a4e06dda6d9ef758db", + "tokenId": "95", + "tokenName": "Entangled", + "nftName": "Entangled #95", + "media": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/95?resource_type=image", + "medias": { + "preview": { + "uri": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/95?resource_type=image", + "mediaType": "image/png" + }, + "big": { + "uri": "https://ldg.mo.cloudinary.net/stg/big/ethereum/1/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/95?resource_type=image", + "mediaType": "image/png" + }, + "original": { + "uri": "https://ldg.mo.cloudinary.net/stg/original/ethereum/1/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/95?resource_type=image", + "mediaType": "image/png" + } + }, + "description": "Entangled is a cross-chain, generative art project developed as a series of particle simulations that interact with each other in various ways across separate blockchains and browser windows. Inspired by the phenomenon of quantum entanglement, this project aims to connect two, often separate, parts of the generative art community by directly linking them together.\n \nEntangled features two distinct on-chain NFT collections residing on the Ethereum and Tezos blockchains. These collections are connected through shared interactions in real-time, using cross-chain and local storage technologies to enable a system whereby particles in separate browser instances respond to and mirror each other.\n\nThe series consist of a total of 512 unique editions (256 on each blockchain) that are randomly paired with a corresponding iteration on the other. When two or more instances are opened in separate browser windows they will start to interact in different ways depending on whether they are paired or not, or if an entangled pair is owned by the same collector.", + "tokenNameThumbnail": null, + "properties": [ + { + "key": "color scheme", + "value": "1" + }, + { + "key": "inverted pair", + "value": "no" + }, + { + "key": "motion 0", + "value": "a1-1" + }, + { + "key": "motion 1", + "value": "b0" + }, + { + "key": "connection twists", + "value": "3" + }, + { + "key": "main type", + "value": "sphere" + }, + { + "key": "core type", + "value": "sphere" + } + ], + "links": { + "rarible": "https://rarible.com/token/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db:95", + "opensea": "https://opensea.io/assets/ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/95", + "explorer": "https://etherscan.io/nft/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/95", + "etherscan": "https://etherscan.io/nft/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/95" + }, + "staxImage": null + } + }, + { + "status": 200, + "result": { + "contract": "0x19dbc1c820dd3f13260829a4e06dda6d9ef758db", + "tokenId": "77", + "tokenName": "Entangled", + "nftName": "Entangled #77", + "media": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/77?resource_type=image", + "medias": { + "preview": { + "uri": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/77?resource_type=image", + "mediaType": "image/png" + }, + "big": { + "uri": "https://ldg.mo.cloudinary.net/stg/big/ethereum/1/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/77?resource_type=image", + "mediaType": "image/png" + }, + "original": { + "uri": "https://ldg.mo.cloudinary.net/stg/original/ethereum/1/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/77?resource_type=image", + "mediaType": "image/png" + } + }, + "description": "Entangled is a cross-chain, generative art project developed as a series of particle simulations that interact with each other in various ways across separate blockchains and browser windows. Inspired by the phenomenon of quantum entanglement, this project aims to connect two, often separate, parts of the generative art community by directly linking them together.\n \nEntangled features two distinct on-chain NFT collections residing on the Ethereum and Tezos blockchains. These collections are connected through shared interactions in real-time, using cross-chain and local storage technologies to enable a system whereby particles in separate browser instances respond to and mirror each other.\n\nThe series consist of a total of 512 unique editions (256 on each blockchain) that are randomly paired with a corresponding iteration on the other. When two or more instances are opened in separate browser windows they will start to interact in different ways depending on whether they are paired or not, or if an entangled pair is owned by the same collector.", + "tokenNameThumbnail": null, + "properties": [ + { + "key": "color scheme", + "value": "1" + }, + { + "key": "inverted pair", + "value": "no" + }, + { + "key": "motion 0", + "value": "a1-1" + }, + { + "key": "motion 1", + "value": "a1-1" + }, + { + "key": "connection twists", + "value": "3" + }, + { + "key": "main type", + "value": "sphere" + }, + { + "key": "core type", + "value": "icosahedron" + } + ], + "links": { + "rarible": "https://rarible.com/token/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db:77", + "opensea": "https://opensea.io/assets/ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/77", + "explorer": "https://etherscan.io/nft/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/77", + "etherscan": "https://etherscan.io/nft/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/77" + }, + "staxImage": null + } + }, + { + "status": 200, + "result": { + "contract": "0x19dbc1c820dd3f13260829a4e06dda6d9ef758db", + "tokenId": "106", + "tokenName": "Entangled", + "nftName": "Entangled #106", + "media": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/106?resource_type=image", + "medias": { + "preview": { + "uri": "https://ldg.mo.cloudinary.net/stg/preview/ethereum/1/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/106?resource_type=image", + "mediaType": "image/png" + }, + "big": { + "uri": "https://ldg.mo.cloudinary.net/stg/big/ethereum/1/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/106?resource_type=image", + "mediaType": "image/png" + }, + "original": { + "uri": "https://ldg.mo.cloudinary.net/stg/original/ethereum/1/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/106?resource_type=image", + "mediaType": "image/png" + } + }, + "description": "Entangled is a cross-chain, generative art project developed as a series of particle simulations that interact with each other in various ways across separate blockchains and browser windows. Inspired by the phenomenon of quantum entanglement, this project aims to connect two, often separate, parts of the generative art community by directly linking them together.\n \nEntangled features two distinct on-chain NFT collections residing on the Ethereum and Tezos blockchains. These collections are connected through shared interactions in real-time, using cross-chain and local storage technologies to enable a system whereby particles in separate browser instances respond to and mirror each other.\n\nThe series consist of a total of 512 unique editions (256 on each blockchain) that are randomly paired with a corresponding iteration on the other. When two or more instances are opened in separate browser windows they will start to interact in different ways depending on whether they are paired or not, or if an entangled pair is owned by the same collector.", + "tokenNameThumbnail": null, + "properties": [ + { + "key": "color scheme", + "value": "17" + }, + { + "key": "inverted pair", + "value": "yes" + }, + { + "key": "motion 0", + "value": "c1" + }, + { + "key": "motion 1", + "value": "a1-0" + }, + { + "key": "connection twists", + "value": "4" + }, + { + "key": "main type", + "value": "sphere" + }, + { + "key": "core type", + "value": "sphere" + } + ], + "links": { + "rarible": "https://rarible.com/token/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db:106", + "opensea": "https://opensea.io/assets/ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/106", + "explorer": "https://etherscan.io/nft/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/106", + "etherscan": "https://etherscan.io/nft/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/106" + }, + "staxImage": null + } + } +] diff --git a/apps/ledger-live-desktop/tests/handlers/fixtures/nfts/mockedResponse2.json b/apps/ledger-live-desktop/tests/handlers/fixtures/nfts/mockedResponse2.json new file mode 100644 index 000000000000..b62d60c9148a --- /dev/null +++ b/apps/ledger-live-desktop/tests/handlers/fixtures/nfts/mockedResponse2.json @@ -0,0 +1,6642 @@ +{ + "next_cursor": null, + "next": null, + "previous": null, + "nfts": [ + { + "nft_id": "ethereum.0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d.35", + "chain": "ethereum", + "contract_address": "0xe3BE0054Da2F8da5002E8bdD8AA4c7fDf851E86D", + "token_id": "35", + "name": "Momentum #35", + "description": "Momentum encapsulates pivotal moments of velocity and engineering in a curated set of 200 evocative images. Every detail, every nuance, is a testament to the relentless pursuit of perfection. Crafted with a system that zeroes in on the quintessential race lap and the myriad challenges drivers confront, \"Momentum\" marks Rik's debut in the realm of 3D generative processes. While Rik's signature lies in meticulously chosen color palettes, this collection ventures into uncharted territory, allowing data and machine to dictate the final outcome. The result? A revolutionary ensemble, echoing a harmonious dialogue between artist and algorithm, reminiscent of the symbiosis between driver and vehicle.\n\nLeveraging unparalleled 8K resolution, \"Momentum\" is crafted for both pristine digital display and as stunning fine-art prints.\n\n**Artist**: Rik Oostenbroek \n**Year**: 2023 \n**Medium**: 3D Generative \n**Output**: 1/1, 200 pieces \n**Resolution**: 8k 300dpi \n\nThis work was exhibited as part of Velocity Series by Oracle Red Bull Racing and Bybit. Curated by AOI.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/WLBRQf4KpEaGUaGYHIssbT6zzXbec2VbHml_ziW6SOJPbw9p8tkK-5DdtD6AQVRdJ8eWLyZ1pply3VF-L9Ab-eazpQm8zppEz8Vj=s250", + "image_medium_url": "https://lh3.googleusercontent.com/WLBRQf4KpEaGUaGYHIssbT6zzXbec2VbHml_ziW6SOJPbw9p8tkK-5DdtD6AQVRdJ8eWLyZ1pply3VF-L9Ab-eazpQm8zppEz8Vj", + "image_large_url": "https://lh3.googleusercontent.com/WLBRQf4KpEaGUaGYHIssbT6zzXbec2VbHml_ziW6SOJPbw9p8tkK-5DdtD6AQVRdJ8eWLyZ1pply3VF-L9Ab-eazpQm8zppEz8Vj=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/WLBRQf4KpEaGUaGYHIssbT6zzXbec2VbHml_ziW6SOJPbw9p8tkK-5DdtD6AQVRdJ8eWLyZ1pply3VF-L9Ab-eazpQm8zppEz8Vj=k-w1200-s2400-rj", + "blurhash": "UaI:6Z5kEMs8}?W@RiS4AK%1s8WY#%T0WYwa", + "predominant_color": "#b06c8a" + }, + "image_url": "https://cdn.simplehash.com/assets/47809b53e85c21c6b6339d98e599805d2965a462ceeb4f3f481013de446fbc1b.jpg", + "image_properties": { + "width": 4320, + "height": 7680, + "size": 31526218, + "mime_type": "image/jpeg" + }, + "video_url": null, + "video_properties": null, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": null, + "created_date": "2023-08-24T15:01:35", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-07-11T17:28:47", + "last_acquired_date": "2024-07-11T17:28:47" + } + ], + "contract": { + "type": "ERC721", + "name": "Momentum by Rik Oostenbroek", + "symbol": "MMTM", + "deployed_by": "0x818fEe9D83C78A0BBA89bE07443c31709B08941c", + "deployed_via_contract": null, + "owned_by": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "has_multiple_collections": false + }, + "collection": { + "collection_id": "c4c145f486f54a3290135e5003c4cc67", + "name": "Momentum by Rik Oostenbroek", + "description": "Momentum encapsulates pivotal moments of velocity and engineering in a curated set of 200 evocative images. Every detail, every nuance, is a testament to the relentless pursuit of perfection. Crafted with a system that zeroes in on the quintessential race lap and the myriad challenges drivers confront, \"Momentum\" marks Rik's debut in the realm of 3D generative processes. While Rik's signature lies in meticulously chosen color palettes, this collection ventures into uncharted territory, allowing data and machine to dictate the final outcome. The result? A revolutionary ensemble, echoing a harmonious dialogue between artist and algorithm, reminiscent of the symbiosis between driver and vehicle.\r\n\r\nLeveraging unparalleled 8K resolution, \"Momentum\" is crafted for both pristine digital display and as stunning fine-art prints.\r\n\r\nArtist: Rik Oostenbroek\r\nYear: 2023\r\nMedium: 3D Generative\r\nOutput: 1/1, 200 pieces\r\nResolution: 8k 300dpi", + "image_url": "https://lh3.googleusercontent.com/YCk4DQvox_L0e8a02Ze8CizUOK_6AHdg4FO1iIy4wzbsyxn7abOCewhM0EFRiYdDpNGIHohZIyCfAOH8PlnYB4eL5QB0iolwNQS2", + "image_properties": { + "width": 350, + "height": 350, + "mime_type": "image/png" + }, + "banner_image_url": "https://lh3.googleusercontent.com/ZnA64lUwMXD2t_k-fM7iNzjWxm4Mf85NfiXrVtY6lXGZ-bG2DnJrxqTGWP1zfvz4J2rMA-BQ--SOns6xVZzPgphJ01u5Mo-ztg=w2500", + "category": "art", + "is_nsfw": false, + "external_url": null, + "twitter_username": "RikOostenbroek", + "discord_url": "https://discord.gg/uk76t26S89", + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d", + "nft_url": "https://magiceden.io/item-details/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/35", + "collection_url": "https://magiceden.io/collections/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "momentum-by-rik-oostenbroek", + "nft_url": "https://opensea.io/assets/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/35", + "collection_url": "https://opensea.io/collection/momentum-by-rik-oostenbroek", + "verified": true + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 150000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 51712 + }, + { + "marketplace_id": "blur", + "marketplace_name": "Blur", + "value": 150000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 51712 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 29700000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 10239 + }, + { + "marketplace_id": "blur", + "marketplace_name": "Blur", + "value": 10000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 3447 + } + ], + "distinct_owner_count": 97, + "distinct_nft_count": 200, + "total_quantity": 200, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "percentage": 100.0, + "basis_points": 750 + } + ] + } + ] + }, + "last_sale": { + "from_address": "0xB684aFe21D28dc6bF235Ca7c7DA3c21df19B3bCd", + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-07-11T17:28:47", + "transaction": "0xe08dbe92ddf30eb26adc35b7ad4acb6717aad977084a2225ea50713004589c4b", + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 89000000000000000, + "total_price": 89000000000000000, + "unit_price_usd_cents": 27783 + }, + "primary_sale": { + "from_address": null, + "to_address": "0x6329584367709fE6B219c6F0069b64Ffe01df3C1", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2023-08-24T15:01:35", + "transaction": "0x1a6a17bb5a6aa83eca5d4acfe9095f3bf792bbad2584cb13f951c52fbf09a8d1", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 330000000000000000, + "total_price": 330000000000000000, + "unit_price_usd_cents": 54388 + }, + "first_created": { + "minted_to": "0x6329584367709fE6B219c6F0069b64Ffe01df3C1", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2023-08-24T15:01:35", + "block_number": 17985322, + "transaction": "0x1a6a17bb5a6aa83eca5d4acfe9095f3bf792bbad2584cb13f951c52fbf09a8d1", + "transaction_initiator": "0x6329584367709fE6B219c6F0069b64Ffe01df3C1" + }, + "rarity": { + "rank": 107, + "score": 0.976, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "percentage": 100.0, + "basis_points": 750 + } + ] + }, + { + "source": "erc2981", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "percentage": 100.0, + "basis_points": 750 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "Palette", + "value": "Horizon", + "display_type": null + }, + { + "trait_type": "Structure", + "value": "Subtle", + "display_type": null + }, + { + "trait_type": "Backdrop", + "value": "Solid", + "display_type": null + }, + { + "trait_type": "Weather", + "value": "Overcast", + "display_type": null + }, + { + "trait_type": "Form", + "value": "Sway", + "display_type": null + }, + { + "trait_type": "Precision", + "value": "Blurry", + "display_type": null + }, + { + "trait_type": "Shift", + "value": "Max", + "display_type": null + }, + { + "trait_type": "Magnitude", + "value": "Moderate", + "display_type": null + }, + { + "trait_type": "Focus", + "value": "Lateral", + "display_type": null + } + ], + "image_original_url": "https://ipfs.io/ipfs/bafybeifahiodcva3k77ar6yxb6md5l5vn2bp7vkhgef64pfnma57ijaxcm/27.jpg", + "animation_original_url": null, + "metadata_original_url": "https://bafybeighacfsfkv24oialyvrlpmzola6nlkgj57oasjtq5g57s3t7ngbr4.ipfs.nftstorage.link/35" + } + }, + { + "nft_id": "ethereum.0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d.34", + "chain": "ethereum", + "contract_address": "0xe3BE0054Da2F8da5002E8bdD8AA4c7fDf851E86D", + "token_id": "34", + "name": "Momentum #34", + "description": "Momentum encapsulates pivotal moments of velocity and engineering in a curated set of 200 evocative images. Every detail, every nuance, is a testament to the relentless pursuit of perfection. Crafted with a system that zeroes in on the quintessential race lap and the myriad challenges drivers confront, \"Momentum\" marks Rik's debut in the realm of 3D generative processes. While Rik's signature lies in meticulously chosen color palettes, this collection ventures into uncharted territory, allowing data and machine to dictate the final outcome. The result? A revolutionary ensemble, echoing a harmonious dialogue between artist and algorithm, reminiscent of the symbiosis between driver and vehicle.\n\nLeveraging unparalleled 8K resolution, \"Momentum\" is crafted for both pristine digital display and as stunning fine-art prints.\n\n**Artist**: Rik Oostenbroek \n**Year**: 2023 \n**Medium**: 3D Generative \n**Output**: 1/1, 200 pieces \n**Resolution**: 8k 300dpi \n\nThis work was exhibited as part of Velocity Series by Oracle Red Bull Racing and Bybit. Curated by AOI.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/ihurz1suxlAM7ibSxnW_qfAUlZP96xEwK3gyR7gz9t9He63j-K2EHOAr3bXBTwiEjowm8cdkgSFqOmcLoB3IHH0cVKwS3lyAHg=s250", + "image_medium_url": "https://lh3.googleusercontent.com/ihurz1suxlAM7ibSxnW_qfAUlZP96xEwK3gyR7gz9t9He63j-K2EHOAr3bXBTwiEjowm8cdkgSFqOmcLoB3IHH0cVKwS3lyAHg", + "image_large_url": "https://lh3.googleusercontent.com/ihurz1suxlAM7ibSxnW_qfAUlZP96xEwK3gyR7gz9t9He63j-K2EHOAr3bXBTwiEjowm8cdkgSFqOmcLoB3IHH0cVKwS3lyAHg=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/ihurz1suxlAM7ibSxnW_qfAUlZP96xEwK3gyR7gz9t9He63j-K2EHOAr3bXBTwiEjowm8cdkgSFqOmcLoB3IHH0cVKwS3lyAHg=k-w1200-s2400-rj", + "blurhash": "UnK9ToNgxDsS#$r:oJjYx|RkWAWXoHxuoNfl", + "predominant_color": "#c18bb4" + }, + "image_url": "https://cdn.simplehash.com/assets/d67d84c2e2279397e746bd75bed759899b643c73a781a1a89296070d14d27d6e.jpg", + "image_properties": { + "width": 4320, + "height": 7680, + "size": 30407494, + "mime_type": "image/jpeg" + }, + "video_url": null, + "video_properties": null, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": null, + "created_date": "2023-08-24T15:01:35", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-07-11T17:28:47", + "last_acquired_date": "2024-07-11T17:28:47" + } + ], + "contract": { + "type": "ERC721", + "name": "Momentum by Rik Oostenbroek", + "symbol": "MMTM", + "deployed_by": "0x818fEe9D83C78A0BBA89bE07443c31709B08941c", + "deployed_via_contract": null, + "owned_by": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "has_multiple_collections": false + }, + "collection": { + "collection_id": "c4c145f486f54a3290135e5003c4cc67", + "name": "Momentum by Rik Oostenbroek", + "description": "Momentum encapsulates pivotal moments of velocity and engineering in a curated set of 200 evocative images. Every detail, every nuance, is a testament to the relentless pursuit of perfection. Crafted with a system that zeroes in on the quintessential race lap and the myriad challenges drivers confront, \"Momentum\" marks Rik's debut in the realm of 3D generative processes. While Rik's signature lies in meticulously chosen color palettes, this collection ventures into uncharted territory, allowing data and machine to dictate the final outcome. The result? A revolutionary ensemble, echoing a harmonious dialogue between artist and algorithm, reminiscent of the symbiosis between driver and vehicle.\r\n\r\nLeveraging unparalleled 8K resolution, \"Momentum\" is crafted for both pristine digital display and as stunning fine-art prints.\r\n\r\nArtist: Rik Oostenbroek\r\nYear: 2023\r\nMedium: 3D Generative\r\nOutput: 1/1, 200 pieces\r\nResolution: 8k 300dpi", + "image_url": "https://lh3.googleusercontent.com/YCk4DQvox_L0e8a02Ze8CizUOK_6AHdg4FO1iIy4wzbsyxn7abOCewhM0EFRiYdDpNGIHohZIyCfAOH8PlnYB4eL5QB0iolwNQS2", + "image_properties": { + "width": 350, + "height": 350, + "mime_type": "image/png" + }, + "banner_image_url": "https://lh3.googleusercontent.com/ZnA64lUwMXD2t_k-fM7iNzjWxm4Mf85NfiXrVtY6lXGZ-bG2DnJrxqTGWP1zfvz4J2rMA-BQ--SOns6xVZzPgphJ01u5Mo-ztg=w2500", + "category": "art", + "is_nsfw": false, + "external_url": null, + "twitter_username": "RikOostenbroek", + "discord_url": "https://discord.gg/uk76t26S89", + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d", + "nft_url": "https://magiceden.io/item-details/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/34", + "collection_url": "https://magiceden.io/collections/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "momentum-by-rik-oostenbroek", + "nft_url": "https://opensea.io/assets/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/34", + "collection_url": "https://opensea.io/collection/momentum-by-rik-oostenbroek", + "verified": true + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 150000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 51712 + }, + { + "marketplace_id": "blur", + "marketplace_name": "Blur", + "value": 150000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 51712 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 29700000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 10239 + }, + { + "marketplace_id": "blur", + "marketplace_name": "Blur", + "value": 10000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 3447 + } + ], + "distinct_owner_count": 97, + "distinct_nft_count": 200, + "total_quantity": 200, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "percentage": 100.0, + "basis_points": 750 + } + ] + } + ] + }, + "last_sale": { + "from_address": "0x6329584367709fE6B219c6F0069b64Ffe01df3C1", + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-07-11T17:28:47", + "transaction": "0xe08dbe92ddf30eb26adc35b7ad4acb6717aad977084a2225ea50713004589c4b", + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 100000000000000000, + "total_price": 100000000000000000, + "unit_price_usd_cents": 31217 + }, + "primary_sale": { + "from_address": null, + "to_address": "0x6329584367709fE6B219c6F0069b64Ffe01df3C1", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2023-08-24T15:01:35", + "transaction": "0x1a6a17bb5a6aa83eca5d4acfe9095f3bf792bbad2584cb13f951c52fbf09a8d1", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 330000000000000000, + "total_price": 330000000000000000, + "unit_price_usd_cents": 54388 + }, + "first_created": { + "minted_to": "0x6329584367709fE6B219c6F0069b64Ffe01df3C1", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2023-08-24T15:01:35", + "block_number": 17985322, + "transaction": "0x1a6a17bb5a6aa83eca5d4acfe9095f3bf792bbad2584cb13f951c52fbf09a8d1", + "transaction_initiator": "0x6329584367709fE6B219c6F0069b64Ffe01df3C1" + }, + "rarity": { + "rank": 33, + "score": 1.145, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "percentage": 100.0, + "basis_points": 750 + } + ] + }, + { + "source": "erc2981", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "percentage": 100.0, + "basis_points": 750 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "Palette", + "value": "Horizon", + "display_type": null + }, + { + "trait_type": "Structure", + "value": "Balanced", + "display_type": null + }, + { + "trait_type": "Backdrop", + "value": "Fade", + "display_type": null + }, + { + "trait_type": "Weather", + "value": "Radiant", + "display_type": null + }, + { + "trait_type": "Form", + "value": "Turbulent", + "display_type": null + }, + { + "trait_type": "Precision", + "value": "Sharp", + "display_type": null + }, + { + "trait_type": "Shift", + "value": "Max", + "display_type": null + }, + { + "trait_type": "Magnitude", + "value": "Sleek", + "display_type": null + }, + { + "trait_type": "Focus", + "value": "Neutral", + "display_type": null + } + ], + "image_original_url": "https://ipfs.io/ipfs/bafybeibxyhi6ytronutroqfrkcgicersqwtttwpphf7tjyjrrfwpj4h45m/52.jpg", + "animation_original_url": null, + "metadata_original_url": "https://bafybeighacfsfkv24oialyvrlpmzola6nlkgj57oasjtq5g57s3t7ngbr4.ipfs.nftstorage.link/34" + } + }, + { + "nft_id": "ethereum.0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d.32", + "chain": "ethereum", + "contract_address": "0xe3BE0054Da2F8da5002E8bdD8AA4c7fDf851E86D", + "token_id": "32", + "name": "Momentum #32", + "description": "Momentum encapsulates pivotal moments of velocity and engineering in a curated set of 200 evocative images. Every detail, every nuance, is a testament to the relentless pursuit of perfection. Crafted with a system that zeroes in on the quintessential race lap and the myriad challenges drivers confront, \"Momentum\" marks Rik's debut in the realm of 3D generative processes. While Rik's signature lies in meticulously chosen color palettes, this collection ventures into uncharted territory, allowing data and machine to dictate the final outcome. The result? A revolutionary ensemble, echoing a harmonious dialogue between artist and algorithm, reminiscent of the symbiosis between driver and vehicle.\n\nLeveraging unparalleled 8K resolution, \"Momentum\" is crafted for both pristine digital display and as stunning fine-art prints.\n\n**Artist**: Rik Oostenbroek \n**Year**: 2023 \n**Medium**: 3D Generative \n**Output**: 1/1, 200 pieces \n**Resolution**: 8k 300dpi \n\nThis work was exhibited as part of Velocity Series by Oracle Red Bull Racing and Bybit. Curated by AOI.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/hOhcbCCyiThUqz5nLyYEf1H-GoNfDNypaTOwdVl1kD4dohdUOQA6EN5KOXx6CoXpPmYulC9zz_vfHl0jsmLYQtsgsqIrasvGuC7p=s250", + "image_medium_url": "https://lh3.googleusercontent.com/hOhcbCCyiThUqz5nLyYEf1H-GoNfDNypaTOwdVl1kD4dohdUOQA6EN5KOXx6CoXpPmYulC9zz_vfHl0jsmLYQtsgsqIrasvGuC7p", + "image_large_url": "https://lh3.googleusercontent.com/hOhcbCCyiThUqz5nLyYEf1H-GoNfDNypaTOwdVl1kD4dohdUOQA6EN5KOXx6CoXpPmYulC9zz_vfHl0jsmLYQtsgsqIrasvGuC7p=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/hOhcbCCyiThUqz5nLyYEf1H-GoNfDNypaTOwdVl1kD4dohdUOQA6EN5KOXx6CoXpPmYulC9zz_vfHl0jsmLYQtsgsqIrasvGuC7p=k-w1200-s2400-rj", + "blurhash": "UgD,5INKoHXA02xZnhaz?KRiWVjX9#jEbwj[", + "predominant_color": "#213dbf" + }, + "image_url": "https://cdn.simplehash.com/assets/93954feff808efbe5d9eefefd025087cd0d6c6429c5f5f8ffdb875f6930d00ef.jpg", + "image_properties": { + "width": 4320, + "height": 7680, + "size": 28472924, + "mime_type": "image/jpeg" + }, + "video_url": null, + "video_properties": null, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": null, + "created_date": "2023-08-24T15:01:35", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-07-11T17:28:47", + "last_acquired_date": "2024-07-11T17:28:47" + } + ], + "contract": { + "type": "ERC721", + "name": "Momentum by Rik Oostenbroek", + "symbol": "MMTM", + "deployed_by": "0x818fEe9D83C78A0BBA89bE07443c31709B08941c", + "deployed_via_contract": null, + "owned_by": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "has_multiple_collections": false + }, + "collection": { + "collection_id": "c4c145f486f54a3290135e5003c4cc67", + "name": "Momentum by Rik Oostenbroek", + "description": "Momentum encapsulates pivotal moments of velocity and engineering in a curated set of 200 evocative images. Every detail, every nuance, is a testament to the relentless pursuit of perfection. Crafted with a system that zeroes in on the quintessential race lap and the myriad challenges drivers confront, \"Momentum\" marks Rik's debut in the realm of 3D generative processes. While Rik's signature lies in meticulously chosen color palettes, this collection ventures into uncharted territory, allowing data and machine to dictate the final outcome. The result? A revolutionary ensemble, echoing a harmonious dialogue between artist and algorithm, reminiscent of the symbiosis between driver and vehicle.\r\n\r\nLeveraging unparalleled 8K resolution, \"Momentum\" is crafted for both pristine digital display and as stunning fine-art prints.\r\n\r\nArtist: Rik Oostenbroek\r\nYear: 2023\r\nMedium: 3D Generative\r\nOutput: 1/1, 200 pieces\r\nResolution: 8k 300dpi", + "image_url": "https://lh3.googleusercontent.com/YCk4DQvox_L0e8a02Ze8CizUOK_6AHdg4FO1iIy4wzbsyxn7abOCewhM0EFRiYdDpNGIHohZIyCfAOH8PlnYB4eL5QB0iolwNQS2", + "image_properties": { + "width": 350, + "height": 350, + "mime_type": "image/png" + }, + "banner_image_url": "https://lh3.googleusercontent.com/ZnA64lUwMXD2t_k-fM7iNzjWxm4Mf85NfiXrVtY6lXGZ-bG2DnJrxqTGWP1zfvz4J2rMA-BQ--SOns6xVZzPgphJ01u5Mo-ztg=w2500", + "category": "art", + "is_nsfw": false, + "external_url": null, + "twitter_username": "RikOostenbroek", + "discord_url": "https://discord.gg/uk76t26S89", + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d", + "nft_url": "https://magiceden.io/item-details/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/32", + "collection_url": "https://magiceden.io/collections/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "momentum-by-rik-oostenbroek", + "nft_url": "https://opensea.io/assets/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/32", + "collection_url": "https://opensea.io/collection/momentum-by-rik-oostenbroek", + "verified": true + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 150000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 51712 + }, + { + "marketplace_id": "blur", + "marketplace_name": "Blur", + "value": 150000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 51712 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 29700000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 10239 + }, + { + "marketplace_id": "blur", + "marketplace_name": "Blur", + "value": 10000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 3447 + } + ], + "distinct_owner_count": 97, + "distinct_nft_count": 200, + "total_quantity": 200, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "percentage": 100.0, + "basis_points": 750 + } + ] + } + ] + }, + "last_sale": { + "from_address": "0x6329584367709fE6B219c6F0069b64Ffe01df3C1", + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-07-11T17:28:47", + "transaction": "0xe08dbe92ddf30eb26adc35b7ad4acb6717aad977084a2225ea50713004589c4b", + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 100000000000000000, + "total_price": 100000000000000000, + "unit_price_usd_cents": 31217 + }, + "primary_sale": { + "from_address": null, + "to_address": "0x6329584367709fE6B219c6F0069b64Ffe01df3C1", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2023-08-24T15:01:35", + "transaction": "0x1a6a17bb5a6aa83eca5d4acfe9095f3bf792bbad2584cb13f951c52fbf09a8d1", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 330000000000000000, + "total_price": 330000000000000000, + "unit_price_usd_cents": 54388 + }, + "first_created": { + "minted_to": "0x6329584367709fE6B219c6F0069b64Ffe01df3C1", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2023-08-24T15:01:35", + "block_number": 17985322, + "transaction": "0x1a6a17bb5a6aa83eca5d4acfe9095f3bf792bbad2584cb13f951c52fbf09a8d1", + "transaction_initiator": "0x6329584367709fE6B219c6F0069b64Ffe01df3C1" + }, + "rarity": { + "rank": 35, + "score": 1.131, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "percentage": 100.0, + "basis_points": 750 + } + ] + }, + { + "source": "erc2981", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "percentage": 100.0, + "basis_points": 750 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "Palette", + "value": "Drift", + "display_type": null + }, + { + "trait_type": "Structure", + "value": "Subtle", + "display_type": null + }, + { + "trait_type": "Backdrop", + "value": "Fade", + "display_type": null + }, + { + "trait_type": "Weather", + "value": "Radiant", + "display_type": null + }, + { + "trait_type": "Form", + "value": "Pristine", + "display_type": null + }, + { + "trait_type": "Precision", + "value": "Sharp", + "display_type": null + }, + { + "trait_type": "Shift", + "value": "Mid", + "display_type": null + }, + { + "trait_type": "Magnitude", + "value": "Sleek", + "display_type": null + }, + { + "trait_type": "Focus", + "value": "Lateral", + "display_type": null + } + ], + "image_original_url": "https://ipfs.io/ipfs/bafybeidohtjjl3bt23wu7xhrgxutn2nnue2ohkuseivo6nbtvznh6bepni/6.jpg", + "animation_original_url": null, + "metadata_original_url": "https://bafybeighacfsfkv24oialyvrlpmzola6nlkgj57oasjtq5g57s3t7ngbr4.ipfs.nftstorage.link/32" + } + }, + { + "nft_id": "ethereum.0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d.31", + "chain": "ethereum", + "contract_address": "0xe3BE0054Da2F8da5002E8bdD8AA4c7fDf851E86D", + "token_id": "31", + "name": "Momentum #31", + "description": "Momentum encapsulates pivotal moments of velocity and engineering in a curated set of 200 evocative images. Every detail, every nuance, is a testament to the relentless pursuit of perfection. Crafted with a system that zeroes in on the quintessential race lap and the myriad challenges drivers confront, \"Momentum\" marks Rik's debut in the realm of 3D generative processes. While Rik's signature lies in meticulously chosen color palettes, this collection ventures into uncharted territory, allowing data and machine to dictate the final outcome. The result? A revolutionary ensemble, echoing a harmonious dialogue between artist and algorithm, reminiscent of the symbiosis between driver and vehicle.\n\nLeveraging unparalleled 8K resolution, \"Momentum\" is crafted for both pristine digital display and as stunning fine-art prints.\n\n**Artist**: Rik Oostenbroek \n**Year**: 2023 \n**Medium**: 3D Generative \n**Output**: 1/1, 200 pieces \n**Resolution**: 8k 300dpi \n\nThis work was exhibited as part of Velocity Series by Oracle Red Bull Racing and Bybit. Curated by AOI.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/Es1yPyxjazth1SKFuBwzZ1SmI6flLKTVp08NKxJdDICEIFSFSuhlwDBL6SEKpL8BCrk9aFKD7JMi6IyGRmjdqnt5b4OESW0-NDo=s250", + "image_medium_url": "https://lh3.googleusercontent.com/Es1yPyxjazth1SKFuBwzZ1SmI6flLKTVp08NKxJdDICEIFSFSuhlwDBL6SEKpL8BCrk9aFKD7JMi6IyGRmjdqnt5b4OESW0-NDo", + "image_large_url": "https://lh3.googleusercontent.com/Es1yPyxjazth1SKFuBwzZ1SmI6flLKTVp08NKxJdDICEIFSFSuhlwDBL6SEKpL8BCrk9aFKD7JMi6IyGRmjdqnt5b4OESW0-NDo=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/Es1yPyxjazth1SKFuBwzZ1SmI6flLKTVp08NKxJdDICEIFSFSuhlwDBL6SEKpL8BCrk9aFKD7JMi6IyGRmjdqnt5b4OESW0-NDo=k-w1200-s2400-rj", + "blurhash": "UaI4APA0V?s:9@=rs:slpMxBs,jERkt7xCfl", + "predominant_color": "#8e76c0" + }, + "image_url": "https://cdn.simplehash.com/assets/3ec8c02e6c28afae7efa8c803a19a95c569a730d4e43eb74c3f23e006ba5f2c3.jpg", + "image_properties": { + "width": 4320, + "height": 7680, + "size": 30189839, + "mime_type": "image/jpeg" + }, + "video_url": null, + "video_properties": null, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": null, + "created_date": "2023-08-24T15:01:35", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-07-11T17:28:47", + "last_acquired_date": "2024-07-11T17:28:47" + } + ], + "contract": { + "type": "ERC721", + "name": "Momentum by Rik Oostenbroek", + "symbol": "MMTM", + "deployed_by": "0x818fEe9D83C78A0BBA89bE07443c31709B08941c", + "deployed_via_contract": null, + "owned_by": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "has_multiple_collections": false + }, + "collection": { + "collection_id": "c4c145f486f54a3290135e5003c4cc67", + "name": "Momentum by Rik Oostenbroek", + "description": "Momentum encapsulates pivotal moments of velocity and engineering in a curated set of 200 evocative images. Every detail, every nuance, is a testament to the relentless pursuit of perfection. Crafted with a system that zeroes in on the quintessential race lap and the myriad challenges drivers confront, \"Momentum\" marks Rik's debut in the realm of 3D generative processes. While Rik's signature lies in meticulously chosen color palettes, this collection ventures into uncharted territory, allowing data and machine to dictate the final outcome. The result? A revolutionary ensemble, echoing a harmonious dialogue between artist and algorithm, reminiscent of the symbiosis between driver and vehicle.\r\n\r\nLeveraging unparalleled 8K resolution, \"Momentum\" is crafted for both pristine digital display and as stunning fine-art prints.\r\n\r\nArtist: Rik Oostenbroek\r\nYear: 2023\r\nMedium: 3D Generative\r\nOutput: 1/1, 200 pieces\r\nResolution: 8k 300dpi", + "image_url": "https://lh3.googleusercontent.com/YCk4DQvox_L0e8a02Ze8CizUOK_6AHdg4FO1iIy4wzbsyxn7abOCewhM0EFRiYdDpNGIHohZIyCfAOH8PlnYB4eL5QB0iolwNQS2", + "image_properties": { + "width": 350, + "height": 350, + "mime_type": "image/png" + }, + "banner_image_url": "https://lh3.googleusercontent.com/ZnA64lUwMXD2t_k-fM7iNzjWxm4Mf85NfiXrVtY6lXGZ-bG2DnJrxqTGWP1zfvz4J2rMA-BQ--SOns6xVZzPgphJ01u5Mo-ztg=w2500", + "category": "art", + "is_nsfw": false, + "external_url": null, + "twitter_username": "RikOostenbroek", + "discord_url": "https://discord.gg/uk76t26S89", + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d", + "nft_url": "https://magiceden.io/item-details/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/31", + "collection_url": "https://magiceden.io/collections/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "momentum-by-rik-oostenbroek", + "nft_url": "https://opensea.io/assets/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/31", + "collection_url": "https://opensea.io/collection/momentum-by-rik-oostenbroek", + "verified": true + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 150000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 51712 + }, + { + "marketplace_id": "blur", + "marketplace_name": "Blur", + "value": 150000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 51712 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 29700000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 10239 + }, + { + "marketplace_id": "blur", + "marketplace_name": "Blur", + "value": 10000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 3447 + } + ], + "distinct_owner_count": 97, + "distinct_nft_count": 200, + "total_quantity": 200, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "percentage": 100.0, + "basis_points": 750 + } + ] + } + ] + }, + "last_sale": { + "from_address": "0xcaf83cCe08BbE462d929281043B9292893FF6964", + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-07-11T17:28:47", + "transaction": "0xe08dbe92ddf30eb26adc35b7ad4acb6717aad977084a2225ea50713004589c4b", + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 79000000000000000, + "total_price": 79000000000000000, + "unit_price_usd_cents": 24661 + }, + "primary_sale": { + "from_address": null, + "to_address": "0x6329584367709fE6B219c6F0069b64Ffe01df3C1", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2023-08-24T15:01:35", + "transaction": "0x1a6a17bb5a6aa83eca5d4acfe9095f3bf792bbad2584cb13f951c52fbf09a8d1", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 330000000000000000, + "total_price": 330000000000000000, + "unit_price_usd_cents": 54388 + }, + "first_created": { + "minted_to": "0x6329584367709fE6B219c6F0069b64Ffe01df3C1", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2023-08-24T15:01:35", + "block_number": 17985322, + "transaction": "0x1a6a17bb5a6aa83eca5d4acfe9095f3bf792bbad2584cb13f951c52fbf09a8d1", + "transaction_initiator": "0x6329584367709fE6B219c6F0069b64Ffe01df3C1" + }, + "rarity": { + "rank": 121, + "score": 0.945, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "percentage": 100.0, + "basis_points": 750 + } + ] + }, + { + "source": "erc2981", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "percentage": 100.0, + "basis_points": 750 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "Palette", + "value": "Horizon", + "display_type": null + }, + { + "trait_type": "Structure", + "value": "Subtle", + "display_type": null + }, + { + "trait_type": "Backdrop", + "value": "Fade", + "display_type": null + }, + { + "trait_type": "Weather", + "value": "Overcast", + "display_type": null + }, + { + "trait_type": "Form", + "value": "Sway", + "display_type": null + }, + { + "trait_type": "Precision", + "value": "Blurry", + "display_type": null + }, + { + "trait_type": "Shift", + "value": "Mid", + "display_type": null + }, + { + "trait_type": "Magnitude", + "value": "Moderate", + "display_type": null + }, + { + "trait_type": "Focus", + "value": "Lateral", + "display_type": null + } + ], + "image_original_url": "https://ipfs.io/ipfs/bafybeiezecscv6zinsg7lwfxbl7puuothvd6uqnhywopvgynxzyb456fry/30.jpg", + "animation_original_url": null, + "metadata_original_url": "https://bafybeighacfsfkv24oialyvrlpmzola6nlkgj57oasjtq5g57s3t7ngbr4.ipfs.nftstorage.link/31" + } + }, + { + "nft_id": "ethereum.0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d.4", + "chain": "ethereum", + "contract_address": "0xe3BE0054Da2F8da5002E8bdD8AA4c7fDf851E86D", + "token_id": "4", + "name": "Momentum #4", + "description": "Momentum encapsulates pivotal moments of velocity and engineering in a curated set of 200 evocative images. Every detail, every nuance, is a testament to the relentless pursuit of perfection. Crafted with a system that zeroes in on the quintessential race lap and the myriad challenges drivers confront, \"Momentum\" marks Rik's debut in the realm of 3D generative processes. While Rik's signature lies in meticulously chosen color palettes, this collection ventures into uncharted territory, allowing data and machine to dictate the final outcome. The result? A revolutionary ensemble, echoing a harmonious dialogue between artist and algorithm, reminiscent of the symbiosis between driver and vehicle.\n\nLeveraging unparalleled 8K resolution, \"Momentum\" is crafted for both pristine digital display and as stunning fine-art prints.\n\n**Artist**: Rik Oostenbroek \n**Year**: 2023 \n**Medium**: 3D Generative \n**Output**: 1/1, 200 pieces \n**Resolution**: 8k 300dpi \n\nThis work was exhibited as part of Velocity Series by Oracle Red Bull Racing and Bybit. Curated by AOI.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/_qTX4IltYi0vkICVpHnVW_NkF6kgi-E2Kll_aADIMcSGzV7qzkF6oPaEgticC1AMJeO_jHDQVNFC2MKvzgsy3f6RylITXFCg1ug=s250", + "image_medium_url": "https://lh3.googleusercontent.com/_qTX4IltYi0vkICVpHnVW_NkF6kgi-E2Kll_aADIMcSGzV7qzkF6oPaEgticC1AMJeO_jHDQVNFC2MKvzgsy3f6RylITXFCg1ug", + "image_large_url": "https://lh3.googleusercontent.com/_qTX4IltYi0vkICVpHnVW_NkF6kgi-E2Kll_aADIMcSGzV7qzkF6oPaEgticC1AMJeO_jHDQVNFC2MKvzgsy3f6RylITXFCg1ug=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/_qTX4IltYi0vkICVpHnVW_NkF6kgi-E2Kll_aADIMcSGzV7qzkF6oPaEgticC1AMJeO_jHDQVNFC2MKvzgsy3f6RylITXFCg1ug=k-w1200-s2400-rj", + "blurhash": "UXKuaFx|t7M^x=RMj;xa^S9]SMWYBpwIoLbb", + "predominant_color": "#b984b2" + }, + "image_url": "https://cdn.simplehash.com/assets/f16e742be9b8130d4d686efb634d53044ecb4ddaf0ed295640a20873a2accde0.jpg", + "image_properties": { + "width": 4320, + "height": 7680, + "size": 25323525, + "mime_type": "image/jpeg" + }, + "video_url": null, + "video_properties": null, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": null, + "created_date": "2023-08-24T14:58:59", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-07-11T17:28:47", + "last_acquired_date": "2024-07-11T17:28:47" + } + ], + "contract": { + "type": "ERC721", + "name": "Momentum by Rik Oostenbroek", + "symbol": "MMTM", + "deployed_by": "0x818fEe9D83C78A0BBA89bE07443c31709B08941c", + "deployed_via_contract": null, + "owned_by": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "has_multiple_collections": false + }, + "collection": { + "collection_id": "c4c145f486f54a3290135e5003c4cc67", + "name": "Momentum by Rik Oostenbroek", + "description": "Momentum encapsulates pivotal moments of velocity and engineering in a curated set of 200 evocative images. Every detail, every nuance, is a testament to the relentless pursuit of perfection. Crafted with a system that zeroes in on the quintessential race lap and the myriad challenges drivers confront, \"Momentum\" marks Rik's debut in the realm of 3D generative processes. While Rik's signature lies in meticulously chosen color palettes, this collection ventures into uncharted territory, allowing data and machine to dictate the final outcome. The result? A revolutionary ensemble, echoing a harmonious dialogue between artist and algorithm, reminiscent of the symbiosis between driver and vehicle.\r\n\r\nLeveraging unparalleled 8K resolution, \"Momentum\" is crafted for both pristine digital display and as stunning fine-art prints.\r\n\r\nArtist: Rik Oostenbroek\r\nYear: 2023\r\nMedium: 3D Generative\r\nOutput: 1/1, 200 pieces\r\nResolution: 8k 300dpi", + "image_url": "https://lh3.googleusercontent.com/YCk4DQvox_L0e8a02Ze8CizUOK_6AHdg4FO1iIy4wzbsyxn7abOCewhM0EFRiYdDpNGIHohZIyCfAOH8PlnYB4eL5QB0iolwNQS2", + "image_properties": { + "width": 350, + "height": 350, + "mime_type": "image/png" + }, + "banner_image_url": "https://lh3.googleusercontent.com/ZnA64lUwMXD2t_k-fM7iNzjWxm4Mf85NfiXrVtY6lXGZ-bG2DnJrxqTGWP1zfvz4J2rMA-BQ--SOns6xVZzPgphJ01u5Mo-ztg=w2500", + "category": "art", + "is_nsfw": false, + "external_url": null, + "twitter_username": "RikOostenbroek", + "discord_url": "https://discord.gg/uk76t26S89", + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d", + "nft_url": "https://magiceden.io/item-details/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/4", + "collection_url": "https://magiceden.io/collections/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "momentum-by-rik-oostenbroek", + "nft_url": "https://opensea.io/assets/ethereum/0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d/4", + "collection_url": "https://opensea.io/collection/momentum-by-rik-oostenbroek", + "verified": true + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 150000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 51712 + }, + { + "marketplace_id": "blur", + "marketplace_name": "Blur", + "value": 150000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 51712 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 29700000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 10239 + }, + { + "marketplace_id": "blur", + "marketplace_name": "Blur", + "value": 10000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 3447 + } + ], + "distinct_owner_count": 97, + "distinct_nft_count": 200, + "total_quantity": 200, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0xe3be0054da2f8da5002e8bdd8aa4c7fdf851e86d"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "percentage": 100.0, + "basis_points": 750 + } + ] + } + ] + }, + "last_sale": { + "from_address": "0xAda6Cbd477311409DF392F869c21f384A2d9D1ff", + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-07-11T17:28:47", + "transaction": "0xe08dbe92ddf30eb26adc35b7ad4acb6717aad977084a2225ea50713004589c4b", + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 69000000000000000, + "total_price": 69000000000000000, + "unit_price_usd_cents": 21540 + }, + "primary_sale": { + "from_address": null, + "to_address": "0xa6069D98D7728003a73b68657CC227Dc9a1086F2", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2023-08-24T14:58:59", + "transaction": "0xee18ae9eba67b53863d1962f61a011ac3d95e57bc5acf755cda2691ef4015123", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 720000000000000000, + "total_price": 720000000000000000, + "unit_price_usd_cents": 118664 + }, + "first_created": { + "minted_to": "0xa6069D98D7728003a73b68657CC227Dc9a1086F2", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2023-08-24T14:58:59", + "block_number": 17985309, + "transaction": "0xee18ae9eba67b53863d1962f61a011ac3d95e57bc5acf755cda2691ef4015123", + "transaction_initiator": "0xa6069D98D7728003a73b68657CC227Dc9a1086F2" + }, + "rarity": { + "rank": 142, + "score": 0.893, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "percentage": 100.0, + "basis_points": 750 + } + ] + }, + { + "source": "erc2981", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0x0aaDEEf83545196CCB2ce70FaBF8be1Afa3C9B87", + "percentage": 100.0, + "basis_points": 750 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "Palette", + "value": "Momentum", + "display_type": null + }, + { + "trait_type": "Structure", + "value": "Balanced", + "display_type": null + }, + { + "trait_type": "Backdrop", + "value": "Fade", + "display_type": null + }, + { + "trait_type": "Weather", + "value": "Overcast", + "display_type": null + }, + { + "trait_type": "Form", + "value": "Sway", + "display_type": null + }, + { + "trait_type": "Precision", + "value": "Blurry", + "display_type": null + }, + { + "trait_type": "Shift", + "value": "Min", + "display_type": null + }, + { + "trait_type": "Magnitude", + "value": "Moderate", + "display_type": null + }, + { + "trait_type": "Focus", + "value": "Lateral", + "display_type": null + } + ], + "image_original_url": "https://ipfs.io/ipfs/bafybeiahgo6etfl4egfm2sfolqus26ybcysinrcbb3yqcd5xa2azbtjo44/99.jpg", + "animation_original_url": null, + "metadata_original_url": "https://bafybeighacfsfkv24oialyvrlpmzola6nlkgj57oasjtq5g57s3t7ngbr4.ipfs.nftstorage.link/4" + } + }, + { + "nft_id": "ethereum.0x92e64d1a27f4f42ecaf0ef7f725f119751113a38.675", + "chain": "ethereum", + "contract_address": "0x92E64D1a27f4F42ecAF0EF7f725f119751113A38", + "token_id": "675", + "name": "Dalmatina Anura", + "description": "*\"The Vault of Wonders: Chapter 1 - The Abyssal Unseen\"*\n*This collection by artistic duo Xavier and Daniel, the Boldtron twins, showcases a groundbreaking advancement in AI video technology that marries the historical curiosity of Renaissance cabinets with the enigmatic depths of the abyssal ocean. The work features creatures once only imaginable, now realized through sophisticated AI tools, embodying a symbiosis of natural traits and digital craftsmanship that challenges the boundaries between the organic and the fabricated.*\nHistorically, the Renaissance cabinets of curiosities collected wonders that blurred the lines between natural history and imaginative interpretation, much like \"The Abyssal Unseen\" blurs the lines between biological reality and digital fabrication. These cabinets often featured exotic specimens that tantalized both the intellect and the imagination, serving as precursors to modern museums by engaging the viewer in a dialogue about the diversity of the natural world and the oddities it contains. In parallel, this collection invites viewers to reflect on the authenticity and ontology of beings born from digital code, urging a reconsideration of what constitutes 'life' in the digital age.\nThe use of looping in the twins' videos draws a direct line to the early mechanics of animated art, where repetition served not just as a technical necessity but as a method to enchant and engage. The loop in digital media, historically rooted in the ceaseless repetition of stroboscopic motion and zoetrope animations, here transcends its origins to breathe life-like rhythm into pixelated creations. This looping, mirroring the endless cycles found in nature—from the regeneration of deep-sea biota to the rhythmic pulsations of abyssal creatures—embeds each digital organism within the broader narrative of perpetual life cycles.\nThe abyssal theme of the collection resonates with the scarcely explored and poorly understood regions of the deep ocean, where organisms thrive in conditions that defy human survivability. The biological adaptations of these creatures—developed in response to extreme pressure, darkness, and scarcity—find a digital echo in the creations of the Boldtron twins, whose work illuminates the adaptability and creativity necessary to explore and depict uncharted territories, whether they lie at the bottom of the ocean or within lines of code.\nFurthermore, the detailed character design reflects the painstakingly precise methodologies of both ancient scientific illustration and modern digital animation. Just as naturalists of the past rendered detailed drawings to capture the complexity of unknown species, the Boldtron twins employ advanced digital tools to sculpt intricate details that invite close scrutiny, echoing the meticulous art of historical explorers and artists who documented the mysterious and the unseen.\nIn conclusion, \"The Vault of Wonders: Chapter 1 - The Abyssal Unseen\" is not merely a collection of digital art; it is an intellectual exploration that connects the rich history of scientific and artistic curiosity with contemporary digital creativity. It challenges visitors to ponder the evolving relationship between nature and technology, encouraging a deeper appreciation of how digital environments can not only mimic but also extend the natural world in forms that challenge our perceptions and expand our understanding of life itself.\nAs you traverse this digital cabinet of curiosities, consider each piece not only as a visual spectacle but as a node in the vast network of cultural and scientific exploration that has sought to understand and depict the realms beyond the immediate reach of human senses.\n\nVideos by BOLDTRON\nMusic and Sound Design by MYGAL \nMYGAL is a distinguished Spanish DJ and producer. He has made a significant impact on the international music scene, showcasing his talent with performances for renowned fashion brands such as Jacquemus at the prestigious Boiler Room. His notable collaborations extend to sharing the stage with globally acclaimed artists, including the likes of Dua Lipa.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/Qk8ltD76Ms3hc4OnhxDvdrl8dJMLllzYdVtrl5_DqUmQx1Ly3INMwu1yOGpP7kaXk9N58Qj6rC-nfGOhck36c84_U0GmDj4ZzQM3=s250", + "image_medium_url": "https://lh3.googleusercontent.com/Qk8ltD76Ms3hc4OnhxDvdrl8dJMLllzYdVtrl5_DqUmQx1Ly3INMwu1yOGpP7kaXk9N58Qj6rC-nfGOhck36c84_U0GmDj4ZzQM3", + "image_large_url": "https://lh3.googleusercontent.com/Qk8ltD76Ms3hc4OnhxDvdrl8dJMLllzYdVtrl5_DqUmQx1Ly3INMwu1yOGpP7kaXk9N58Qj6rC-nfGOhck36c84_U0GmDj4ZzQM3=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/Qk8ltD76Ms3hc4OnhxDvdrl8dJMLllzYdVtrl5_DqUmQx1Ly3INMwu1yOGpP7kaXk9N58Qj6rC-nfGOhck36c84_U0GmDj4ZzQM3=k-w1200-s2400-rj", + "blurhash": "UKCh_[fh0gw|NsxZspNH0gof%1NGnnIpbX%1", + "predominant_color": "#b58560" + }, + "image_url": "https://cdn.simplehash.com/assets/9cfaf0ceaad7ad692049c67329194141af3cab5854b3a1b47dd49fc3a20dc5b2.jpg", + "image_properties": { + "width": 1500, + "height": 1500, + "size": 136976, + "mime_type": "image/jpeg" + }, + "video_url": "https://cdn.simplehash.com/assets/d066d71515a488ac5bbcbe5deb5331f4d602717c03049c666be0187c53c1b476.mp4", + "video_properties": { + "width": 1500, + "height": 1500, + "duration": 18.0, + "video_coding": "aac", + "audio_coding": "h264", + "size": 37032078, + "mime_type": "video/mp4" + }, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": "https://daily.xyz", + "created_date": "2024-05-21T20:28:23", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-07-11T17:21:47", + "last_acquired_date": "2024-07-11T17:21:47" + } + ], + "contract": { + "type": "ERC721", + "name": "The Vault of Wonders: Chapter 1 - The Abyssal Unseen by Boldtron", + "symbol": "boldtron-chapter-1", + "deployed_by": "0x5308545D3CA57D051E1cFa56e9E1a330c2933d79", + "deployed_via_contract": null, + "owned_by": "0x5308545D3CA57D051E1cFa56e9E1a330c2933d79", + "has_multiple_collections": false + }, + "collection": { + "collection_id": "a5e40fa144e354b53d60abaaef1732e2", + "name": "The Vault of Wonders: Chapter 1 - The Abyssal Unseen by Boldtron", + "description": "[Daily.xyz](https://daily.xyz/solo/boldtron) - This collection by artistic duo Xavier and Daniel, the Boldtron twins, showcases a groundbreaking advancement in AI video technology that marries the historical curiosity of Renaissance cabinets with the enigmatic depths of the abyssal ocean. \n\nThe work features creatures once only imaginable, now realized through sophisticated AI tools, embodying a symbiosis of natural traits and digital craftsmanship that challenges the boundaries between the organic and the fabricated.\n\nHistorically, the Renaissance cabinets of curiosities collected wonders that blurred the lines between natural history and imaginative interpretation, much like \"The Abyssal Unseen\" blurs the lines between biological reality and digital fabrication. his collection invites viewers to reflect on the authenticity and ontology of beings born from digital code, urging a reconsideration of what constitutes 'life' in the digital age.", + "image_url": "https://lh3.googleusercontent.com/WnhLfzBaO_HtgpLhIBpLvMTcELF5ec_mYsqGlvQEmtLVa5QGTsS_MoIMXha79l5E8MVO2BTnYrQI3Rfl6JSueBBN3PUsLQvrWg", + "image_properties": { + "width": 512, + "height": 512, + "mime_type": "image/jpeg" + }, + "banner_image_url": "https://lh3.googleusercontent.com/jpiMlZ3G9713Mh3QvfyCYKOS7JXsotWEJBuo-nic77vUjx29wm2uOivn86UJRzFGDjnOljZQOK_UUJj4gw81YSx4XN9Cc-aYSlE=w2500", + "category": "art", + "is_nsfw": false, + "external_url": null, + "twitter_username": "FellowshipAi", + "discord_url": null, + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38", + "nft_url": "https://magiceden.io/item-details/ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/675", + "collection_url": "https://magiceden.io/collections/ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "the-vault-of-wonders-chapter-1-the-abyssal-unseen", + "nft_url": "https://opensea.io/assets/ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/675", + "collection_url": "https://opensea.io/collection/the-vault-of-wonders-chapter-1-the-abyssal-unseen", + "verified": false + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 149895000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 51676 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 68300000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 23546 + } + ], + "distinct_owner_count": 190, + "distinct_nft_count": 1000, + "total_quantity": 1000, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0x92e64d1a27f4f42ecaf0ef7f725f119751113a38"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xdffCF2162fd04005Cde705d02e0ACF98000D5825", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ] + }, + "last_sale": { + "from_address": "0x7063b329F3Eea1412E76530CA2A54aA864f9Ae1b", + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-07-11T17:21:47", + "transaction": "0x74f524bf44f6db2cbec8548d4af36a195370adb2ba606a454cd40fd1ca01795d", + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 159742000000000000, + "total_price": 159742000000000000, + "unit_price_usd_cents": 49867 + }, + "primary_sale": { + "from_address": null, + "to_address": "0x5308545D3CA57D051E1cFa56e9E1a330c2933d79", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-05-21T20:28:23", + "transaction": "0xf4dadd89a27fe83274476fe9ff148d6757fd7cd4f4359748570533d76e6d5344", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 156250000000000000, + "total_price": 156250000000000000, + "unit_price_usd_cents": 58306 + }, + "first_created": { + "minted_to": "0x5308545D3CA57D051E1cFa56e9E1a330c2933d79", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-05-21T20:28:23", + "block_number": 19920669, + "transaction": "0xf4dadd89a27fe83274476fe9ff148d6757fd7cd4f4359748570533d76e6d5344", + "transaction_initiator": "0x5308545D3CA57D051E1cFa56e9E1a330c2933d79" + }, + "rarity": { + "rank": 101, + "score": 0.928, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xdffCF2162fd04005Cde705d02e0ACF98000D5825", + "percentage": 100.0, + "basis_points": 500 + } + ] + }, + { + "source": "erc2981", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xdffCF2162fd04005Cde705d02e0ACF98000D5825", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "Artist", + "value": "Boldtron", + "display_type": null + }, + { + "trait_type": "Type", + "value": "Families", + "display_type": null + }, + { + "trait_type": "Families", + "value": "Dispersahylas", + "display_type": null + } + ], + "platform": "Daily.xyz", + "created_by": "Boldtron", + "collection_name": "The Vault of Wonders: Chapter 1 - The Abyssal Unseen", + "image_url": "https://storage.googleapis.com/fellowship-2022/dailies/posters/23-Dispersahylas-23-25.jpg", + "copyright": "© 2024 Boldtron. All Rights Reserved.", + "license": "CC BY-NC-ND 4.0", + "image_original_url": "https://storage.googleapis.com/fellowship-2022/dailies/posters/23-Dispersahylas-23-25.jpg", + "animation_original_url": "ipfs://QmXDddiyL8xQTSjKYwMgUHmXijPucAwJZ1yqXy92Zj1nGS", + "metadata_original_url": "ipfs://QmQiBZYdiTEozdn4LiumyACiQ9F7ga9tdu6GZmnqHQaLBh/675.json" + } + }, + { + "nft_id": "ethereum.0x92e64d1a27f4f42ecaf0ef7f725f119751113a38.667", + "chain": "ethereum", + "contract_address": "0x92E64D1a27f4F42ecAF0EF7f725f119751113A38", + "token_id": "667", + "name": "Ranulae Orbiculus", + "description": "*\"The Vault of Wonders: Chapter 1 - The Abyssal Unseen\"*\n*This collection by artistic duo Xavier and Daniel, the Boldtron twins, showcases a groundbreaking advancement in AI video technology that marries the historical curiosity of Renaissance cabinets with the enigmatic depths of the abyssal ocean. The work features creatures once only imaginable, now realized through sophisticated AI tools, embodying a symbiosis of natural traits and digital craftsmanship that challenges the boundaries between the organic and the fabricated.*\nHistorically, the Renaissance cabinets of curiosities collected wonders that blurred the lines between natural history and imaginative interpretation, much like \"The Abyssal Unseen\" blurs the lines between biological reality and digital fabrication. These cabinets often featured exotic specimens that tantalized both the intellect and the imagination, serving as precursors to modern museums by engaging the viewer in a dialogue about the diversity of the natural world and the oddities it contains. In parallel, this collection invites viewers to reflect on the authenticity and ontology of beings born from digital code, urging a reconsideration of what constitutes 'life' in the digital age.\nThe use of looping in the twins' videos draws a direct line to the early mechanics of animated art, where repetition served not just as a technical necessity but as a method to enchant and engage. The loop in digital media, historically rooted in the ceaseless repetition of stroboscopic motion and zoetrope animations, here transcends its origins to breathe life-like rhythm into pixelated creations. This looping, mirroring the endless cycles found in nature—from the regeneration of deep-sea biota to the rhythmic pulsations of abyssal creatures—embeds each digital organism within the broader narrative of perpetual life cycles.\nThe abyssal theme of the collection resonates with the scarcely explored and poorly understood regions of the deep ocean, where organisms thrive in conditions that defy human survivability. The biological adaptations of these creatures—developed in response to extreme pressure, darkness, and scarcity—find a digital echo in the creations of the Boldtron twins, whose work illuminates the adaptability and creativity necessary to explore and depict uncharted territories, whether they lie at the bottom of the ocean or within lines of code.\nFurthermore, the detailed character design reflects the painstakingly precise methodologies of both ancient scientific illustration and modern digital animation. Just as naturalists of the past rendered detailed drawings to capture the complexity of unknown species, the Boldtron twins employ advanced digital tools to sculpt intricate details that invite close scrutiny, echoing the meticulous art of historical explorers and artists who documented the mysterious and the unseen.\nIn conclusion, \"The Vault of Wonders: Chapter 1 - The Abyssal Unseen\" is not merely a collection of digital art; it is an intellectual exploration that connects the rich history of scientific and artistic curiosity with contemporary digital creativity. It challenges visitors to ponder the evolving relationship between nature and technology, encouraging a deeper appreciation of how digital environments can not only mimic but also extend the natural world in forms that challenge our perceptions and expand our understanding of life itself.\nAs you traverse this digital cabinet of curiosities, consider each piece not only as a visual spectacle but as a node in the vast network of cultural and scientific exploration that has sought to understand and depict the realms beyond the immediate reach of human senses.\n\nVideos by BOLDTRON\nMusic and Sound Design by MYGAL \nMYGAL is a distinguished Spanish DJ and producer. He has made a significant impact on the international music scene, showcasing his talent with performances for renowned fashion brands such as Jacquemus at the prestigious Boiler Room. His notable collaborations extend to sharing the stage with globally acclaimed artists, including the likes of Dua Lipa.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/5QsfO5CzFD0PtuiEp6rDe-OMauLb4jg5yTNw0OyOObqTuQqfqXYV6Hmmg9_WlII1q7Rs6asR_7lpvOLctFFBZ7O_UReU5GKw1Q=s250", + "image_medium_url": "https://lh3.googleusercontent.com/5QsfO5CzFD0PtuiEp6rDe-OMauLb4jg5yTNw0OyOObqTuQqfqXYV6Hmmg9_WlII1q7Rs6asR_7lpvOLctFFBZ7O_UReU5GKw1Q", + "image_large_url": "https://lh3.googleusercontent.com/5QsfO5CzFD0PtuiEp6rDe-OMauLb4jg5yTNw0OyOObqTuQqfqXYV6Hmmg9_WlII1q7Rs6asR_7lpvOLctFFBZ7O_UReU5GKw1Q=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/5QsfO5CzFD0PtuiEp6rDe-OMauLb4jg5yTNw0OyOObqTuQqfqXYV6Hmmg9_WlII1q7Rs6asR_7lpvOLctFFBZ7O_UReU5GKw1Q=k-w1200-s2400-rj", + "blurhash": "USC$}qoeD*smIpxsxsWB02WCtQR,xsIWM|t6", + "predominant_color": "#b4ae7a" + }, + "image_url": "https://cdn.simplehash.com/assets/933e9e8fd0001e2b471dbe514851f51ffe7f2bcd8b94cab1ce6879059f5af9c9.jpg", + "image_properties": { + "width": 1500, + "height": 1500, + "size": 137769, + "mime_type": "image/jpeg" + }, + "video_url": "https://cdn.simplehash.com/assets/652830a39d6a1bef39746373c60ea7dcd6e092c34608cde93ba9f3782f3fc994.mp4", + "video_properties": { + "width": 1500, + "height": 1500, + "duration": 18.0, + "video_coding": "aac", + "audio_coding": "h264", + "size": 40470537, + "mime_type": "video/mp4" + }, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": "https://daily.xyz", + "created_date": "2024-05-25T00:51:11", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-07-11T17:21:47", + "last_acquired_date": "2024-07-11T17:21:47" + } + ], + "contract": { + "type": "ERC721", + "name": "The Vault of Wonders: Chapter 1 - The Abyssal Unseen by Boldtron", + "symbol": "boldtron-chapter-1", + "deployed_by": "0x5308545D3CA57D051E1cFa56e9E1a330c2933d79", + "deployed_via_contract": null, + "owned_by": "0x5308545D3CA57D051E1cFa56e9E1a330c2933d79", + "has_multiple_collections": false + }, + "collection": { + "collection_id": "a5e40fa144e354b53d60abaaef1732e2", + "name": "The Vault of Wonders: Chapter 1 - The Abyssal Unseen by Boldtron", + "description": "[Daily.xyz](https://daily.xyz/solo/boldtron) - This collection by artistic duo Xavier and Daniel, the Boldtron twins, showcases a groundbreaking advancement in AI video technology that marries the historical curiosity of Renaissance cabinets with the enigmatic depths of the abyssal ocean. \n\nThe work features creatures once only imaginable, now realized through sophisticated AI tools, embodying a symbiosis of natural traits and digital craftsmanship that challenges the boundaries between the organic and the fabricated.\n\nHistorically, the Renaissance cabinets of curiosities collected wonders that blurred the lines between natural history and imaginative interpretation, much like \"The Abyssal Unseen\" blurs the lines between biological reality and digital fabrication. his collection invites viewers to reflect on the authenticity and ontology of beings born from digital code, urging a reconsideration of what constitutes 'life' in the digital age.", + "image_url": "https://lh3.googleusercontent.com/WnhLfzBaO_HtgpLhIBpLvMTcELF5ec_mYsqGlvQEmtLVa5QGTsS_MoIMXha79l5E8MVO2BTnYrQI3Rfl6JSueBBN3PUsLQvrWg", + "image_properties": { + "width": 512, + "height": 512, + "mime_type": "image/jpeg" + }, + "banner_image_url": "https://lh3.googleusercontent.com/jpiMlZ3G9713Mh3QvfyCYKOS7JXsotWEJBuo-nic77vUjx29wm2uOivn86UJRzFGDjnOljZQOK_UUJj4gw81YSx4XN9Cc-aYSlE=w2500", + "category": "art", + "is_nsfw": false, + "external_url": null, + "twitter_username": "FellowshipAi", + "discord_url": null, + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38", + "nft_url": "https://magiceden.io/item-details/ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/667", + "collection_url": "https://magiceden.io/collections/ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "the-vault-of-wonders-chapter-1-the-abyssal-unseen", + "nft_url": "https://opensea.io/assets/ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/667", + "collection_url": "https://opensea.io/collection/the-vault-of-wonders-chapter-1-the-abyssal-unseen", + "verified": false + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 149895000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 51676 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 68300000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 23546 + } + ], + "distinct_owner_count": 190, + "distinct_nft_count": 1000, + "total_quantity": 1000, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0x92e64d1a27f4f42ecaf0ef7f725f119751113a38"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xdffCF2162fd04005Cde705d02e0ACF98000D5825", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ] + }, + "last_sale": { + "from_address": "0x214118a2AE1E01f4107B0c8751d5f397742fB23F", + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-07-11T17:21:47", + "transaction": "0x74f524bf44f6db2cbec8548d4af36a195370adb2ba606a454cd40fd1ca01795d", + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 159741000000000000, + "total_price": 159741000000000000, + "unit_price_usd_cents": 49866 + }, + "primary_sale": { + "from_address": null, + "to_address": "0xF123acD825Ee0929160a13D144BAfb560a44d03d", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-05-25T00:51:11", + "transaction": "0x5a70fc334bd4f966cfd6e22e3be18b7f34d8dc8eec1825008e50fc196e12bffb", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 100000000000000000, + "total_price": 100000000000000000, + "unit_price_usd_cents": 37265 + }, + "first_created": { + "minted_to": "0xF123acD825Ee0929160a13D144BAfb560a44d03d", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-05-25T00:51:11", + "block_number": 19943431, + "transaction": "0x5a70fc334bd4f966cfd6e22e3be18b7f34d8dc8eec1825008e50fc196e12bffb", + "transaction_initiator": "0xF123acD825Ee0929160a13D144BAfb560a44d03d" + }, + "rarity": { + "rank": 101, + "score": 0.928, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xdffCF2162fd04005Cde705d02e0ACF98000D5825", + "percentage": 100.0, + "basis_points": 500 + } + ] + }, + { + "source": "erc2981", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xdffCF2162fd04005Cde705d02e0ACF98000D5825", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "Artist", + "value": "Boldtron", + "display_type": null + }, + { + "trait_type": "Type", + "value": "Families", + "display_type": null + }, + { + "trait_type": "Families", + "value": "Dispersahylas", + "display_type": null + } + ], + "platform": "Daily.xyz", + "created_by": "Boldtron", + "collection_name": "The Vault of Wonders: Chapter 1 - The Abyssal Unseen", + "image_url": "https://storage.googleapis.com/fellowship-2022/dailies/posters/23-Dispersahylas-23-17.jpg", + "copyright": "© 2024 Boldtron. All Rights Reserved.", + "license": "CC BY-NC-ND 4.0", + "image_original_url": "https://storage.googleapis.com/fellowship-2022/dailies/posters/23-Dispersahylas-23-17.jpg", + "animation_original_url": "ipfs://QmSWKhVxRVL2M58SEj1F4jcbYGPSi7JPnUHE3Fo2V5fgmn", + "metadata_original_url": "ipfs://QmQiBZYdiTEozdn4LiumyACiQ9F7ga9tdu6GZmnqHQaLBh/667.json" + } + }, + { + "nft_id": "ethereum.0x92e64d1a27f4f42ecaf0ef7f725f119751113a38.564", + "chain": "ethereum", + "contract_address": "0x92E64D1a27f4F42ecAF0EF7f725f119751113A38", + "token_id": "564", + "name": "Aquaticus Petalis", + "description": "*\"The Vault of Wonders: Chapter 1 - The Abyssal Unseen\"*\n*This collection by artistic duo Xavier and Daniel, the Boldtron twins, showcases a groundbreaking advancement in AI video technology that marries the historical curiosity of Renaissance cabinets with the enigmatic depths of the abyssal ocean. The work features creatures once only imaginable, now realized through sophisticated AI tools, embodying a symbiosis of natural traits and digital craftsmanship that challenges the boundaries between the organic and the fabricated.*\nHistorically, the Renaissance cabinets of curiosities collected wonders that blurred the lines between natural history and imaginative interpretation, much like \"The Abyssal Unseen\" blurs the lines between biological reality and digital fabrication. These cabinets often featured exotic specimens that tantalized both the intellect and the imagination, serving as precursors to modern museums by engaging the viewer in a dialogue about the diversity of the natural world and the oddities it contains. In parallel, this collection invites viewers to reflect on the authenticity and ontology of beings born from digital code, urging a reconsideration of what constitutes 'life' in the digital age.\nThe use of looping in the twins' videos draws a direct line to the early mechanics of animated art, where repetition served not just as a technical necessity but as a method to enchant and engage. The loop in digital media, historically rooted in the ceaseless repetition of stroboscopic motion and zoetrope animations, here transcends its origins to breathe life-like rhythm into pixelated creations. This looping, mirroring the endless cycles found in nature—from the regeneration of deep-sea biota to the rhythmic pulsations of abyssal creatures—embeds each digital organism within the broader narrative of perpetual life cycles.\nThe abyssal theme of the collection resonates with the scarcely explored and poorly understood regions of the deep ocean, where organisms thrive in conditions that defy human survivability. The biological adaptations of these creatures—developed in response to extreme pressure, darkness, and scarcity—find a digital echo in the creations of the Boldtron twins, whose work illuminates the adaptability and creativity necessary to explore and depict uncharted territories, whether they lie at the bottom of the ocean or within lines of code.\nFurthermore, the detailed character design reflects the painstakingly precise methodologies of both ancient scientific illustration and modern digital animation. Just as naturalists of the past rendered detailed drawings to capture the complexity of unknown species, the Boldtron twins employ advanced digital tools to sculpt intricate details that invite close scrutiny, echoing the meticulous art of historical explorers and artists who documented the mysterious and the unseen.\nIn conclusion, \"The Vault of Wonders: Chapter 1 - The Abyssal Unseen\" is not merely a collection of digital art; it is an intellectual exploration that connects the rich history of scientific and artistic curiosity with contemporary digital creativity. It challenges visitors to ponder the evolving relationship between nature and technology, encouraging a deeper appreciation of how digital environments can not only mimic but also extend the natural world in forms that challenge our perceptions and expand our understanding of life itself.\nAs you traverse this digital cabinet of curiosities, consider each piece not only as a visual spectacle but as a node in the vast network of cultural and scientific exploration that has sought to understand and depict the realms beyond the immediate reach of human senses.\n\nVideos by BOLDTRON\nMusic and Sound Design by MYGAL \nMYGAL is a distinguished Spanish DJ and producer. He has made a significant impact on the international music scene, showcasing his talent with performances for renowned fashion brands such as Jacquemus at the prestigious Boiler Room. His notable collaborations extend to sharing the stage with globally acclaimed artists, including the likes of Dua Lipa.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/y_Fy7d1qyzvr5LjqtB5kHF2dkgwNHpZIJVA8gKMs7bPh8OxLZIuPh0hLOdXWYLvkkRGjwlR257YrPKJzPiU1w5DUmVfSLTdcRqE=s250", + "image_medium_url": "https://lh3.googleusercontent.com/y_Fy7d1qyzvr5LjqtB5kHF2dkgwNHpZIJVA8gKMs7bPh8OxLZIuPh0hLOdXWYLvkkRGjwlR257YrPKJzPiU1w5DUmVfSLTdcRqE", + "image_large_url": "https://lh3.googleusercontent.com/y_Fy7d1qyzvr5LjqtB5kHF2dkgwNHpZIJVA8gKMs7bPh8OxLZIuPh0hLOdXWYLvkkRGjwlR257YrPKJzPiU1w5DUmVfSLTdcRqE=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/y_Fy7d1qyzvr5LjqtB5kHF2dkgwNHpZIJVA8gKMs7bPh8OxLZIuPh0hLOdXWYLvkkRGjwlR257YrPKJzPiU1w5DUmVfSLTdcRqE=k-w1200-s2400-rj", + "blurhash": "UKAvn4Sd0gsqaRM|ot%29cWB$~ozx=%1RTIp", + "predominant_color": "#10100a" + }, + "image_url": "https://cdn.simplehash.com/assets/c672a17d116f77cdf10a99d603b6525ccc23820d7afea60d87c1ecf311b182c7.jpg", + "image_properties": { + "width": 1500, + "height": 1500, + "size": 121115, + "mime_type": "image/jpeg" + }, + "video_url": "https://cdn.simplehash.com/assets/68d6b4156c8d900b5c881854df8458182c6118c4847947028cfea4db1a214a55.mp4", + "video_properties": { + "width": 1500, + "height": 1500, + "duration": 18.0, + "video_coding": "aac", + "audio_coding": "h264", + "size": 39232926, + "mime_type": "video/mp4" + }, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": "https://daily.xyz", + "created_date": "2024-05-24T14:41:47", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-07-11T17:21:47", + "last_acquired_date": "2024-07-11T17:21:47" + } + ], + "contract": { + "type": "ERC721", + "name": "The Vault of Wonders: Chapter 1 - The Abyssal Unseen by Boldtron", + "symbol": "boldtron-chapter-1", + "deployed_by": "0x5308545D3CA57D051E1cFa56e9E1a330c2933d79", + "deployed_via_contract": null, + "owned_by": "0x5308545D3CA57D051E1cFa56e9E1a330c2933d79", + "has_multiple_collections": false + }, + "collection": { + "collection_id": "a5e40fa144e354b53d60abaaef1732e2", + "name": "The Vault of Wonders: Chapter 1 - The Abyssal Unseen by Boldtron", + "description": "[Daily.xyz](https://daily.xyz/solo/boldtron) - This collection by artistic duo Xavier and Daniel, the Boldtron twins, showcases a groundbreaking advancement in AI video technology that marries the historical curiosity of Renaissance cabinets with the enigmatic depths of the abyssal ocean. \n\nThe work features creatures once only imaginable, now realized through sophisticated AI tools, embodying a symbiosis of natural traits and digital craftsmanship that challenges the boundaries between the organic and the fabricated.\n\nHistorically, the Renaissance cabinets of curiosities collected wonders that blurred the lines between natural history and imaginative interpretation, much like \"The Abyssal Unseen\" blurs the lines between biological reality and digital fabrication. his collection invites viewers to reflect on the authenticity and ontology of beings born from digital code, urging a reconsideration of what constitutes 'life' in the digital age.", + "image_url": "https://lh3.googleusercontent.com/WnhLfzBaO_HtgpLhIBpLvMTcELF5ec_mYsqGlvQEmtLVa5QGTsS_MoIMXha79l5E8MVO2BTnYrQI3Rfl6JSueBBN3PUsLQvrWg", + "image_properties": { + "width": 512, + "height": 512, + "mime_type": "image/jpeg" + }, + "banner_image_url": "https://lh3.googleusercontent.com/jpiMlZ3G9713Mh3QvfyCYKOS7JXsotWEJBuo-nic77vUjx29wm2uOivn86UJRzFGDjnOljZQOK_UUJj4gw81YSx4XN9Cc-aYSlE=w2500", + "category": "art", + "is_nsfw": false, + "external_url": null, + "twitter_username": "FellowshipAi", + "discord_url": null, + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38", + "nft_url": "https://magiceden.io/item-details/ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/564", + "collection_url": "https://magiceden.io/collections/ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "the-vault-of-wonders-chapter-1-the-abyssal-unseen", + "nft_url": "https://opensea.io/assets/ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/564", + "collection_url": "https://opensea.io/collection/the-vault-of-wonders-chapter-1-the-abyssal-unseen", + "verified": false + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 149895000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 51676 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 68300000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 23546 + } + ], + "distinct_owner_count": 190, + "distinct_nft_count": 1000, + "total_quantity": 1000, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0x92e64d1a27f4f42ecaf0ef7f725f119751113a38"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xdffCF2162fd04005Cde705d02e0ACF98000D5825", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ] + }, + "last_sale": { + "from_address": "0x7063b329F3Eea1412E76530CA2A54aA864f9Ae1b", + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-07-11T17:21:47", + "transaction": "0x74f524bf44f6db2cbec8548d4af36a195370adb2ba606a454cd40fd1ca01795d", + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 159894000000000000, + "total_price": 159894000000000000, + "unit_price_usd_cents": 49914 + }, + "primary_sale": { + "from_address": null, + "to_address": "0xcE91bCF2944aB423eFD5Dda08AdEaC7bf01d0997", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-05-24T14:41:47", + "transaction": "0x5c2642a39b979b92faa1b90effec333b7d64581cd88581b78e076df20382b4df", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 150000000000000000, + "total_price": 150000000000000000, + "unit_price_usd_cents": 55755 + }, + "first_created": { + "minted_to": "0xcE91bCF2944aB423eFD5Dda08AdEaC7bf01d0997", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-05-24T14:41:47", + "block_number": 19940405, + "transaction": "0x5c2642a39b979b92faa1b90effec333b7d64581cd88581b78e076df20382b4df", + "transaction_initiator": "0xcE91bCF2944aB423eFD5Dda08AdEaC7bf01d0997" + }, + "rarity": { + "rank": 101, + "score": 0.928, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xdffCF2162fd04005Cde705d02e0ACF98000D5825", + "percentage": 100.0, + "basis_points": 500 + } + ] + }, + { + "source": "erc2981", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xdffCF2162fd04005Cde705d02e0ACF98000D5825", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "Artist", + "value": "Boldtron", + "display_type": null + }, + { + "trait_type": "Type", + "value": "Families", + "display_type": null + }, + { + "trait_type": "Families", + "value": "Floris Vermiculae", + "display_type": null + } + ], + "platform": "Daily.xyz", + "created_by": "Boldtron", + "collection_name": "The Vault of Wonders: Chapter 1 - The Abyssal Unseen", + "image_url": "https://storage.googleapis.com/fellowship-2022/dailies/posters/19-Floris%20Vermiculae-19-14.jpg", + "copyright": "© 2024 Boldtron. All Rights Reserved.", + "license": "CC BY-NC-ND 4.0", + "image_original_url": "https://storage.googleapis.com/fellowship-2022/dailies/posters/19-Floris%20Vermiculae-19-14.jpg", + "animation_original_url": "ipfs://Qmb9BNYyM3mUEWmQ3kQQLZpZem9mS9k3J6uuphuivfHF4i", + "metadata_original_url": "ipfs://QmQiBZYdiTEozdn4LiumyACiQ9F7ga9tdu6GZmnqHQaLBh/564.json" + } + }, + { + "nft_id": "ethereum.0x92e64d1a27f4f42ecaf0ef7f725f119751113a38.335", + "chain": "ethereum", + "contract_address": "0x92E64D1a27f4F42ecAF0EF7f725f119751113A38", + "token_id": "335", + "name": "Rugosus Curvatus", + "description": "*\"The Vault of Wonders: Chapter 1 - The Abyssal Unseen\"*\n*This collection by artistic duo Xavier and Daniel, the Boldtron twins, showcases a groundbreaking advancement in AI video technology that marries the historical curiosity of Renaissance cabinets with the enigmatic depths of the abyssal ocean. The work features creatures once only imaginable, now realized through sophisticated AI tools, embodying a symbiosis of natural traits and digital craftsmanship that challenges the boundaries between the organic and the fabricated.*\nHistorically, the Renaissance cabinets of curiosities collected wonders that blurred the lines between natural history and imaginative interpretation, much like \"The Abyssal Unseen\" blurs the lines between biological reality and digital fabrication. These cabinets often featured exotic specimens that tantalized both the intellect and the imagination, serving as precursors to modern museums by engaging the viewer in a dialogue about the diversity of the natural world and the oddities it contains. In parallel, this collection invites viewers to reflect on the authenticity and ontology of beings born from digital code, urging a reconsideration of what constitutes 'life' in the digital age.\nThe use of looping in the twins' videos draws a direct line to the early mechanics of animated art, where repetition served not just as a technical necessity but as a method to enchant and engage. The loop in digital media, historically rooted in the ceaseless repetition of stroboscopic motion and zoetrope animations, here transcends its origins to breathe life-like rhythm into pixelated creations. This looping, mirroring the endless cycles found in nature—from the regeneration of deep-sea biota to the rhythmic pulsations of abyssal creatures—embeds each digital organism within the broader narrative of perpetual life cycles.\nThe abyssal theme of the collection resonates with the scarcely explored and poorly understood regions of the deep ocean, where organisms thrive in conditions that defy human survivability. The biological adaptations of these creatures—developed in response to extreme pressure, darkness, and scarcity—find a digital echo in the creations of the Boldtron twins, whose work illuminates the adaptability and creativity necessary to explore and depict uncharted territories, whether they lie at the bottom of the ocean or within lines of code.\nFurthermore, the detailed character design reflects the painstakingly precise methodologies of both ancient scientific illustration and modern digital animation. Just as naturalists of the past rendered detailed drawings to capture the complexity of unknown species, the Boldtron twins employ advanced digital tools to sculpt intricate details that invite close scrutiny, echoing the meticulous art of historical explorers and artists who documented the mysterious and the unseen.\nIn conclusion, \"The Vault of Wonders: Chapter 1 - The Abyssal Unseen\" is not merely a collection of digital art; it is an intellectual exploration that connects the rich history of scientific and artistic curiosity with contemporary digital creativity. It challenges visitors to ponder the evolving relationship between nature and technology, encouraging a deeper appreciation of how digital environments can not only mimic but also extend the natural world in forms that challenge our perceptions and expand our understanding of life itself.\nAs you traverse this digital cabinet of curiosities, consider each piece not only as a visual spectacle but as a node in the vast network of cultural and scientific exploration that has sought to understand and depict the realms beyond the immediate reach of human senses.\n\nVideos by BOLDTRON\nMusic and Sound Design by MYGAL \nMYGAL is a distinguished Spanish DJ and producer. He has made a significant impact on the international music scene, showcasing his talent with performances for renowned fashion brands such as Jacquemus at the prestigious Boiler Room. His notable collaborations extend to sharing the stage with globally acclaimed artists, including the likes of Dua Lipa.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/hdloqqRPkYBaTUAZx5UFJcxo7ekBvI4iBoDEkHURIw1wVmBpoeKRvfOPk9pTSsgMvyQNKpEHca3DUrONhRNN6_Q4eYKK-0u5F8A=s250", + "image_medium_url": "https://lh3.googleusercontent.com/hdloqqRPkYBaTUAZx5UFJcxo7ekBvI4iBoDEkHURIw1wVmBpoeKRvfOPk9pTSsgMvyQNKpEHca3DUrONhRNN6_Q4eYKK-0u5F8A", + "image_large_url": "https://lh3.googleusercontent.com/hdloqqRPkYBaTUAZx5UFJcxo7ekBvI4iBoDEkHURIw1wVmBpoeKRvfOPk9pTSsgMvyQNKpEHca3DUrONhRNN6_Q4eYKK-0u5F8A=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/hdloqqRPkYBaTUAZx5UFJcxo7ekBvI4iBoDEkHURIw1wVmBpoeKRvfOPk9pTSsgMvyQNKpEHca3DUrONhRNN6_Q4eYKK-0u5F8A=k-w1200-s2400-rj", + "blurhash": "U88|-J+v4TT0^j?HVsIVDjyCxbR6F@9tohs+", + "predominant_color": "#a48f86" + }, + "image_url": "https://cdn.simplehash.com/assets/eb0d25e34b2800556fc1067d1377aa4bd0d741b6838c83c67793858f70e6aff8.jpg", + "image_properties": { + "width": 1500, + "height": 1500, + "size": 147566, + "mime_type": "image/jpeg" + }, + "video_url": "https://cdn.simplehash.com/assets/42e599b1d97f3d9112d0f26282ce3bc38ecd76ed48b5a8a4a0a598584d48dae9.mp4", + "video_properties": { + "width": 1500, + "height": 1500, + "duration": 18.0, + "video_coding": "aac", + "audio_coding": "h264", + "size": 46622332, + "mime_type": "video/mp4" + }, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": "https://daily.xyz", + "created_date": "2024-05-21T20:28:23", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-07-11T17:21:47", + "last_acquired_date": "2024-07-11T17:21:47" + } + ], + "contract": { + "type": "ERC721", + "name": "The Vault of Wonders: Chapter 1 - The Abyssal Unseen by Boldtron", + "symbol": "boldtron-chapter-1", + "deployed_by": "0x5308545D3CA57D051E1cFa56e9E1a330c2933d79", + "deployed_via_contract": null, + "owned_by": "0x5308545D3CA57D051E1cFa56e9E1a330c2933d79", + "has_multiple_collections": false + }, + "collection": { + "collection_id": "a5e40fa144e354b53d60abaaef1732e2", + "name": "The Vault of Wonders: Chapter 1 - The Abyssal Unseen by Boldtron", + "description": "[Daily.xyz](https://daily.xyz/solo/boldtron) - This collection by artistic duo Xavier and Daniel, the Boldtron twins, showcases a groundbreaking advancement in AI video technology that marries the historical curiosity of Renaissance cabinets with the enigmatic depths of the abyssal ocean. \n\nThe work features creatures once only imaginable, now realized through sophisticated AI tools, embodying a symbiosis of natural traits and digital craftsmanship that challenges the boundaries between the organic and the fabricated.\n\nHistorically, the Renaissance cabinets of curiosities collected wonders that blurred the lines between natural history and imaginative interpretation, much like \"The Abyssal Unseen\" blurs the lines between biological reality and digital fabrication. his collection invites viewers to reflect on the authenticity and ontology of beings born from digital code, urging a reconsideration of what constitutes 'life' in the digital age.", + "image_url": "https://lh3.googleusercontent.com/WnhLfzBaO_HtgpLhIBpLvMTcELF5ec_mYsqGlvQEmtLVa5QGTsS_MoIMXha79l5E8MVO2BTnYrQI3Rfl6JSueBBN3PUsLQvrWg", + "image_properties": { + "width": 512, + "height": 512, + "mime_type": "image/jpeg" + }, + "banner_image_url": "https://lh3.googleusercontent.com/jpiMlZ3G9713Mh3QvfyCYKOS7JXsotWEJBuo-nic77vUjx29wm2uOivn86UJRzFGDjnOljZQOK_UUJj4gw81YSx4XN9Cc-aYSlE=w2500", + "category": "art", + "is_nsfw": false, + "external_url": null, + "twitter_username": "FellowshipAi", + "discord_url": null, + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38", + "nft_url": "https://magiceden.io/item-details/ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/335", + "collection_url": "https://magiceden.io/collections/ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "the-vault-of-wonders-chapter-1-the-abyssal-unseen", + "nft_url": "https://opensea.io/assets/ethereum/0x92e64d1a27f4f42ecaf0ef7f725f119751113a38/335", + "collection_url": "https://opensea.io/collection/the-vault-of-wonders-chapter-1-the-abyssal-unseen", + "verified": false + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 149895000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 51676 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 68300000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 23546 + } + ], + "distinct_owner_count": 190, + "distinct_nft_count": 1000, + "total_quantity": 1000, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0x92e64d1a27f4f42ecaf0ef7f725f119751113a38"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xdffCF2162fd04005Cde705d02e0ACF98000D5825", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ] + }, + "last_sale": { + "from_address": "0x214118a2AE1E01f4107B0c8751d5f397742fB23F", + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-07-11T17:21:47", + "transaction": "0x74f524bf44f6db2cbec8548d4af36a195370adb2ba606a454cd40fd1ca01795d", + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 159741000000000000, + "total_price": 159741000000000000, + "unit_price_usd_cents": 49866 + }, + "primary_sale": { + "from_address": null, + "to_address": "0x5308545D3CA57D051E1cFa56e9E1a330c2933d79", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-05-21T20:28:23", + "transaction": "0xf4dadd89a27fe83274476fe9ff148d6757fd7cd4f4359748570533d76e6d5344", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 156250000000000000, + "total_price": 156250000000000000, + "unit_price_usd_cents": 58306 + }, + "first_created": { + "minted_to": "0x5308545D3CA57D051E1cFa56e9E1a330c2933d79", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-05-21T20:28:23", + "block_number": 19920669, + "transaction": "0xf4dadd89a27fe83274476fe9ff148d6757fd7cd4f4359748570533d76e6d5344", + "transaction_initiator": "0x5308545D3CA57D051E1cFa56e9E1a330c2933d79" + }, + "rarity": { + "rank": 101, + "score": 0.928, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xdffCF2162fd04005Cde705d02e0ACF98000D5825", + "percentage": 100.0, + "basis_points": 500 + } + ] + }, + { + "source": "erc2981", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xdffCF2162fd04005Cde705d02e0ACF98000D5825", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "Artist", + "value": "Boldtron", + "display_type": null + }, + { + "trait_type": "Type", + "value": "Families", + "display_type": null + }, + { + "trait_type": "Families", + "value": "Caesius Cyaneus", + "display_type": null + } + ], + "platform": "Daily.xyz", + "created_by": "Boldtron", + "collection_name": "The Vault of Wonders: Chapter 1 - The Abyssal Unseen", + "image_url": "https://storage.googleapis.com/fellowship-2022/dailies/posters/10-Caesius%20Cyaneus-10-10.jpg", + "copyright": "© 2024 Boldtron. All Rights Reserved.", + "license": "CC BY-NC-ND 4.0", + "image_original_url": "https://storage.googleapis.com/fellowship-2022/dailies/posters/10-Caesius%20Cyaneus-10-10.jpg", + "animation_original_url": "ipfs://Qmc71xmN2QdfPU8ZgQWpdgu6cxWiCQvLB1LhLiLsBLxezA", + "metadata_original_url": "ipfs://QmQiBZYdiTEozdn4LiumyACiQ9F7ga9tdu6GZmnqHQaLBh/335.json" + } + }, + { + "nft_id": "ethereum.0x19dbc1c820dd3f13260829a4e06dda6d9ef758db.95", + "chain": "ethereum", + "contract_address": "0x19DBc1c820dd3F13260829a4E06Dda6d9EF758DB", + "token_id": "95", + "name": "Entangled #95", + "description": "Entangled is a cross-chain, generative art project developed as a series of particle simulations that interact with each other in various ways across separate blockchains and browser windows. Inspired by the phenomenon of quantum entanglement, this project aims to connect two, often separate, parts of the generative art community by directly linking them together.\n \nEntangled features two distinct on-chain NFT collections residing on the Ethereum and Tezos blockchains. These collections are connected through shared interactions in real-time, using cross-chain and local storage technologies to enable a system whereby particles in separate browser instances respond to and mirror each other.\n\nThe series consist of a total of 512 unique editions (256 on each blockchain) that are randomly paired with a corresponding iteration on the other. When two or more instances are opened in separate browser windows they will start to interact in different ways depending on whether they are paired or not, or if an entangled pair is owned by the same collector.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/UKCw40CmYRxeRe8xVyCIli48-tvSPwC-HNcjj_lUE3YzqeEzEK0BEYzXQ7w5c2a3M_8GxH8oMsLBT6Z_Ky4PVwcpQDFUvuvGbvI=s250", + "image_medium_url": "https://lh3.googleusercontent.com/UKCw40CmYRxeRe8xVyCIli48-tvSPwC-HNcjj_lUE3YzqeEzEK0BEYzXQ7w5c2a3M_8GxH8oMsLBT6Z_Ky4PVwcpQDFUvuvGbvI", + "image_large_url": "https://lh3.googleusercontent.com/UKCw40CmYRxeRe8xVyCIli48-tvSPwC-HNcjj_lUE3YzqeEzEK0BEYzXQ7w5c2a3M_8GxH8oMsLBT6Z_Ky4PVwcpQDFUvuvGbvI=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/UKCw40CmYRxeRe8xVyCIli48-tvSPwC-HNcjj_lUE3YzqeEzEK0BEYzXQ7w5c2a3M_8GxH8oMsLBT6Z_Ky4PVwcpQDFUvuvGbvI=k-w1200-s2400-rj", + "blurhash": "U25E$]ay4nofRjWCt7j[00j[%MWBt7ofRjWB", + "predominant_color": "#212122" + }, + "image_url": "https://cdn.simplehash.com/assets/7c09e71012f2012eed2e3c5ae88263a2692d891d94e9a6c2207fd6112b46815b.png", + "image_properties": { + "width": 1000, + "height": 1000, + "size": 1664255, + "mime_type": "image/png" + }, + "video_url": null, + "video_properties": null, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": "https://fxhash.xyz/gentk/0x19DBc1c820dd3F13260829a4E06Dda6d9EF758DB-95", + "created_date": "2024-06-20T17:00:35", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-07-09T10:45:35", + "last_acquired_date": "2024-07-09T10:45:35" + } + ], + "contract": { + "type": "ERC721", + "name": "Entangled", + "symbol": "FXGEN", + "deployed_by": "0xda8457bCC1096b4c66316b0A40c165D681Bf244C", + "deployed_via_contract": "0x442295de8A31d65026dBc09c29d469F6854f188a", + "owned_by": "0xda8457bCC1096b4c66316b0A40c165D681Bf244C", + "has_multiple_collections": false + }, + "collection": { + "collection_id": "b8ff049b0213c2f8138ed44d99cac6b8", + "name": "Entangled", + "description": "Entangled is a cross-chain, generative art project developed as a series of particle simulations that interact with each other in various ways across separate blockchains and browser windows. Inspired by the phenomenon of quantum entanglement, this project aims to connect two, often separate, parts of the generative art community by directly linking them together.\n \nEntangled features two distinct on-chain NFT collections residing on the Ethereum and Tezos blockchains. These collections are connected through shared interactions in real-time, using cross-chain and local storage technologies to enable a system whereby particles in separate browser instances respond to and mirror each other.\n\nThe series consist of a total of 512 unique editions (256 on each blockchain) that are randomly paired with a corresponding iteration on the other. When two or more instances are opened in separate browser windows they will start to interact in different ways depending on whether they are paired or not, or if an entangled pair is owned by the same collector.", + "image_url": "https://lh3.googleusercontent.com/zKChkOfwzp8NuMK5itPe4dhGvhcWMWKVsL5g8saIaGa8ofYLpXrC244QCtj4KXilI28Yc3FxQrlT5PY6M0NRKwGlCg_MkRB19w", + "image_properties": { + "width": 512, + "height": 512, + "mime_type": "image/png" + }, + "banner_image_url": null, + "category": null, + "is_nsfw": false, + "external_url": "https://fxhash.xyz/generative/0x19DBc1c820dd3F13260829a4E06Dda6d9EF758DB", + "twitter_username": null, + "discord_url": null, + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db", + "nft_url": "https://magiceden.io/item-details/ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/95", + "collection_url": "https://magiceden.io/collections/ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "entangled-3", + "nft_url": "https://opensea.io/assets/ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/95", + "collection_url": "https://opensea.io/collection/entangled-3", + "verified": false + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "blur", + "marketplace_name": "Blur", + "value": 169000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 58263 + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 170000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 58607 + }, + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "value": 300000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 103425 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 55000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 18961 + } + ], + "distinct_owner_count": 145, + "distinct_nft_count": 256, + "total_quantity": 256, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0x19dbc1c820dd3f13260829a4e06dda6d9ef758db"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xFCA1251f78F2d2B793CcF93ca990D35513A1b3ED", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ] + }, + "last_sale": { + "from_address": "0x330Bce303d27Df0eb1b856Da3464278DB1DB1aC5", + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-07-09T10:45:35", + "transaction": "0x6fad3d7b9fb72f436001e7ef4cb4d919c446b93d3bdd9f27e4b1e8eddbf7764d", + "marketplace_id": "blur", + "marketplace_name": "Blur", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 158000000000000000, + "total_price": 158000000000000000, + "unit_price_usd_cents": 48644 + }, + "primary_sale": { + "from_address": null, + "to_address": "0x330Bce303d27Df0eb1b856Da3464278DB1DB1aC5", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-06-20T17:00:35", + "transaction": "0x7852e20d44b7dd812d042b497e3ab3a3a99ff6ccd26bc64d07ae6f8d203b2cf7", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 80000000000000000, + "total_price": 80000000000000000, + "unit_price_usd_cents": 28142 + }, + "first_created": { + "minted_to": "0x330Bce303d27Df0eb1b856Da3464278DB1DB1aC5", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-06-20T17:00:35", + "block_number": 20134290, + "transaction": "0x7852e20d44b7dd812d042b497e3ab3a3a99ff6ccd26bc64d07ae6f8d203b2cf7", + "transaction_initiator": "0x330Bce303d27Df0eb1b856Da3464278DB1DB1aC5" + }, + "rarity": { + "rank": 229, + "score": 0.839, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xFCA1251f78F2d2B793CcF93ca990D35513A1b3ED", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "color scheme", + "value": "1", + "display_type": null + }, + { + "trait_type": "inverted pair", + "value": "no", + "display_type": null + }, + { + "trait_type": "motion 0", + "value": "a1-1", + "display_type": null + }, + { + "trait_type": "motion 1", + "value": "b0", + "display_type": null + }, + { + "trait_type": "connection twists", + "value": "3", + "display_type": null + }, + { + "trait_type": "main type", + "value": "sphere", + "display_type": null + }, + { + "trait_type": "core type", + "value": "sphere", + "display_type": null + } + ], + "iterationHash": "0x73b134bd2072703ab64b0b5be79de11d76626ff53c4649472edefb236c9ef152", + "tags": [], + "generatorUri": "onchfs://b12f18fcd51a21cc3ace5090fa808c8d4e4552d9e2239a3886b89f8ea12ff685", + "displayUri": "ipfs://QmRVGBs5LTYSjmxdXXQHi81y8hvUZteJvLpFhMBAT2VYDE", + "thumbnailUri": "ipfs://QmWzSdeLAeYPd7mqK2Ai7uosCotjg9ftr1AKUNQ7dq3onP", + "authenticityHash": "4163c70b30b3b24994beb964ec78bd870480dd0bbe67032b45fd24f2514993e1", + "symbol": "GENTK", + "version": "0.2", + "snippetVersion": "4.0.1", + "image_original_url": "ipfs://QmRVGBs5LTYSjmxdXXQHi81y8hvUZteJvLpFhMBAT2VYDE", + "animation_original_url": "https://onchfs.fxhash2.xyz/b12f18fcd51a21cc3ace5090fa808c8d4e4552d9e2239a3886b89f8ea12ff685/?fxhash=0x73b134bd2072703ab64b0b5be79de11d76626ff53c4649472edefb236c9ef152&fxiteration=95&fxminter=0x330Bce303d27Df0eb1b856Da3464278DB1DB1aC5&fxchain=ETHEREUM", + "metadata_original_url": "ipfs://QmQkcrRm9tWqMYeCrkYVrTotjKpb19gJ6379saGWBk2ZqJ/95/metadata.json" + } + }, + { + "nft_id": "ethereum.0x19dbc1c820dd3f13260829a4e06dda6d9ef758db.106", + "chain": "ethereum", + "contract_address": "0x19DBc1c820dd3F13260829a4E06Dda6d9EF758DB", + "token_id": "106", + "name": "Entangled #106", + "description": "Entangled is a cross-chain, generative art project developed as a series of particle simulations that interact with each other in various ways across separate blockchains and browser windows. Inspired by the phenomenon of quantum entanglement, this project aims to connect two, often separate, parts of the generative art community by directly linking them together.\n \nEntangled features two distinct on-chain NFT collections residing on the Ethereum and Tezos blockchains. These collections are connected through shared interactions in real-time, using cross-chain and local storage technologies to enable a system whereby particles in separate browser instances respond to and mirror each other.\n\nThe series consist of a total of 512 unique editions (256 on each blockchain) that are randomly paired with a corresponding iteration on the other. When two or more instances are opened in separate browser windows they will start to interact in different ways depending on whether they are paired or not, or if an entangled pair is owned by the same collector.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/PY5fAHYkKIXu9F3fRDCGnPQyhMZ3oMX81BnACMDbPGzgTQ5JMydZzPzvgHUnxpCf3Eeu4QWLRPv8JvmtjHJJJGAgVPo7fLVo0Go=s250", + "image_medium_url": "https://lh3.googleusercontent.com/PY5fAHYkKIXu9F3fRDCGnPQyhMZ3oMX81BnACMDbPGzgTQ5JMydZzPzvgHUnxpCf3Eeu4QWLRPv8JvmtjHJJJGAgVPo7fLVo0Go", + "image_large_url": "https://lh3.googleusercontent.com/PY5fAHYkKIXu9F3fRDCGnPQyhMZ3oMX81BnACMDbPGzgTQ5JMydZzPzvgHUnxpCf3Eeu4QWLRPv8JvmtjHJJJGAgVPo7fLVo0Go=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/PY5fAHYkKIXu9F3fRDCGnPQyhMZ3oMX81BnACMDbPGzgTQ5JMydZzPzvgHUnxpCf3Eeu4QWLRPv8JvmtjHJJJGAgVPo7fLVo0Go=k-w1200-s2400-rj", + "blurhash": "U83UCZfPb$flf4fkfmf5b#fme*f4f.f5f3fk", + "predominant_color": "#1c58f6" + }, + "image_url": "https://cdn.simplehash.com/assets/055434a549ebcbed154127985cd3a5d0666f6a1900565c22366f452be20d12d9.png", + "image_properties": { + "width": 1000, + "height": 1000, + "size": 1878466, + "mime_type": "image/png" + }, + "video_url": null, + "video_properties": null, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": "https://fxhash.xyz/gentk/0x19DBc1c820dd3F13260829a4E06Dda6d9EF758DB-106", + "created_date": "2024-06-20T17:00:47", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-07-09T10:45:11", + "last_acquired_date": "2024-07-09T10:45:11" + } + ], + "contract": { + "type": "ERC721", + "name": "Entangled", + "symbol": "FXGEN", + "deployed_by": "0xda8457bCC1096b4c66316b0A40c165D681Bf244C", + "deployed_via_contract": "0x442295de8A31d65026dBc09c29d469F6854f188a", + "owned_by": "0xda8457bCC1096b4c66316b0A40c165D681Bf244C", + "has_multiple_collections": false + }, + "collection": { + "collection_id": "b8ff049b0213c2f8138ed44d99cac6b8", + "name": "Entangled", + "description": "Entangled is a cross-chain, generative art project developed as a series of particle simulations that interact with each other in various ways across separate blockchains and browser windows. Inspired by the phenomenon of quantum entanglement, this project aims to connect two, often separate, parts of the generative art community by directly linking them together.\n \nEntangled features two distinct on-chain NFT collections residing on the Ethereum and Tezos blockchains. These collections are connected through shared interactions in real-time, using cross-chain and local storage technologies to enable a system whereby particles in separate browser instances respond to and mirror each other.\n\nThe series consist of a total of 512 unique editions (256 on each blockchain) that are randomly paired with a corresponding iteration on the other. When two or more instances are opened in separate browser windows they will start to interact in different ways depending on whether they are paired or not, or if an entangled pair is owned by the same collector.", + "image_url": "https://lh3.googleusercontent.com/zKChkOfwzp8NuMK5itPe4dhGvhcWMWKVsL5g8saIaGa8ofYLpXrC244QCtj4KXilI28Yc3FxQrlT5PY6M0NRKwGlCg_MkRB19w", + "image_properties": { + "width": 512, + "height": 512, + "mime_type": "image/png" + }, + "banner_image_url": null, + "category": null, + "is_nsfw": false, + "external_url": "https://fxhash.xyz/generative/0x19DBc1c820dd3F13260829a4E06Dda6d9EF758DB", + "twitter_username": null, + "discord_url": null, + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db", + "nft_url": "https://magiceden.io/item-details/ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/106", + "collection_url": "https://magiceden.io/collections/ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "entangled-3", + "nft_url": "https://opensea.io/assets/ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/106", + "collection_url": "https://opensea.io/collection/entangled-3", + "verified": false + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "blur", + "marketplace_name": "Blur", + "value": 169000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 58263 + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 170000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 58607 + }, + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "value": 300000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 103425 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 55000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 18961 + } + ], + "distinct_owner_count": 145, + "distinct_nft_count": 256, + "total_quantity": 256, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0x19dbc1c820dd3f13260829a4e06dda6d9ef758db"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xFCA1251f78F2d2B793CcF93ca990D35513A1b3ED", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ] + }, + "last_sale": { + "from_address": "0xe398E890B8F79D8491cd5C5299A63c3fcaDdDAA7", + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-07-09T10:45:11", + "transaction": "0x91c2e2323f1fa8f3a053b67e461304a497c1566ff633b19cec0fdbad937049a4", + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 150000000000000000, + "total_price": 150000000000000000, + "unit_price_usd_cents": 46181 + }, + "primary_sale": { + "from_address": null, + "to_address": "0xe398E890B8F79D8491cd5C5299A63c3fcaDdDAA7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-06-20T17:00:47", + "transaction": "0x0a74bd719e64bffe75d71da9ad8b7637c2ed900578dc995011a1cadf02970936", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 80000000000000000, + "total_price": 80000000000000000, + "unit_price_usd_cents": 28142 + }, + "first_created": { + "minted_to": "0xe398E890B8F79D8491cd5C5299A63c3fcaDdDAA7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-06-20T17:00:47", + "block_number": 20134291, + "transaction": "0x0a74bd719e64bffe75d71da9ad8b7637c2ed900578dc995011a1cadf02970936", + "transaction_initiator": "0xe398E890B8F79D8491cd5C5299A63c3fcaDdDAA7" + }, + "rarity": { + "rank": 78, + "score": 1.054, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xFCA1251f78F2d2B793CcF93ca990D35513A1b3ED", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "color scheme", + "value": "17", + "display_type": null + }, + { + "trait_type": "inverted pair", + "value": "yes", + "display_type": null + }, + { + "trait_type": "motion 0", + "value": "c1", + "display_type": null + }, + { + "trait_type": "motion 1", + "value": "a1-0", + "display_type": null + }, + { + "trait_type": "connection twists", + "value": "4", + "display_type": null + }, + { + "trait_type": "main type", + "value": "sphere", + "display_type": null + }, + { + "trait_type": "core type", + "value": "sphere", + "display_type": null + } + ], + "iterationHash": "0x04eb8c25ebe0b550e80d9271b614bd6f9fdec2b732d3959dd97c4b9656ec3f25", + "tags": [], + "generatorUri": "onchfs://b12f18fcd51a21cc3ace5090fa808c8d4e4552d9e2239a3886b89f8ea12ff685", + "displayUri": "ipfs://QmXS8R43FUh6n3gizFTSaza36wn3SBqJLVZBBdVmTJNomf", + "thumbnailUri": "ipfs://QmYDVe2QWijwgQFEKWYYVeaxaVeReHRPfJUW8B84LxdG7R", + "authenticityHash": "a88f2af365b37a7f737413112678a96d26122cf6a3f68c7d5ffea0361ea9f3cb", + "symbol": "GENTK", + "version": "0.2", + "snippetVersion": "4.0.1", + "image_original_url": "ipfs://QmXS8R43FUh6n3gizFTSaza36wn3SBqJLVZBBdVmTJNomf", + "animation_original_url": "https://onchfs.fxhash2.xyz/b12f18fcd51a21cc3ace5090fa808c8d4e4552d9e2239a3886b89f8ea12ff685/?fxhash=0x04eb8c25ebe0b550e80d9271b614bd6f9fdec2b732d3959dd97c4b9656ec3f25&fxiteration=106&fxminter=0xe398E890B8F79D8491cd5C5299A63c3fcaDdDAA7&fxchain=ETHEREUM", + "metadata_original_url": "ipfs://QmQkcrRm9tWqMYeCrkYVrTotjKpb19gJ6379saGWBk2ZqJ/106/metadata.json" + } + }, + { + "nft_id": "ethereum.0x19dbc1c820dd3f13260829a4e06dda6d9ef758db.77", + "chain": "ethereum", + "contract_address": "0x19DBc1c820dd3F13260829a4E06Dda6d9EF758DB", + "token_id": "77", + "name": "Entangled #77", + "description": "Entangled is a cross-chain, generative art project developed as a series of particle simulations that interact with each other in various ways across separate blockchains and browser windows. Inspired by the phenomenon of quantum entanglement, this project aims to connect two, often separate, parts of the generative art community by directly linking them together.\n \nEntangled features two distinct on-chain NFT collections residing on the Ethereum and Tezos blockchains. These collections are connected through shared interactions in real-time, using cross-chain and local storage technologies to enable a system whereby particles in separate browser instances respond to and mirror each other.\n\nThe series consist of a total of 512 unique editions (256 on each blockchain) that are randomly paired with a corresponding iteration on the other. When two or more instances are opened in separate browser windows they will start to interact in different ways depending on whether they are paired or not, or if an entangled pair is owned by the same collector.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/ij7-XecJga99MGU3A643UQCvHfilCN4A_gRjUSdZ6eNdEP07gfgYeICrICVzpEEuTbcplZkaMKPaAGme_ExJ_QleEMve6Ta03L0=s250", + "image_medium_url": "https://lh3.googleusercontent.com/ij7-XecJga99MGU3A643UQCvHfilCN4A_gRjUSdZ6eNdEP07gfgYeICrICVzpEEuTbcplZkaMKPaAGme_ExJ_QleEMve6Ta03L0", + "image_large_url": "https://lh3.googleusercontent.com/ij7-XecJga99MGU3A643UQCvHfilCN4A_gRjUSdZ6eNdEP07gfgYeICrICVzpEEuTbcplZkaMKPaAGme_ExJ_QleEMve6Ta03L0=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/ij7-XecJga99MGU3A643UQCvHfilCN4A_gRjUSdZ6eNdEP07gfgYeICrICVzpEEuTbcplZkaMKPaAGme_ExJ_QleEMve6Ta03L0=k-w1200-s2400-rj", + "blurhash": "UFRMSWof_3j[t7WBR*of~qayD%j[Rjt6t7R*", + "predominant_color": "#f0eee6" + }, + "image_url": "https://cdn.simplehash.com/assets/9401c267add8c467cf852339d92c4f13437dd6c4f3df1602579d39c77f92d298.png", + "image_properties": { + "width": 1000, + "height": 1000, + "size": 2232342, + "mime_type": "image/png" + }, + "video_url": null, + "video_properties": null, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": "https://fxhash.xyz/gentk/0x19DBc1c820dd3F13260829a4E06Dda6d9EF758DB-77", + "created_date": "2024-06-20T17:00:23", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-07-09T10:45:11", + "last_acquired_date": "2024-07-09T10:45:11" + } + ], + "contract": { + "type": "ERC721", + "name": "Entangled", + "symbol": "FXGEN", + "deployed_by": "0xda8457bCC1096b4c66316b0A40c165D681Bf244C", + "deployed_via_contract": "0x442295de8A31d65026dBc09c29d469F6854f188a", + "owned_by": "0xda8457bCC1096b4c66316b0A40c165D681Bf244C", + "has_multiple_collections": false + }, + "collection": { + "collection_id": "b8ff049b0213c2f8138ed44d99cac6b8", + "name": "Entangled", + "description": "Entangled is a cross-chain, generative art project developed as a series of particle simulations that interact with each other in various ways across separate blockchains and browser windows. Inspired by the phenomenon of quantum entanglement, this project aims to connect two, often separate, parts of the generative art community by directly linking them together.\n \nEntangled features two distinct on-chain NFT collections residing on the Ethereum and Tezos blockchains. These collections are connected through shared interactions in real-time, using cross-chain and local storage technologies to enable a system whereby particles in separate browser instances respond to and mirror each other.\n\nThe series consist of a total of 512 unique editions (256 on each blockchain) that are randomly paired with a corresponding iteration on the other. When two or more instances are opened in separate browser windows they will start to interact in different ways depending on whether they are paired or not, or if an entangled pair is owned by the same collector.", + "image_url": "https://lh3.googleusercontent.com/zKChkOfwzp8NuMK5itPe4dhGvhcWMWKVsL5g8saIaGa8ofYLpXrC244QCtj4KXilI28Yc3FxQrlT5PY6M0NRKwGlCg_MkRB19w", + "image_properties": { + "width": 512, + "height": 512, + "mime_type": "image/png" + }, + "banner_image_url": null, + "category": null, + "is_nsfw": false, + "external_url": "https://fxhash.xyz/generative/0x19DBc1c820dd3F13260829a4E06Dda6d9EF758DB", + "twitter_username": null, + "discord_url": null, + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db", + "nft_url": "https://magiceden.io/item-details/ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/77", + "collection_url": "https://magiceden.io/collections/ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "entangled-3", + "nft_url": "https://opensea.io/assets/ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/77", + "collection_url": "https://opensea.io/collection/entangled-3", + "verified": false + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "blur", + "marketplace_name": "Blur", + "value": 169000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 58263 + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 170000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 58607 + }, + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "value": 300000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 103425 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 55000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 18961 + } + ], + "distinct_owner_count": 145, + "distinct_nft_count": 256, + "total_quantity": 256, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0x19dbc1c820dd3f13260829a4e06dda6d9ef758db"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xFCA1251f78F2d2B793CcF93ca990D35513A1b3ED", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ] + }, + "last_sale": { + "from_address": "0xe398E890B8F79D8491cd5C5299A63c3fcaDdDAA7", + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-07-09T10:45:11", + "transaction": "0x91c2e2323f1fa8f3a053b67e461304a497c1566ff633b19cec0fdbad937049a4", + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 130000000000000000, + "total_price": 130000000000000000, + "unit_price_usd_cents": 40024 + }, + "primary_sale": { + "from_address": null, + "to_address": "0xe398E890B8F79D8491cd5C5299A63c3fcaDdDAA7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-06-20T17:00:23", + "transaction": "0xf7cc528b6f7ae70dffbe4cd6586f913ab1bdf2c73cb06e560ffe0368746cf797", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 80000000000000000, + "total_price": 80000000000000000, + "unit_price_usd_cents": 28142 + }, + "first_created": { + "minted_to": "0xe398E890B8F79D8491cd5C5299A63c3fcaDdDAA7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-06-20T17:00:23", + "block_number": 20134289, + "transaction": "0xf7cc528b6f7ae70dffbe4cd6586f913ab1bdf2c73cb06e560ffe0368746cf797", + "transaction_initiator": "0xe398E890B8F79D8491cd5C5299A63c3fcaDdDAA7" + }, + "rarity": { + "rank": 126, + "score": 1.001, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xFCA1251f78F2d2B793CcF93ca990D35513A1b3ED", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "color scheme", + "value": "1", + "display_type": null + }, + { + "trait_type": "inverted pair", + "value": "no", + "display_type": null + }, + { + "trait_type": "motion 0", + "value": "a1-1", + "display_type": null + }, + { + "trait_type": "motion 1", + "value": "a1-1", + "display_type": null + }, + { + "trait_type": "connection twists", + "value": "3", + "display_type": null + }, + { + "trait_type": "main type", + "value": "sphere", + "display_type": null + }, + { + "trait_type": "core type", + "value": "icosahedron", + "display_type": null + } + ], + "iterationHash": "0x34332b6fe66ab35c3f6950219ca9555dab003383a0bb0d27963b74626d5fa63b", + "tags": [], + "generatorUri": "onchfs://b12f18fcd51a21cc3ace5090fa808c8d4e4552d9e2239a3886b89f8ea12ff685", + "displayUri": "ipfs://QmaoXiQfaZmfxz82pnNXqYcpcMNZJ18F4Ku9sVMD8jt3w4", + "thumbnailUri": "ipfs://QmfPizuS3S9NypYgvudwbjRcsvTHPGchV4GS85iMx9hceV", + "authenticityHash": "43f28d0ea06f4f5a8fba6feb965fd28be0d7cfe5037b378c1ef81111fbfa0a38", + "symbol": "GENTK", + "version": "0.2", + "snippetVersion": "4.0.1", + "image_original_url": "ipfs://QmaoXiQfaZmfxz82pnNXqYcpcMNZJ18F4Ku9sVMD8jt3w4", + "animation_original_url": "https://onchfs.fxhash2.xyz/b12f18fcd51a21cc3ace5090fa808c8d4e4552d9e2239a3886b89f8ea12ff685/?fxhash=0x34332b6fe66ab35c3f6950219ca9555dab003383a0bb0d27963b74626d5fa63b&fxiteration=77&fxminter=0xe398E890B8F79D8491cd5C5299A63c3fcaDdDAA7&fxchain=ETHEREUM", + "metadata_original_url": "ipfs://QmQkcrRm9tWqMYeCrkYVrTotjKpb19gJ6379saGWBk2ZqJ/77/metadata.json" + } + }, + { + "nft_id": "ethereum.0x19dbc1c820dd3f13260829a4e06dda6d9ef758db.142", + "chain": "ethereum", + "contract_address": "0x19DBc1c820dd3F13260829a4E06Dda6d9EF758DB", + "token_id": "142", + "name": "Entangled #142", + "description": "Entangled is a cross-chain, generative art project developed as a series of particle simulations that interact with each other in various ways across separate blockchains and browser windows. Inspired by the phenomenon of quantum entanglement, this project aims to connect two, often separate, parts of the generative art community by directly linking them together.\n \nEntangled features two distinct on-chain NFT collections residing on the Ethereum and Tezos blockchains. These collections are connected through shared interactions in real-time, using cross-chain and local storage technologies to enable a system whereby particles in separate browser instances respond to and mirror each other.\n\nThe series consist of a total of 512 unique editions (256 on each blockchain) that are randomly paired with a corresponding iteration on the other. When two or more instances are opened in separate browser windows they will start to interact in different ways depending on whether they are paired or not, or if an entangled pair is owned by the same collector.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/moF7kDqsHVZzdRgiMjsgGrPUtQEnPSVGkACeyX4y2PveW8XpgQ7apoYuwF5JD_Y3MRb9p4M5bNvbYKi8VpZHhrv3FDEDuKUlfqI=s250", + "image_medium_url": "https://lh3.googleusercontent.com/moF7kDqsHVZzdRgiMjsgGrPUtQEnPSVGkACeyX4y2PveW8XpgQ7apoYuwF5JD_Y3MRb9p4M5bNvbYKi8VpZHhrv3FDEDuKUlfqI", + "image_large_url": "https://lh3.googleusercontent.com/moF7kDqsHVZzdRgiMjsgGrPUtQEnPSVGkACeyX4y2PveW8XpgQ7apoYuwF5JD_Y3MRb9p4M5bNvbYKi8VpZHhrv3FDEDuKUlfqI=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/moF7kDqsHVZzdRgiMjsgGrPUtQEnPSVGkACeyX4y2PveW8XpgQ7apoYuwF5JD_Y3MRb9p4M5bNvbYKi8VpZHhrv3FDEDuKUlfqI=k-w1200-s2400-rj", + "blurhash": "U56QVgju5*a{sojuS2a|1aa|,[jtNtWVw|o2", + "predominant_color": "#201b1c" + }, + "image_url": "https://cdn.simplehash.com/assets/8256558ddb1754f7afbebb19fdd50c9b593dc734c816557f4741864d46dc2c07.png", + "image_properties": { + "width": 1000, + "height": 1000, + "size": 1601223, + "mime_type": "image/png" + }, + "video_url": null, + "video_properties": null, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": "https://fxhash.xyz/gentk/0x19DBc1c820dd3F13260829a4E06Dda6d9EF758DB-142", + "created_date": "2024-06-20T17:01:23", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-07-09T10:42:59", + "last_acquired_date": "2024-07-09T10:42:59" + } + ], + "contract": { + "type": "ERC721", + "name": "Entangled", + "symbol": "FXGEN", + "deployed_by": "0xda8457bCC1096b4c66316b0A40c165D681Bf244C", + "deployed_via_contract": "0x442295de8A31d65026dBc09c29d469F6854f188a", + "owned_by": "0xda8457bCC1096b4c66316b0A40c165D681Bf244C", + "has_multiple_collections": false + }, + "collection": { + "collection_id": "b8ff049b0213c2f8138ed44d99cac6b8", + "name": "Entangled", + "description": "Entangled is a cross-chain, generative art project developed as a series of particle simulations that interact with each other in various ways across separate blockchains and browser windows. Inspired by the phenomenon of quantum entanglement, this project aims to connect two, often separate, parts of the generative art community by directly linking them together.\n \nEntangled features two distinct on-chain NFT collections residing on the Ethereum and Tezos blockchains. These collections are connected through shared interactions in real-time, using cross-chain and local storage technologies to enable a system whereby particles in separate browser instances respond to and mirror each other.\n\nThe series consist of a total of 512 unique editions (256 on each blockchain) that are randomly paired with a corresponding iteration on the other. When two or more instances are opened in separate browser windows they will start to interact in different ways depending on whether they are paired or not, or if an entangled pair is owned by the same collector.", + "image_url": "https://lh3.googleusercontent.com/zKChkOfwzp8NuMK5itPe4dhGvhcWMWKVsL5g8saIaGa8ofYLpXrC244QCtj4KXilI28Yc3FxQrlT5PY6M0NRKwGlCg_MkRB19w", + "image_properties": { + "width": 512, + "height": 512, + "mime_type": "image/png" + }, + "banner_image_url": null, + "category": null, + "is_nsfw": false, + "external_url": "https://fxhash.xyz/generative/0x19DBc1c820dd3F13260829a4E06Dda6d9EF758DB", + "twitter_username": null, + "discord_url": null, + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db", + "nft_url": "https://magiceden.io/item-details/ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/142", + "collection_url": "https://magiceden.io/collections/ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "entangled-3", + "nft_url": "https://opensea.io/assets/ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/142", + "collection_url": "https://opensea.io/collection/entangled-3", + "verified": false + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "blur", + "marketplace_name": "Blur", + "value": 169000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 58263 + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 170000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 58607 + }, + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "value": 300000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 103425 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 55000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 18961 + } + ], + "distinct_owner_count": 145, + "distinct_nft_count": 256, + "total_quantity": 256, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0x19dbc1c820dd3f13260829a4e06dda6d9ef758db"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xFCA1251f78F2d2B793CcF93ca990D35513A1b3ED", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ] + }, + "last_sale": { + "from_address": "0xD6468d57646e73aF0f6485216B9a851c94Ae01D6", + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-07-09T10:42:59", + "transaction": "0x5eba47f51dffb73865c83436d3a52301a463913d3e245807f2a8d7694695e404", + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 125000000000000000, + "total_price": 125000000000000000, + "unit_price_usd_cents": 38683 + }, + "primary_sale": { + "from_address": null, + "to_address": "0xD74036a47D0b992F07545a1F417CcFF0B58C4618", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-06-20T17:01:23", + "transaction": "0xc8bd3f3bc2854e760f199cb919ddbb8bef7c59fbecdc311bc12ae11679271d10", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 80000000000000000, + "total_price": 80000000000000000, + "unit_price_usd_cents": 28142 + }, + "first_created": { + "minted_to": "0xD74036a47D0b992F07545a1F417CcFF0B58C4618", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-06-20T17:01:23", + "block_number": 20134294, + "transaction": "0xc8bd3f3bc2854e760f199cb919ddbb8bef7c59fbecdc311bc12ae11679271d10", + "transaction_initiator": "0xD74036a47D0b992F07545a1F417CcFF0B58C4618" + }, + "rarity": { + "rank": 133, + "score": 0.994, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xFCA1251f78F2d2B793CcF93ca990D35513A1b3ED", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "color scheme", + "value": "23", + "display_type": null + }, + { + "trait_type": "inverted pair", + "value": "yes", + "display_type": null + }, + { + "trait_type": "motion 0", + "value": "c1", + "display_type": null + }, + { + "trait_type": "motion 1", + "value": "b0", + "display_type": null + }, + { + "trait_type": "connection twists", + "value": "0", + "display_type": null + }, + { + "trait_type": "main type", + "value": "sphere", + "display_type": null + }, + { + "trait_type": "core type", + "value": "icosahedron", + "display_type": null + } + ], + "iterationHash": "0xc4f31464b959933274c3e296440fbbaa95afa3308fc823d5ac677ab538fe355f", + "tags": [], + "generatorUri": "onchfs://b12f18fcd51a21cc3ace5090fa808c8d4e4552d9e2239a3886b89f8ea12ff685", + "displayUri": "ipfs://QmWupSpzYs6odQPZTKSAWxBBvp2JeeaGrZPJokc7zUzDDK", + "thumbnailUri": "ipfs://QmQcSDaqzxppQ6SCwthNk75uUnezHqA3oW4BsEpexmYkPU", + "authenticityHash": "c38a0c8ec80611e7d63d0ea6108b0555b9bc47b9eafad4ae59ab591a97a7844b", + "symbol": "GENTK", + "version": "0.2", + "snippetVersion": "4.0.1", + "image_original_url": "ipfs://QmWupSpzYs6odQPZTKSAWxBBvp2JeeaGrZPJokc7zUzDDK", + "animation_original_url": "https://onchfs.fxhash2.xyz/b12f18fcd51a21cc3ace5090fa808c8d4e4552d9e2239a3886b89f8ea12ff685/?fxhash=0xc4f31464b959933274c3e296440fbbaa95afa3308fc823d5ac677ab538fe355f&fxiteration=142&fxminter=0xD74036a47D0b992F07545a1F417CcFF0B58C4618&fxchain=ETHEREUM", + "metadata_original_url": "ipfs://QmQkcrRm9tWqMYeCrkYVrTotjKpb19gJ6379saGWBk2ZqJ/142/metadata.json" + } + }, + { + "nft_id": "ethereum.0x19dbc1c820dd3f13260829a4e06dda6d9ef758db.138", + "chain": "ethereum", + "contract_address": "0x19DBc1c820dd3F13260829a4E06Dda6d9EF758DB", + "token_id": "138", + "name": "Entangled #138", + "description": "Entangled is a cross-chain, generative art project developed as a series of particle simulations that interact with each other in various ways across separate blockchains and browser windows. Inspired by the phenomenon of quantum entanglement, this project aims to connect two, often separate, parts of the generative art community by directly linking them together.\n \nEntangled features two distinct on-chain NFT collections residing on the Ethereum and Tezos blockchains. These collections are connected through shared interactions in real-time, using cross-chain and local storage technologies to enable a system whereby particles in separate browser instances respond to and mirror each other.\n\nThe series consist of a total of 512 unique editions (256 on each blockchain) that are randomly paired with a corresponding iteration on the other. When two or more instances are opened in separate browser windows they will start to interact in different ways depending on whether they are paired or not, or if an entangled pair is owned by the same collector.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/HvwzYX0uSyE0mCdM4oVHZ606L6X9OlTYktMGZlKsT3L6iwVRyPJDiQJY_QhRDHr_60Tc-9zV27M2GpR55802p0Ul3iAt10ZKQ00=s250", + "image_medium_url": "https://lh3.googleusercontent.com/HvwzYX0uSyE0mCdM4oVHZ606L6X9OlTYktMGZlKsT3L6iwVRyPJDiQJY_QhRDHr_60Tc-9zV27M2GpR55802p0Ul3iAt10ZKQ00", + "image_large_url": "https://lh3.googleusercontent.com/HvwzYX0uSyE0mCdM4oVHZ606L6X9OlTYktMGZlKsT3L6iwVRyPJDiQJY_QhRDHr_60Tc-9zV27M2GpR55802p0Ul3iAt10ZKQ00=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/HvwzYX0uSyE0mCdM4oVHZ606L6X9OlTYktMGZlKsT3L6iwVRyPJDiQJY_QhRDHr_60Tc-9zV27M2GpR55802p0Ul3iAt10ZKQ00=k-w1200-s2400-rj", + "blurhash": "U268EXay00WB%MayM{ay00j[%Mj[D%of%May", + "predominant_color": "#282827" + }, + "image_url": "https://cdn.simplehash.com/assets/9ea15756c170bd4887ae0c4c53102e6f17c0890d527a5258fdeedf9ad4301cfd.png", + "image_properties": { + "width": 1000, + "height": 1000, + "size": 1284041, + "mime_type": "image/png" + }, + "video_url": null, + "video_properties": null, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": "https://fxhash.xyz/gentk/0x19DBc1c820dd3F13260829a4E06Dda6d9EF758DB-138", + "created_date": "2024-06-20T17:01:11", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-07-09T10:42:59", + "last_acquired_date": "2024-07-09T10:42:59" + } + ], + "contract": { + "type": "ERC721", + "name": "Entangled", + "symbol": "FXGEN", + "deployed_by": "0xda8457bCC1096b4c66316b0A40c165D681Bf244C", + "deployed_via_contract": "0x442295de8A31d65026dBc09c29d469F6854f188a", + "owned_by": "0xda8457bCC1096b4c66316b0A40c165D681Bf244C", + "has_multiple_collections": false + }, + "collection": { + "collection_id": "b8ff049b0213c2f8138ed44d99cac6b8", + "name": "Entangled", + "description": "Entangled is a cross-chain, generative art project developed as a series of particle simulations that interact with each other in various ways across separate blockchains and browser windows. Inspired by the phenomenon of quantum entanglement, this project aims to connect two, often separate, parts of the generative art community by directly linking them together.\n \nEntangled features two distinct on-chain NFT collections residing on the Ethereum and Tezos blockchains. These collections are connected through shared interactions in real-time, using cross-chain and local storage technologies to enable a system whereby particles in separate browser instances respond to and mirror each other.\n\nThe series consist of a total of 512 unique editions (256 on each blockchain) that are randomly paired with a corresponding iteration on the other. When two or more instances are opened in separate browser windows they will start to interact in different ways depending on whether they are paired or not, or if an entangled pair is owned by the same collector.", + "image_url": "https://lh3.googleusercontent.com/zKChkOfwzp8NuMK5itPe4dhGvhcWMWKVsL5g8saIaGa8ofYLpXrC244QCtj4KXilI28Yc3FxQrlT5PY6M0NRKwGlCg_MkRB19w", + "image_properties": { + "width": 512, + "height": 512, + "mime_type": "image/png" + }, + "banner_image_url": null, + "category": null, + "is_nsfw": false, + "external_url": "https://fxhash.xyz/generative/0x19DBc1c820dd3F13260829a4E06Dda6d9EF758DB", + "twitter_username": null, + "discord_url": null, + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db", + "nft_url": "https://magiceden.io/item-details/ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/138", + "collection_url": "https://magiceden.io/collections/ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "entangled-3", + "nft_url": "https://opensea.io/assets/ethereum/0x19dbc1c820dd3f13260829a4e06dda6d9ef758db/138", + "collection_url": "https://opensea.io/collection/entangled-3", + "verified": false + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "blur", + "marketplace_name": "Blur", + "value": 169000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 58263 + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 170000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 58607 + }, + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "value": 300000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 103425 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 55000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 18961 + } + ], + "distinct_owner_count": 145, + "distinct_nft_count": 256, + "total_quantity": 256, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0x19dbc1c820dd3f13260829a4e06dda6d9ef758db"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xFCA1251f78F2d2B793CcF93ca990D35513A1b3ED", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ] + }, + "last_sale": { + "from_address": "0xD6468d57646e73aF0f6485216B9a851c94Ae01D6", + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-07-09T10:42:59", + "transaction": "0x5eba47f51dffb73865c83436d3a52301a463913d3e245807f2a8d7694695e404", + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 100000000000000000, + "total_price": 100000000000000000, + "unit_price_usd_cents": 30946 + }, + "primary_sale": { + "from_address": null, + "to_address": "0xD74036a47D0b992F07545a1F417CcFF0B58C4618", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-06-20T17:01:11", + "transaction": "0x4cff9a0a0a4f7f825dc932b808e4b7247ecdd5a08987200f78dd56a15bc720a1", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 80000000000000000, + "total_price": 80000000000000000, + "unit_price_usd_cents": 28142 + }, + "first_created": { + "minted_to": "0xD74036a47D0b992F07545a1F417CcFF0B58C4618", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-06-20T17:01:11", + "block_number": 20134293, + "transaction": "0x4cff9a0a0a4f7f825dc932b808e4b7247ecdd5a08987200f78dd56a15bc720a1", + "transaction_initiator": "0xD74036a47D0b992F07545a1F417CcFF0B58C4618" + }, + "rarity": { + "rank": 237, + "score": 0.794, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0xFCA1251f78F2d2B793CcF93ca990D35513A1b3ED", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "color scheme", + "value": "7", + "display_type": null + }, + { + "trait_type": "inverted pair", + "value": "no", + "display_type": null + }, + { + "trait_type": "motion 0", + "value": "c4", + "display_type": null + }, + { + "trait_type": "motion 1", + "value": "a1-1", + "display_type": null + }, + { + "trait_type": "connection twists", + "value": "0", + "display_type": null + }, + { + "trait_type": "main type", + "value": "sphere", + "display_type": null + }, + { + "trait_type": "core type", + "value": "sphere", + "display_type": null + } + ], + "iterationHash": "0x99a96acdb06dc3b414a5ad1a28d4fec275fc84097788d44b38acc4ab5280fde0", + "tags": [], + "generatorUri": "onchfs://b12f18fcd51a21cc3ace5090fa808c8d4e4552d9e2239a3886b89f8ea12ff685", + "displayUri": "ipfs://QmPFAjMbWQuofprB62xqHMin6MXeTZ2yQFaSWdSBStfuuT", + "thumbnailUri": "ipfs://QmPQ9oGXZDarV6iNh9wfcvAyMnJMoFjqyzx9kRBSuC2cSj", + "authenticityHash": "9863dc0b6590216c6f358a5fdd07d734d196bb3b965eb2c18f1f80b055e3d8d7", + "symbol": "GENTK", + "version": "0.2", + "snippetVersion": "4.0.1", + "image_original_url": "ipfs://QmPFAjMbWQuofprB62xqHMin6MXeTZ2yQFaSWdSBStfuuT", + "animation_original_url": "https://onchfs.fxhash2.xyz/b12f18fcd51a21cc3ace5090fa808c8d4e4552d9e2239a3886b89f8ea12ff685/?fxhash=0x99a96acdb06dc3b414a5ad1a28d4fec275fc84097788d44b38acc4ab5280fde0&fxiteration=138&fxminter=0xD74036a47D0b992F07545a1F417CcFF0B58C4618&fxchain=ETHEREUM", + "metadata_original_url": "ipfs://QmQkcrRm9tWqMYeCrkYVrTotjKpb19gJ6379saGWBk2ZqJ/138/metadata.json" + } + }, + { + "nft_id": "ethereum.0xfca598e0fcfe1ec1305b451c1d60498db511fa70.105", + "chain": "ethereum", + "contract_address": "0xfcA598e0Fcfe1ec1305b451c1d60498DB511fA70", + "token_id": "105", + "name": "Ray Marching the Full Moon May 12, 2025", + "description": "_Ray Marching the Moon: Full & New_ is comprised of 120 NFTs locked at mint time and to be unlocked in batches of 5 during each subsequent full moon and new moon over one year. This artwork is associated with the moon phase of the 12th of May 2025 and will be unlocked on that day at 00:00 GMT.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/_RzO5iDTgfUEsSUEcbGUODNUWycjX0E6S3gj35fV93jvqs8OWmR_U_BL-ZEtRDXT0ULAcWo5bEJx3yC0FEPprIJpIESOrP14wWo=s250", + "image_medium_url": "https://lh3.googleusercontent.com/_RzO5iDTgfUEsSUEcbGUODNUWycjX0E6S3gj35fV93jvqs8OWmR_U_BL-ZEtRDXT0ULAcWo5bEJx3yC0FEPprIJpIESOrP14wWo", + "image_large_url": "https://lh3.googleusercontent.com/_RzO5iDTgfUEsSUEcbGUODNUWycjX0E6S3gj35fV93jvqs8OWmR_U_BL-ZEtRDXT0ULAcWo5bEJx3yC0FEPprIJpIESOrP14wWo=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/_RzO5iDTgfUEsSUEcbGUODNUWycjX0E6S3gj35fV93jvqs8OWmR_U_BL-ZEtRDXT0ULAcWo5bEJx3yC0FEPprIJpIESOrP14wWo=k-w1200-s2400-rj", + "blurhash": "UGJthlr^?Fbu01R*M}ni?GxaRjofRkt6xuxt", + "predominant_color": "#8f7b5f" + }, + "image_url": "https://cdn.simplehash.com/assets/f077cef18ba41b61235f2d146761444ae6e44603098924e16eddfc13bba2ccd1.png", + "image_properties": { + "width": 3600, + "height": 3600, + "size": 9712602, + "mime_type": "image/png" + }, + "video_url": null, + "video_properties": null, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": null, + "created_date": "2024-07-01T16:03:23", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-07-01T16:03:23", + "last_acquired_date": "2024-07-01T16:03:23" + } + ], + "contract": { + "type": "ERC721", + "name": "Ray Marching the Moon: Full & New", + "symbol": "MOON", + "deployed_by": "0x3c7e48216C74D7818aB1Fd226e56C60C4D659bA6", + "deployed_via_contract": null, + "owned_by": null, + "has_multiple_collections": false + }, + "collection": { + "collection_id": "c72f834bdfa153850ce973beeda22fe6", + "name": "Ray Marching the Moon: Full & New", + "description": null, + "image_url": "https://lh3.googleusercontent.com/k63c8zyUFkFxPELzzS260DQQmg5J8bPOGzeU6aevwDILvS4icOPPd8nLANHIZ2I_D4RCUC7UWdUpc4XlkVAH980wRXoT-xI2qu8", + "image_properties": { + "width": 512, + "height": 512, + "mime_type": "image/png" + }, + "banner_image_url": null, + "category": null, + "is_nsfw": false, + "external_url": null, + "twitter_username": null, + "discord_url": null, + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0xfca598e0fcfe1ec1305b451c1d60498db511fa70", + "nft_url": "https://magiceden.io/item-details/ethereum/0xfca598e0fcfe1ec1305b451c1d60498db511fa70/105", + "collection_url": "https://magiceden.io/collections/ethereum/0xfca598e0fcfe1ec1305b451c1d60498db511fa70", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "ray-marching-the-moon-full-new", + "nft_url": "https://opensea.io/assets/ethereum/0xfca598e0fcfe1ec1305b451c1d60498db511fa70/105", + "collection_url": "https://opensea.io/collection/ray-marching-the-moon-full-new", + "verified": false + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 300000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 103425 + } + ], + "top_bids": [], + "distinct_owner_count": 28, + "distinct_nft_count": 130, + "total_quantity": 130, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0xfca598e0fcfe1ec1305b451c1d60498db511fa70"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 0, + "recipients": [] + } + ] + }, + "last_sale": null, + "primary_sale": null, + "first_created": { + "minted_to": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-07-01T16:03:23", + "block_number": 20212737, + "transaction": "0xd59022647fa5acf4e204a251c2af9f316c560c3ce7355aeb4cb2039ff2419e24", + "transaction_initiator": "0xe445Fb0297F7D1f507dF708185946210eB6a9DE6" + }, + "rarity": { + "rank": 1, + "score": 1.0, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 0, + "recipients": [] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "Moon phase", + "value": "Full", + "display_type": null + }, + { + "trait_type": "Unlock date", + "value": "1747008000", + "display_type": "date" + } + ], + "image_original_url": "ipfs://QmVwH4NwcD4EQpBV1U5G4aw6XvoUyuKoXbuLxjgP3b2v2g", + "animation_original_url": null, + "metadata_original_url": "ipfs://QmPyhrbPKUGwSWudeHtd732xrc8o1yqUZ9hrmNyWgauXCm/105" + } + }, + { + "nft_id": "ethereum.0xe064e0b6ceca44f561752a232c4395c0d52ed0c4.23", + "chain": "ethereum", + "contract_address": "0xe064E0b6cEca44f561752a232C4395c0d52Ed0c4", + "token_id": "23", + "name": "Incubita", + "description": "Where algorithms meet abstraction in the genesis of digital wealth.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/QaYsMm1u-62CTBBOt1mxwuTsmdmgFTM5EZlKEF_8NXluMQkIvTMq7O5KSH8l1sbTSGJwt8NavTRO2MwxBKHqEJlXNx0rzcOVpi0=s250", + "image_medium_url": "https://lh3.googleusercontent.com/QaYsMm1u-62CTBBOt1mxwuTsmdmgFTM5EZlKEF_8NXluMQkIvTMq7O5KSH8l1sbTSGJwt8NavTRO2MwxBKHqEJlXNx0rzcOVpi0", + "image_large_url": "https://lh3.googleusercontent.com/QaYsMm1u-62CTBBOt1mxwuTsmdmgFTM5EZlKEF_8NXluMQkIvTMq7O5KSH8l1sbTSGJwt8NavTRO2MwxBKHqEJlXNx0rzcOVpi0=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/QaYsMm1u-62CTBBOt1mxwuTsmdmgFTM5EZlKEF_8NXluMQkIvTMq7O5KSH8l1sbTSGJwt8NavTRO2MwxBKHqEJlXNx0rzcOVpi0=k-w1200-s2400-rj", + "blurhash": "URKB2Uxv~BM{baj@oza#xFVsNxkWyCo|aKVs", + "predominant_color": "#c9c2bb" + }, + "image_url": "https://cdn.simplehash.com/assets/c9cc4ec9ca121a4b4d9d049e696a2560d953ee657f79efd082aa183a0527dc73.jpg", + "image_properties": { + "width": 2500, + "height": 2500, + "size": 2656266, + "mime_type": "image/jpeg" + }, + "video_url": "https://cdn.simplehash.com/assets/f6a4f25cdca5b6c20aa76a493e122d7b35034b1fcd318f64e4a5252d576655fe.mp4", + "video_properties": { + "width": 2500, + "height": 2500, + "duration": 15.019, + "video_coding": "aac", + "audio_coding": "h264", + "size": 46534902, + "mime_type": "video/mp4" + }, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": null, + "created_date": "2024-06-17T12:03:47", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-06-17T12:03:47", + "last_acquired_date": "2024-06-17T12:03:47" + } + ], + "contract": { + "type": "ERC721", + "name": "Marterium", + "symbol": "MARTM", + "deployed_by": "0xb0c6596d32b90d390077f7af7dcC97FfCBD5BdE0", + "deployed_via_contract": null, + "owned_by": "0xb0c6596d32b90d390077f7af7dcC97FfCBD5BdE0", + "has_multiple_collections": false + }, + "collection": { + "collection_id": "3d8439891ee1bda0d3ccbe2df34b7a46", + "name": "Marterium", + "description": null, + "image_url": "https://lh3.googleusercontent.com/FTTeSV1ngRz7LsAyUCqz_5lLOwerYa4uMjEQytoWRV-XbdRtuzigfOIibrs4zs7MNOdyo0JDHc5zaGdyi9TmvcPDtflszzl7g0k", + "image_properties": { + "width": 512, + "height": 512, + "mime_type": "image/png" + }, + "banner_image_url": "https://lh3.googleusercontent.com/iJ-dyvAOtOfuFNe5HJacuTIMurxyqSFc9ZZMzDkO70oKAlHeVL2Mt0HNIQ8yyFa4BnohDM7lCH3bIGUgdZt_AQGPKSAutMUcEA=w2500", + "category": null, + "is_nsfw": false, + "external_url": "http://www.marterium.com", + "twitter_username": "Marteriumx", + "discord_url": null, + "instagram_username": "marterium", + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0xe064e0b6ceca44f561752a232c4395c0d52ed0c4", + "nft_url": "https://magiceden.io/item-details/ethereum/0xe064e0b6ceca44f561752a232c4395c0d52ed0c4/23", + "collection_url": "https://magiceden.io/collections/ethereum/0xe064e0b6ceca44f561752a232c4395c0d52ed0c4", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "marterium-1", + "nft_url": "https://opensea.io/assets/ethereum/0xe064e0b6ceca44f561752a232c4395c0d52ed0c4/23", + "collection_url": "https://opensea.io/collection/marterium-1", + "verified": false + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 35000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 12066 + } + ], + "top_bids": [], + "distinct_owner_count": 22, + "distinct_nft_count": 23, + "total_quantity": 23, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0xe064e0b6ceca44f561752a232c4395c0d52ed0c4"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 1000, + "recipients": [ + { + "address": "0xb0c6596d32b90d390077f7af7dcC97FfCBD5BdE0", + "percentage": 100.0, + "basis_points": 1000 + } + ] + } + ] + }, + "last_sale": { + "from_address": null, + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-06-17T12:03:47", + "transaction": "0xd28a2df5c9f8edf07ca387c7428e16e8a37043a5f2f5d1d42e67d30aca6eb7e2", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 500000000000000, + "total_price": 500000000000000, + "unit_price_usd_cents": 176 + }, + "primary_sale": { + "from_address": null, + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-06-17T12:03:47", + "transaction": "0xd28a2df5c9f8edf07ca387c7428e16e8a37043a5f2f5d1d42e67d30aca6eb7e2", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 500000000000000, + "total_price": 500000000000000, + "unit_price_usd_cents": 176 + }, + "first_created": { + "minted_to": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-06-17T12:03:47", + "block_number": 20111383, + "transaction": "0xd28a2df5c9f8edf07ca387c7428e16e8a37043a5f2f5d1d42e67d30aca6eb7e2", + "transaction_initiator": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7" + }, + "rarity": { + "rank": 1, + "score": 0.0, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 1000, + "recipients": [ + { + "address": "0xb0c6596d32b90d390077f7af7dcC97FfCBD5BdE0", + "percentage": 100.0, + "basis_points": 1000 + } + ] + }, + { + "source": "erc2981", + "total_creator_fee_basis_points": 1000, + "recipients": [ + { + "address": "0xe064E0b6cEca44f561752a232C4395c0d52Ed0c4", + "percentage": 100.0, + "basis_points": 1000 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "Artist", + "value": "Marterium", + "display_type": null + } + ], + "created_by": "Marterium", + "animation_details": { + "bytes": 46534902, + "format": "MP4", + "duration": 15, + "sha256": "f6a4f25cdca5b6c20aa76a493e122d7b35034b1fcd318f64e4a5252d576655fe", + "width": 2500, + "height": 2500, + "codecs": ["H.264", "AAC"] + }, + "image_details": { + "bytes": 2656266, + "format": "JPEG", + "sha256": "c9cc4ec9ca121a4b4d9d049e696a2560d953ee657f79efd082aa183a0527dc73", + "width": 2500, + "height": 2500 + }, + "image_url": "https://arweave.net/gzIpdecXzv6qT4I-Np459FmHEucxkNYkRfrhiERr6Ps", + "image_original_url": "https://arweave.net/gzIpdecXzv6qT4I-Np459FmHEucxkNYkRfrhiERr6Ps", + "animation_original_url": "https://arweave.net/YV2kLV3tAi_azdBKnM9zJP68YLQJZPCsaguVWCrF4Lo", + "metadata_original_url": "https://arweave.net/pEVuaWFOqQGLG7SciWxtJKXRjKrp_4lepJ6tCpoSyPA" + } + }, + { + "nft_id": "ethereum.0xdfde78d2baec499fe18f2be74b6c287eed9511d7.33000139", + "chain": "ethereum", + "contract_address": "0xdFDE78d2baEc499fe18f2bE74B6c287eED9511d7", + "token_id": "33000139", + "name": "Memory #289", + "description": "What remains of works of art when they escape our gaze?\n There remain traces produced by their memories.\n\nA memory made up of a series of patterns which link together to form diaphanous images.\n In this action close to imagination, it is, once again, about making the artwork come alive.\n It’s about bringing past forms back to life by updating them in our present.\n\nAn artwork is the precipitate of the artist's imagination.\n This act of projecting images which will then become matter is similar to that of memory where mental images are arranged with a view to reconstructing the past.\n These two movements, one turned towards the future and the other towards the past, meet in latent space.\n\nHere, artificial imagination acts as a machine to restore the memory of an aesthetic experience.\n It becomes a universal canvas where Bonnard, Monet and Van Gogh coexist, not as figures of the past, but as potentialities, echoes of what could have been and what could happen.\n In this imaginary space, color serves as a detonator for a reminiscence of artworks sometimes seen, sometimes dreamed of.\n\nMemories of an Exhibition was born from this crazy desire of a painter: that of painting this memory.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/ni2KdW_z0ILPyPdWSiWHO0CxovwxjPd584kA9C5_YQU_0qgQjQU2X6eaR0wdezV3ncA2qWvxdrQU67J2FTmKfRtupnms3j50uA=s250", + "image_medium_url": "https://lh3.googleusercontent.com/ni2KdW_z0ILPyPdWSiWHO0CxovwxjPd584kA9C5_YQU_0qgQjQU2X6eaR0wdezV3ncA2qWvxdrQU67J2FTmKfRtupnms3j50uA", + "image_large_url": "https://lh3.googleusercontent.com/ni2KdW_z0ILPyPdWSiWHO0CxovwxjPd584kA9C5_YQU_0qgQjQU2X6eaR0wdezV3ncA2qWvxdrQU67J2FTmKfRtupnms3j50uA=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/ni2KdW_z0ILPyPdWSiWHO0CxovwxjPd584kA9C5_YQU_0qgQjQU2X6eaR0wdezV3ncA2qWvxdrQU67J2FTmKfRtupnms3j50uA=k-w1200-s2400-rj", + "blurhash": "UAEDhI01xI-;^jEPN0xZxuWANKV^r]a~t4oL", + "predominant_color": "#748d6e" + }, + "image_url": "https://cdn.simplehash.com/assets/1a6e934f60b9b1d700690e8b04358b9dc8f40b54a856d83701a2018805a21a98.png", + "image_properties": { + "width": 2560, + "height": 1440, + "size": 6149790, + "mime_type": "image/png" + }, + "video_url": "https://cdn.simplehash.com/assets/60bada18f3d5d3c06e3d3047494b679092a6f0a226b6f17d09bd389631a9bbcb.mp4", + "video_properties": { + "width": null, + "height": null, + "duration": null, + "video_coding": null, + "audio_coding": null, + "size": 39291904, + "mime_type": "video/mp4" + }, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": "https://braindrops.cloud/token/33000139", + "created_date": "2024-04-25T17:30:59", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-04-25T17:30:59", + "last_acquired_date": "2024-04-25T17:30:59" + } + ], + "contract": { + "type": "ERC721", + "name": "BrainDrops", + "symbol": "BRAIN", + "deployed_by": "0x314ADC3d43b1DD7b40Bb8B51E38A576CBb5A7b4E", + "deployed_via_contract": null, + "owned_by": "0x31c253dE07308f77d0769388fb959B7CB7e38d8d", + "has_multiple_collections": true + }, + "collection": { + "collection_id": "057fb2701c8c0d67ed7b5173cf2f0b6d", + "name": "Memories of an Exhibition by Benjamin Bardou", + "description": null, + "image_url": "https://lh3.googleusercontent.com/-vxHoGbNrLPVu09OZLMgfIvBhg73J9ng3XmMqZoKkhu5mqWjgtJwjM-pOdYv-Yqb_ROKrd1PzSL724UKMy_6dqFSFtLsBM5pSGI", + "image_properties": { + "width": 512, + "height": 288, + "mime_type": "image/png" + }, + "banner_image_url": null, + "category": null, + "is_nsfw": false, + "external_url": "https://braindrops.cloud/", + "twitter_username": null, + "discord_url": null, + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0xdfde78d2baec499fe18f2be74b6c287eed9511d7", + "nft_url": "https://magiceden.io/item-details/ethereum/0xdfde78d2baec499fe18f2be74b6c287eed9511d7/33000139", + "collection_url": "https://magiceden.io/collections/ethereum/0xdfde78d2baec499fe18f2be74b6c287eed9511d7", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "memories-of-an-exhibition-by-benjamin-bardou", + "nft_url": "https://opensea.io/assets/ethereum/0xdfde78d2baec499fe18f2be74b6c287eed9511d7/33000139", + "collection_url": "https://opensea.io/collection/memories-of-an-exhibition-by-benjamin-bardou", + "verified": false + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "blur", + "marketplace_name": "Blur", + "value": 23799800000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 8205 + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 79000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 27235 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 40000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 13790 + }, + { + "marketplace_id": "blur", + "marketplace_name": "Blur", + "value": 10000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 3447 + } + ], + "distinct_owner_count": 143, + "distinct_nft_count": 296, + "total_quantity": 296, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0xdfde78d2baec499fe18f2be74b6c287eed9511d7"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0x31c253dE07308f77d0769388fb959B7CB7e38d8d", + "percentage": 100.0, + "basis_points": 750 + } + ] + } + ] + }, + "last_sale": { + "from_address": null, + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-04-25T17:30:59", + "transaction": "0x419f1db72ee141e6fb70520a4d16b8a3fc4fe900badbeb8005a94717209beac9", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 100000000000000000, + "total_price": 100000000000000000, + "unit_price_usd_cents": 31541 + }, + "primary_sale": { + "from_address": null, + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-04-25T17:30:59", + "transaction": "0x419f1db72ee141e6fb70520a4d16b8a3fc4fe900badbeb8005a94717209beac9", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 100000000000000000, + "total_price": 100000000000000000, + "unit_price_usd_cents": 31541 + }, + "first_created": { + "minted_to": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-04-25T17:30:59", + "block_number": 19733885, + "transaction": "0x419f1db72ee141e6fb70520a4d16b8a3fc4fe900badbeb8005a94717209beac9", + "transaction_initiator": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7" + }, + "rarity": { + "rank": 237, + "score": 0.898, + "unique_attributes": 1 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0x31c253dE07308f77d0769388fb959B7CB7e38d8d", + "percentage": 100.0, + "basis_points": 750 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "Painter", + "value": "Claude Monet", + "display_type": null + }, + { + "trait_type": "Title", + "value": "Sun on Snow", + "display_type": null + }, + { + "trait_type": "Soundtrack", + "value": "Illusions of the Past", + "display_type": null + }, + { + "trait_type": "Sets of Brushes", + "value": "3", + "display_type": null + }, + { + "trait_type": "Turbulence Fields", + "value": "3", + "display_type": null + }, + { + "trait_type": "Intervals", + "value": "6", + "display_type": null + }, + { + "trait_type": "Speed", + "value": "0,35", + "display_type": null + }, + { + "trait_type": "Flashes", + "value": "Yes", + "display_type": null + }, + { + "trait_type": "Collection Name", + "value": "Memories of an Exhibition", + "display_type": null + }, + { + "trait_type": "Artist", + "value": "Benjamin Bardou", + "display_type": null + }, + { + "trait_type": "Format", + "value": "mp4", + "display_type": null + } + ], + "artist_website": "https://benjaminbardou.com/", + "platform": "Braindrops", + "artistRoyaltyInfo": { + "artistAddress": "0x21a5f5f30692D6CA611E201fFb7f85c9674099bA", + "artistPercentage": "5", + "additionalPayee": "0x31c253dE07308f77d0769388fb959B7CB7e38d8d", + "additionalPayeePercentage": "2.5" + }, + "image_original_url": "ipfs://QmVNMSieCoykaRZZePcFchU9QbNw8br3zvnseeb8Qk4xYT", + "animation_original_url": "ipfs://QmeUX1q8zSbvUjUMMshDVDxCjG2zcBWggB5dr3QifQPk5Z", + "metadata_original_url": "ipfs://QmTqZQTbGpmu5Tnsi51ZH6GraRVPvzyZQAGKSbjfjhudoK/33000139" + } + }, + { + "nft_id": "ethereum.0xdfde78d2baec499fe18f2be74b6c287eed9511d7.33000137", + "chain": "ethereum", + "contract_address": "0xdFDE78d2baEc499fe18f2bE74B6c287eED9511d7", + "token_id": "33000137", + "name": "Memory #411", + "description": "What remains of works of art when they escape our gaze?\n There remain traces produced by their memories.\n\nA memory made up of a series of patterns which link together to form diaphanous images.\n In this action close to imagination, it is, once again, about making the artwork come alive.\n It’s about bringing past forms back to life by updating them in our present.\n\nAn artwork is the precipitate of the artist's imagination.\n This act of projecting images which will then become matter is similar to that of memory where mental images are arranged with a view to reconstructing the past.\n These two movements, one turned towards the future and the other towards the past, meet in latent space.\n\nHere, artificial imagination acts as a machine to restore the memory of an aesthetic experience.\n It becomes a universal canvas where Bonnard, Monet and Van Gogh coexist, not as figures of the past, but as potentialities, echoes of what could have been and what could happen.\n In this imaginary space, color serves as a detonator for a reminiscence of artworks sometimes seen, sometimes dreamed of.\n\nMemories of an Exhibition was born from this crazy desire of a painter: that of painting this memory.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/SxHUXKM_PNt12R3ZqrytstUDYQrNwjaFoqlUtdOmb1dhzxEA8apD-t9m7QlDHdDKeRhsmqgNFKfkyjj39MCxl8E5WKvoQcbcp60=s250", + "image_medium_url": "https://lh3.googleusercontent.com/SxHUXKM_PNt12R3ZqrytstUDYQrNwjaFoqlUtdOmb1dhzxEA8apD-t9m7QlDHdDKeRhsmqgNFKfkyjj39MCxl8E5WKvoQcbcp60", + "image_large_url": "https://lh3.googleusercontent.com/SxHUXKM_PNt12R3ZqrytstUDYQrNwjaFoqlUtdOmb1dhzxEA8apD-t9m7QlDHdDKeRhsmqgNFKfkyjj39MCxl8E5WKvoQcbcp60=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/SxHUXKM_PNt12R3ZqrytstUDYQrNwjaFoqlUtdOmb1dhzxEA8apD-t9m7QlDHdDKeRhsmqgNFKfkyjj39MCxl8E5WKvoQcbcp60=k-w1200-s2400-rj", + "blurhash": "UCM;tY+~D8-p.5Olr1t9*zt6X-Nx#9:;X-J~", + "predominant_color": "#c36f83" + }, + "image_url": "https://cdn.simplehash.com/assets/73c2ae73bfe1b68667d73dc211fb7f0816d87d71f4aab318ccb57459f88eacf1.png", + "image_properties": { + "width": 2560, + "height": 1440, + "size": 7357326, + "mime_type": "image/png" + }, + "video_url": "https://cdn.simplehash.com/assets/295a48aba461ecf71b4f448895318c227f960f774ecfe5701fab4874c71d0e0f.mp4", + "video_properties": { + "width": null, + "height": null, + "duration": null, + "video_coding": null, + "audio_coding": null, + "size": 45583360, + "mime_type": "video/mp4" + }, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": "https://braindrops.cloud/token/33000137", + "created_date": "2024-04-25T17:30:35", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-04-25T17:30:35", + "last_acquired_date": "2024-04-25T17:30:35" + } + ], + "contract": { + "type": "ERC721", + "name": "BrainDrops", + "symbol": "BRAIN", + "deployed_by": "0x314ADC3d43b1DD7b40Bb8B51E38A576CBb5A7b4E", + "deployed_via_contract": null, + "owned_by": "0x31c253dE07308f77d0769388fb959B7CB7e38d8d", + "has_multiple_collections": true + }, + "collection": { + "collection_id": "057fb2701c8c0d67ed7b5173cf2f0b6d", + "name": "Memories of an Exhibition by Benjamin Bardou", + "description": null, + "image_url": "https://lh3.googleusercontent.com/-vxHoGbNrLPVu09OZLMgfIvBhg73J9ng3XmMqZoKkhu5mqWjgtJwjM-pOdYv-Yqb_ROKrd1PzSL724UKMy_6dqFSFtLsBM5pSGI", + "image_properties": { + "width": 512, + "height": 288, + "mime_type": "image/png" + }, + "banner_image_url": null, + "category": null, + "is_nsfw": false, + "external_url": "https://braindrops.cloud/", + "twitter_username": null, + "discord_url": null, + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0xdfde78d2baec499fe18f2be74b6c287eed9511d7", + "nft_url": "https://magiceden.io/item-details/ethereum/0xdfde78d2baec499fe18f2be74b6c287eed9511d7/33000137", + "collection_url": "https://magiceden.io/collections/ethereum/0xdfde78d2baec499fe18f2be74b6c287eed9511d7", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "memories-of-an-exhibition-by-benjamin-bardou", + "nft_url": "https://opensea.io/assets/ethereum/0xdfde78d2baec499fe18f2be74b6c287eed9511d7/33000137", + "collection_url": "https://opensea.io/collection/memories-of-an-exhibition-by-benjamin-bardou", + "verified": false + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "blur", + "marketplace_name": "Blur", + "value": 23799800000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 8205 + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 79000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 27235 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 40000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 13790 + }, + { + "marketplace_id": "blur", + "marketplace_name": "Blur", + "value": 10000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 3447 + } + ], + "distinct_owner_count": 143, + "distinct_nft_count": 296, + "total_quantity": 296, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0xdfde78d2baec499fe18f2be74b6c287eed9511d7"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0x31c253dE07308f77d0769388fb959B7CB7e38d8d", + "percentage": 100.0, + "basis_points": 750 + } + ] + } + ] + }, + "last_sale": { + "from_address": null, + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-04-25T17:30:35", + "transaction": "0xe322637c5ff1c3e8754cfa8b3b1bb503623dfc7fd9b42bcda7b9e468a404ab40", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 100000000000000000, + "total_price": 100000000000000000, + "unit_price_usd_cents": 31541 + }, + "primary_sale": { + "from_address": null, + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-04-25T17:30:35", + "transaction": "0xe322637c5ff1c3e8754cfa8b3b1bb503623dfc7fd9b42bcda7b9e468a404ab40", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 100000000000000000, + "total_price": 100000000000000000, + "unit_price_usd_cents": 31541 + }, + "first_created": { + "minted_to": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-04-25T17:30:35", + "block_number": 19733883, + "transaction": "0xe322637c5ff1c3e8754cfa8b3b1bb503623dfc7fd9b42bcda7b9e468a404ab40", + "transaction_initiator": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7" + }, + "rarity": { + "rank": 110, + "score": 1.038, + "unique_attributes": 1 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0x31c253dE07308f77d0769388fb959B7CB7e38d8d", + "percentage": 100.0, + "basis_points": 750 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "Painter", + "value": "Henri Matisse", + "display_type": null + }, + { + "trait_type": "Title", + "value": "Cut-Outs' Chromatic Joy", + "display_type": null + }, + { + "trait_type": "Soundtrack", + "value": "Spectrum of Stories", + "display_type": null + }, + { + "trait_type": "Sets of Brushes", + "value": "6", + "display_type": null + }, + { + "trait_type": "Turbulence Fields", + "value": "1,75", + "display_type": null + }, + { + "trait_type": "Intervals", + "value": "6", + "display_type": null + }, + { + "trait_type": "Speed", + "value": "0,4", + "display_type": null + }, + { + "trait_type": "Flashes", + "value": "No", + "display_type": null + }, + { + "trait_type": "Collection Name", + "value": "Memories of an Exhibition", + "display_type": null + }, + { + "trait_type": "Artist", + "value": "Benjamin Bardou", + "display_type": null + }, + { + "trait_type": "Format", + "value": "mp4", + "display_type": null + } + ], + "artist_website": "https://benjaminbardou.com/", + "platform": "Braindrops", + "artistRoyaltyInfo": { + "artistAddress": "0x21a5f5f30692D6CA611E201fFb7f85c9674099bA", + "artistPercentage": "5", + "additionalPayee": "0x31c253dE07308f77d0769388fb959B7CB7e38d8d", + "additionalPayeePercentage": "2.5" + }, + "image_original_url": "ipfs://QmQb1yfGKgw3ExaypBpb39Z6pAtMQiKnjFTAJxFRLt5kXV", + "animation_original_url": "ipfs://QmSBvNbLuGPFwX1Rx3JSkPrAuKTW7DakS4H2ZNRTPG9nYC", + "metadata_original_url": "ipfs://QmTqZQTbGpmu5Tnsi51ZH6GraRVPvzyZQAGKSbjfjhudoK/33000137" + } + }, + { + "nft_id": "ethereum.0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270.225000979", + "chain": "ethereum", + "contract_address": "0xa7d8d9ef8D8Ce8992Df33D8b8CF4Aebabd5bD270", + "token_id": "225000979", + "name": "Vortex #979", + "description": "The phenomena of the spiral is located throughout the natural world, found in everything from nautili and galaxies, to fractals and sacred geometries. Much like the gravitational pull of patterns in the universe, Jen Stark's series of generative vortexes pays homage to the intricate systems present in our daily lives. \n\nDrawing upon the aesthetic practice of her signature paper sculptures, Stark's hand-cut techniques are translated to adapt and evolve within the digital realm through code, brought to life through harmonic sine waves.\n\nClick and drag to interact with these sculptural tunnels.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/jzwT5MCzBgbzUJXdSL3sB3ui4V5iAE_GIUdXaQhD9vus65dJgoewQbJkB9fQJCKA4O1vfjIHtSqWzxLE5jPKGdbnJbTBrLHpIg=s250", + "image_medium_url": "https://lh3.googleusercontent.com/jzwT5MCzBgbzUJXdSL3sB3ui4V5iAE_GIUdXaQhD9vus65dJgoewQbJkB9fQJCKA4O1vfjIHtSqWzxLE5jPKGdbnJbTBrLHpIg", + "image_large_url": "https://lh3.googleusercontent.com/jzwT5MCzBgbzUJXdSL3sB3ui4V5iAE_GIUdXaQhD9vus65dJgoewQbJkB9fQJCKA4O1vfjIHtSqWzxLE5jPKGdbnJbTBrLHpIg=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/jzwT5MCzBgbzUJXdSL3sB3ui4V5iAE_GIUdXaQhD9vus65dJgoewQbJkB9fQJCKA4O1vfjIHtSqWzxLE5jPKGdbnJbTBrLHpIg=k-w1200-s2400-rj", + "blurhash": "UJ8kJMR;u2bbUdf6pHfkkpj?VtjZpufkVtf6", + "predominant_color": "#2cc5b1" + }, + "image_url": "https://cdn.simplehash.com/assets/94712a5bd3d697019bd6dd758bd7ac3027c4812bf8730b3d774e0c79a71b8c18.gif", + "image_properties": { + "width": 256, + "height": 256, + "size": 3121672, + "mime_type": "image/gif" + }, + "video_url": null, + "video_properties": null, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": "https://artblocks.io/collections/curated/projects/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225/tokens/225000979", + "created_date": "2021-12-13T18:37:35", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-04-18T03:57:47", + "last_acquired_date": "2024-04-18T03:57:47" + } + ], + "contract": { + "type": "ERC721", + "name": "Art Blocks", + "symbol": "BLOCKS", + "deployed_by": "0x96dC73c8B5969608C77375F085949744b5177660", + "deployed_via_contract": null, + "owned_by": null, + "has_multiple_collections": true + }, + "collection": { + "collection_id": "d03f02b142e2c9fdd472b1e8992dc59e", + "name": "Vortex by Jen Stark", + "description": "Art Blocks Collection: Curated\n\nHeritage Art Blocks Collection: Curated series 5\n\nProject Description: The phenomena of the spiral is located throughout the natural world, found in everything from nautili and galaxies, to fractals and sacred geometries. Much like the gravitational pull of patterns in the universe, Jen Stark's series of generative vortexes pays homage to the intricate systems present in our daily lives. \n\nDrawing upon the aesthetic practice of her signature paper sculptures, Stark's hand-cut techniques are translated to adapt and evolve within the digital realm through code, brought to life through harmonic sine waves.\n\nClick and drag to interact with these sculptural tunnels.", + "image_url": "https://lh3.googleusercontent.com/MEnZtsfq-JkF_7rAOusj4rfnCRub23WYDqj4WUe29K0MJNYbOO_FpG-SXp5GKywPvxuEVsseZh53o2DRCg5HN2UuwCJkwGCwiyk", + "image_properties": { + "width": 512, + "height": 512, + "mime_type": "image/png" + }, + "banner_image_url": "https://lh3.googleusercontent.com/LHt7W9lt6cqq8nJdkiT507Ik-rdTf_wWGpE-b_MEj1XfpnS2_ynw6BtdmeKYkjdV_uJFGRIb3kLbXKidgkMj8FUI7y4Q4D9fqA=w2500", + "category": "art", + "is_nsfw": false, + "external_url": "https://artblocks.io", + "twitter_username": null, + "discord_url": null, + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270", + "nft_url": "https://magiceden.io/item-details/ethereum/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000979", + "collection_url": "https://magiceden.io/collections/ethereum/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "vortex-by-jen-stark", + "nft_url": "https://opensea.io/assets/ethereum/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000979", + "collection_url": "https://opensea.io/collection/vortex-by-jen-stark", + "verified": true + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 190000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 65502 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 90000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 31027 + } + ], + "distinct_owner_count": 610, + "distinct_nft_count": 1000, + "total_quantity": 1000, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0xB16525385824E8cf877be513386e75d875043Ffd", + "percentage": 66.7, + "basis_points": 500 + }, + { + "address": "0x6C093Fe8bc59e1e0cAe2Ec10F0B717D3D182056B", + "percentage": 33.3, + "basis_points": 250 + } + ] + } + ] + }, + "last_sale": { + "from_address": "0xB684aFe21D28dc6bF235Ca7c7DA3c21df19B3bCd", + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-04-18T03:57:47", + "transaction": "0x0cff87a4a2b39acfee0623221b59af200ae284a5bf4864eb413eae035af05cb0", + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "name": "Wrapped Ether", + "symbol": "WETH", + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "decimals": 18 + }, + "unit_price": 160000000000000000, + "total_price": 160000000000000000, + "unit_price_usd_cents": 48449 + }, + "primary_sale": { + "from_address": null, + "to_address": "0xdA247D65101d38F1b396C22bA4D05BE3703d369d", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2021-12-13T18:37:35", + "transaction": "0xdd33358dca5ef31e6e3612b8e161a50e60a671e4a3365700178214a29d537dcf", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 750000000000000000, + "total_price": 750000000000000000, + "unit_price_usd_cents": 300179 + }, + "first_created": { + "minted_to": "0xdA247D65101d38F1b396C22bA4D05BE3703d369d", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2021-12-13T18:37:35", + "block_number": 13798534, + "transaction": "0xdd33358dca5ef31e6e3612b8e161a50e60a671e4a3365700178214a29d537dcf", + "transaction_initiator": "0xdA247D65101d38F1b396C22bA4D05BE3703d369d" + }, + "rarity": { + "rank": 450, + "score": 0.879, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0xB16525385824E8cf877be513386e75d875043Ffd", + "percentage": 66.7, + "basis_points": 500 + }, + { + "address": "0x6C093Fe8bc59e1e0cAe2Ec10F0B717D3D182056B", + "percentage": 33.3, + "basis_points": 250 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "Vortex", + "value": "All Vortexs", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Shader Type: Normal", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Vortex Name: Unstable Circle", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Palette Name: In Between Yellow", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Palette Type: Cycle", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Tunnel Light: Dark", + "display_type": null + } + ], + "platform": "Art Blocks Curated", + "tokenID": "225000979", + "series": 5, + "aspect_ratio": 1, + "payout_address": "0x6C093Fe8bc59e1e0cAe2Ec10F0B717D3D182056B", + "minted": true, + "artist": "Jen Stark", + "script_type": "three@0.124.0", + "project_id": "225", + "curation_status": "curated", + "heritage_curation_status": "curated series 5", + "preview_asset_url": "https://media-proxy.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000979.gif", + "generator_url": "https://generator.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000979", + "royaltyInfo": { + "artistAddress": "0xb16525385824e8cf877be513386e75d875043ffd", + "additionalPayee": "0x708dcd64fed06181be592ffc0b6cdc87ae092407", + "additionalPayeePercentage": "0", + "royaltyFeeByID": 5 + }, + "collection_name": "Vortex by Jen Stark", + "token_hash": "0xc76659ed100185e182dc7aa14313aeb96c9472a410bba3cb8c593f902aa973d4", + "primary_asset_url": "https://generator.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000979", + "features": { + "Shader Type": "Normal", + "Vortex Name": "Unstable Circle", + "Palette Name": "In Between Yellow", + "Palette Type": "Cycle", + "Tunnel Light": "Dark", + "Vortex Layers": 38 + }, + "traits": [ + { + "trait_type": "Vortex", + "value": "All Vortexs" + }, + { + "trait_type": "Vortex", + "value": "Shader Type: Normal" + }, + { + "trait_type": "Vortex", + "value": "Vortex Name: Unstable Circle" + }, + { + "trait_type": "Vortex", + "value": "Palette Name: In Between Yellow" + }, + { + "trait_type": "Vortex", + "value": "Palette Type: Cycle" + }, + { + "trait_type": "Vortex", + "value": "Tunnel Light: Dark" + } + ], + "is_static": false, + "license": "CC BY-NC-ND 4.0", + "image_original_url": "https://media-proxy.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000979.gif", + "animation_original_url": "https://generator.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000979", + "metadata_original_url": "https://api.artblocks.io/token/225000979" + } + }, + { + "nft_id": "ethereum.0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270.225000800", + "chain": "ethereum", + "contract_address": "0xa7d8d9ef8D8Ce8992Df33D8b8CF4Aebabd5bD270", + "token_id": "225000800", + "name": "Vortex #800", + "description": "The phenomena of the spiral is located throughout the natural world, found in everything from nautili and galaxies, to fractals and sacred geometries. Much like the gravitational pull of patterns in the universe, Jen Stark's series of generative vortexes pays homage to the intricate systems present in our daily lives. \n\nDrawing upon the aesthetic practice of her signature paper sculptures, Stark's hand-cut techniques are translated to adapt and evolve within the digital realm through code, brought to life through harmonic sine waves.\n\nClick and drag to interact with these sculptural tunnels.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/q0I6Mwxb2udvV-k1Sz5y6nAVXUETszxPPBuE1W0Ude6FkuPd39sAIQkLwevFVL26wdKaZR9MsJI_Sl16hIWPjyCBLcPmSVgxc9M=s250", + "image_medium_url": "https://lh3.googleusercontent.com/q0I6Mwxb2udvV-k1Sz5y6nAVXUETszxPPBuE1W0Ude6FkuPd39sAIQkLwevFVL26wdKaZR9MsJI_Sl16hIWPjyCBLcPmSVgxc9M", + "image_large_url": "https://lh3.googleusercontent.com/q0I6Mwxb2udvV-k1Sz5y6nAVXUETszxPPBuE1W0Ude6FkuPd39sAIQkLwevFVL26wdKaZR9MsJI_Sl16hIWPjyCBLcPmSVgxc9M=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/q0I6Mwxb2udvV-k1Sz5y6nAVXUETszxPPBuE1W0Ude6FkuPd39sAIQkLwevFVL26wdKaZR9MsJI_Sl16hIWPjyCBLcPmSVgxc9M=k-w1200-s2400-rj", + "blurhash": "UGE2|kWT,Ls=9EWUxuof^noNKDbXcCoMnAae", + "predominant_color": "#c971a5" + }, + "image_url": "https://cdn.simplehash.com/assets/9438396569adde3e208c9fa3c1eaeeb1613083b906659d6700c34ac02b32fbb5.gif", + "image_properties": { + "width": 256, + "height": 256, + "size": 5031060, + "mime_type": "image/gif" + }, + "video_url": null, + "video_properties": null, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": "https://artblocks.io/collections/curated/projects/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225/tokens/225000800", + "created_date": "2021-12-13T18:36:45", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-03-26T10:15:35", + "last_acquired_date": "2024-03-26T10:15:35" + } + ], + "contract": { + "type": "ERC721", + "name": "Art Blocks", + "symbol": "BLOCKS", + "deployed_by": "0x96dC73c8B5969608C77375F085949744b5177660", + "deployed_via_contract": null, + "owned_by": null, + "has_multiple_collections": true + }, + "collection": { + "collection_id": "d03f02b142e2c9fdd472b1e8992dc59e", + "name": "Vortex by Jen Stark", + "description": "Art Blocks Collection: Curated\n\nHeritage Art Blocks Collection: Curated series 5\n\nProject Description: The phenomena of the spiral is located throughout the natural world, found in everything from nautili and galaxies, to fractals and sacred geometries. Much like the gravitational pull of patterns in the universe, Jen Stark's series of generative vortexes pays homage to the intricate systems present in our daily lives. \n\nDrawing upon the aesthetic practice of her signature paper sculptures, Stark's hand-cut techniques are translated to adapt and evolve within the digital realm through code, brought to life through harmonic sine waves.\n\nClick and drag to interact with these sculptural tunnels.", + "image_url": "https://lh3.googleusercontent.com/MEnZtsfq-JkF_7rAOusj4rfnCRub23WYDqj4WUe29K0MJNYbOO_FpG-SXp5GKywPvxuEVsseZh53o2DRCg5HN2UuwCJkwGCwiyk", + "image_properties": { + "width": 512, + "height": 512, + "mime_type": "image/png" + }, + "banner_image_url": "https://lh3.googleusercontent.com/LHt7W9lt6cqq8nJdkiT507Ik-rdTf_wWGpE-b_MEj1XfpnS2_ynw6BtdmeKYkjdV_uJFGRIb3kLbXKidgkMj8FUI7y4Q4D9fqA=w2500", + "category": "art", + "is_nsfw": false, + "external_url": "https://artblocks.io", + "twitter_username": null, + "discord_url": null, + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270", + "nft_url": "https://magiceden.io/item-details/ethereum/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000800", + "collection_url": "https://magiceden.io/collections/ethereum/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "vortex-by-jen-stark", + "nft_url": "https://opensea.io/assets/ethereum/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000800", + "collection_url": "https://opensea.io/collection/vortex-by-jen-stark", + "verified": true + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 190000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 65502 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 90000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 31027 + } + ], + "distinct_owner_count": 610, + "distinct_nft_count": 1000, + "total_quantity": 1000, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0xB16525385824E8cf877be513386e75d875043Ffd", + "percentage": 66.7, + "basis_points": 500 + }, + { + "address": "0x6C093Fe8bc59e1e0cAe2Ec10F0B717D3D182056B", + "percentage": 33.3, + "basis_points": 250 + } + ] + } + ] + }, + "last_sale": { + "from_address": "0x454e8e59a9024b00D317550e02aCF552b828c88b", + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-03-26T10:15:35", + "transaction": "0x3048b8a6b22ba7de05647cd34a148f1adab3631fd0cb0cf4a1505aaf75ce2842", + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 189900000000000000, + "total_price": 189900000000000000, + "unit_price_usd_cents": 69684 + }, + "primary_sale": { + "from_address": null, + "to_address": "0xB386F917b41Ec60E4ba74B6B2be302AED53556d4", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2021-12-13T18:36:45", + "transaction": "0x74baee30d221a995a6abccd7d34ee33d7dfaba1edcf3e2724f976d4e3e348266", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 750000000000000000, + "total_price": 750000000000000000, + "unit_price_usd_cents": 300179 + }, + "first_created": { + "minted_to": "0xB386F917b41Ec60E4ba74B6B2be302AED53556d4", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2021-12-13T18:36:45", + "block_number": 13798531, + "transaction": "0x74baee30d221a995a6abccd7d34ee33d7dfaba1edcf3e2724f976d4e3e348266", + "transaction_initiator": "0xB386F917b41Ec60E4ba74B6B2be302AED53556d4" + }, + "rarity": { + "rank": 34, + "score": 1.826, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0xB16525385824E8cf877be513386e75d875043Ffd", + "percentage": 66.7, + "basis_points": 500 + }, + { + "address": "0x6C093Fe8bc59e1e0cAe2Ec10F0B717D3D182056B", + "percentage": 33.3, + "basis_points": 250 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "Vortex", + "value": "All Vortexs", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Shader Type: Normal", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Vortex Name: Sunken Drips", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Palette Name: Double Bond", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Palette Type: Cycle", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Tunnel Light: Dark", + "display_type": null + } + ], + "platform": "Art Blocks Curated", + "tokenID": "225000800", + "series": 5, + "aspect_ratio": 1, + "payout_address": "0x6C093Fe8bc59e1e0cAe2Ec10F0B717D3D182056B", + "minted": true, + "artist": "Jen Stark", + "script_type": "three@0.124.0", + "project_id": "225", + "curation_status": "curated", + "heritage_curation_status": "curated series 5", + "preview_asset_url": "https://media-proxy.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000800.gif", + "generator_url": "https://generator.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000800", + "royaltyInfo": { + "artistAddress": "0xb16525385824e8cf877be513386e75d875043ffd", + "additionalPayee": "0x708dcd64fed06181be592ffc0b6cdc87ae092407", + "additionalPayeePercentage": "0", + "royaltyFeeByID": 5 + }, + "collection_name": "Vortex by Jen Stark", + "token_hash": "0x8aa6dd13f67a5926c2bc81f956f72a54114dac21a474d033de753068c73e4710", + "primary_asset_url": "https://generator.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000800", + "features": { + "Shader Type": "Normal", + "Vortex Name": "Sunken Drips", + "Palette Name": "Double Bond", + "Palette Type": "Cycle", + "Tunnel Light": "Dark", + "Vortex Layers": 49 + }, + "traits": [ + { + "trait_type": "Vortex", + "value": "All Vortexs" + }, + { + "trait_type": "Vortex", + "value": "Shader Type: Normal" + }, + { + "trait_type": "Vortex", + "value": "Vortex Name: Sunken Drips" + }, + { + "trait_type": "Vortex", + "value": "Palette Name: Double Bond" + }, + { + "trait_type": "Vortex", + "value": "Palette Type: Cycle" + }, + { + "trait_type": "Vortex", + "value": "Tunnel Light: Dark" + } + ], + "is_static": false, + "license": "CC BY-NC-ND 4.0", + "image_original_url": "https://media-proxy.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000800.gif", + "animation_original_url": "https://generator.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000800", + "metadata_original_url": "https://api.artblocks.io/token/225000800" + } + }, + { + "nft_id": "ethereum.0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270.225000331", + "chain": "ethereum", + "contract_address": "0xa7d8d9ef8D8Ce8992Df33D8b8CF4Aebabd5bD270", + "token_id": "225000331", + "name": "Vortex #331", + "description": "The phenomena of the spiral is located throughout the natural world, found in everything from nautili and galaxies, to fractals and sacred geometries. Much like the gravitational pull of patterns in the universe, Jen Stark's series of generative vortexes pays homage to the intricate systems present in our daily lives. \n\nDrawing upon the aesthetic practice of her signature paper sculptures, Stark's hand-cut techniques are translated to adapt and evolve within the digital realm through code, brought to life through harmonic sine waves.\n\nClick and drag to interact with these sculptural tunnels.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/x7e_kVBwpk8MwAc7OqUNDSlPO1f-rimPbKqsy66YdbA9n0b_09lF1J10vbtxeD4mBU4ORyYFkHZQgTfgEYTAWVm8wP-9t3fyjA=s250", + "image_medium_url": "https://lh3.googleusercontent.com/x7e_kVBwpk8MwAc7OqUNDSlPO1f-rimPbKqsy66YdbA9n0b_09lF1J10vbtxeD4mBU4ORyYFkHZQgTfgEYTAWVm8wP-9t3fyjA", + "image_large_url": "https://lh3.googleusercontent.com/x7e_kVBwpk8MwAc7OqUNDSlPO1f-rimPbKqsy66YdbA9n0b_09lF1J10vbtxeD4mBU4ORyYFkHZQgTfgEYTAWVm8wP-9t3fyjA=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/x7e_kVBwpk8MwAc7OqUNDSlPO1f-rimPbKqsy66YdbA9n0b_09lF1J10vbtxeD4mBU4ORyYFkHZQgTfgEYTAWVm8wP-9t3fyjA=k-w1200-s2400-rj", + "blurhash": "UCE.U~_0?Wx?0]D%RFE1;WITXAITrMR6rb%L", + "predominant_color": "#3a4029" + }, + "image_url": "https://cdn.simplehash.com/assets/18b5bafc5586e2c2ccc3fd608811c055226ceea2c11e936a7055db514ca78c29.gif", + "image_properties": { + "width": 256, + "height": 256, + "size": 3396541, + "mime_type": "image/gif" + }, + "video_url": null, + "video_properties": null, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": "https://artblocks.io/collections/curated/projects/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225/tokens/225000331", + "created_date": "2021-12-13T18:35:35", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-03-26T10:12:35", + "last_acquired_date": "2024-03-26T10:12:35" + } + ], + "contract": { + "type": "ERC721", + "name": "Art Blocks", + "symbol": "BLOCKS", + "deployed_by": "0x96dC73c8B5969608C77375F085949744b5177660", + "deployed_via_contract": null, + "owned_by": null, + "has_multiple_collections": true + }, + "collection": { + "collection_id": "d03f02b142e2c9fdd472b1e8992dc59e", + "name": "Vortex by Jen Stark", + "description": "Art Blocks Collection: Curated\n\nHeritage Art Blocks Collection: Curated series 5\n\nProject Description: The phenomena of the spiral is located throughout the natural world, found in everything from nautili and galaxies, to fractals and sacred geometries. Much like the gravitational pull of patterns in the universe, Jen Stark's series of generative vortexes pays homage to the intricate systems present in our daily lives. \n\nDrawing upon the aesthetic practice of her signature paper sculptures, Stark's hand-cut techniques are translated to adapt and evolve within the digital realm through code, brought to life through harmonic sine waves.\n\nClick and drag to interact with these sculptural tunnels.", + "image_url": "https://lh3.googleusercontent.com/MEnZtsfq-JkF_7rAOusj4rfnCRub23WYDqj4WUe29K0MJNYbOO_FpG-SXp5GKywPvxuEVsseZh53o2DRCg5HN2UuwCJkwGCwiyk", + "image_properties": { + "width": 512, + "height": 512, + "mime_type": "image/png" + }, + "banner_image_url": "https://lh3.googleusercontent.com/LHt7W9lt6cqq8nJdkiT507Ik-rdTf_wWGpE-b_MEj1XfpnS2_ynw6BtdmeKYkjdV_uJFGRIb3kLbXKidgkMj8FUI7y4Q4D9fqA=w2500", + "category": "art", + "is_nsfw": false, + "external_url": "https://artblocks.io", + "twitter_username": null, + "discord_url": null, + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270", + "nft_url": "https://magiceden.io/item-details/ethereum/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000331", + "collection_url": "https://magiceden.io/collections/ethereum/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "vortex-by-jen-stark", + "nft_url": "https://opensea.io/assets/ethereum/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000331", + "collection_url": "https://opensea.io/collection/vortex-by-jen-stark", + "verified": true + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 190000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 65502 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 90000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 31027 + } + ], + "distinct_owner_count": 610, + "distinct_nft_count": 1000, + "total_quantity": 1000, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0xB16525385824E8cf877be513386e75d875043Ffd", + "percentage": 66.7, + "basis_points": 500 + }, + { + "address": "0x6C093Fe8bc59e1e0cAe2Ec10F0B717D3D182056B", + "percentage": 33.3, + "basis_points": 250 + } + ] + } + ] + }, + "last_sale": { + "from_address": "0x53562e8eCeE54356dc89Ad263A444528B34D6c80", + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-03-26T10:12:35", + "transaction": "0x28049232dd0d51f686800181c78f467da0e601a61c73635a2eeb2b4e136fab83", + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 170000000000000000, + "total_price": 170000000000000000, + "unit_price_usd_cents": 62382 + }, + "primary_sale": { + "from_address": null, + "to_address": "0x58e0721bEfa6074BEB42798300bdB31478583899", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2021-12-13T18:35:35", + "transaction": "0xa3e1566ac974fd19740df6496fa77689ce8ae88a2067e2e79d3155bf20bb9ef5", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 750000000000000000, + "total_price": 750000000000000000, + "unit_price_usd_cents": 300179 + }, + "first_created": { + "minted_to": "0x58e0721bEfa6074BEB42798300bdB31478583899", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2021-12-13T18:35:35", + "block_number": 13798525, + "transaction": "0xa3e1566ac974fd19740df6496fa77689ce8ae88a2067e2e79d3155bf20bb9ef5", + "transaction_initiator": "0x58e0721bEfa6074BEB42798300bdB31478583899" + }, + "rarity": { + "rank": 658, + "score": 0.576, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0xB16525385824E8cf877be513386e75d875043Ffd", + "percentage": 66.7, + "basis_points": 500 + }, + { + "address": "0x6C093Fe8bc59e1e0cAe2Ec10F0B717D3D182056B", + "percentage": 33.3, + "basis_points": 250 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "Vortex", + "value": "All Vortexs", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Shader Type: Normal", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Vortex Name: Sharp Twist", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Palette Name: Chroma Progression", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Palette Type: Still", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Tunnel Light: Dark", + "display_type": null + } + ], + "platform": "Art Blocks Curated", + "tokenID": "225000331", + "series": 5, + "aspect_ratio": 1, + "payout_address": "0x6C093Fe8bc59e1e0cAe2Ec10F0B717D3D182056B", + "minted": true, + "artist": "Jen Stark", + "script_type": "three@0.124.0", + "project_id": "225", + "curation_status": "curated", + "heritage_curation_status": "curated series 5", + "preview_asset_url": "https://media-proxy.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000331.gif", + "generator_url": "https://generator.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000331", + "royaltyInfo": { + "artistAddress": "0xb16525385824e8cf877be513386e75d875043ffd", + "additionalPayee": "0x708dcd64fed06181be592ffc0b6cdc87ae092407", + "additionalPayeePercentage": "0", + "royaltyFeeByID": 5 + }, + "collection_name": "Vortex by Jen Stark", + "token_hash": "0x2e1d549e312b44e147b78913d4e0af6a8d2921a192d08de50ef64aca50a852b4", + "primary_asset_url": "https://generator.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000331", + "features": { + "Shader Type": "Normal", + "Vortex Name": "Sharp Twist", + "Palette Name": "Chroma Progression", + "Palette Type": "Still", + "Tunnel Light": "Dark", + "Vortex Layers": 32 + }, + "traits": [ + { + "trait_type": "Vortex", + "value": "All Vortexs" + }, + { + "trait_type": "Vortex", + "value": "Shader Type: Normal" + }, + { + "trait_type": "Vortex", + "value": "Vortex Name: Sharp Twist" + }, + { + "trait_type": "Vortex", + "value": "Palette Name: Chroma Progression" + }, + { + "trait_type": "Vortex", + "value": "Palette Type: Still" + }, + { + "trait_type": "Vortex", + "value": "Tunnel Light: Dark" + } + ], + "is_static": false, + "license": "CC BY-NC-ND 4.0", + "image_original_url": "https://media-proxy.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000331.gif", + "animation_original_url": "https://generator.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000331", + "metadata_original_url": "https://api.artblocks.io/token/225000331" + } + }, + { + "nft_id": "ethereum.0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270.225000258", + "chain": "ethereum", + "contract_address": "0xa7d8d9ef8D8Ce8992Df33D8b8CF4Aebabd5bD270", + "token_id": "225000258", + "name": "Vortex #258", + "description": "The phenomena of the spiral is located throughout the natural world, found in everything from nautili and galaxies, to fractals and sacred geometries. Much like the gravitational pull of patterns in the universe, Jen Stark's series of generative vortexes pays homage to the intricate systems present in our daily lives. \n\nDrawing upon the aesthetic practice of her signature paper sculptures, Stark's hand-cut techniques are translated to adapt and evolve within the digital realm through code, brought to life through harmonic sine waves.\n\nClick and drag to interact with these sculptural tunnels.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/PyxL2Obm3K1JPlQeCYlhFmrxGH8_VZLEIeXmJ2bM2ZnV7MXioro7kCAal1LcBLmxsX_6uW6mcvqTdRGVlm2ToASN4DyqkIrfCHY=s250", + "image_medium_url": "https://lh3.googleusercontent.com/PyxL2Obm3K1JPlQeCYlhFmrxGH8_VZLEIeXmJ2bM2ZnV7MXioro7kCAal1LcBLmxsX_6uW6mcvqTdRGVlm2ToASN4DyqkIrfCHY", + "image_large_url": "https://lh3.googleusercontent.com/PyxL2Obm3K1JPlQeCYlhFmrxGH8_VZLEIeXmJ2bM2ZnV7MXioro7kCAal1LcBLmxsX_6uW6mcvqTdRGVlm2ToASN4DyqkIrfCHY=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/PyxL2Obm3K1JPlQeCYlhFmrxGH8_VZLEIeXmJ2bM2ZnV7MXioro7kCAal1LcBLmxsX_6uW6mcvqTdRGVlm2ToASN4DyqkIrfCHY=k-w1200-s2400-rj", + "blurhash": "UQKl+aEz-TKc2oNIxGSxrtX7odw{t5SxRBt5", + "predominant_color": "#c59524" + }, + "image_url": "https://cdn.simplehash.com/assets/aad2c5a95291e2ff7178564f3da3b406df68230026f3c2152d114153ac0fedff.gif", + "image_properties": { + "width": 256, + "height": 256, + "size": 2624830, + "mime_type": "image/gif" + }, + "video_url": null, + "video_properties": null, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": "https://artblocks.io/collections/curated/projects/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225/tokens/225000258", + "created_date": "2021-12-13T18:35:25", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-03-23T23:19:59", + "last_acquired_date": "2024-03-23T23:19:59" + } + ], + "contract": { + "type": "ERC721", + "name": "Art Blocks", + "symbol": "BLOCKS", + "deployed_by": "0x96dC73c8B5969608C77375F085949744b5177660", + "deployed_via_contract": null, + "owned_by": null, + "has_multiple_collections": true + }, + "collection": { + "collection_id": "d03f02b142e2c9fdd472b1e8992dc59e", + "name": "Vortex by Jen Stark", + "description": "Art Blocks Collection: Curated\n\nHeritage Art Blocks Collection: Curated series 5\n\nProject Description: The phenomena of the spiral is located throughout the natural world, found in everything from nautili and galaxies, to fractals and sacred geometries. Much like the gravitational pull of patterns in the universe, Jen Stark's series of generative vortexes pays homage to the intricate systems present in our daily lives. \n\nDrawing upon the aesthetic practice of her signature paper sculptures, Stark's hand-cut techniques are translated to adapt and evolve within the digital realm through code, brought to life through harmonic sine waves.\n\nClick and drag to interact with these sculptural tunnels.", + "image_url": "https://lh3.googleusercontent.com/MEnZtsfq-JkF_7rAOusj4rfnCRub23WYDqj4WUe29K0MJNYbOO_FpG-SXp5GKywPvxuEVsseZh53o2DRCg5HN2UuwCJkwGCwiyk", + "image_properties": { + "width": 512, + "height": 512, + "mime_type": "image/png" + }, + "banner_image_url": "https://lh3.googleusercontent.com/LHt7W9lt6cqq8nJdkiT507Ik-rdTf_wWGpE-b_MEj1XfpnS2_ynw6BtdmeKYkjdV_uJFGRIb3kLbXKidgkMj8FUI7y4Q4D9fqA=w2500", + "category": "art", + "is_nsfw": false, + "external_url": "https://artblocks.io", + "twitter_username": null, + "discord_url": null, + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270", + "nft_url": "https://magiceden.io/item-details/ethereum/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000258", + "collection_url": "https://magiceden.io/collections/ethereum/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "vortex-by-jen-stark", + "nft_url": "https://opensea.io/assets/ethereum/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000258", + "collection_url": "https://opensea.io/collection/vortex-by-jen-stark", + "verified": true + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 190000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 65502 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 90000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 31027 + } + ], + "distinct_owner_count": 610, + "distinct_nft_count": 1000, + "total_quantity": 1000, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0xB16525385824E8cf877be513386e75d875043Ffd", + "percentage": 66.7, + "basis_points": 500 + }, + { + "address": "0x6C093Fe8bc59e1e0cAe2Ec10F0B717D3D182056B", + "percentage": 33.3, + "basis_points": 250 + } + ] + } + ] + }, + "last_sale": { + "from_address": "0xAda6Cbd477311409DF392F869c21f384A2d9D1ff", + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-03-23T23:19:59", + "transaction": "0x70334397bfa338d78d2aaa4f0055000caef81388abda5c7467f92795495e2cbf", + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2", + "name": "Wrapped Ether", + "symbol": "WETH", + "address": "0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2", + "decimals": 18 + }, + "unit_price": 150000000000000000, + "total_price": 150000000000000000, + "unit_price_usd_cents": 50517 + }, + "primary_sale": { + "from_address": null, + "to_address": "0x95c2937f0565e259b5aFD4269A0Fa221d2d3C5EC", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2021-12-13T18:35:25", + "transaction": "0x2151a07cce5e1bde3c9ffe3200759cc05b20df5124fa115b087acbdb86391e84", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 750000000000000000, + "total_price": 750000000000000000, + "unit_price_usd_cents": 300179 + }, + "first_created": { + "minted_to": "0x95c2937f0565e259b5aFD4269A0Fa221d2d3C5EC", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2021-12-13T18:35:25", + "block_number": 13798524, + "transaction": "0x2151a07cce5e1bde3c9ffe3200759cc05b20df5124fa115b087acbdb86391e84", + "transaction_initiator": "0x95c2937f0565e259b5aFD4269A0Fa221d2d3C5EC" + }, + "rarity": { + "rank": 511, + "score": 0.603, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 750, + "recipients": [ + { + "address": "0xB16525385824E8cf877be513386e75d875043Ffd", + "percentage": 66.7, + "basis_points": 500 + }, + { + "address": "0x6C093Fe8bc59e1e0cAe2Ec10F0B717D3D182056B", + "percentage": 33.3, + "basis_points": 250 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "Vortex", + "value": "All Vortexs", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Shader Type: Normal", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Vortex Name: Lo-Freq Descent", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Palette Name: Red Expansion", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Palette Type: Cycle", + "display_type": null + }, + { + "trait_type": "Vortex", + "value": "Tunnel Light: Dark", + "display_type": null + } + ], + "platform": "Art Blocks Curated", + "tokenID": "225000258", + "series": 5, + "aspect_ratio": 1, + "payout_address": "0x6C093Fe8bc59e1e0cAe2Ec10F0B717D3D182056B", + "minted": true, + "artist": "Jen Stark", + "script_type": "three@0.124.0", + "project_id": "225", + "curation_status": "curated", + "heritage_curation_status": "curated series 5", + "preview_asset_url": "https://media-proxy.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000258.gif", + "generator_url": "https://generator.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000258", + "royaltyInfo": { + "artistAddress": "0xb16525385824e8cf877be513386e75d875043ffd", + "additionalPayee": "0x708dcd64fed06181be592ffc0b6cdc87ae092407", + "additionalPayeePercentage": "0", + "royaltyFeeByID": 5 + }, + "collection_name": "Vortex by Jen Stark", + "token_hash": "0x1b4c344957adb414f1689c002e405d02eef5a82d23cfec3ce1ccd82728c9284d", + "primary_asset_url": "https://generator.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000258", + "features": { + "Shader Type": "Normal", + "Vortex Name": "Lo-Freq Descent", + "Palette Name": "Red Expansion", + "Palette Type": "Cycle", + "Tunnel Light": "Dark", + "Vortex Layers": 90 + }, + "traits": [ + { + "trait_type": "Vortex", + "value": "All Vortexs" + }, + { + "trait_type": "Vortex", + "value": "Shader Type: Normal" + }, + { + "trait_type": "Vortex", + "value": "Vortex Name: Lo-Freq Descent" + }, + { + "trait_type": "Vortex", + "value": "Palette Name: Red Expansion" + }, + { + "trait_type": "Vortex", + "value": "Palette Type: Cycle" + }, + { + "trait_type": "Vortex", + "value": "Tunnel Light: Dark" + } + ], + "is_static": false, + "license": "CC BY-NC-ND 4.0", + "image_original_url": "https://media-proxy.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000258.gif", + "animation_original_url": "https://generator.artblocks.io/0xa7d8d9ef8d8ce8992df33d8b8cf4aebabd5bd270/225000258", + "metadata_original_url": "https://api.artblocks.io/token/225000258" + } + }, + { + "nft_id": "ethereum.0x9d0f5277d19075ec1201ff94a483c5bcee718d20.458", + "chain": "ethereum", + "contract_address": "0x9D0f5277D19075eC1201fF94a483c5bCEe718d20", + "token_id": "458", + "name": "CYPHERDUDE #458", + "description": "Cypherdudes is a generative cryptoart series paying tribute to the Cypherpunk movement, which has been campaigning for the protection of privacy on the internet since the early 90s, and was behind the creation of bitcoin in 2008.This series takes up the graphic universe of a character that I invented and gained some popularity in the crypto art scene : the cryptodude.A personification of crypto culture, the Cypherdude performs actions that visually translate the expressions and behaviors specific to this ecosystem.Each work in the series is unique and generated from an algorithm hosted directly on the blockchain. The parameters composing each work are selected from a wide range of elements created individually by myself and combined in a seeded random way. Each seed is determined by the blockchain on mint.The work and the Message.Each owner of a work from the series has access to a hidden feature : the ability to inscribe an encrypted message in the work itself. The encryption key is decided by the owner on every inscription. This message can then only be decoded by a recipient knowing the key. This way, the work becomes a veritable tool at the service of its owner, who, by using it, makes it evolve visually using a simple steganographic technique.The Cypherdudes thus becomes the visual witness to the presence of a message, and its digital security vault.", + "previews": { + "image_small_url": "https://lh3.googleusercontent.com/mJFZznWoqkgkItZvyaos0dpeoNHHDyGLOgatwXOlsC7vjGriCaKTPChanvXHum1huoNR8yRlLrOGgVJStbdpmpHPi1fRtrdsLlQ=s250", + "image_medium_url": "https://lh3.googleusercontent.com/mJFZznWoqkgkItZvyaos0dpeoNHHDyGLOgatwXOlsC7vjGriCaKTPChanvXHum1huoNR8yRlLrOGgVJStbdpmpHPi1fRtrdsLlQ", + "image_large_url": "https://lh3.googleusercontent.com/mJFZznWoqkgkItZvyaos0dpeoNHHDyGLOgatwXOlsC7vjGriCaKTPChanvXHum1huoNR8yRlLrOGgVJStbdpmpHPi1fRtrdsLlQ=s1000", + "image_opengraph_url": "https://lh3.googleusercontent.com/mJFZznWoqkgkItZvyaos0dpeoNHHDyGLOgatwXOlsC7vjGriCaKTPChanvXHum1huoNR8yRlLrOGgVJStbdpmpHPi1fRtrdsLlQ=k-w1200-s2400-rj", + "blurhash": "U13^T9,oZMX-#qs;S%ISX8rYnUO?Xdr=npkX", + "predominant_color": "#06ac0c" + }, + "image_url": "https://cdn.simplehash.com/assets/b716083230bce064e09e7a9c5dd320b58abfdf9c42b8a554edfbf13d97195b75.svg", + "image_properties": { + "width": 1000, + "height": 1000, + "size": 162471, + "mime_type": "image/svg+xml" + }, + "video_url": null, + "video_properties": null, + "audio_url": null, + "audio_properties": null, + "model_url": null, + "model_properties": null, + "other_url": null, + "other_properties": null, + "background_color": null, + "external_url": "cypherdudes.com", + "created_date": "2024-02-28T08:42:11", + "status": "minted", + "token_count": 1, + "owner_count": 1, + "owners": [ + { + "owner_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "first_acquired_date": "2024-02-28T08:42:11", + "last_acquired_date": "2024-02-28T08:42:11" + } + ], + "contract": { + "type": "ERC721", + "name": "CypherDudes", + "symbol": "CYD", + "deployed_by": "0x54DEd7088B5E303dDd63e15c95F502B4c0c61627", + "deployed_via_contract": null, + "owned_by": "0x54DEd7088B5E303dDd63e15c95F502B4c0c61627", + "has_multiple_collections": false + }, + "collection": { + "collection_id": "c0c928c5781c11ce5f051c492b185797", + "name": "CypherDudes", + "description": "THE CYPHERDUDES\n\nCypherdudes is a generative onchain cryptoart series paying tribute to the Cypherpunk movement.\nThis series takes up the graphic universe of a character that FelixFelixFelix invented : the cryptodude. A personification of crypto culture, the Cypherdude performs actions that visually translate the expressions and behaviors specific to this ecosystem\nThe parameters composing each work are selected from a wide range of elements created individually by FelixFelixFelix and all referencing to the crpto culture.\n\nTHE MESSAGE AND/ON THE WORK\n\nEach owner of a work from the series has access to a hidden feature : the ability to inscribe an encrypted message in the work itself. This operation produces changes in the visual.\nAfter the mint, owners will be able to claim one word as a name for their cypherdude. This word will be picked among the BIP39 word list (the set of words used for seed phrases).\n\nmint live : \nwww.cypherdudes.com", + "image_url": "https://lh3.googleusercontent.com/5kKVABpDYPjl1--7IgWvspniPgQXq__50haREoCx9Hh5ZWB-XqyqGhStwOJj9_70yVvfpa4PN0g5ak_w4Dipwm9t666CbHjm5g", + "image_properties": { + "width": 512, + "height": 512, + "mime_type": "image/png" + }, + "banner_image_url": null, + "category": "art", + "is_nsfw": false, + "external_url": "https://www.cypherdudes.com/", + "twitter_username": "CYPHERDUDES", + "discord_url": null, + "instagram_username": null, + "medium_username": null, + "telegram_url": null, + "marketplace_pages": [ + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "marketplace_collection_id": "ethereum/0x9d0f5277d19075ec1201ff94a483c5bcee718d20", + "nft_url": "https://magiceden.io/item-details/ethereum/0x9d0f5277d19075ec1201ff94a483c5bcee718d20/458", + "collection_url": "https://magiceden.io/collections/ethereum/0x9d0f5277d19075ec1201ff94a483c5bcee718d20", + "verified": null + }, + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "marketplace_collection_id": "cypherdudes", + "nft_url": "https://opensea.io/assets/ethereum/0x9d0f5277d19075ec1201ff94a483c5bcee718d20/458", + "collection_url": "https://opensea.io/collection/cypherdudes", + "verified": false + } + ], + "metaplex_mint": null, + "metaplex_candy_machine": null, + "metaplex_first_verified_creator": null, + "spam_score": 0, + "floor_prices": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 70000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 24132 + }, + { + "marketplace_id": "magiceden", + "marketplace_name": "Magic Eden", + "value": 100000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 34475 + } + ], + "top_bids": [ + { + "marketplace_id": "opensea", + "marketplace_name": "OpenSea", + "value": 20000000000000000, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "value_usd_cents": 6895 + } + ], + "distinct_owner_count": 380, + "distinct_nft_count": 1468, + "total_quantity": 1468, + "chains": ["ethereum"], + "top_contracts": ["ethereum.0x9d0f5277d19075ec1201ff94a483c5bcee718d20"], + "collection_royalties": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0x54DEd7088B5E303dDd63e15c95F502B4c0c61627", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ] + }, + "last_sale": { + "from_address": null, + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-02-28T08:42:11", + "transaction": "0x7ad5fd10e6fe32da81f46ca4d1206dab09a2ca5455e98456650a9db4431390ed", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 31337000000000000, + "total_price": 31337000000000000, + "unit_price_usd_cents": 10350 + }, + "primary_sale": { + "from_address": null, + "to_address": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-02-28T08:42:11", + "transaction": "0x7ad5fd10e6fe32da81f46ca4d1206dab09a2ca5455e98456650a9db4431390ed", + "marketplace_id": "primary_sale", + "marketplace_name": "Primary Sale", + "is_bundle_sale": false, + "payment_token": { + "payment_token_id": "ethereum.native", + "name": "Ether", + "symbol": "ETH", + "address": null, + "decimals": 18 + }, + "unit_price": 31337000000000000, + "total_price": 31337000000000000, + "unit_price_usd_cents": 10350 + }, + "first_created": { + "minted_to": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7", + "quantity": 1, + "quantity_string": "1", + "timestamp": "2024-02-28T08:42:11", + "block_number": 19324911, + "transaction": "0x7ad5fd10e6fe32da81f46ca4d1206dab09a2ca5455e98456650a9db4431390ed", + "transaction_initiator": "0x833eBB4bDa11da33a7F1C907C8171e5995Fe33c7" + }, + "rarity": { + "rank": 1100, + "score": 0.846, + "unique_attributes": 0 + }, + "royalty": [ + { + "source": "opensea", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0x54DEd7088B5E303dDd63e15c95F502B4c0c61627", + "percentage": 100.0, + "basis_points": 500 + } + ] + }, + { + "source": "erc2981", + "total_creator_fee_basis_points": 500, + "recipients": [ + { + "address": "0x54DEd7088B5E303dDd63e15c95F502B4c0c61627", + "percentage": 100.0, + "basis_points": 500 + } + ] + } + ], + "extra_metadata": { + "attributes": [ + { + "trait_type": "Grid Size", + "value": "32", + "display_type": null + }, + { + "trait_type": "Grid Resolution", + "value": "High", + "display_type": null + }, + { + "trait_type": "Level Progression", + "value": "14", + "display_type": null + }, + { + "trait_type": "Action", + "value": "Secret Dude", + "display_type": null + }, + { + "trait_type": "Layer 1", + "value": "Chart", + "display_type": null + }, + { + "trait_type": "Layer 2", + "value": "Press_That_Mint_Button", + "display_type": null + }, + { + "trait_type": "Layer 3", + "value": "none", + "display_type": null + }, + { + "trait_type": "Bit Environment", + "value": "64 bits", + "display_type": null + }, + { + "trait_type": "Bit Palette", + "value": "black, green, green", + "display_type": null + }, + { + "trait_type": "Least Significant Bit", + "value": "01011000 01011001", + "display_type": null + } + ], + "image_original_url": "https://storage.googleapis.com/cypherdudes.appspot.com/458.svg", + "animation_original_url": "https://cdn.simplehash.com/assets/7c54355275c2677fc65bf2270aa889b9d605de8dc145e14a987f545336d7011d.html", + "metadata_original_url": null + } + } + ] +} diff --git a/apps/ledger-live-desktop/tests/handlers/index.ts b/apps/ledger-live-desktop/tests/handlers/index.ts new file mode 100644 index 000000000000..369c16330c8f --- /dev/null +++ b/apps/ledger-live-desktop/tests/handlers/index.ts @@ -0,0 +1,3 @@ +import NFTsHandlers from "./nfts"; + +export default [...NFTsHandlers]; diff --git a/apps/ledger-live-desktop/tests/handlers/nfts.ts b/apps/ledger-live-desktop/tests/handlers/nfts.ts new file mode 100644 index 000000000000..9835c596e608 --- /dev/null +++ b/apps/ledger-live-desktop/tests/handlers/nfts.ts @@ -0,0 +1,20 @@ +/* eslint-disable @typescript-eslint/no-unused-vars */ +import { http, HttpResponse } from "msw"; +import { mockedResponse } from "./fixtures/nfts"; + +const handlers = [ + http.post("https://nft.api.live.ledger.com/v1/ethereum/1/contracts/tokens/infos", () => { + return HttpResponse.json(mockedResponse.tokenInfos1); + }), + http.get("https://simplehash.api.live.ledger.com/api/v0/nfts/owners_v2", ({ request }) => { + const url = new URL(request.url); + const chains = url.searchParams.get("chains"); + const walletAddresses = url.searchParams.get("wallet_addresses"); + const limit = url.searchParams.get("limit"); + const filters = url.searchParams.get("filters"); + + return HttpResponse.json(mockedResponse.simplehash); + }), +]; + +export default handlers; diff --git a/apps/ledger-live-desktop/tests/jestSetup.js b/apps/ledger-live-desktop/tests/jestSetup.js index 27097f4275fe..2957526bcb73 100644 --- a/apps/ledger-live-desktop/tests/jestSetup.js +++ b/apps/ledger-live-desktop/tests/jestSetup.js @@ -1,6 +1,16 @@ -import { TextDecoder, TextEncoder } from "util"; import "@jest/globals"; import "@testing-library/jest-dom"; +import { server } from "./server"; + +global.setImmediate = global.setImmediate || ((fn, ...args) => global.setTimeout(fn, 0, ...args)); + +beforeAll(() => server.listen()); +afterEach(() => server.resetHandlers()); +afterAll(() => server.close()); + +server.events.on("request:start", ({ request }) => { + console.log("MSW intercepted:", request.method, request.url); +}); jest.mock("src/sentry/install", () => ({ init: jest.fn(), @@ -58,6 +68,7 @@ jest.mock("src/renderer/analytics/segment", () => ({ trackPage: jest.fn(), start: jest.fn(), useTrack: jest.fn(), + setAnalyticsFeatureFlagMethod: jest.fn(), })); jest.mock("src/sentry/renderer", () => ({ @@ -66,7 +77,3 @@ jest.mock("src/sentry/renderer", () => ({ setTags: jest.fn(), getSentryIfAvailable: jest.fn().mockReturnValue(false), })); - -global.TextEncoder = TextEncoder; -global.TextDecoder = TextDecoder; -global.setImmediate = global.setImmediate || ((fn, ...args) => global.setTimeout(fn, 0, ...args)); diff --git a/apps/ledger-live-desktop/tests/mocks/serviceStatusHelpers.ts b/apps/ledger-live-desktop/tests/mocks/serviceStatusHelpers.ts index d5d39892fb25..680d5ce4cd27 100644 --- a/apps/ledger-live-desktop/tests/mocks/serviceStatusHelpers.ts +++ b/apps/ledger-live-desktop/tests/mocks/serviceStatusHelpers.ts @@ -342,21 +342,6 @@ const statuses = { group: false, only_show_if_degraded: false, }, - { - id: "44xfftm0ztkq", - name: "Pivx (PIVX)", - status: "operational", - created_at: "2020-06-22T17:55:04.800+02:00", - updated_at: "2021-01-14T22:42:40.068+01:00", - position: 14, - description: null, - showcase: true, - start_date: null, - group_id: "rn7ny8423ghs", - page_id: "767c5rcj7z12", - group: false, - only_show_if_degraded: false, - }, { id: "t40n3pwhqqbq", name: "Qtum (QTUM)", diff --git a/apps/ledger-live-desktop/tests/page/account.page.ts b/apps/ledger-live-desktop/tests/page/account.page.ts index 5315d5b502d0..4f76ba5d301a 100644 --- a/apps/ledger-live-desktop/tests/page/account.page.ts +++ b/apps/ledger-live-desktop/tests/page/account.page.ts @@ -17,8 +17,8 @@ export class AccountPage extends AppPage { private sendButton = this.page.getByRole("button", { name: "Send" }); private accountName = (name: string) => this.page.locator(`text=${name}`); private lastOperation = this.page.locator("text=Latest operations"); - private tokenValue = (tokenName: string) => - this.page.getByTestId(`account-row-${tokenName.toLowerCase()}`); + private tokenValue = (tokenName: string, accountName: string) => + this.page.getByTestId(`account-row-${tokenName.toLowerCase()}`).getByText(`${accountName}`); private accountBalance = this.page.getByTestId("total-balance"); private operationList = this.page.locator("id=operation-list"); private showMoreButton = this.page.getByText("Show more"); @@ -35,8 +35,8 @@ export class AccountPage extends AppPage { @step("Navigate to token") async navigateToToken(SubAccount: Account) { if (SubAccount.currency.name) { - await expect(this.tokenValue(SubAccount.currency.name)).toBeVisible(); - await this.tokenValue(SubAccount.currency.name).click(); + await expect(this.tokenValue(SubAccount.currency.name, SubAccount.accountName)).toBeVisible(); + await this.tokenValue(SubAccount.currency.name, SubAccount.accountName).click(); } } diff --git a/apps/ledger-live-desktop/tests/page/accounts.page.ts b/apps/ledger-live-desktop/tests/page/accounts.page.ts index cb9eeb4eee7f..0cbe030d0b38 100644 --- a/apps/ledger-live-desktop/tests/page/accounts.page.ts +++ b/apps/ledger-live-desktop/tests/page/accounts.page.ts @@ -1,11 +1,20 @@ import { expect } from "@playwright/test"; import { step } from "tests/misc/reporters/step"; import { AppPage } from "tests/page/abstractClasses"; +import { Currency } from "../enum/Currency"; export class AccountsPage extends AppPage { private addAccountButton = this.page.getByTestId("accounts-add-account-button"); private accountComponent = (accountName: string) => this.page.getByTestId(`account-component-${accountName}`); + private tokenRow = (parentName: string, childCurrency: Currency) => + this.accountComponent(parentName) + .locator(`xpath=following::div`) + .getByTestId(`token-row-${childCurrency.ticker}`); + private tokenRowBalance = (parentName: string, childCurrency: Currency) => + this.tokenRow(parentName, childCurrency).getByText(`${childCurrency.ticker}`); + private showTokensButton = (parentName: string) => + this.accountComponent(parentName).locator("xpath=following-sibling::button").first(); private firstAccount = this.page.locator(".accounts-account-row-item").locator("div").first(); // Accounts context menu private contextMenuEdit = this.page.getByTestId("accounts-context-menu-edit"); @@ -22,6 +31,30 @@ export class AccountsPage extends AppPage { await this.accountComponent(accountName).click(); } + @step("Click show Account $0 tokens button") + async showParentAccountTokens(parentName: string) { + await this.accountComponent(parentName).scrollIntoViewIfNeeded(); + await this.showTokensButton(parentName).click(); + } + + @step("Verify $0 children token accounts are not visible") + async verifyChildrenTokensAreNotVisible(parentName: string) { + await this.accountComponent(parentName).scrollIntoViewIfNeeded(); + await expect(this.showTokensButton(parentName)).not.toBeVisible(); + } + + @step("Verify token visibility having parent $0") + async verifyTokenVisibility(parentName: string, childCurrency: Currency) { + await expect(this.tokenRow(parentName, childCurrency)).toBeVisible(); + } + + @step("Expect token balance to be null") + async expectTokenBalanceToBeNull(parentName: string, childCurrency: Currency) { + await expect(this.tokenRowBalance(parentName, childCurrency)).toHaveText( + `0 ${childCurrency.ticker}`, + ); + } + @step("Check $0 account was deleted ") async expectAccountAbsence(accountName: string) { expect(this.firstAccount).not.toBe(accountName); diff --git a/apps/ledger-live-desktop/tests/page/drawer/drawer.ts b/apps/ledger-live-desktop/tests/page/drawer/drawer.ts index 78e43e394f55..2bd2f3c35901 100644 --- a/apps/ledger-live-desktop/tests/page/drawer/drawer.ts +++ b/apps/ledger-live-desktop/tests/page/drawer/drawer.ts @@ -12,8 +12,7 @@ export class Drawer extends Component { this.page.getByTestId(`currency-row-${currency.toLowerCase()}`).first(); private addressValue = (address: string) => this.page.locator('[data-testid="drawer-content"]').locator(`text=${address}`); - private amountValue = (amount: string) => - this.page.locator('[data-testid="drawer-content"]').locator(`text=${amount}`); + private amountValue = this.page.getByTestId("amountReceived-drawer"); readonly selectAssetTitle = this.page.getByTestId("select-asset-drawer-title").first(); readonly selectAccountTitle = this.page.getByTestId("select-account-drawer-title").first(); readonly swapAmountFrom = this.page.getByTestId("swap-amount-from").first(); @@ -34,7 +33,7 @@ export class Drawer extends Component { @step("Verify that the information of the transaction is visible") async expectReceiverInfos(tx: Transaction) { await expect(this.addressValue(tx.accountToCredit.address)).toBeVisible(); - await expect(this.amountValue(tx.amount)).toBeVisible(); + await expect(this.amountValue).toBeVisible(); } async waitForDrawerToBeVisible() { diff --git a/apps/ledger-live-desktop/tests/page/drawer/ledger.sync.drawer.ts b/apps/ledger-live-desktop/tests/page/drawer/ledger.sync.drawer.ts new file mode 100644 index 000000000000..92349af2cc30 --- /dev/null +++ b/apps/ledger-live-desktop/tests/page/drawer/ledger.sync.drawer.ts @@ -0,0 +1,75 @@ +import { step } from "tests/misc/reporters/step"; +import { expect } from "@playwright/test"; +import { Drawer } from "./drawer"; +import { extractNumberFromText } from "tests/utils/textParserUtils"; + +export class LedgerSyncDrawer extends Drawer { + private syncAccountsButton = this.page.getByRole("button", { name: "Sync your accounts" }); + private closeLedgerSyncButton = this.page.getByRole("button", { name: "Close" }); + private manageBackupButton = this.page.getByTestId("walletSync-manage-backup"); + private deleteBackupButton = this.page.getByTestId("walletSync-manage-backup-delete"); + private confirmBackupDeletionButton = this.page.getByRole("button", { name: "Delete" }); + private successTextElement = this.page.locator("span", { hasText: "Success" }).first(); + private backupDeletionSuccessText = this.page.getByText( + "Your devices have been unsynchronized and your key has been deleted", + ); + + @step("Synchronize accounts") + async syncAccounts() { + await expect(this.syncAccountsButton).toBeVisible(); + await this.syncAccountsButton.click(); + } + + @step("Close the Ledger Sync drawer") + async closeLedgerSync() { + await expect(this.closeLedgerSyncButton).toBeVisible(); + await this.closeLedgerSyncButton.click(); + } + + @step("Open the Manage Key section") + async manageBackup() { + await expect(this.manageBackupButton).toBeVisible(); + await this.manageBackupButton.click(); + } + + @step("Click on the 'Delete your data' button") + async deleteBackup() { + await expect(this.deleteBackupButton).toBeVisible(); + await this.deleteBackupButton.click(); + } + + @step("Confirm the deletion of the data") + async confirmBackupDeletion() { + await expect(this.confirmBackupDeletionButton).toBeVisible(); + await this.confirmBackupDeletionButton.click(); + } + + @step("Destroy the trustchain - Delete the data") + async destroyTrustchain() { + await this.manageBackup(); + await this.deleteBackup(); + await this.confirmBackupDeletion(); + } + + @step("Check if sync entry point exists") + async expectSyncAccountsButtonExist() { + await expect(this.syncAccountsButton).toBeVisible(); + } + + @step("Check if synchronization was successful") + async expectSynchronizationSuccess() { + await expect(this.successTextElement).toBeVisible(); + } + + @step("Validate number of synchronized instances") + async expectNbSyncedInstances(nb: number) { + const countInstancesText = await this.page.getByText("Synchronized instance").textContent(); + const nbInstances = await extractNumberFromText(countInstancesText || ""); + expect(nbInstances).toBe(nb); + } + + @step("Check if the backup deletion was successful") + async expectBackupDeletion() { + await expect(this.backupDeletionSuccessText).toBeVisible(); + } +} diff --git a/apps/ledger-live-desktop/tests/page/index.ts b/apps/ledger-live-desktop/tests/page/index.ts index 7f92e95332f7..737324b923a0 100644 --- a/apps/ledger-live-desktop/tests/page/index.ts +++ b/apps/ledger-live-desktop/tests/page/index.ts @@ -9,6 +9,8 @@ import { ReceiveModal } from "../page/modal/receive.modal"; import { SpeculosPage } from "tests/page/speculos.page"; import { SendModal } from "tests/page/modal/send.modal"; import { Drawer } from "tests/page/drawer/drawer"; +import { SettingsPage } from "tests/page/settings.page"; +import { LedgerSyncDrawer } from "./drawer/ledger.sync.drawer"; export class Application extends PageHolder { public account = new AccountPage(this.page); @@ -21,4 +23,6 @@ export class Application extends PageHolder { public receive = new ReceiveModal(this.page); public speculos = new SpeculosPage(this.page); public send = new SendModal(this.page); + public settings = new SettingsPage(this.page); + public ledgerSync = new LedgerSyncDrawer(this.page); } diff --git a/apps/ledger-live-desktop/tests/page/install.page.ts b/apps/ledger-live-desktop/tests/page/install.page.ts index b77c99caeff6..e6c9540d5f0a 100644 --- a/apps/ledger-live-desktop/tests/page/install.page.ts +++ b/apps/ledger-live-desktop/tests/page/install.page.ts @@ -6,6 +6,7 @@ export class InstallSetOfApps extends AppPage { private installCtaButton = this.page.getByTestId("install-cta-button"); private cancelCtaButton = this.page.getByTestId("skip-cta-button"); private inputOptionSelector = this.page.getByTestId("input-option-selector"); + container = this.page.getByTestId("install-set-of-apps-container"); private circleProgressSelector = (circleProgress: string) => this.page.locator(`circle[style="stroke-dashoffset: ${circleProgress};"]`); diff --git a/apps/ledger-live-desktop/tests/page/modal/add.account.modal.ts b/apps/ledger-live-desktop/tests/page/modal/add.account.modal.ts index cd8fc0257e49..4f97831e6f92 100644 --- a/apps/ledger-live-desktop/tests/page/modal/add.account.modal.ts +++ b/apps/ledger-live-desktop/tests/page/modal/add.account.modal.ts @@ -2,6 +2,7 @@ import { expect } from "@playwright/test"; import { Modal } from "../../component/modal.component"; import { step } from "tests/misc/reporters/step"; import { Account } from "tests/enum/Account"; +import { Currency } from "tests/enum/Currency"; export class AddAccountModal extends Modal { private selectAccount = this.page.locator("text=Choose a crypto asset"); // FIXME: I need an id @@ -10,16 +11,18 @@ export class AddAccountModal extends Modal { private accountsList = this.page.getByTestId("add-accounts-step-import-accounts-list"); private stopButton = this.page.getByTestId("add-accounts-import-stop-button"); private doneButton = this.page.getByTestId("add-accounts-finish-close-button"); - readonly closeButton = this.page.getByTestId("modal-close-button"); private infoBox = this.page.getByTestId("add-token-infoBox"); private successAddLabel = this.page.locator("text=Account added successfully"); + private selectAccountInList = (Currency: Currency) => + this.page.getByRole("option", { + name: `${Currency.name} (${Currency.ticker})`, + }); private selectTokenNetwork = (SubAccount: Account) => this.page .getByRole("option", { - name: `${SubAccount.currency.name} (${SubAccount.currency.ticker}) ${SubAccount.currency.deviceLabel}`, + name: `${SubAccount.currency.name} (${SubAccount.currency.ticker}) ${SubAccount.currency.speculosApp.name}`, }) .locator("span"); - readonly continueButton = this.page.getByTestId("modal-continue-button"); @step("Select token") async selectToken(SubAccount: Account) { @@ -28,23 +31,32 @@ export class AddAccountModal extends Modal { if (await this.selectTokenNetwork(SubAccount).isVisible()) { await this.selectTokenNetwork(SubAccount).click(); } else { - await this.selectAccountByScrolling(SubAccount); + await this.selectSubAccountByScrolling(SubAccount); await this.dropdownOptions .locator( this.optionWithTextAndFollowingText( SubAccount.currency.ticker?.toUpperCase(), - SubAccount.currency.deviceLabel, + SubAccount.currency.speculosApp.name, ), ) .click(); } await expect(this.closeButton).toBeVisible(); await expect(this.infoBox).toBeVisible(); - await this.continueButton.click(); + await this.continue(); } @step("Select account by scrolling: {0}") - async selectAccountByScrolling(SubAccount: Account) { + async selectAccountByScrolling(Currency: Currency) { + await this.scrollUntilOptionIsDisplayed( + this.dropdownOptionsList, + this.selectAccountInList(Currency), + ); + await this.selectAccountInList(Currency).isVisible(); + } + + @step("Select account by scrolling: {0}") + async selectSubAccountByScrolling(SubAccount: Account) { await this.scrollUntilOptionIsDisplayed( this.dropdownOptionsList, this.selectTokenNetwork(SubAccount), @@ -60,8 +72,24 @@ export class AddAccountModal extends Modal { await this.page.mouse.move(0, 0); } - async selectCurrency(currency: string) { - await this.select(currency); + @step("Select currency") + async selectCurrency(currency: Currency) { + await this.selectAccount.click(); + await this.selectAccountInput.fill(currency.name); + if (await this.selectAccountInList(currency).isVisible()) { + await this.selectAccountInList(currency).click(); + } else { + await this.selectAccountByScrolling(currency); + await this.dropdownOptions + .locator( + this.optionWithTextAndFollowingText( + currency.ticker?.toUpperCase(), + currency.speculosApp.name, + ), + ) + .click(); + } + await expect(this.closeButton).toBeVisible(); await this.continue(); await this.waitForSync(); } diff --git a/apps/ledger-live-desktop/tests/page/modal/send.modal.ts b/apps/ledger-live-desktop/tests/page/modal/send.modal.ts index e1c2d7a5f803..8bf28926c453 100644 --- a/apps/ledger-live-desktop/tests/page/modal/send.modal.ts +++ b/apps/ledger-live-desktop/tests/page/modal/send.modal.ts @@ -66,9 +66,7 @@ export class SendModal extends Modal { @step("Check invalid address error message") async checkInvalidAddressError(tx: Transaction) { await this.checkContinueButtonDisabled(); - await expect( - this.invalidAddressErrorMessage(tx.accountToDebit.currency.deviceLabel), - ).toBeVisible(); + await expect(this.invalidAddressErrorMessage(tx.accountToDebit.currency.name)).toBeVisible(); } @step("Check continue button enable") diff --git a/apps/ledger-live-desktop/tests/page/portfolio.page.ts b/apps/ledger-live-desktop/tests/page/portfolio.page.ts index e8e41ae3bc81..7cb2f22e4fe7 100644 --- a/apps/ledger-live-desktop/tests/page/portfolio.page.ts +++ b/apps/ledger-live-desktop/tests/page/portfolio.page.ts @@ -1,20 +1,68 @@ import { step } from "tests/misc/reporters/step"; import { AppPage } from "tests/page/abstractClasses"; +import { expect } from "@playwright/test"; export class PortfolioPage extends AppPage { readonly emptyStateTitle = this.page.getByTestId("portfolio-empty-state-title"); private addAccountButton = this.page.getByTestId("portfolio-empty-state-add-account-button"); private buySellEntryButton = this.page.getByTestId("buy-sell-entry-button"); + private swapEntryButton = this.page.getByTestId("swap-entry-button"); private stakeEntryButton = this.page.getByTestId("stake-entry-button"); + private chart = this.page.getByTestId("chart-container"); + private marketPerformanceWidget = this.page.getByTestId("market-performance-widget"); + private swapButton = this.marketPerformanceWidget.getByRole("button", { name: "Swap" }); + private buyButton = this.marketPerformanceWidget.getByRole("button", { name: "Buy" }); + private assetAllocationTitle = this.page.getByText("Asset allocation"); + private trendTitle = this.marketPerformanceWidget.getByText("1W trend"); + private assetRowElements = this.page.locator("[data-testid^='asset-row-']"); private showAllButton = this.page.getByText("Show all"); - private assetRow = (currency: string) => - this.page.getByTestId(`asset-row-${currency.toLowerCase()}`); + private assetRow = (asset: string) => this.page.getByTestId(`asset-row-${asset.toLowerCase()}`); @step("Open `Add account` modal") async openAddAccountModal() { await this.addAccountButton.click(); } + @step("Check 'Buy/Sell' button visibility") + async checkBuySellButtonVisibility() { + await expect(this.buySellEntryButton).toBeVisible(); + } + + @step("Check 'Swap' button visibility") + async checkSwapButtonVisibility() { + await expect(this.swapEntryButton).toBeVisible(); + } + + @step("Check 'Stake' button visibility") + async checkStakeButtonVisibility() { + await expect(this.stakeEntryButton).toBeVisible(); + } + + @step("Check chart visibility") + async checkChartVisibility() { + await expect(this.chart).toBeVisible(); + } + + @step("Check market performance trend visibility") + async checkMarketPerformanceTrendVisibility() { + await expect(this.marketPerformanceWidget).toBeVisible(); + await expect(this.trendTitle).toBeVisible(); + await expect(this.buyButton).toBeVisible(); + await expect(this.swapButton).toBeVisible(); + } + + @step("Check asset allocation section") + async checkAssetAllocationSection() { + await expect(this.assetAllocationTitle).toBeVisible(); + await expect(this.assetRowElements).toHaveCount(6); + await expect(this.showAllButton).toBeVisible(); + await this.showAllButton.click(); + // Wait for the number of asset row elements to increase after clicking on show more button + await this.page.waitForFunction(() => { + return document.querySelectorAll("[data-testid^='asset-row-']").length > 6; + }); + } + async startBuyFlow() { await this.buySellEntryButton.click(); } @@ -25,8 +73,8 @@ export class PortfolioPage extends AppPage { } @step("Navigate to asset $0") - async navigateToAsset(currency: string) { - const assetRowLocator = this.assetRow(currency); + async navigateToAsset(asset: string) { + const assetRowLocator = this.assetRow(asset); if (!(await assetRowLocator.isVisible())) { await this.showAllButton.click(); } diff --git a/apps/ledger-live-desktop/tests/page/settings.page.ts b/apps/ledger-live-desktop/tests/page/settings.page.ts index 63471ee71223..139ea770b9c0 100644 --- a/apps/ledger-live-desktop/tests/page/settings.page.ts +++ b/apps/ledger-live-desktop/tests/page/settings.page.ts @@ -1,12 +1,15 @@ import { AppPage } from "tests/page/abstractClasses"; +import { step } from "tests/misc/reporters/step"; export class SettingsPage extends AppPage { + private manageLedgerSyncButton = this.page.getByRole("button", { name: "Manage" }); private accountsTab = this.page.getByTestId("settings-accounts-tab"); private aboutTab = this.page.getByTestId("settings-about-tab"); private helpTab = this.page.getByTestId("settings-help-tab"); readonly experimentalTab = this.page.getByTestId("settings-experimental-tab"); private developerTab = this.page.getByTestId("settings-developer-tab"); private experimentalDevModeToggle = this.page.getByTestId("MANAGER_DEV_MODE-button"); + readonly counterValueSelector = this.page.locator( "[data-testid='setting-countervalue-dropDown'] .select__value-container", ); @@ -21,10 +24,12 @@ export class SettingsPage extends AppPage { private themeChoiceLight = this.page.locator("text='Clair'"); private versionRow = this.page.getByTestId("version-row"); private deviceLanguagesDrawer = this.page.getByTestId("device-language-installation-container"); + private hideEmptyTokenAccountsToggle = this.page.getByTestId("hideEmptyTokenAccounts"); readonly openLocalManifestFormButton = this.page.getByTestId("settings-open-local-manifest-form"); readonly exportLocalManifestButton = this.page.getByTestId("settings-export-local-manifest"); readonly createLocalManifestButton = this.page.getByTestId("create-local-manifest"); + @step("Go to Settings Accounts tab") async goToAccountsTab() { await this.accountsTab.click(); } @@ -76,4 +81,14 @@ export class SettingsPage extends AppPage { } await this.developerTab.click(); } + + @step("Click 'Hide Empty Token Accounts' toggle") + async clickHideEmptyTokenAccountsToggle() { + await this.hideEmptyTokenAccountsToggle.click(); + } + + @step("Open Ledger Sync Manager") + async openManageLedgerSync() { + await this.manageLedgerSyncButton.click(); + } } diff --git a/apps/ledger-live-desktop/tests/page/speculos.page.ts b/apps/ledger-live-desktop/tests/page/speculos.page.ts index b2f88bfcd62f..1c097a87ddc7 100644 --- a/apps/ledger-live-desktop/tests/page/speculos.page.ts +++ b/apps/ledger-live-desktop/tests/page/speculos.page.ts @@ -1,12 +1,13 @@ import { AppPage } from "tests/page/abstractClasses"; import { step } from "tests/misc/reporters/step"; + import { pressBoth, pressRightUntil, verifyAddress as assertAddressesEquality, verifyAmount, waitFor, -} from "tests/utils/speculos"; +} from "@ledgerhq/live-common/e2e/speculos"; import { Account } from "../enum/Account"; import { expect } from "@playwright/test"; import { Transaction } from "tests/models/Transaction"; @@ -16,20 +17,28 @@ import { Currency } from "tests/enum/Currency"; export class SpeculosPage extends AppPage { @step("Verify receive address correctness") async expectValidReceiveAddress(account: Account) { - await waitFor(account.currency.receivePattern[0]); - const actualAddress = await pressRightUntil(account.currency.receivePattern[0]); + const { receivePattern } = account.currency.speculosApp || {}; + if (!receivePattern) { + return; + } + await waitFor(receivePattern[0]); + const actualAddress = await pressRightUntil(receivePattern[0]); expect(assertAddressesEquality(account.address, actualAddress)).toBe(true); - await pressRightUntil(account.currency.receivePattern[1]); + await pressRightUntil(receivePattern[1]); await pressBoth(); } @step("Verify transaction info on device") async expectValidTxInfo(tx: Transaction) { - const amountScreen = await pressRightUntil(tx.accountToDebit.currency.sendPattern[0]); + const { sendPattern } = tx.accountToDebit.currency.speculosApp || {}; + if (!sendPattern) { + return; + } + const amountScreen = await pressRightUntil(sendPattern[0]); expect(verifyAmount(tx.amount, amountScreen)).toBe(true); - const addressScreen = await pressRightUntil(tx.accountToDebit.currency.sendPattern[1]); + const addressScreen = await pressRightUntil(sendPattern[1]); expect(assertAddressesEquality(tx.accountToCredit.address, addressScreen)).toBe(true); - await pressRightUntil(tx.accountToDebit.currency.sendPattern[2]); + await pressRightUntil(sendPattern[2]); await pressBoth(); if (tx.accountToDebit.currency.name === Currency.DOGE.name) { await waitFor("Confirm"); @@ -37,4 +46,10 @@ export class SpeculosPage extends AppPage { await pressBoth(); } } + + @step("Press right on the device until specified text appears, then confirm the operation") + async confirmOperationOnDevice(text: string) { + await pressRightUntil(text); + await pressBoth(); + } } diff --git a/apps/ledger-live-desktop/tests/server.ts b/apps/ledger-live-desktop/tests/server.ts new file mode 100644 index 000000000000..b207a2c3829f --- /dev/null +++ b/apps/ledger-live-desktop/tests/server.ts @@ -0,0 +1,6 @@ +import { http, HttpResponse } from "msw"; +import { setupServer } from "msw/node"; +import handlers from "./handlers"; + +const server = setupServer(...handlers); +export { server, http, HttpResponse }; diff --git a/apps/ledger-live-desktop/tests/specs/manager/customImage.spec.ts b/apps/ledger-live-desktop/tests/specs/manager/customImage.spec.ts index 318cb438a578..638f1aaec2fb 100644 --- a/apps/ledger-live-desktop/tests/specs/manager/customImage.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/manager/customImage.spec.ts @@ -51,7 +51,7 @@ test("Custom image", async ({ page }) => { }); await test.step("Import image", async () => { - await customImageDrawer.importImage("tests/specs/manager/sample-custom-image.webp"); + await customImageDrawer.importImage("tests/specs/manager/sample-custom-image.jpg"); await customImageDrawer.importImageInput.waitFor({ state: "detached" }); await customImageDrawer.waitForCropConfirmable(); await expect(container).toHaveScreenshot(`${generateScreenshotPrefix()}image-imported.png`); diff --git a/apps/ledger-live-desktop/tests/specs/manager/sample-custom-image.jpg b/apps/ledger-live-desktop/tests/specs/manager/sample-custom-image.jpg new file mode 100644 index 000000000000..1e92a9d9bb55 Binary files /dev/null and b/apps/ledger-live-desktop/tests/specs/manager/sample-custom-image.jpg differ diff --git a/apps/ledger-live-desktop/tests/specs/manager/sample-custom-image.webp b/apps/ledger-live-desktop/tests/specs/manager/sample-custom-image.webp deleted file mode 100644 index dc76439ff396..000000000000 Binary files a/apps/ledger-live-desktop/tests/specs/manager/sample-custom-image.webp and /dev/null differ diff --git a/apps/ledger-live-desktop/tests/specs/market/market.spec.ts b/apps/ledger-live-desktop/tests/specs/market/market.spec.ts index 0a7f0e255f61..c513d676ff48 100644 --- a/apps/ledger-live-desktop/tests/specs/market/market.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/market/market.spec.ts @@ -5,6 +5,7 @@ import { MarketPage } from "../../page/market.page"; import { Layout } from "../../component/layout.component"; import { MarketCoinPage } from "../../page/market.coin.page"; import { LiveAppWebview } from "../../models/LiveAppWebview"; +import { BUY_SELL_UI_APP_ID } from "@ledgerhq/live-common/wallet-api/constants"; test.use({ userdata: "skip-onboarding" }); @@ -14,7 +15,7 @@ test.beforeAll(async () => { // Check that dummy app in tests/dummy-ptx-app has been started successfully testServerIsRunning = await LiveAppWebview.startLiveApp("dummy-ptx-app/public", { name: "Buy App", - id: "multibuy-v2", + id: BUY_SELL_UI_APP_ID, permissions: ["account.request"], }); diff --git a/apps/ledger-live-desktop/tests/specs/onboarding/connect-device.spec.ts b/apps/ledger-live-desktop/tests/specs/onboarding/connect-device.spec.ts index fc70b5b847d7..589b3dd9b40d 100644 --- a/apps/ledger-live-desktop/tests/specs/onboarding/connect-device.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/onboarding/connect-device.spec.ts @@ -25,6 +25,7 @@ test.describe.parallel("Onboarding", () => { await test.step("Get started", async () => { await onboardingPage.getStarted(); await onboardingPage.hoverDevice(Nano.nanoS); + await new Promise(r => setTimeout(r, 300)); // wait for the animation to finish await expect(page).toHaveScreenshot("v3-device-selection.png"); }); diff --git a/apps/ledger-live-desktop/tests/specs/services/buy.spec.ts b/apps/ledger-live-desktop/tests/specs/services/buy.spec.ts index 217cda137327..c63a009c5d7a 100644 --- a/apps/ledger-live-desktop/tests/specs/services/buy.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/services/buy.spec.ts @@ -8,6 +8,7 @@ import { AccountPage } from "../../page/account.page"; import { SettingsPage } from "../../page/settings.page"; import { MarketPage } from "../../page/market.page"; import { LiveAppWebview } from "../../models/LiveAppWebview"; +import { BUY_SELL_UI_APP_ID } from "@ledgerhq/live-common/wallet-api/constants"; test.use({ userdata: "1AccountBTC1AccountETH", @@ -22,7 +23,7 @@ test.beforeAll(async () => { // Check that dummy app in tests/dummy-ptx-app has been started successfully testServerIsRunning = await LiveAppWebview.startLiveApp("dummy-ptx-app/public", { name: "Buy App", - id: "multibuy-v2", + id: BUY_SELL_UI_APP_ID, permissions: ["account.request"], }); @@ -58,6 +59,8 @@ test("Buy / Sell @smoke", async ({ page }) => { await liveAppWebview.waitForLoaded(); expect(await liveAppWebview.waitForCorrectTextInWebview("theme: dark")).toBe(true); expect(await liveAppWebview.waitForCorrectTextInWebview("lang: en")).toBe(true); + expect(await liveAppWebview.waitForCorrectTextInWebview("locale: en-US")).toBe(true); + expect(await liveAppWebview.waitForCorrectTextInWebview("currencyTicker: USD")).toBe(true); await expect .soft(page) .toHaveScreenshot("buy-app-opened.png", { mask: [page.locator("webview")] }); @@ -74,6 +77,8 @@ test("Buy / Sell @smoke", async ({ page }) => { ).toBe(true); expect(await liveAppWebview.waitForCorrectTextInWebview("mode: buy")).toBe(true); expect(await liveAppWebview.waitForCorrectTextInWebview("lang: en")).toBe(true); + expect(await liveAppWebview.waitForCorrectTextInWebview("locale: en-US")).toBe(true); + expect(await liveAppWebview.waitForCorrectTextInWebview("currencyTicker: USD")).toBe(true); }); await test.step("Navigate to Buy app from asset", async () => { @@ -83,6 +88,8 @@ test("Buy / Sell @smoke", async ({ page }) => { expect(await liveAppWebview.waitForCorrectTextInWebview("theme: dark")).toBe(true); expect(await liveAppWebview.waitForCorrectTextInWebview("lang: en")).toBe(true); + expect(await liveAppWebview.waitForCorrectTextInWebview("locale: en-US")).toBe(true); + expect(await liveAppWebview.waitForCorrectTextInWebview("currencyTicker: USD")).toBe(true); expect(await liveAppWebview.waitForCorrectTextInWebview("currency: ethereum")).toBe(true); expect(await liveAppWebview.waitForCorrectTextInWebview("mode: buy")).toBe(true); }); @@ -98,6 +105,8 @@ test("Buy / Sell @smoke", async ({ page }) => { await liveAppWebview.waitForCorrectTextInWebview("account: mock:1:bitcoin:true_bitcoin_0:"), ).toBe(true); expect(await liveAppWebview.waitForCorrectTextInWebview("lang: en")).toBe(true); + expect(await liveAppWebview.waitForCorrectTextInWebview("locale: en-US")).toBe(true); + expect(await liveAppWebview.waitForCorrectTextInWebview("currencyTicker: USD")).toBe(true); expect(await liveAppWebview.waitForCorrectTextInWebview("mode: buy")).toBe(true); }); @@ -112,6 +121,8 @@ test("Buy / Sell @smoke", async ({ page }) => { await liveAppWebview.waitForCorrectTextInWebview("account: mock:1:bitcoin:true_bitcoin_0:"), ).toBe(true); expect(await liveAppWebview.waitForCorrectTextInWebview("lang: en")).toBe(true); + expect(await liveAppWebview.waitForCorrectTextInWebview("locale: en-US")).toBe(true); + expect(await liveAppWebview.waitForCorrectTextInWebview("currencyTicker: USD")).toBe(true); expect(await liveAppWebview.waitForCorrectTextInWebview("mode: sell")).toBe(true); }); @@ -123,5 +134,7 @@ test("Buy / Sell @smoke", async ({ page }) => { expect(await liveAppWebview.waitForCorrectTextInWebview("theme: light")).toBe(true); expect(await liveAppWebview.waitForCorrectTextInWebview("lang: fr")).toBe(true); + expect(await liveAppWebview.waitForCorrectTextInWebview("locale: en-US")).toBe(true); + expect(await liveAppWebview.waitForCorrectTextInWebview("currencyTicker: USD")).toBe(true); }); }); diff --git a/apps/ledger-live-desktop/tests/specs/services/wallet-api.spec.ts-snapshots/wallet-api-currencies-darwin.json b/apps/ledger-live-desktop/tests/specs/services/wallet-api.spec.ts-snapshots/wallet-api-currencies-darwin.json index 8856c8056cd8..6bfd3db82e2b 100644 --- a/apps/ledger-live-desktop/tests/specs/services/wallet-api.spec.ts-snapshots/wallet-api-currencies-darwin.json +++ b/apps/ledger-live-desktop/tests/specs/services/wallet-api.spec.ts-snapshots/wallet-api-currencies-darwin.json @@ -164,7 +164,7 @@ { "type": "CryptoCurrency", "id": "polygon", - "ticker": "MATIC", + "ticker": "POL", "name": "Polygon", "family": "ethereum", "color": "#6d29de", @@ -341,15 +341,6 @@ "color": "#326464", "decimals": 8 }, - { - "type": "CryptoCurrency", - "id": "pivx", - "ticker": "PIVX", - "name": "PivX", - "family": "bitcoin", - "color": "#46385d", - "decimals": 8 - }, { "type": "CryptoCurrency", "id": "zencash", diff --git a/apps/ledger-live-desktop/tests/specs/services/wallet-api.spec.ts-snapshots/wallet-api-currencies-linux.json b/apps/ledger-live-desktop/tests/specs/services/wallet-api.spec.ts-snapshots/wallet-api-currencies-linux.json index 8856c8056cd8..6bfd3db82e2b 100644 --- a/apps/ledger-live-desktop/tests/specs/services/wallet-api.spec.ts-snapshots/wallet-api-currencies-linux.json +++ b/apps/ledger-live-desktop/tests/specs/services/wallet-api.spec.ts-snapshots/wallet-api-currencies-linux.json @@ -164,7 +164,7 @@ { "type": "CryptoCurrency", "id": "polygon", - "ticker": "MATIC", + "ticker": "POL", "name": "Polygon", "family": "ethereum", "color": "#6d29de", @@ -341,15 +341,6 @@ "color": "#326464", "decimals": 8 }, - { - "type": "CryptoCurrency", - "id": "pivx", - "ticker": "PIVX", - "name": "PivX", - "family": "bitcoin", - "color": "#46385d", - "decimals": 8 - }, { "type": "CryptoCurrency", "id": "zencash", diff --git a/apps/ledger-live-desktop/tests/specs/speculos/add.account.spec.ts b/apps/ledger-live-desktop/tests/specs/speculos/add.account.spec.ts index 000779de7f85..77692e9b4a82 100644 --- a/apps/ledger-live-desktop/tests/specs/speculos/add.account.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/speculos/add.account.spec.ts @@ -16,13 +16,15 @@ const currencies: Currency[] = [ Currency.ALGO, Currency.ATOM, Currency.XTZ, + Currency.SOL, + Currency.TON, ]; for (const currency of currencies) { test.describe("Add Accounts", () => { test.use({ userdata: "skip-onboarding", - speculosCurrency: currency, + speculosApp: currency.speculosApp, }); let firstAccountName = "NO ACCOUNT NAME YET"; @@ -39,13 +41,15 @@ for (const currency of currencies) { await app.portfolio.openAddAccountModal(); await app.addAccount.expectModalVisiblity(); - await app.addAccount.selectCurrency(currency.name); + await app.addAccount.selectCurrency(currency); firstAccountName = await app.addAccount.getFirstAccountName(); await app.addAccount.addAccounts(); await app.addAccount.done(); - await app.layout.expectBalanceVisibility(); - + // Todo: Remove 'if' when CounterValue is fixed for $TON - LIVE-13685 + if (currency.name !== Currency.TON.name) { + await app.layout.expectBalanceVisibility(); + } await app.layout.goToAccounts(); await app.accounts.navigateToAccountByName(firstAccountName); await app.account.expectAccountVisibility(firstAccountName); diff --git a/apps/ledger-live-desktop/tests/specs/speculos/delete.account.spec.ts b/apps/ledger-live-desktop/tests/specs/speculos/delete.account.spec.ts index d50be46154c6..ffac42606dbe 100644 --- a/apps/ledger-live-desktop/tests/specs/speculos/delete.account.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/speculos/delete.account.spec.ts @@ -22,7 +22,7 @@ for (const account of accounts) { test.describe("Delete Accounts", () => { test.use({ userdata: "speculos-tests-app", - speculosCurrency: account.currency, + speculosApp: account.currency.speculosApp, }); test( diff --git a/apps/ledger-live-desktop/tests/specs/speculos/manage.ledgersync.spec.ts b/apps/ledger-live-desktop/tests/specs/speculos/manage.ledgersync.spec.ts new file mode 100644 index 000000000000..851a1e21c2f1 --- /dev/null +++ b/apps/ledger-live-desktop/tests/specs/speculos/manage.ledgersync.spec.ts @@ -0,0 +1,42 @@ +import { test } from "../../fixtures/common"; +import { AppInfos } from "tests/enum/AppInfos"; +import { addTmsLink } from "tests/utils/allureUtils"; +import { getDescription } from "../../utils/customJsonReporter"; + +const app: AppInfos = AppInfos.LS; + +test.describe(`[${app.name}] Sync Accounts`, () => { + test.use({ + userdata: "ledgerSync", + speculosApp: app, + }); + + test( + "Synchronize one instance then delete the backup", + { + annotation: { + type: "TMS", + description: "B2CQA-2292, B2CQA-2293, B2CQA-2296", + }, + }, + async ({ app }) => { + await addTmsLink(getDescription(test.info().annotations).split(", ")); + + await app.layout.goToSettings(); + await app.settings.openManageLedgerSync(); + await app.ledgerSync.expectSyncAccountsButtonExist(); + + await app.ledgerSync.syncAccounts(); + await app.speculos.confirmOperationOnDevice("Log in to"); + await app.speculos.confirmOperationOnDevice("Enable"); + await app.ledgerSync.expectSynchronizationSuccess(); + await app.ledgerSync.closeLedgerSync(); + + await app.settings.openManageLedgerSync(); + //await app.ledgerSync.expectNbSyncedInstances(1); //TODO: Reactivate when the issue is fixed - QAA-178 + await app.ledgerSync.destroyTrustchain(); + await app.ledgerSync.expectBackupDeletion(); + await app.drawer.close(); + }, + ); +}); diff --git a/apps/ledger-live-desktop/tests/specs/speculos/portfolio.spec.ts b/apps/ledger-live-desktop/tests/specs/speculos/portfolio.spec.ts new file mode 100644 index 000000000000..58f4fde7c2b2 --- /dev/null +++ b/apps/ledger-live-desktop/tests/specs/speculos/portfolio.spec.ts @@ -0,0 +1,25 @@ +import { test } from "../../fixtures/common"; + +test.describe("Portfolio", () => { + test.use({ + userdata: "speculos-tests-app", + }); + test( + "Charts are displayed when user added his accounts", + { + annotation: { + type: "TMS", + description: "B2CQA-927, B2CQA-928", + }, + }, + async ({ app }) => { + await app.layout.goToPortfolio(); + await app.portfolio.checkBuySellButtonVisibility(); + await app.portfolio.checkStakeButtonVisibility(); + await app.portfolio.checkSwapButtonVisibility(); + await app.portfolio.checkChartVisibility(); + await app.portfolio.checkMarketPerformanceTrendVisibility(); + await app.portfolio.checkAssetAllocationSection(); + }, + ); +}); diff --git a/apps/ledger-live-desktop/tests/specs/speculos/receive.address.spec.ts b/apps/ledger-live-desktop/tests/specs/speculos/receive.address.spec.ts index 961fe6103dab..260530f7d48d 100644 --- a/apps/ledger-live-desktop/tests/specs/speculos/receive.address.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/speculos/receive.address.spec.ts @@ -21,7 +21,7 @@ for (const account of accounts) { test.describe("Receive", () => { test.use({ userdata: "speculos-tests-app", - speculosCurrency: account.currency, + speculosApp: account.currency.speculosApp, }); test( diff --git a/apps/ledger-live-desktop/tests/specs/speculos/send.tx.spec.ts b/apps/ledger-live-desktop/tests/specs/speculos/send.tx.spec.ts index 6a6df7a831d0..4a993700adc5 100644 --- a/apps/ledger-live-desktop/tests/specs/speculos/send.tx.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/speculos/send.tx.spec.ts @@ -43,7 +43,7 @@ for (const transaction of transactionE2E) { test.describe("Send from 1 account to another", () => { test.use({ userdata: "speculos-tests-app", - speculosCurrency: transaction.accountToDebit.currency, + speculosApp: transaction.accountToDebit.currency.speculosApp, }); test( @@ -81,7 +81,7 @@ for (const transaction of transactionE2E) { }); } -test.describe("Send token (subAccount) - invalid input", () => { +test.describe("Send token (subAccount) - invalid address input", () => { const tokenTransactionInvalid = { transaction: new Transaction(Account.ALGO_USDT_1, Account.ALGO_USDT_2, "0.1", Fee.MEDIUM), expectedErrorMessage: "Recipient account has not opted in the selected ASA.", @@ -89,11 +89,11 @@ test.describe("Send token (subAccount) - invalid input", () => { test.use({ userdata: "speculos-subAccount", - speculosCurrency: tokenTransactionInvalid.transaction.accountToDebit.currency, + speculosApp: tokenTransactionInvalid.transaction.accountToDebit.currency.speculosApp, }); test( - `Send from ${tokenTransactionInvalid.transaction.accountToDebit.accountName} to ${tokenTransactionInvalid.transaction.accountToCredit.accountName} - invalid input`, + `Send from ${tokenTransactionInvalid.transaction.accountToDebit.accountName} to ${tokenTransactionInvalid.transaction.accountToCredit.accountName} - invalid address input`, { annotation: { type: "TMS", @@ -116,25 +116,69 @@ test.describe("Send token (subAccount) - invalid input", () => { ); }); -test.describe("Send token (subAccount) - valid input", () => { +test.describe("Send token (subAccount) - invalid amount input", () => { + const tokenTransactionInvalid = [ + { + transaction: new Transaction(Account.BSC_BUSD_1, Account.BSC_BUSD_2, "1", Fee.MEDIUM), + expectedWarningMessage: new RegExp( + /You need \d+\.\d+ BNB in your account to pay for transaction fees on the Binance Smart Chain network\. .*/, + ), + }, + { + transaction: new Transaction(Account.ETH_USDT_2, Account.ETH_USDT_1, "1", Fee.MEDIUM), + expectedWarningMessage: new RegExp( + /You need \d+\.\d+ ETH in your account to pay for transaction fees on the Ethereum network\. .*/, + ), + }, + ]; + for (const transaction of tokenTransactionInvalid) { + test.use({ + userdata: "speculos-2ETH-2BNB", + speculosApp: transaction.transaction.accountToDebit.currency.speculosApp, + }); + test( + `Send from ${transaction.transaction.accountToDebit.accountName} to ${transaction.transaction.accountToCredit.accountName} - invalid amount input`, + { + annotation: { + type: "TMS", + description: "B2CQA-475", + }, + }, + async ({ app }) => { + await app.layout.goToAccounts(); + await app.accounts.navigateToAccountByName( + transaction.transaction.accountToDebit.accountName, + ); + await app.account.navigateToTokenInAccount(transaction.transaction.accountToDebit); + await app.account.clickSend(); + await app.send.fillRecipient(transaction.transaction.accountToCredit.address); + await app.send.clickContinue(); + await app.send.fillAmount(transaction.transaction.amount); + await app.send.checkContinueButtonDisabled(); + await app.layout.checkWarningMessage(transaction.expectedWarningMessage); + }, + ); + } +}); + +test.describe("Send token (subAccount) - valid address & amount input", () => { const tokenTransactionValid = new Transaction( - Account.ALGO_USDT_1, - Account.ALGO_USDT_3, - "0.1", + Account.ETH_USDT_1, + Account.ETH_USDT_2, + "1", Fee.MEDIUM, ); - test.use({ userdata: "speculos-subAccount", - speculosCurrency: tokenTransactionValid.accountToDebit.currency, + speculosApp: tokenTransactionValid.accountToDebit.currency.speculosApp, }); test( - `Send from ${tokenTransactionValid.accountToDebit.accountName} to ${tokenTransactionValid.accountToCredit.accountName} - valid input`, + `Send from ${tokenTransactionValid.accountToDebit.accountName} to ${tokenTransactionValid.accountToCredit.accountName} - valid address & amount input`, { annotation: { type: "TMS", - description: "B2CQA-479", + description: "B2CQA-479, B2CQA-475", }, }, async ({ app }) => { @@ -145,6 +189,9 @@ test.describe("Send token (subAccount) - valid input", () => { await app.send.fillRecipient(tokenTransactionValid.accountToCredit.address); await app.send.checkContinueButtonEnable(); await app.layout.checkInputErrorNotVisible(); + await app.send.clickContinue(); + await app.send.fillAmount(tokenTransactionValid.amount); + await app.send.checkContinueButtonEnable(); }, ); }); @@ -159,7 +206,7 @@ test.describe("Check invalid address input error", () => { test.use({ userdata: "speculos-tests-app", - speculosCurrency: transactionInvalidAddress.accountToDebit.currency, + speculosApp: transactionInvalidAddress.accountToDebit.currency.speculosApp, }); test( @@ -187,7 +234,7 @@ for (const transaction of transactionsInputsInvalid) { test.describe("Check invalid amount input error", () => { test.use({ userdata: "speculos-tests-app", - speculosCurrency: transaction.transaction.accountToDebit.currency, + speculosApp: transaction.transaction.accountToDebit.currency.speculosApp, }); test( @@ -225,7 +272,7 @@ test.describe("Verify send max user flow", () => { test.use({ userdata: "speculos-tests-app", - speculosCurrency: transactionInputValid.accountToDebit.currency, + speculosApp: transactionInputValid.accountToDebit.currency.speculosApp, }); test( diff --git a/apps/ledger-live-desktop/tests/specs/speculos/settings.spec.ts b/apps/ledger-live-desktop/tests/specs/speculos/settings.spec.ts new file mode 100644 index 000000000000..e0887a23093e --- /dev/null +++ b/apps/ledger-live-desktop/tests/specs/speculos/settings.spec.ts @@ -0,0 +1,38 @@ +import { test } from "../../fixtures/common"; +import { addTmsLink } from "tests/utils/allureUtils"; +import { getDescription } from "../../utils/customJsonReporter"; +import { Account } from "tests/enum/Account"; + +test.describe("Settings", () => { + test.use({ + userdata: "erc20-0-balance", + }); + + test( + `ERC20 token with 0 balance is hidden if 'hide empty token accounts' is ON`, + { + annotation: { + type: "TMS", + description: "B2CQA-817", + }, + }, + async ({ app }) => { + await addTmsLink(getDescription(test.info().annotations).split(", ")); + await app.layout.goToAccounts(); + await app.accounts.showParentAccountTokens(Account.ETH_1.accountName); + await app.accounts.verifyTokenVisibility( + Account.ETH_1.accountName, + Account.ETH_USDT_1.currency, + ); + await app.accounts.expectTokenBalanceToBeNull( + Account.ETH_1.accountName, + Account.ETH_USDT_1.currency, + ); + await app.layout.goToSettings(); + await app.settings.goToAccountsTab(); + await app.settings.clickHideEmptyTokenAccountsToggle(); + await app.layout.goToAccounts(); + await app.accounts.verifyChildrenTokensAreNotVisible(Account.ETH_1.accountName); + }, + ); +}); diff --git a/apps/ledger-live-desktop/tests/specs/speculos/subAccount.spec.ts b/apps/ledger-live-desktop/tests/specs/speculos/subAccount.spec.ts index ca59390c16f4..dff28423accc 100644 --- a/apps/ledger-live-desktop/tests/specs/speculos/subAccount.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/speculos/subAccount.spec.ts @@ -4,34 +4,34 @@ import { addTmsLink } from "tests/utils/allureUtils"; import { getDescription } from "../../utils/customJsonReporter"; const subAccounts: Account[] = [ - Account.ETH_USDT, + Account.ETH_USDT_1, Account.XLM_USCD, Account.ALGO_USDT_1, Account.TRX_USDT, - Account.BSC_BUSD, - Account.MATIC_DAI, + Account.BSC_BUSD_1, + Account.POL_DAI_1, ]; const subAccountReceive: Account[] = [ - Account.ETH_USDT, + Account.ETH_USDT_1, Account.ETH_LIDO, Account.TRX_USDT, Account.TRX_BTT, - Account.BSC_BUSD, + Account.BSC_BUSD_1, Account.BSC_SHIBA, - Account.MATIC_DAI, - Account.MATIC_UNI, + Account.POL_DAI_1, + Account.POL_UNI, ]; for (const token of subAccounts) { test.describe("Add subAccount without parent", () => { test.use({ userdata: "skip-onboarding", - speculosCurrency: token.currency, + speculosApp: token.currency.speculosApp, }); test( - `Add Sub Account without parent (${token.currency.deviceLabel}) - ${token.currency.ticker}`, + `Add Sub Account without parent (${token.currency.speculosApp.name}) - ${token.currency.ticker}`, { annotation: { type: "TMS", @@ -63,11 +63,11 @@ for (const token of subAccountReceive) { test.describe("Add subAccount when parent exists", () => { test.use({ userdata: "speculos-subAccount", - speculosCurrency: token.currency, + speculosApp: token.currency.speculosApp, }); test( - `[${token.currency.deviceLabel}] Add subAccount when parent exists (${token.currency.ticker})`, + `[${token.currency.speculosApp.name}] Add subAccount when parent exists (${token.currency.ticker})`, { annotation: { type: "TMS", @@ -98,11 +98,11 @@ for (const token of subAccounts) { test.describe("Token visible in parent account", () => { test.use({ userdata: "speculos-subAccount", - speculosCurrency: token.currency, + speculosApp: token.currency.speculosApp, }); test( - `Token visible in parent account (${token.currency.deviceLabel}) - ${token.currency.ticker}`, + `Token visible in parent account (${token.currency.speculosApp.name}) - ${token.currency.ticker}`, { annotation: { type: "TMS", diff --git a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts index 2ccfa9546179..221d87fc51ab 100644 --- a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts +++ b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts @@ -17,6 +17,7 @@ test("Install set of apps", async ({ page }) => { const layout = new Layout(page); const deviceAction = new DeviceAction(page); const installSetOfAppsPage = new InstallSetOfApps(page); + const container = installSetOfAppsPage.container; await test.step("go to debug install set of apps drawer", async () => { await layout.goToSettings(); @@ -25,69 +26,69 @@ test("Install set of apps", async ({ page }) => { await installSetOfAppsPage.waitForLaunch(); await installSetOfAppsPage.accessDebugInstallSetOfApps(); await installSetOfAppsPage.waitForDrawerIsOpen(); - await expect(page).toHaveScreenshot("debug-install-set-of-apps-drawer.png"); + await expect(container).toHaveScreenshot("debug-install-set-of-apps-drawer.png"); }); await test.step("use default apps", async () => { await installSetOfAppsPage.startInstallOrRestoreSetOfApps(); await deviceAction.resolveDependenciesMocked(["Bitcoin", "Ethereum", "Polygon"]); - await expect(page).toHaveScreenshot("debug-install-set-of-apps-queue.png"); + await expect(container).toHaveScreenshot("debug-install-set-of-apps-queue.png"); await deviceAction.installSetOfAppsMocked(0.12, 0.25, { type: "install", name: "Bitcoin" }, [ "Bitcoin", "Ethereum", "Polygon", ]); await installSetOfAppsPage.waitForCircleProgress("42.4115"); - await expect(page).toHaveScreenshot("debug-install-set-of-apps-step-1.png"); + await expect(container).toHaveScreenshot("debug-install-set-of-apps-step-1.png"); await deviceAction.installSetOfAppsMocked(0.5, 0.5, { type: "install", name: "Ethereum" }, [ "Ethereum", "Polygon", ]); await installSetOfAppsPage.waitForCircleProgress("28.2743"); - await expect(page).toHaveScreenshot("debug-install-set-of-apps-step-2.png"); + await expect(container).toHaveScreenshot("debug-install-set-of-apps-step-2.png"); await deviceAction.installSetOfAppsMocked(0.87, 0.75, { type: "install", name: "Polygon" }, [ "Polygon", ]); await installSetOfAppsPage.waitForCircleProgress("14.1372"); - await expect(page).toHaveScreenshot("debug-install-set-of-apps-step-3.png"); + await expect(container).toHaveScreenshot("debug-install-set-of-apps-step-3.png"); await deviceAction.mockOpened(); await installSetOfAppsPage.waitForInstallingTextToDisappear(); - await expect(page).toHaveScreenshot("debug-install-set-of-apps-completed.png"); + await expect(container).toHaveScreenshot("debug-install-set-of-apps-completed.png"); await deviceAction.complete(); }); await test.step("restore apps from Ledger Stax", async () => { await installSetOfAppsPage.resetButtonClick(); await deviceAction.resolveDependenciesMocked(["Ethereum", "Polygon"]); - await expect(page).toHaveScreenshot("debug-install-set-of-apps-reseted.png"); + await expect(container).toHaveScreenshot("debug-install-set-of-apps-reseted.png"); await deviceAction.installSetOfAppsMocked(0, 0, { type: "install", name: "Bitcoin" }, [ "Ethereum", "Polygon", ]); await installSetOfAppsPage.startRestoreAppsFromStax(); - await expect(page).toHaveScreenshot("debug-restore-set-of-apps-drawer.png"); + await expect(container).toHaveScreenshot("debug-restore-set-of-apps-drawer.png"); await installSetOfAppsPage.startInstallOrRestoreSetOfApps(); - await expect(page).toHaveScreenshot("debug-restore-set-of-apps-queue.png"); + await expect(container).toHaveScreenshot("debug-restore-set-of-apps-queue.png"); await deviceAction.installSetOfAppsMocked(0.3, 0.15, { type: "install", name: "Ethereum" }, [ "Ethereum", "Polygon", ]); await installSetOfAppsPage.waitForCircleProgress("48.0664"); - await expect(page).toHaveScreenshot("debug-restore-set-of-apps-step-1.png"); + await expect(container).toHaveScreenshot("debug-restore-set-of-apps-step-1.png"); await deviceAction.installSetOfAppsMocked(0.67, 0.7, { type: "install", name: "Polygon" }, [ "Polygon", ]); await installSetOfAppsPage.waitForCircleProgress("16.9646"); - await expect(page).toHaveScreenshot("debug-restore-set-of-apps-step-2.png"); + await expect(container).toHaveScreenshot("debug-restore-set-of-apps-step-2.png"); await deviceAction.mockOpened(); await installSetOfAppsPage.waitForInstallingTextToDisappear(); - await expect(page).toHaveScreenshot("debug-restore-set-of-apps-completed.png"); + await expect(container).toHaveScreenshot("debug-restore-set-of-apps-completed.png"); await deviceAction.complete(); }); await test.step("skip install or restore set of apps step", async () => { await installSetOfAppsPage.resetButtonClick(); await installSetOfAppsPage.skipInstallOrRestoreSetOfApps(); - await expect(page).toHaveScreenshot("debug-step-set-of-apps-completed.png"); + await expect(container).toHaveScreenshot("debug-step-set-of-apps-completed.png"); }); }); diff --git a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-completed-linux.png b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-completed-linux.png index bf5c1736c278..0208f4a1dfd4 100644 Binary files a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-completed-linux.png and b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-completed-linux.png differ diff --git a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-drawer-linux.png b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-drawer-linux.png index 97678dfe8d2f..e4a008c73ba1 100644 Binary files a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-drawer-linux.png and b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-drawer-linux.png differ diff --git a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-queue-linux.png b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-queue-linux.png index 971ed01afc7e..5b34cf15e1b8 100644 Binary files a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-queue-linux.png and b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-queue-linux.png differ diff --git a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-reseted-linux.png b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-reseted-linux.png index 8cda714f4d48..65cf553e071a 100644 Binary files a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-reseted-linux.png and b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-reseted-linux.png differ diff --git a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-step-1-linux.png b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-step-1-linux.png index f66468114745..f318c986cb26 100644 Binary files a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-step-1-linux.png and b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-step-1-linux.png differ diff --git a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-step-2-linux.png b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-step-2-linux.png index dd3b14b3beab..ed8c001d99b4 100644 Binary files a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-step-2-linux.png and b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-step-2-linux.png differ diff --git a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-step-3-linux.png b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-step-3-linux.png index 042d8fa42f96..b07f8e2cb2be 100644 Binary files a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-step-3-linux.png and b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-install-set-of-apps-step-3-linux.png differ diff --git a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-completed-linux.png b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-completed-linux.png index 878364bfc772..b8e411e99a27 100644 Binary files a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-completed-linux.png and b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-completed-linux.png differ diff --git a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-drawer-linux.png b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-drawer-linux.png index 5861cf342d49..80f3d566e02c 100644 Binary files a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-drawer-linux.png and b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-drawer-linux.png differ diff --git a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-queue-linux.png b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-queue-linux.png index b6c22a9ac5ba..a1a572f27b73 100644 Binary files a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-queue-linux.png and b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-queue-linux.png differ diff --git a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-step-1-linux.png b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-step-1-linux.png index 24ac9e0cf783..b819050f6e98 100644 Binary files a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-step-1-linux.png and b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-step-1-linux.png differ diff --git a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-step-2-linux.png b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-step-2-linux.png index f2068331a7cf..1ca112a115aa 100644 Binary files a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-step-2-linux.png and b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-restore-set-of-apps-step-2-linux.png differ diff --git a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-step-set-of-apps-completed-linux.png b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-step-set-of-apps-completed-linux.png index bf5c1736c278..0208f4a1dfd4 100644 Binary files a/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-step-set-of-apps-completed-linux.png and b/apps/ledger-live-desktop/tests/specs/syncOnboarding/install-set-of-apps.spec.ts-snapshots/debug-step-set-of-apps-completed-linux.png differ diff --git a/apps/ledger-live-desktop/tests/testUtils.tsx b/apps/ledger-live-desktop/tests/testUtils.tsx index 24ab7e1b5017..3c7d407da406 100644 --- a/apps/ledger-live-desktop/tests/testUtils.tsx +++ b/apps/ledger-live-desktop/tests/testUtils.tsx @@ -10,6 +10,14 @@ import dbMiddleware from "../src/renderer/middlewares/db"; import { I18nextProvider } from "react-i18next"; import i18n from "~/renderer/i18n/init"; import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; +import { config } from "react-transition-group"; +import { NftMetadataProvider } from "@ledgerhq/live-nft-react"; +import { getCurrencyBridge } from "@ledgerhq/live-common/bridge/index"; +import DrawerProvider from "~/renderer/drawers/Provider"; +import { FirebaseFeatureFlagsProvider } from "~/renderer/components/FirebaseFeatureFlags"; +import { getFeature } from "./featureFlags"; + +config.disabled = true; interface ChildrenProps { children: JSX.Element; @@ -40,14 +48,21 @@ function render( }: ExtraOptions = {}, ): RenderReturn { const queryClient = new QueryClient(); + function Wrapper({ children }: ChildrenProps): JSX.Element { return ( - - {children} - + + + + + {children} + + + + @@ -74,7 +89,9 @@ function renderHook( return ( - {children} + + {children} + ); diff --git a/apps/ledger-live-desktop/tests/userdata/erc20-0-balance.json b/apps/ledger-live-desktop/tests/userdata/erc20-0-balance.json new file mode 100644 index 000000000000..5015e374012b --- /dev/null +++ b/apps/ledger-live-desktop/tests/userdata/erc20-0-balance.json @@ -0,0 +1,40928 @@ +{ + "data": { + "PLAYWRIGHT_RUN": { "localStorage": { "acceptedTermsVersion": "2042-01-01" } }, + "settings": { + "hasCompletedOnboarding": true, + "counterValue": "USD", + "language": "en", + "locale": "en-US", + "theme": null, + "region": null, + "orderAccounts": "balance|desc", + "countervalueFirst": false, + "autoLockTimeout": 10, + "selectedTimeRange": "month", + "currenciesSettings": {}, + "pairExchanges": {}, + "developerMode": false, + "loaded": true, + "shareAnalytics": true, + "sharePersonalizedRecommandations": true, + "hasSeenAnalyticsOptInPrompt": false, + "sentryLogs": true, + "lastUsedVersion": "99.99.99", + "dismissedBanners": [], + "accountsViewMode": "list", + "nftsViewMode": "list", + "collectiblesViewMode": "list", + "showAccountsHelperBanner": true, + "hideEmptyTokenAccounts": false, + "filterTokenOperationsZeroAmount": true, + "sidebarCollapsed": false, + "discreetMode": false, + "preferredDeviceModel": "nanoX", + "hasInstalledApps": true, + "lastSeenDevice": { + "modelId": "nanoX", + "deviceInfo": { + "version": "2.2.4", + "mcuVersion": "2.30", + "seVersion": "2.2.4", + "majMin": "2.2.4", + "providerName": null, + "targetId": 855638020, + "hasDevFirmware": false, + "seTargetId": 855638020, + "isOSU": false, + "isBootloader": false, + "isRecoveryMode": false, + "managerAllowed": false, + "pinValidated": true, + "onboarded": true, + "bootloaderVersion": "1.16", + "hardwareVersion": 0, + "languageId": 0 + }, + "apps": [ + { "name": "Solana", "version": "1.4.3" }, + { "name": "Bitcoin", "version": "2.2.3" }, + { "name": "Kiln", "version": "2.0.0" }, + { "name": "Exchange", "version": "3.4.0" }, + { "name": "Ethereum", "version": "1.11.0" } + ] + }, + "devicesModelList": ["nanoX"], + "lastSeenCustomImage": { "size": 0, "hash": "" }, + "latestFirmware": null, + "blacklistedTokenIds": [], + "hiddenNftCollections": [], + "deepLinkUrl": null, + "firstTimeLend": false, + "showClearCacheBanner": false, + "fullNodeEnabled": false, + "allowDebugApps": false, + "allowReactQueryDebug": false, + "allowExperimentalApps": false, + "enablePlatformDevTools": false, + "catalogProvider": "production", + "enableLearnPageStagingUrl": false, + "swap": { + "hasAcceptedIPSharing": false, + "acceptedProviders": [], + "selectableCurrencies": [] + }, + "overriddenFeatureFlags": {}, + "featureFlagsButtonVisible": false, + "vaultSigner": { "enabled": false, "host": "", "token": "", "workspace": "" }, + "supportedCounterValues": [ + { + "value": "AFN", + "label": "Afghan Afghani - AFN", + "currency": { + "type": "FiatCurrency", + "ticker": "AFN", + "name": "Afghan Afghani", + "symbol": "؋", + "units": [ + { + "code": "؋", + "name": "Afghan Afghani", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "ALL", + "label": "Albanian Lek - ALL", + "currency": { + "type": "FiatCurrency", + "ticker": "ALL", + "name": "Albanian Lek", + "symbol": "Lek", + "units": [ + { + "code": "Lek", + "name": "Albanian Lek", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "DZD", + "label": "Algerian Dinar - DZD", + "currency": { + "type": "FiatCurrency", + "ticker": "DZD", + "name": "Algerian Dinar", + "symbol": "د.ج.‏", + "units": [ + { + "code": "د.ج.‏", + "name": "Algerian Dinar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "AOA", + "label": "Angolan Kwanza - AOA", + "currency": { + "type": "FiatCurrency", + "ticker": "AOA", + "name": "Angolan Kwanza", + "symbol": "Kz", + "units": [ + { + "code": "Kz", + "name": "Angolan Kwanza", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "ARS", + "label": "Argentine Peso - ARS", + "currency": { + "type": "FiatCurrency", + "ticker": "ARS", + "name": "Argentine Peso", + "symbol": "$", + "units": [ + { + "code": "$", + "name": "Argentine Peso", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "AMD", + "label": "Armenian Dram - AMD", + "currency": { + "type": "FiatCurrency", + "ticker": "AMD", + "name": "Armenian Dram", + "symbol": "֏", + "units": [ + { + "code": "֏", + "name": "Armenian Dram", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "AWG", + "label": "Aruban Florin - AWG", + "currency": { + "type": "FiatCurrency", + "ticker": "AWG", + "name": "Aruban Florin", + "symbol": "ƒ", + "units": [ + { + "code": "ƒ", + "name": "Aruban Florin", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "AUD", + "label": "Australian Dollar - AUD", + "currency": { + "type": "FiatCurrency", + "ticker": "AUD", + "name": "Australian Dollar", + "symbol": "AU$", + "units": [ + { + "code": "AU$", + "name": "Australian Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "AZN", + "label": "Azerbaijani Manat - AZN", + "currency": { + "type": "FiatCurrency", + "ticker": "AZN", + "name": "Azerbaijani Manat", + "symbol": "₼", + "units": [ + { + "code": "₼", + "name": "Azerbaijani Manat", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "BSD", + "label": "Bahamian Dollar - BSD", + "currency": { + "type": "FiatCurrency", + "ticker": "BSD", + "name": "Bahamian Dollar", + "symbol": "$", + "units": [ + { + "code": "$", + "name": "Bahamian Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "BHD", + "label": "Bahraini Dinar - BHD", + "currency": { + "type": "FiatCurrency", + "ticker": "BHD", + "name": "Bahraini Dinar", + "symbol": "د.ب.", + "units": [ + { + "code": "د.ب.", + "name": "Bahraini Dinar", + "magnitude": 3, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "BDT", + "label": "Bangladeshi Taka - BDT", + "currency": { + "type": "FiatCurrency", + "ticker": "BDT", + "name": "Bangladeshi Taka", + "symbol": "৳", + "units": [ + { + "code": "৳", + "name": "Bangladeshi Taka", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "BBD", + "label": "Barbadian Dollar - BBD", + "currency": { + "type": "FiatCurrency", + "ticker": "BBD", + "name": "Barbadian Dollar", + "symbol": "$", + "units": [ + { + "code": "$", + "name": "Barbadian Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "BYN", + "label": "Belarusian Ruble - BYN", + "currency": { + "type": "FiatCurrency", + "ticker": "BYN", + "name": "Belarusian Ruble", + "symbol": "р.", + "units": [ + { + "code": "р.", + "name": "Belarusian Ruble", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "BZD", + "label": "Belize Dollar - BZD", + "currency": { + "type": "FiatCurrency", + "ticker": "BZD", + "name": "Belize Dollar", + "symbol": "BZ$", + "units": [ + { + "code": "BZ$", + "name": "Belize Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "BMD", + "label": "Bermudian Dollar - BMD", + "currency": { + "type": "FiatCurrency", + "ticker": "BMD", + "name": "Bermudian Dollar", + "symbol": "$", + "units": [ + { + "code": "$", + "name": "Bermudian Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "BTN", + "label": "Bhutanese Ngultrum - BTN", + "currency": { + "type": "FiatCurrency", + "ticker": "BTN", + "name": "Bhutanese Ngultrum", + "symbol": "Nu.", + "units": [ + { + "code": "Nu.", + "name": "Bhutanese Ngultrum", + "magnitude": 1, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "BTC", + "label": "Bitcoin - BTC", + "currency": { + "type": "CryptoCurrency", + "id": "bitcoin", + "coinType": 0, + "name": "Bitcoin", + "managerAppName": "Bitcoin", + "ticker": "BTC", + "scheme": "bitcoin", + "color": "#ffae35", + "symbol": "Ƀ", + "units": [ + { "name": "bitcoin", "code": "BTC", "magnitude": 8 }, + { "name": "mBTC", "code": "mBTC", "magnitude": 5 }, + { "name": "bit", "code": "bit", "magnitude": 2 }, + { "name": "satoshi", "code": "sat", "magnitude": 0 } + ], + "supportsSegwit": true, + "supportsNativeSegwit": true, + "family": "bitcoin", + "blockAvgTime": 900, + "bitcoinLikeInfo": { "P2PKH": 0, "P2SH": 5, "XPUBVersion": 76067358 }, + "explorerViews": [ + { + "address": "https://blockstream.info/address/$address", + "tx": "https://blockstream.info/tx/$hash" + }, + { + "address": "https://www.blockchain.com/btc/address/$address", + "tx": "https://blockchain.info/btc/tx/$hash" + } + ], + "keywords": ["btc", "bitcoin"], + "explorerId": "btc" + } + }, + { + "value": "BOB", + "label": "Bolivian Boliviano - BOB", + "currency": { + "type": "FiatCurrency", + "ticker": "BOB", + "name": "Bolivian Boliviano", + "symbol": "Bs", + "units": [ + { + "code": "Bs", + "name": "Bolivian Boliviano", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "BAM", + "label": "Bosnia-Herzegovina Convertible Mark - BAM", + "currency": { + "type": "FiatCurrency", + "ticker": "BAM", + "name": "Bosnia-Herzegovina Convertible Mark", + "symbol": "КМ", + "units": [ + { + "code": "КМ", + "name": "Bosnia-Herzegovina Convertible Mark", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "BWP", + "label": "Botswana Pula - BWP", + "currency": { + "type": "FiatCurrency", + "ticker": "BWP", + "name": "Botswana Pula", + "symbol": "P", + "units": [ + { + "code": "P", + "name": "Botswana Pula", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "BRL", + "label": "Brazilian Real - BRL", + "currency": { + "type": "FiatCurrency", + "ticker": "BRL", + "name": "Brazilian Real", + "symbol": "R$", + "units": [ + { + "code": "R$", + "name": "Brazilian Real", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "GBP", + "label": "British Pound - GBP", + "currency": { + "type": "FiatCurrency", + "ticker": "GBP", + "name": "British Pound", + "symbol": "£", + "units": [ + { + "code": "£", + "name": "British Pound", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "BND", + "label": "Brunei Dollar - BND", + "currency": { + "type": "FiatCurrency", + "ticker": "BND", + "name": "Brunei Dollar", + "symbol": "$", + "units": [ + { + "code": "$", + "name": "Brunei Dollar", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "BGN", + "label": "Bulgarian Lev - BGN", + "currency": { + "type": "FiatCurrency", + "ticker": "BGN", + "name": "Bulgarian Lev", + "symbol": "лв.", + "units": [ + { + "code": "лв.", + "name": "Bulgarian Lev", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "BIF", + "label": "Burundian Franc - BIF", + "currency": { + "type": "FiatCurrency", + "ticker": "BIF", + "name": "Burundian Franc", + "symbol": "FBu", + "units": [ + { + "code": "FBu", + "name": "Burundian Franc", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "XPF", + "label": "CFP Franc - XPF", + "currency": { + "type": "FiatCurrency", + "ticker": "XPF", + "name": "CFP Franc", + "symbol": "F", + "units": [ + { + "code": "F", + "name": "CFP Franc", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "KHR", + "label": "Cambodian Riel - KHR", + "currency": { + "type": "FiatCurrency", + "ticker": "KHR", + "name": "Cambodian Riel", + "symbol": "៛", + "units": [ + { + "code": "៛", + "name": "Cambodian Riel", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "CAD", + "label": "Canadian Dollar - CAD", + "currency": { + "type": "FiatCurrency", + "ticker": "CAD", + "name": "Canadian Dollar", + "symbol": "CA$", + "units": [ + { + "code": "CA$", + "name": "Canadian Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "CVE", + "label": "Cape Verdean Escudo - CVE", + "currency": { + "type": "FiatCurrency", + "ticker": "CVE", + "name": "Cape Verdean Escudo", + "symbol": "$", + "units": [ + { + "code": "$", + "name": "Cape Verdean Escudo", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "KYD", + "label": "Cayman Islands Dollar - KYD", + "currency": { + "type": "FiatCurrency", + "ticker": "KYD", + "name": "Cayman Islands Dollar", + "symbol": "$", + "units": [ + { + "code": "$", + "name": "Cayman Islands Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "XAF", + "label": "Central African CFA Franc - XAF", + "currency": { + "type": "FiatCurrency", + "ticker": "XAF", + "name": "Central African CFA Franc", + "symbol": "F", + "units": [ + { + "code": "F", + "name": "Central African CFA Franc", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "CLP", + "label": "Chilean Peso - CLP", + "currency": { + "type": "FiatCurrency", + "ticker": "CLP", + "name": "Chilean Peso", + "symbol": "CLP$", + "units": [ + { + "code": "CLP$", + "name": "Chilean Peso", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "CNY", + "label": "Chinese Yuan Renminbi - CNY", + "currency": { + "type": "FiatCurrency", + "ticker": "CNY", + "name": "Chinese Yuan Renminbi", + "symbol": "¥", + "units": [ + { + "code": "¥", + "name": "Chinese Yuan Renminbi", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "COP", + "label": "Colombian Peso - COP", + "currency": { + "type": "FiatCurrency", + "ticker": "COP", + "name": "Colombian Peso", + "symbol": "$", + "units": [ + { + "code": "$", + "name": "Colombian Peso", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "KMF", + "label": "Comorian Franc - KMF", + "currency": { + "type": "FiatCurrency", + "ticker": "KMF", + "name": "Comorian Franc", + "symbol": "CF", + "units": [ + { + "code": "CF", + "name": "Comorian Franc", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "CDF", + "label": "Congolese Franc - CDF", + "currency": { + "type": "FiatCurrency", + "ticker": "CDF", + "name": "Congolese Franc", + "symbol": "FC", + "units": [ + { + "code": "FC", + "name": "Congolese Franc", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "CRC", + "label": "Costa Rican Colón - CRC", + "currency": { + "type": "FiatCurrency", + "ticker": "CRC", + "name": "Costa Rican Colón", + "symbol": "₡", + "units": [ + { + "code": "₡", + "name": "Costa Rican Colón", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "HRK", + "label": "Croatian Kuna - HRK", + "currency": { + "type": "FiatCurrency", + "ticker": "HRK", + "name": "Croatian Kuna", + "symbol": "kn", + "units": [ + { + "code": "kn", + "name": "Croatian Kuna", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "CUC", + "label": "Cuban Convertible Peso - CUC", + "currency": { + "type": "FiatCurrency", + "ticker": "CUC", + "name": "Cuban Convertible Peso", + "symbol": "CUC", + "units": [ + { + "code": "CUC", + "name": "Cuban Convertible Peso", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "CUP", + "label": "Cuban Peso - CUP", + "currency": { + "type": "FiatCurrency", + "ticker": "CUP", + "name": "Cuban Peso", + "symbol": "$MN", + "units": [ + { + "code": "$MN", + "name": "Cuban Peso", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "CZK", + "label": "Czech Koruna - CZK", + "currency": { + "type": "FiatCurrency", + "ticker": "CZK", + "name": "Czech Koruna", + "symbol": "Kč", + "units": [ + { + "code": "Kč", + "name": "Czech Koruna", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "DKK", + "label": "Danish Krone - DKK", + "currency": { + "type": "FiatCurrency", + "ticker": "DKK", + "name": "Danish Krone", + "symbol": "kr.", + "units": [ + { + "code": "kr.", + "name": "Danish Krone", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "DJF", + "label": "Djiboutian Franc - DJF", + "currency": { + "type": "FiatCurrency", + "ticker": "DJF", + "name": "Djiboutian Franc", + "symbol": "Fdj", + "units": [ + { + "code": "Fdj", + "name": "Djiboutian Franc", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "DOP", + "label": "Dominican Peso - DOP", + "currency": { + "type": "FiatCurrency", + "ticker": "DOP", + "name": "Dominican Peso", + "symbol": "RD$", + "units": [ + { + "code": "RD$", + "name": "Dominican Peso", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "XCD", + "label": "East Caribbean Dollar - XCD", + "currency": { + "type": "FiatCurrency", + "ticker": "XCD", + "name": "East Caribbean Dollar", + "symbol": "$", + "units": [ + { + "code": "$", + "name": "East Caribbean Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "EGP", + "label": "Egyptian Pound - EGP", + "currency": { + "type": "FiatCurrency", + "ticker": "EGP", + "name": "Egyptian Pound", + "symbol": "ج.م.‏", + "units": [ + { + "code": "ج.م.‏", + "name": "Egyptian Pound", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "AED", + "label": "Emirati Dirham - AED", + "currency": { + "type": "FiatCurrency", + "ticker": "AED", + "name": "Emirati Dirham", + "symbol": "د.إ.", + "units": [ + { + "code": "د.إ.", + "name": "Emirati Dirham", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "ERN", + "label": "Eritrean Nakfa - ERN", + "currency": { + "type": "FiatCurrency", + "ticker": "ERN", + "name": "Eritrean Nakfa", + "symbol": "Nfk", + "units": [ + { + "code": "Nfk", + "name": "Eritrean Nakfa", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "ETH", + "label": "Ethereum - ETH", + "currency": { + "type": "CryptoCurrency", + "id": "ethereum", + "coinType": 60, + "name": "Ethereum", + "managerAppName": "Ethereum", + "ticker": "ETH", + "scheme": "ethereum", + "color": "#0ebdcd", + "symbol": "Ξ", + "family": "evm", + "blockAvgTime": 15, + "units": [ + { "name": "ether", "code": "ETH", "magnitude": 18 }, + { "name": "Gwei", "code": "Gwei", "magnitude": 9 }, + { "name": "Mwei", "code": "Mwei", "magnitude": 6 }, + { "name": "Kwei", "code": "Kwei", "magnitude": 3 }, + { "name": "wei", "code": "wei", "magnitude": 0 } + ], + "ethereumLikeInfo": { "chainId": 1 }, + "explorerViews": [ + { + "tx": "https://etherscan.io/tx/$hash", + "address": "https://etherscan.io/address/$address", + "token": "https://etherscan.io/token/$contractAddress?a=$address" + } + ], + "keywords": ["eth", "ethereum"], + "explorerId": "eth" + } + }, + { + "value": "ETB", + "label": "Ethiopian Birr - ETB", + "currency": { + "type": "FiatCurrency", + "ticker": "ETB", + "name": "Ethiopian Birr", + "symbol": "ETB", + "units": [ + { + "code": "ETB", + "name": "Ethiopian Birr", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "EUR", + "label": "Euro - EUR", + "currency": { + "type": "FiatCurrency", + "ticker": "EUR", + "name": "Euro", + "symbol": "€", + "units": [ + { + "code": "€", + "name": "Euro", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "FKP", + "label": "Falkland Islands Pound - FKP", + "currency": { + "type": "FiatCurrency", + "ticker": "FKP", + "name": "Falkland Islands Pound", + "symbol": "£", + "units": [ + { + "code": "£", + "name": "Falkland Islands Pound", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "FJD", + "label": "Fijian Dollar - FJD", + "currency": { + "type": "FiatCurrency", + "ticker": "FJD", + "name": "Fijian Dollar", + "symbol": "$", + "units": [ + { + "code": "$", + "name": "Fijian Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "GMD", + "label": "Gambian Dalasi - GMD", + "currency": { + "type": "FiatCurrency", + "ticker": "GMD", + "name": "Gambian Dalasi", + "symbol": "D", + "units": [ + { + "code": "D", + "name": "Gambian Dalasi", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "GEL", + "label": "Georgian Lari - GEL", + "currency": { + "type": "FiatCurrency", + "ticker": "GEL", + "name": "Georgian Lari", + "symbol": "GEL", + "units": [ + { + "code": "GEL", + "name": "Georgian Lari", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "GHS", + "label": "Ghanaian Cedi - GHS", + "currency": { + "type": "FiatCurrency", + "ticker": "GHS", + "name": "Ghanaian Cedi", + "symbol": "₵", + "units": [ + { + "code": "₵", + "name": "Ghanaian Cedi", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "GIP", + "label": "Gibraltar Pound - GIP", + "currency": { + "type": "FiatCurrency", + "ticker": "GIP", + "name": "Gibraltar Pound", + "symbol": "£", + "units": [ + { + "code": "£", + "name": "Gibraltar Pound", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "GTQ", + "label": "Guatemalan Quetzal - GTQ", + "currency": { + "type": "FiatCurrency", + "ticker": "GTQ", + "name": "Guatemalan Quetzal", + "symbol": "Q", + "units": [ + { + "code": "Q", + "name": "Guatemalan Quetzal", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "GNF", + "label": "Guinean Franc - GNF", + "currency": { + "type": "FiatCurrency", + "ticker": "GNF", + "name": "Guinean Franc", + "symbol": "FG", + "units": [ + { + "code": "FG", + "name": "Guinean Franc", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "GYD", + "label": "Guyanese Dollar - GYD", + "currency": { + "type": "FiatCurrency", + "ticker": "GYD", + "name": "Guyanese Dollar", + "symbol": "$", + "units": [ + { + "code": "$", + "name": "Guyanese Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "HTG", + "label": "Haitian Gourde - HTG", + "currency": { + "type": "FiatCurrency", + "ticker": "HTG", + "name": "Haitian Gourde", + "symbol": "G", + "units": [ + { + "code": "G", + "name": "Haitian Gourde", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "HNL", + "label": "Honduran Lempira - HNL", + "currency": { + "type": "FiatCurrency", + "ticker": "HNL", + "name": "Honduran Lempira", + "symbol": "L.", + "units": [ + { + "code": "L.", + "name": "Honduran Lempira", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "HKD", + "label": "Hong Kong Dollar - HKD", + "currency": { + "type": "FiatCurrency", + "ticker": "HKD", + "name": "Hong Kong Dollar", + "symbol": "HK$", + "units": [ + { + "code": "HK$", + "name": "Hong Kong Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "HUF", + "label": "Hungarian Forint - HUF", + "currency": { + "type": "FiatCurrency", + "ticker": "HUF", + "name": "Hungarian Forint", + "symbol": "Ft", + "units": [ + { + "code": "Ft", + "name": "Hungarian Forint", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "ISK", + "label": "Iceland Krona - ISK", + "currency": { + "type": "FiatCurrency", + "ticker": "ISK", + "name": "Iceland Krona", + "symbol": "kr.", + "units": [ + { + "code": "kr.", + "name": "Iceland Krona", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "INR", + "label": "Indian Rupee - INR", + "currency": { + "type": "FiatCurrency", + "ticker": "INR", + "name": "Indian Rupee", + "symbol": "₹", + "units": [ + { + "code": "₹", + "name": "Indian Rupee", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "IDR", + "label": "Indonesian Rupiah - IDR", + "currency": { + "type": "FiatCurrency", + "ticker": "IDR", + "name": "Indonesian Rupiah", + "symbol": "Rp", + "units": [ + { + "code": "Rp", + "name": "Indonesian Rupiah", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "IRR", + "label": "Iranian Rial - IRR", + "currency": { + "type": "FiatCurrency", + "ticker": "IRR", + "name": "Iranian Rial", + "symbol": "﷼", + "units": [ + { + "code": "﷼", + "name": "Iranian Rial", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "IQD", + "label": "Iraqi Dinar - IQD", + "currency": { + "type": "FiatCurrency", + "ticker": "IQD", + "name": "Iraqi Dinar", + "symbol": "د.ع.‏", + "units": [ + { + "code": "د.ع.‏", + "name": "Iraqi Dinar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "ILS", + "label": "Israeli Shekel - ILS", + "currency": { + "type": "FiatCurrency", + "ticker": "ILS", + "name": "Israeli Shekel", + "symbol": "₪", + "units": [ + { + "code": "₪", + "name": "Israeli Shekel", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "JMD", + "label": "Jamaican Dollar - JMD", + "currency": { + "type": "FiatCurrency", + "ticker": "JMD", + "name": "Jamaican Dollar", + "symbol": "J$", + "units": [ + { + "code": "J$", + "name": "Jamaican Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "JPY", + "label": "Japanese Yen - JPY", + "currency": { + "type": "FiatCurrency", + "ticker": "JPY", + "name": "Japanese Yen", + "symbol": "¥", + "units": [ + { + "code": "¥", + "name": "Japanese Yen", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "JOD", + "label": "Jordanian Dinar - JOD", + "currency": { + "type": "FiatCurrency", + "ticker": "JOD", + "name": "Jordanian Dinar", + "symbol": "د.ا.‏", + "units": [ + { + "code": "د.ا.‏", + "name": "Jordanian Dinar", + "magnitude": 3, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "KZT", + "label": "Kazakhstani Tenge - KZT", + "currency": { + "type": "FiatCurrency", + "ticker": "KZT", + "name": "Kazakhstani Tenge", + "symbol": "₸", + "units": [ + { + "code": "₸", + "name": "Kazakhstani Tenge", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "KES", + "label": "Kenyan Shilling - KES", + "currency": { + "type": "FiatCurrency", + "ticker": "KES", + "name": "Kenyan Shilling", + "symbol": "KSh", + "units": [ + { + "code": "KSh", + "name": "Kenyan Shilling", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "KWD", + "label": "Kuwaiti Dinar - KWD", + "currency": { + "type": "FiatCurrency", + "ticker": "KWD", + "name": "Kuwaiti Dinar", + "symbol": "د.ك.‏", + "units": [ + { + "code": "د.ك.‏", + "name": "Kuwaiti Dinar", + "magnitude": 3, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "KGS", + "label": "Kyrgyzstani Som - KGS", + "currency": { + "type": "FiatCurrency", + "ticker": "KGS", + "name": "Kyrgyzstani Som", + "symbol": "сом", + "units": [ + { + "code": "сом", + "name": "Kyrgyzstani Som", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "LAK", + "label": "Lao Kip - LAK", + "currency": { + "type": "FiatCurrency", + "ticker": "LAK", + "name": "Lao Kip", + "symbol": "₭", + "units": [ + { + "code": "₭", + "name": "Lao Kip", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "LBP", + "label": "Lebanese Pound - LBP", + "currency": { + "type": "FiatCurrency", + "ticker": "LBP", + "name": "Lebanese Pound", + "symbol": "ل.ل.‏", + "units": [ + { + "code": "ل.ل.‏", + "name": "Lebanese Pound", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "LSL", + "label": "Lesotho Loti - LSL", + "currency": { + "type": "FiatCurrency", + "ticker": "LSL", + "name": "Lesotho Loti", + "symbol": "M", + "units": [ + { + "code": "M", + "name": "Lesotho Loti", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "LRD", + "label": "Liberian Dollar - LRD", + "currency": { + "type": "FiatCurrency", + "ticker": "LRD", + "name": "Liberian Dollar", + "symbol": "$", + "units": [ + { + "code": "$", + "name": "Liberian Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "LYD", + "label": "Libyan Dinar - LYD", + "currency": { + "type": "FiatCurrency", + "ticker": "LYD", + "name": "Libyan Dinar", + "symbol": "د.ل.‏", + "units": [ + { + "code": "د.ل.‏", + "name": "Libyan Dinar", + "magnitude": 3, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "MOP", + "label": "Macanese Pataca - MOP", + "currency": { + "type": "FiatCurrency", + "ticker": "MOP", + "name": "Macanese Pataca", + "symbol": "MOP$", + "units": [ + { + "code": "MOP$", + "name": "Macanese Pataca", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "MKD", + "label": "Macedonian Denar - MKD", + "currency": { + "type": "FiatCurrency", + "ticker": "MKD", + "name": "Macedonian Denar", + "symbol": "ден.", + "units": [ + { + "code": "ден.", + "name": "Macedonian Denar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "MGA", + "label": "Malagasy Ariary - MGA", + "currency": { + "type": "FiatCurrency", + "ticker": "MGA", + "name": "Malagasy Ariary", + "symbol": "Ar", + "units": [ + { + "code": "Ar", + "name": "Malagasy Ariary", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "MWK", + "label": "Malawian Kwacha - MWK", + "currency": { + "type": "FiatCurrency", + "ticker": "MWK", + "name": "Malawian Kwacha", + "symbol": "MK", + "units": [ + { + "code": "MK", + "name": "Malawian Kwacha", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "MYR", + "label": "Malaysian Ringgit - MYR", + "currency": { + "type": "FiatCurrency", + "ticker": "MYR", + "name": "Malaysian Ringgit", + "symbol": "RM", + "units": [ + { + "code": "RM", + "name": "Malaysian Ringgit", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "MVR", + "label": "Maldivian Rufiyaa - MVR", + "currency": { + "type": "FiatCurrency", + "ticker": "MVR", + "name": "Maldivian Rufiyaa", + "symbol": "MVR", + "units": [ + { + "code": "MVR", + "name": "Maldivian Rufiyaa", + "magnitude": 1, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "MUR", + "label": "Mauritian Rupee - MUR", + "currency": { + "type": "FiatCurrency", + "ticker": "MUR", + "name": "Mauritian Rupee", + "symbol": "₨", + "units": [ + { + "code": "₨", + "name": "Mauritian Rupee", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "MXN", + "label": "Mexican Peso - MXN", + "currency": { + "type": "FiatCurrency", + "ticker": "MXN", + "name": "Mexican Peso", + "symbol": "Mex$", + "units": [ + { + "code": "Mex$", + "name": "Mexican Peso", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "MDL", + "label": "Moldovan Leu - MDL", + "currency": { + "type": "FiatCurrency", + "ticker": "MDL", + "name": "Moldovan Leu", + "symbol": "lei", + "units": [ + { + "code": "lei", + "name": "Moldovan Leu", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "MNT", + "label": "Mongolian Tugrik - MNT", + "currency": { + "type": "FiatCurrency", + "ticker": "MNT", + "name": "Mongolian Tugrik", + "symbol": "₮", + "units": [ + { + "code": "₮", + "name": "Mongolian Tugrik", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "MAD", + "label": "Moroccan Dirham - MAD", + "currency": { + "type": "FiatCurrency", + "ticker": "MAD", + "name": "Moroccan Dirham", + "symbol": "د.م.‏", + "units": [ + { + "code": "د.م.‏", + "name": "Moroccan Dirham", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "MZN", + "label": "Mozambican Metical - MZN", + "currency": { + "type": "FiatCurrency", + "ticker": "MZN", + "name": "Mozambican Metical", + "symbol": "MT", + "units": [ + { + "code": "MT", + "name": "Mozambican Metical", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "MMK", + "label": "Myanmar Kyat - MMK", + "currency": { + "type": "FiatCurrency", + "ticker": "MMK", + "name": "Myanmar Kyat", + "symbol": "K", + "units": [ + { + "code": "K", + "name": "Myanmar Kyat", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "NAD", + "label": "Namibian Dollar - NAD", + "currency": { + "type": "FiatCurrency", + "ticker": "NAD", + "name": "Namibian Dollar", + "symbol": "$", + "units": [ + { + "code": "$", + "name": "Namibian Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "NPR", + "label": "Nepalese Rupee - NPR", + "currency": { + "type": "FiatCurrency", + "ticker": "NPR", + "name": "Nepalese Rupee", + "symbol": "₨", + "units": [ + { + "code": "₨", + "name": "Nepalese Rupee", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "ANG", + "label": "Netherlands Antillean Guilder - ANG", + "currency": { + "type": "FiatCurrency", + "ticker": "ANG", + "name": "Netherlands Antillean Guilder", + "symbol": "ƒ", + "units": [ + { + "code": "ƒ", + "name": "Netherlands Antillean Guilder", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "TWD", + "label": "New Taiwan Dollar - TWD", + "currency": { + "type": "FiatCurrency", + "ticker": "TWD", + "name": "New Taiwan Dollar", + "symbol": "NT$", + "units": [ + { + "code": "NT$", + "name": "New Taiwan Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "NZD", + "label": "New Zealand Dollar - NZD", + "currency": { + "type": "FiatCurrency", + "ticker": "NZD", + "name": "New Zealand Dollar", + "symbol": "NZ$", + "units": [ + { + "code": "NZ$", + "name": "New Zealand Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "NIO", + "label": "Nicaraguan Córdoba - NIO", + "currency": { + "type": "FiatCurrency", + "ticker": "NIO", + "name": "Nicaraguan Córdoba", + "symbol": "C$", + "units": [ + { + "code": "C$", + "name": "Nicaraguan Córdoba", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "NGN", + "label": "Nigerian Naira - NGN", + "currency": { + "type": "FiatCurrency", + "ticker": "NGN", + "name": "Nigerian Naira", + "symbol": "₦", + "units": [ + { + "code": "₦", + "name": "Nigerian Naira", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "KPW", + "label": "North Korean Won - KPW", + "currency": { + "type": "FiatCurrency", + "ticker": "KPW", + "name": "North Korean Won", + "symbol": "₩", + "units": [ + { + "code": "₩", + "name": "North Korean Won", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "NOK", + "label": "Norwegian Krone - NOK", + "currency": { + "type": "FiatCurrency", + "ticker": "NOK", + "name": "Norwegian Krone", + "symbol": "kr", + "units": [ + { + "code": "kr", + "name": "Norwegian Krone", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "OMR", + "label": "Omani Rial - OMR", + "currency": { + "type": "FiatCurrency", + "ticker": "OMR", + "name": "Omani Rial", + "symbol": "﷼", + "units": [ + { + "code": "﷼", + "name": "Omani Rial", + "magnitude": 3, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "PKR", + "label": "Pakistani Rupee - PKR", + "currency": { + "type": "FiatCurrency", + "ticker": "PKR", + "name": "Pakistani Rupee", + "symbol": "₨", + "units": [ + { + "code": "₨", + "name": "Pakistani Rupee", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "PAB", + "label": "Panamanian Balboa - PAB", + "currency": { + "type": "FiatCurrency", + "ticker": "PAB", + "name": "Panamanian Balboa", + "symbol": "B/.", + "units": [ + { + "code": "B/.", + "name": "Panamanian Balboa", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "PGK", + "label": "Papua New Guinean Kina - PGK", + "currency": { + "type": "FiatCurrency", + "ticker": "PGK", + "name": "Papua New Guinean Kina", + "symbol": "K", + "units": [ + { + "code": "K", + "name": "Papua New Guinean Kina", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "PYG", + "label": "Paraguayan Guarani - PYG", + "currency": { + "type": "FiatCurrency", + "ticker": "PYG", + "name": "Paraguayan Guarani", + "symbol": "₲", + "units": [ + { + "code": "₲", + "name": "Paraguayan Guarani", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "PEN", + "label": "Peruvian Sol - PEN", + "currency": { + "type": "FiatCurrency", + "ticker": "PEN", + "name": "Peruvian Sol", + "symbol": "S/.", + "units": [ + { + "code": "S/.", + "name": "Peruvian Sol", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "PHP", + "label": "Philippine Peso - PHP", + "currency": { + "type": "FiatCurrency", + "ticker": "PHP", + "name": "Philippine Peso", + "symbol": "₱", + "units": [ + { + "code": "₱", + "name": "Philippine Peso", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "PLN", + "label": "Polish Złoty - PLN", + "currency": { + "type": "FiatCurrency", + "ticker": "PLN", + "name": "Polish Złoty", + "symbol": "zł", + "units": [ + { + "code": "zł", + "name": "Polish Złoty", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "QAR", + "label": "Qatari Riyal - QAR", + "currency": { + "type": "FiatCurrency", + "ticker": "QAR", + "name": "Qatari Riyal", + "symbol": "﷼", + "units": [ + { + "code": "﷼", + "name": "Qatari Riyal", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "RON", + "label": "Romanian Leu - RON", + "currency": { + "type": "FiatCurrency", + "ticker": "RON", + "name": "Romanian Leu", + "symbol": "L", + "units": [ + { + "code": "L", + "name": "Romanian Leu", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "RUB", + "label": "Russian Rouble - RUB", + "currency": { + "type": "FiatCurrency", + "ticker": "RUB", + "name": "Russian Rouble", + "symbol": "₽", + "units": [ + { + "code": "₽", + "name": "Russian Rouble", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "RWF", + "label": "Rwandan Franc - RWF", + "currency": { + "type": "FiatCurrency", + "ticker": "RWF", + "name": "Rwandan Franc", + "symbol": "RWF", + "units": [ + { + "code": "RWF", + "name": "Rwandan Franc", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "SHP", + "label": "Saint Helena Pound - SHP", + "currency": { + "type": "FiatCurrency", + "ticker": "SHP", + "name": "Saint Helena Pound", + "symbol": "£", + "units": [ + { + "code": "£", + "name": "Saint Helena Pound", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "SVC", + "label": "Salvadoran Colón - SVC", + "currency": { + "type": "FiatCurrency", + "ticker": "SVC", + "name": "Salvadoran Colón", + "symbol": "₡", + "units": [ + { + "code": "₡", + "name": "Salvadoran Colón", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "WST", + "label": "Samoan Tala - WST", + "currency": { + "type": "FiatCurrency", + "ticker": "WST", + "name": "Samoan Tala", + "symbol": "WS$", + "units": [ + { + "code": "WS$", + "name": "Samoan Tala", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "SAR", + "label": "Saudi Riyal - SAR", + "currency": { + "type": "FiatCurrency", + "ticker": "SAR", + "name": "Saudi Riyal", + "symbol": "﷼", + "units": [ + { + "code": "﷼", + "name": "Saudi Riyal", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "RSD", + "label": "Serbian Dinar - RSD", + "currency": { + "type": "FiatCurrency", + "ticker": "RSD", + "name": "Serbian Dinar", + "symbol": "Дин.", + "units": [ + { + "code": "Дин.", + "name": "Serbian Dinar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "SCR", + "label": "Seychellois Rupee - SCR", + "currency": { + "type": "FiatCurrency", + "ticker": "SCR", + "name": "Seychellois Rupee", + "symbol": "₨", + "units": [ + { + "code": "₨", + "name": "Seychellois Rupee", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "SLL", + "label": "Sierra Leonean Leone - SLL", + "currency": { + "type": "FiatCurrency", + "ticker": "SLL", + "name": "Sierra Leonean Leone", + "symbol": "Le", + "units": [ + { + "code": "Le", + "name": "Sierra Leonean Leone", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "SGD", + "label": "Singapore Dollar - SGD", + "currency": { + "type": "FiatCurrency", + "ticker": "SGD", + "name": "Singapore Dollar", + "symbol": "S$", + "units": [ + { + "code": "S$", + "name": "Singapore Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "SBD", + "label": "Solomon Islands Dollar - SBD", + "currency": { + "type": "FiatCurrency", + "ticker": "SBD", + "name": "Solomon Islands Dollar", + "symbol": "$", + "units": [ + { + "code": "$", + "name": "Solomon Islands Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "SOS", + "label": "Somali Shilling - SOS", + "currency": { + "type": "FiatCurrency", + "ticker": "SOS", + "name": "Somali Shilling", + "symbol": "S", + "units": [ + { + "code": "S", + "name": "Somali Shilling", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "ZAR", + "label": "South African Rand - ZAR", + "currency": { + "type": "FiatCurrency", + "ticker": "ZAR", + "name": "South African Rand", + "symbol": "R", + "units": [ + { + "code": "R", + "name": "South African Rand", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "KRW", + "label": "South Korean Won - KRW", + "currency": { + "type": "FiatCurrency", + "ticker": "KRW", + "name": "South Korean Won", + "symbol": "₩", + "units": [ + { + "code": "₩", + "name": "South Korean Won", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "LKR", + "label": "Sri Lankan Rupee - LKR", + "currency": { + "type": "FiatCurrency", + "ticker": "LKR", + "name": "Sri Lankan Rupee", + "symbol": "₨", + "units": [ + { + "code": "₨", + "name": "Sri Lankan Rupee", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "SDG", + "label": "Sudanese Pound - SDG", + "currency": { + "type": "FiatCurrency", + "ticker": "SDG", + "name": "Sudanese Pound", + "symbol": "£‏", + "units": [ + { + "code": "£‏", + "name": "Sudanese Pound", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "SRD", + "label": "Surinamese Dollar - SRD", + "currency": { + "type": "FiatCurrency", + "ticker": "SRD", + "name": "Surinamese Dollar", + "symbol": "$", + "units": [ + { + "code": "$", + "name": "Surinamese Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "SZL", + "label": "Swazi Lilangeni - SZL", + "currency": { + "type": "FiatCurrency", + "ticker": "SZL", + "name": "Swazi Lilangeni", + "symbol": "E", + "units": [ + { + "code": "E", + "name": "Swazi Lilangeni", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "SEK", + "label": "Swedish Krona - SEK", + "currency": { + "type": "FiatCurrency", + "ticker": "SEK", + "name": "Swedish Krona", + "symbol": "kr", + "units": [ + { + "code": "kr", + "name": "Swedish Krona", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "CHF", + "label": "Swiss Franc - CHF", + "currency": { + "type": "FiatCurrency", + "ticker": "CHF", + "name": "Swiss Franc", + "symbol": "CHF", + "units": [ + { + "code": "CHF", + "name": "Swiss Franc", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "SYP", + "label": "Syrian Pound - SYP", + "currency": { + "type": "FiatCurrency", + "ticker": "SYP", + "name": "Syrian Pound", + "symbol": "£", + "units": [ + { + "code": "£", + "name": "Syrian Pound", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "STD", + "label": "São Tomé and Príncipe Dobra - STD", + "currency": { + "type": "FiatCurrency", + "ticker": "STD", + "name": "São Tomé and Príncipe Dobra", + "symbol": "Db", + "units": [ + { + "code": "Db", + "name": "São Tomé and Príncipe Dobra", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "TJS", + "label": "Tajikistani Somoni - TJS", + "currency": { + "type": "FiatCurrency", + "ticker": "TJS", + "name": "Tajikistani Somoni", + "symbol": "TJS", + "units": [ + { + "code": "TJS", + "name": "Tajikistani Somoni", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "TZS", + "label": "Tanzanian Shilling - TZS", + "currency": { + "type": "FiatCurrency", + "ticker": "TZS", + "name": "Tanzanian Shilling", + "symbol": "TSh", + "units": [ + { + "code": "TSh", + "name": "Tanzanian Shilling", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "THB", + "label": "Thai Baht - THB", + "currency": { + "type": "FiatCurrency", + "ticker": "THB", + "name": "Thai Baht", + "symbol": "฿", + "units": [ + { + "code": "฿", + "name": "Thai Baht", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "TOP", + "label": "Tongan Pa'anga - TOP", + "currency": { + "type": "FiatCurrency", + "ticker": "TOP", + "name": "Tongan Pa'anga", + "symbol": "T$", + "units": [ + { + "code": "T$", + "name": "Tongan Pa'anga", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "TTD", + "label": "Trinidad and Tobago Dollar - TTD", + "currency": { + "type": "FiatCurrency", + "ticker": "TTD", + "name": "Trinidad and Tobago Dollar", + "symbol": "TT$", + "units": [ + { + "code": "TT$", + "name": "Trinidad and Tobago Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "TND", + "label": "Tunisian Dinar - TND", + "currency": { + "type": "FiatCurrency", + "ticker": "TND", + "name": "Tunisian Dinar", + "symbol": "د.ت.‏", + "units": [ + { + "code": "د.ت.‏", + "name": "Tunisian Dinar", + "magnitude": 3, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "TRY", + "label": "Turkish Lira - TRY", + "currency": { + "type": "FiatCurrency", + "ticker": "TRY", + "name": "Turkish Lira", + "symbol": "₺", + "units": [ + { + "code": "₺", + "name": "Turkish Lira", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "TMT", + "label": "Turkmenistani Manat - TMT", + "currency": { + "type": "FiatCurrency", + "ticker": "TMT", + "name": "Turkmenistani Manat", + "symbol": "m", + "units": [ + { + "code": "m", + "name": "Turkmenistani Manat", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "USD", + "label": "US Dollar - USD", + "currency": { + "type": "FiatCurrency", + "ticker": "USD", + "name": "US Dollar", + "symbol": "$", + "units": [ + { + "code": "$", + "name": "US Dollar", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "UGX", + "label": "Ugandan Shilling - UGX", + "currency": { + "type": "FiatCurrency", + "ticker": "UGX", + "name": "Ugandan Shilling", + "symbol": "USh", + "units": [ + { + "code": "USh", + "name": "Ugandan Shilling", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "UAH", + "label": "Ukrainian Hryvnia - UAH", + "currency": { + "type": "FiatCurrency", + "ticker": "UAH", + "name": "Ukrainian Hryvnia", + "symbol": "₴", + "units": [ + { + "code": "₴", + "name": "Ukrainian Hryvnia", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "UYU", + "label": "Uruguayan Peso - UYU", + "currency": { + "type": "FiatCurrency", + "ticker": "UYU", + "name": "Uruguayan Peso", + "symbol": "$U", + "units": [ + { + "code": "$U", + "name": "Uruguayan Peso", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "UZS", + "label": "Uzbekistani Som - UZS", + "currency": { + "type": "FiatCurrency", + "ticker": "UZS", + "name": "Uzbekistani Som", + "symbol": "сўм", + "units": [ + { + "code": "сўм", + "name": "Uzbekistani Som", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "VUV", + "label": "Vanuatu Vatu - VUV", + "currency": { + "type": "FiatCurrency", + "ticker": "VUV", + "name": "Vanuatu Vatu", + "symbol": "VT", + "units": [ + { + "code": "VT", + "name": "Vanuatu Vatu", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "VND", + "label": "Vietnamese Dong - VND", + "currency": { + "type": "FiatCurrency", + "ticker": "VND", + "name": "Vietnamese Dong", + "symbol": "₫", + "units": [ + { + "code": "₫", + "name": "Vietnamese Dong", + "magnitude": 0, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "XOF", + "label": "West African CFA Franc - XOF", + "currency": { + "type": "FiatCurrency", + "ticker": "XOF", + "name": "West African CFA Franc", + "symbol": "F", + "units": [ + { + "code": "F", + "name": "West African CFA Franc", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "YER", + "label": "Yemeni Rial - YER", + "currency": { + "type": "FiatCurrency", + "ticker": "YER", + "name": "Yemeni Rial", + "symbol": "﷼", + "units": [ + { + "code": "﷼", + "name": "Yemeni Rial", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + }, + { + "value": "ZMW", + "label": "Zambian Kwacha - ZMW", + "currency": { + "type": "FiatCurrency", + "ticker": "ZMW", + "name": "Zambian Kwacha", + "symbol": "ZK", + "units": [ + { + "code": "ZK", + "name": "Zambian Kwacha", + "magnitude": 2, + "showAllDigits": true, + "prefixCode": true + } + ] + } + } + ], + "dismissedContentCards": {}, + "anonymousBrazeId": "anonymous_id_1", + "starredMarketCoins": [] + }, + "accounts": [ + { + "data": { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "seedIdentifier": "048acdc882ef0e5812b111ba9fad64ad5592b608599052f85e76895f9db5e0e7e7a4de6104c5b506dd66cbf54ab15a5d23631441221d985f926032f3f050eccba3", + "used": true, + "derivationMode": "", + "index": 0, + "freshAddress": "0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4", + "freshAddressPath": "44'/60'/0'/0/0", + "blockHeight": 20470170, + "syncHash": "0xd88f724b", + "creationDate": "2021-05-26T12:50:20.000Z", + "operationsCount": 85, + "operations": [ + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x553b5c361f51ecd0dfa3ce032e97c118f2fe56d671e99100ff0276ae00f88f12-FEES", + "hash": "0x553b5c361f51ecd0dfa3ce032e97c118f2fe56d671e99100ff0276ae00f88f12", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x5b5af35a0965c9e779f4b1afaa170ce7f50bd47e99a94a6df8f80db5735abaa1", + "blockHeight": 20469429, + "extra": {}, + "date": "2024-08-06T12:07:59.000Z", + "value": "173619814334642", + "fee": "173619814334642", + "transactionSequenceNumber": 47, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x20b61a3234f7034bb7aadb3be8f98bba5053683bfb452c91c50b4d0e752adbe9-OUT", + "hash": "0x20b61a3234f7034bb7aadb3be8f98bba5053683bfb452c91c50b4d0e752adbe9", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xc2f4d4ff738698391f41144ed051267e85cf28f8375f72590532b5a32179bf63", + "blockHeight": 20469398, + "extra": {}, + "date": "2024-08-06T12:01:47.000Z", + "value": "9060219072753000", + "fee": "60219072753000", + "transactionSequenceNumber": 46, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x683634914da2cc1c176df0186cab681f46f6c804a5a45045453eb9f05aee520b-IN", + "hash": "0x683634914da2cc1c176df0186cab681f46f6c804a5a45045453eb9f05aee520b", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x701e5a16588f9a1833c13b3276f8870cf7c3734b1cf74bd46d6dcd6184968053", + "blockHeight": 20469390, + "extra": {}, + "date": "2024-08-06T12:00:11.000Z", + "value": "42297750000000000", + "fee": "57213982833000", + "transactionSequenceNumber": 664653, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x2290fcfa3685a92ada149edf9afa757214fac65985407b0ed056ed69c06142ab-IN", + "hash": "0x2290fcfa3685a92ada149edf9afa757214fac65985407b0ed056ed69c06142ab", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xc56a075ccae968b682d0c564ece44ffeefca247438d2e68b535fe0ed0b5236ae", + "blockHeight": 20240280, + "extra": {}, + "date": "2024-07-05T12:23:23.000Z", + "value": "50203370000000000", + "fee": "147172671450000", + "transactionSequenceNumber": 629814, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x219c1e0df8a2b900496f5aa03279210f45e935e6abed2135d1511d6aae061ddf-OUT", + "hash": "0x219c1e0df8a2b900496f5aa03279210f45e935e6abed2135d1511d6aae061ddf", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x4b5f834Ede79C52bD33d952C719a0B641a0310EA"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xa3e5c64f1b8bed11b0013416f74ce7db413727f597dc77ca562b7ec877200093", + "blockHeight": 20240177, + "extra": {}, + "date": "2024-07-05T12:02:35.000Z", + "value": "53331516844802039", + "fee": "176555220345000", + "transactionSequenceNumber": 45, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x0c9445dc2b9c70ad4fd9acdb84f05cf02be08caa17f4552f14c7c58e71d62f79-NONE", + "hash": "0x0c9445dc2b9c70ad4fd9acdb84f05cf02be08caa17f4552f14c7c58e71d62f79", + "type": "NONE", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x974026E01660D11B5b5F08394806b619702Ac35C"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xa870f670ae8e85ad097cb45fbe57260ca4f053abafebad9b7d6ae7ba819e08bf", + "blockHeight": 20240051, + "extra": {}, + "date": "2024-07-05T11:37:11.000Z", + "value": "0", + "fee": "2549651058972421", + "transactionSequenceNumber": 629738, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x7a9b95e3dd752dd39fcdfbf3cf4d533bedbd7e8585215ed612510e3f7e8c72b1-IN", + "hash": "0x7a9b95e3dd752dd39fcdfbf3cf4d533bedbd7e8585215ed612510e3f7e8c72b1", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x96dee061d89d31f0d219eba3b0779306b15480d0124fa87a7849f961060ee41a", + "blockHeight": 20240017, + "extra": {}, + "date": "2024-07-05T11:30:23.000Z", + "value": "12560780000000000", + "fee": "154726168023000", + "transactionSequenceNumber": 629732, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x90c030600d56f6e32e8358cf6d0b5cb58acb638f3be650d19bd50d6b773662b3-FEES", + "hash": "0x90c030600d56f6e32e8358cf6d0b5cb58acb638f3be650d19bd50d6b773662b3", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xf2294b578be2af511ce7f5b868ef0a5b20bd0cb0da48a291bfc88a37614816dc", + "blockHeight": 20240013, + "extra": {}, + "date": "2024-07-05T11:29:35.000Z", + "value": "438361992862781", + "fee": "438361992862781", + "transactionSequenceNumber": 44, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x94447ae1acebf80b0ab83c7adb75dc7b15ecfc94e0c924e44b14f54c341f728f-FEES", + "hash": "0x94447ae1acebf80b0ab83c7adb75dc7b15ecfc94e0c924e44b14f54c341f728f", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x679f2dec11ab924e2a23ac0951c0adcc333dfc219baedb8f394d5c80a218ee60", + "blockHeight": 20240009, + "extra": {}, + "date": "2024-07-05T11:28:47.000Z", + "value": "341211698897545", + "fee": "341211698897545", + "transactionSequenceNumber": 43, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x85179c479540a20454dcde82a2ac609621929777904c753049122024ff283270-FEES", + "hash": "0x85179c479540a20454dcde82a2ac609621929777904c753049122024ff283270", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xb6bccfa2ad6e9c082e74b512521fc681b94bf4432a0f0c4ad13e4322766d57bd", + "blockHeight": 20240005, + "extra": {}, + "date": "2024-07-05T11:27:59.000Z", + "value": "326550060894449", + "fee": "326550060894449", + "transactionSequenceNumber": 42, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x99acfdc806295636ebb3fad5d6dfcf97c34c612f60cd105321fca2790b7818f3-FEES", + "hash": "0x99acfdc806295636ebb3fad5d6dfcf97c34c612f60cd105321fca2790b7818f3", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x1529c9bd012be0a6815eb95a38504f772028d8f69a1520e93321c39e30dd4b1a", + "blockHeight": 20240001, + "extra": {}, + "date": "2024-07-05T11:27:11.000Z", + "value": "345203356897186", + "fee": "345203356897186", + "transactionSequenceNumber": 41, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x1b00fabe928204205b63c925c2498033a050b8de31128bec39b87c934b65386d-IN", + "hash": "0x1b00fabe928204205b63c925c2498033a050b8de31128bec39b87c934b65386d", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x72b215b8bb59544e04c359cac8725dd338970f48d3d7a0c4ba375fc408704e65", + "blockHeight": 20239998, + "extra": {}, + "date": "2024-07-05T11:26:35.000Z", + "value": "13183080000000000", + "fee": "161921772474000", + "transactionSequenceNumber": 629728, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x2cdb5f3416d11e5c4a770458ebcb5423a8fe9141df38681df633d9ebc7a84a7e-NONE", + "hash": "0x2cdb5f3416d11e5c4a770458ebcb5423a8fe9141df38681df633d9ebc7a84a7e", + "type": "NONE", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x974026E01660D11B5b5F08394806b619702Ac35C"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xf9fe90e9480616618abc032de9aa4cc2c9ef5353d7d3be68554c27ce56ede587", + "blockHeight": 20239328, + "extra": {}, + "date": "2024-07-05T09:11:59.000Z", + "value": "0", + "fee": "5331625936715048", + "transactionSequenceNumber": 629551, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xedfa71323c94fa9a837c7f9fe1c64c4d8d146a945ec8425b4a1e771209d6ef2e-IN", + "hash": "0xedfa71323c94fa9a837c7f9fe1c64c4d8d146a945ec8425b4a1e771209d6ef2e", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x456a841d9d3b8ba726ab3af3235bc1452b4ee0689bea6b878c268a403cf2b0f1", + "blockHeight": 20239296, + "extra": {}, + "date": "2024-07-05T09:05:35.000Z", + "value": "12053620000000000", + "fee": "236570092647000", + "transactionSequenceNumber": 629542, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xf36e304f60983c0f1286adbb1aa98b1e59f9d353e617c7e9eeb821a35c8c009b-NONE", + "hash": "0xf36e304f60983c0f1286adbb1aa98b1e59f9d353e617c7e9eeb821a35c8c009b", + "type": "NONE", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x974026E01660D11B5b5F08394806b619702Ac35C"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x1c112dc0261533672b59968f9eb5505df8b626090bc624e386895ee3d83e3d74", + "blockHeight": 20234127, + "extra": {}, + "date": "2024-07-04T15:45:11.000Z", + "value": "0", + "fee": "6192546301570460", + "transactionSequenceNumber": 628527, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xcde2101df360c7c1b3703ff38945fa8de7bfc58975585397eb0fd6047820c1c1-IN", + "hash": "0xcde2101df360c7c1b3703ff38945fa8de7bfc58975585397eb0fd6047820c1c1", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xc1555bec6948355a87b1778053664e78365bba1b279596973e469af56389a904", + "blockHeight": 20234092, + "extra": {}, + "date": "2024-07-04T15:38:11.000Z", + "value": "16979870000000000", + "fee": "236724983166000", + "transactionSequenceNumber": 628518, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x8b1a786730837092a7cb6bc9275a36ac24dca2fba7b0d77ca1035435eba79fc7-NONE", + "hash": "0x8b1a786730837092a7cb6bc9275a36ac24dca2fba7b0d77ca1035435eba79fc7", + "type": "NONE", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x974026E01660D11B5b5F08394806b619702Ac35C"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xa3901b0a6999c9b2166476e29cb26313702482138acb375a734acb1e95013aab", + "blockHeight": 20232980, + "extra": {}, + "date": "2024-07-04T11:53:59.000Z", + "value": "0", + "fee": "6366195652044033", + "transactionSequenceNumber": 628292, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xf8292af179bf506fbac9152e2777a9dc6b0bec3f1214f1e9d75d30bb70d0292a-OUT", + "hash": "0xf8292af179bf506fbac9152e2777a9dc6b0bec3f1214f1e9d75d30bb70d0292a", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x1A07e6BCfbf312CF270e1ca433d5d68ff71ED3E4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x64ced7f350e76648a4b02fde6b3eafbbca735db8f543789562e02301ccd45979", + "blockHeight": 20232966, + "extra": {}, + "date": "2024-07-04T11:51:11.000Z", + "value": "72207640136140454", + "fee": "176901895632000", + "transactionSequenceNumber": 40, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x94d85c50ec32fe5e9e1b09b7be13d01e1342ae5790b9258c006d195b500ce543-OUT", + "hash": "0x94d85c50ec32fe5e9e1b09b7be13d01e1342ae5790b9258c006d195b500ce543", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xe5C69FfDbd275b53684E06B44aB5ABb2baE9C233"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x5630c98e9b6713957282fc80b39458f846cd0435c6172a9cecb8e53d9318a32a", + "blockHeight": 20232959, + "extra": {}, + "date": "2024-07-04T11:49:47.000Z", + "value": "30188120300991000", + "fee": "188120300991000", + "transactionSequenceNumber": 39, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xa9152a3b30f405e455eaa35a477b7b8208afd0e75e18dae6abc8f3b49d4e6da2-OUT", + "hash": "0xa9152a3b30f405e455eaa35a477b7b8208afd0e75e18dae6abc8f3b49d4e6da2", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x8cBAd60b6894b46c1f2F062C8eF3711C514b5563"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xebeac78bd055d9568251d884b81122afd97cb6ce17dc78e9c3bca9f3b240439a", + "blockHeight": 20232953, + "extra": {}, + "date": "2024-07-04T11:48:35.000Z", + "value": "30196787241651000", + "fee": "196787241651000", + "transactionSequenceNumber": 38, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xc3e45cf45c7fa837c37e1212a4b540d0a8872b5889dbba589d1c18708015d3fa-OUT", + "hash": "0xc3e45cf45c7fa837c37e1212a4b540d0a8872b5889dbba589d1c18708015d3fa", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x59861265f201088607E691dC3e4E317197cc99D7"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x8e287a320aaea5c8c9df2247b8cf60ac5ea28cc528177e0ba9a4e3bd88024187", + "blockHeight": 20232928, + "extra": {}, + "date": "2024-07-04T11:43:35.000Z", + "value": "30192534935103000", + "fee": "192534935103000", + "transactionSequenceNumber": 37, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x47e941ffda2fd54806f28dc2f8cd7f8d4219c82eec21788f75fc0fc11718e69d-OUT", + "hash": "0x47e941ffda2fd54806f28dc2f8cd7f8d4219c82eec21788f75fc0fc11718e69d", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x4b5f834Ede79C52bD33d952C719a0B641a0310EA"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xc064d068b3212bbe5209cd76e940e7298eab98dedbdda9d79216e88142720e91", + "blockHeight": 20232920, + "extra": {}, + "date": "2024-07-04T11:41:59.000Z", + "value": "10184726137729000", + "fee": "184726137729000", + "transactionSequenceNumber": 36, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xff9859e7773edc8c3cd77cebbde89cd757e9cf357334f030741a3c18b28b3c8e-IN", + "hash": "0xff9859e7773edc8c3cd77cebbde89cd757e9cf357334f030741a3c18b28b3c8e", + "type": "IN", + "senders": ["0x04F479967bBc039E060d6292e5dE86f249291bbc"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xf8fb404630447baade26c7baa8765db114ec9ab310248770ff48b7b6ea9ca3f3", + "blockHeight": 20217506, + "extra": {}, + "date": "2024-07-02T08:02:11.000Z", + "value": "88000000000000000", + "fee": "107762318979000", + "transactionSequenceNumber": 22, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x44a5c74f734d8bdd0985f24cb7b2c2759adebb451eb6370dd5100581b05d2054-FEES", + "hash": "0x44a5c74f734d8bdd0985f24cb7b2c2759adebb451eb6370dd5100581b05d2054", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x5DB5235b5C7e247488784986e58019fFFd98FdA4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x9b32dedc7c5c1b70a079f2bea03c484f5efb324bd8ad9e154c6fc2b264303448", + "blockHeight": 20175575, + "extra": {}, + "date": "2024-06-26T11:30:23.000Z", + "value": "374598243196347", + "fee": "374598243196347", + "transactionSequenceNumber": 35, + "hasFailed": false, + "internalOperations": [ + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x44a5c74f734d8bdd0985f24cb7b2c2759adebb451eb6370dd5100581b05d2054-IN-i1", + "hash": "0x44a5c74f734d8bdd0985f24cb7b2c2759adebb451eb6370dd5100581b05d2054", + "type": "IN", + "senders": ["0x8d6Fd650500f82c7D978a440348e5a9b886943bF"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x9b32dedc7c5c1b70a079f2bea03c484f5efb324bd8ad9e154c6fc2b264303448", + "blockHeight": 20175575, + "extra": {}, + "date": "2024-06-26T11:30:23.000Z", + "value": "80072547753522248", + "fee": "0", + "hasFailed": false + } + ], + "nftOperations": [ + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+0x8d6Fd650500f82c7D978a440348e5a9b886943bF+4194320454667487500649555489236067891113957+ethereum-0x44a5c74f734d8bdd0985f24cb7b2c2759adebb451eb6370dd5100581b05d2054-NFT_OUT-i0", + "hash": "0x44a5c74f734d8bdd0985f24cb7b2c2759adebb451eb6370dd5100581b05d2054", + "type": "NFT_OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x0000000000000000000000000000000000000000"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x9b32dedc7c5c1b70a079f2bea03c484f5efb324bd8ad9e154c6fc2b264303448", + "blockHeight": 20175575, + "extra": {}, + "date": "2024-06-26T11:30:23.000Z", + "value": "1", + "fee": "374598243196347", + "transactionSequenceNumber": 35, + "standard": "ERC721", + "tokenId": "4194320454667487500649555489236067891113957", + "contract": "0x8d6Fd650500f82c7D978a440348e5a9b886943bF" + } + ] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xf170f5c1d1dc3f34d99312a203151806e6dec34c252a4ffbc642b1e33e5aa628-FEES", + "hash": "0xf170f5c1d1dc3f34d99312a203151806e6dec34c252a4ffbc642b1e33e5aa628", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x5DB5235b5C7e247488784986e58019fFFd98FdA4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xe65954c7cb86bbf5662d4e5703b67d82484ea335f5aca7c67e244af51180a4ad", + "blockHeight": 20167621, + "extra": {}, + "date": "2024-06-25T08:52:11.000Z", + "value": "1710556094142440", + "fee": "1710556094142440", + "transactionSequenceNumber": 34, + "hasFailed": false, + "internalOperations": [], + "nftOperations": [ + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+0x8d6Fd650500f82c7D978a440348e5a9b886943bF+4194320454667487500649555489236067891113957+ethereum-0xf170f5c1d1dc3f34d99312a203151806e6dec34c252a4ffbc642b1e33e5aa628-NFT_IN-i0", + "hash": "0xf170f5c1d1dc3f34d99312a203151806e6dec34c252a4ffbc642b1e33e5aa628", + "type": "NFT_IN", + "senders": ["0x0000000000000000000000000000000000000000"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xe65954c7cb86bbf5662d4e5703b67d82484ea335f5aca7c67e244af51180a4ad", + "blockHeight": 20167621, + "extra": {}, + "date": "2024-06-25T08:52:11.000Z", + "value": "1", + "fee": "1710556094142440", + "transactionSequenceNumber": 34, + "standard": "ERC721", + "tokenId": "4194320454667487500649555489236067891113957", + "contract": "0x8d6Fd650500f82c7D978a440348e5a9b886943bF" + } + ] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x972a97b2c65ee9305d1bad34d7b409956c00a8f91e83827c9849828f6929085e-IN", + "hash": "0x972a97b2c65ee9305d1bad34d7b409956c00a8f91e83827c9849828f6929085e", + "type": "IN", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xc59c9884248385451a683cb52f4040f2da5a8c4a901d7bc78f98e8cbd50385b3", + "blockHeight": 20167604, + "extra": {}, + "date": "2024-06-25T08:48:47.000Z", + "value": "9884613912962781", + "fee": "119590221219000", + "transactionSequenceNumber": 26, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xb1bbbb1b0bb1a8efef5a1abdffa7e554816ae77334266dbba7f43284d80c7fc4-OUT", + "hash": "0xb1bbbb1b0bb1a8efef5a1abdffa7e554816ae77334266dbba7f43284d80c7fc4", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x5DB5235b5C7e247488784986e58019fFFd98FdA4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x648ea5196c09ebbe06250580c0e7d8b390d83fff4aa2c702bb35bc179cb0596b", + "blockHeight": 20088517, + "extra": {}, + "date": "2024-06-14T07:20:59.000Z", + "value": "81481481975551295", + "fee": "1481481975551295", + "transactionSequenceNumber": 33, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xf30d5f56c5e7eccf15f3dc0323ead640c4f7db14ac7b876225aa77becdd497f2-IN", + "hash": "0xf30d5f56c5e7eccf15f3dc0323ead640c4f7db14ac7b876225aa77becdd497f2", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xace899987861bd60ace4cf13fbe899496dccf46b586b4730c31fe1ae30a14ce3", + "blockHeight": 20075159, + "extra": {}, + "date": "2024-06-12T10:29:47.000Z", + "value": "50375560000000000", + "fee": "802592153097000", + "transactionSequenceNumber": 606121, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x39f28a4b29c0b451ea6f5ee7f309f0bcde8a13e783fcaa7449d6cb44b39e44e5-IN", + "hash": "0x39f28a4b29c0b451ea6f5ee7f309f0bcde8a13e783fcaa7449d6cb44b39e44e5", + "type": "IN", + "senders": ["0x21a31Ee1afC51d94C2eFcCAa2092aD1028285549"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x3b8e91bd2ab083163af0bb59ba7b65883576e8f84d9003f6dc1bc6fe93857f95", + "blockHeight": 19588794, + "extra": {}, + "date": "2024-04-05T09:57:47.000Z", + "value": "23400000000000000", + "fee": "375800248320000", + "transactionSequenceNumber": 9154342, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xb9ba8e2e35d61c4a21c9044960e658d7d9c6193a409b43dbef03c229d5aa2397-FEES", + "hash": "0xb9ba8e2e35d61c4a21c9044960e658d7d9c6193a409b43dbef03c229d5aa2397", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x7b423faa607acda7a1126f86e3bce4aca2c9b692c0f56637abbf68a14580fc60", + "blockHeight": 19587942, + "extra": {}, + "date": "2024-04-05T07:05:23.000Z", + "value": "641150524415600", + "fee": "641150524415600", + "transactionSequenceNumber": 32, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xc509063b170a403e651608a0c304043285d92b75700b9e9708940f681601702a-IN", + "hash": "0xc509063b170a403e651608a0c304043285d92b75700b9e9708940f681601702a", + "type": "IN", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x6beab1066ae3a93cd6956da43e8af11c6621bd641c22e4b0931e45d72c7d60df", + "blockHeight": 19587795, + "extra": {}, + "date": "2024-04-05T06:35:47.000Z", + "value": "10000000000000000", + "fee": "270122810622000", + "transactionSequenceNumber": 19, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x038c2ae65acdd5bc4b40005e8071bfaf9be8eca80d572368596b41880d9d68ae-OUT", + "hash": "0x038c2ae65acdd5bc4b40005e8071bfaf9be8eca80d572368596b41880d9d68ae", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x46536f9AfE1d844AD3D82E8e5d1855E1F07D7AEe"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x9dfc0e02d7e03107f8e25c0187d2f6919b63e0b723b81fd0f82f9c1505374a18", + "blockHeight": 19568224, + "extra": {}, + "date": "2024-04-02T12:50:47.000Z", + "value": "32416728031248000", + "fee": "616728031248000", + "transactionSequenceNumber": 31, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x4810b9e8b550c66267025d050c09420840828757d025c97681653f20d5768760-NONE", + "hash": "0x4810b9e8b550c66267025d050c09420840828757d025c97681653f20d5768760", + "type": "NONE", + "senders": ["0x86BA8588E8AC97cD6fA91c670F0E104DC6B62501"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x2b99f74f2c1c7d9d010de2d2cb3c51879f583b63e4d159a951c6729d15fb5c86", + "blockHeight": 19567805, + "extra": {}, + "date": "2024-04-02T11:25:11.000Z", + "value": "0", + "fee": "1910396556591551", + "transactionSequenceNumber": 1247, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x079567df803c79660a5a4362eed259c84b80fc518a0758250d5db5b6dc5615a4-IN", + "hash": "0x079567df803c79660a5a4362eed259c84b80fc518a0758250d5db5b6dc5615a4", + "type": "IN", + "senders": ["0x28C6c06298d514Db089934071355E5743bf21d60"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x500e5b21ad61c2511b50d6a41a6656a072f691d53a8bf0139dd7b25aabf2089d", + "blockHeight": 19567801, + "extra": {}, + "date": "2024-04-02T11:24:23.000Z", + "value": "12600000000000000", + "fee": "657462470322000", + "transactionSequenceNumber": 9405817, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x8a4c66bbe7f5426b726bc6b0a7b2a5e973d1523fb57cacea07136d30b078fac2-FEES", + "hash": "0x8a4c66bbe7f5426b726bc6b0a7b2a5e973d1523fb57cacea07136d30b078fac2", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x255c0b79b87f1876f36c00bbc1679e58d6205ff43068a202e5494d9cc1fbc43c", + "blockHeight": 19567782, + "extra": {}, + "date": "2024-04-02T11:20:35.000Z", + "value": "1494729747429893", + "fee": "1494729747429893", + "transactionSequenceNumber": 30, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x6709154d1efa39c6e96fead045173fc4f11608b10d62eb1a4aae5901e739effc-NONE", + "hash": "0x6709154d1efa39c6e96fead045173fc4f11608b10d62eb1a4aae5901e739effc", + "type": "NONE", + "senders": ["0x86BA8588E8AC97cD6fA91c670F0E104DC6B62501"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x77f3b1b88e2e51377800e9a1bb9241f5acc2cee6c3b11649fdf7baaca914aa26", + "blockHeight": 19567542, + "extra": {}, + "date": "2024-04-02T10:32:11.000Z", + "value": "0", + "fee": "1908536753001413", + "transactionSequenceNumber": 1246, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xd6fedc32b997386c3906f17c5d54f00d75bf223ed39d146796bf9199bcd1c3bf-OUT", + "hash": "0xd6fedc32b997386c3906f17c5d54f00d75bf223ed39d146796bf9199bcd1c3bf", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xA8b533bA23cB1D8F18C72b262eAbEF71b90D6081"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x7cc8563216573cab70c1cd09ba44cd07c48453fc9284c565d49204c58881be76", + "blockHeight": 19567522, + "extra": {}, + "date": "2024-04-02T10:28:11.000Z", + "value": "20540169041825000", + "fee": "540169041825000", + "transactionSequenceNumber": 29, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xaeab8e5d5d25360c3aa524723ec4e1b85c6beb5f7ea558f20f52e42ac2a5e792-IN", + "hash": "0xaeab8e5d5d25360c3aa524723ec4e1b85c6beb5f7ea558f20f52e42ac2a5e792", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x8d62cca52675b985a55df2de0c1efb9e9bbd12ae00ae98013bd6a45959c79f47", + "blockHeight": 19219508, + "extra": {}, + "date": "2024-02-13T13:53:47.000Z", + "value": "42267100000000000", + "fee": "610116510927000", + "transactionSequenceNumber": 460835, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x280805c8d3a0da43448534acec564389e54e8ae4cff535e2be075ba11c46d347-OUT", + "hash": "0x280805c8d3a0da43448534acec564389e54e8ae4cff535e2be075ba11c46d347", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x4f4981727457098da0f8f3253c01a28f739078fed4c42d3f9c49f656bda89edc", + "blockHeight": 18140689, + "extra": {}, + "date": "2023-09-15T09:19:59.000Z", + "value": "14970865175276648", + "fee": "255254004495000", + "transactionSequenceNumber": 28, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xa5d76d5948cae3d4ae9b699db4841ea20430f584c870bd810aec149c4258cdfe-FEES", + "hash": "0xa5d76d5948cae3d4ae9b699db4841ea20430f584c870bd810aec149c4258cdfe", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x6B175474E89094C44Da98b954EedeAC495271d0F"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xe1783af78b9dc4b8daed7b31f88bdc0ff640f284b6e77ba1010cad46a3ef38bd", + "blockHeight": 16938444, + "extra": {}, + "date": "2023-03-30T07:01:11.000Z", + "value": "675192000000000", + "fee": "675192000000000", + "transactionSequenceNumber": 27, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x33835d5081b82c6689e8f0ae9059fc0bfe9fd07d449dc46fe3ba3b6c8e3c2edd-FEES", + "hash": "0x33835d5081b82c6689e8f0ae9059fc0bfe9fd07d449dc46fe3ba3b6c8e3c2edd", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x6B175474E89094C44Da98b954EedeAC495271d0F"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x6c8f44982a0bf8974f0bfb622f9f72e5efca88ed16dcfa0615004af584946b5e", + "blockHeight": 16938442, + "extra": {}, + "date": "2023-03-30T07:00:47.000Z", + "value": "739462813170174", + "fee": "739462813170174", + "transactionSequenceNumber": 26, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x9fb553f1b5621b55a6321642e70bc86f113543fdc363bebc56e7c597bdea9e68-FEES", + "hash": "0x9fb553f1b5621b55a6321642e70bc86f113543fdc363bebc56e7c597bdea9e68", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x495f947276749Ce646f68AC8c248420045cb7b5e"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xd2995787cfaa20e51727b82fca4562d71caf9098b48cec161ffbf790c9571927", + "blockHeight": 16938440, + "extra": {}, + "date": "2023-03-30T07:00:23.000Z", + "value": "699016000000000", + "fee": "699016000000000", + "transactionSequenceNumber": 25, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x76ec1febde0b5160f03141a4645086468e23af0f07d559067901c979de4d77c9-OUT", + "hash": "0x76ec1febde0b5160f03141a4645086468e23af0f07d559067901c979de4d77c9", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x000000000000Ad05Ccc4F10045630fb830B95127"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x9b9c25af5383eebc051107a4c5df04da5098804a831d33b7d5e81d71d83b34d7", + "blockHeight": 16933663, + "extra": {}, + "date": "2023-03-29T14:52:59.000Z", + "value": "13401568000000000", + "fee": "12701568000000000", + "transactionSequenceNumber": 24, + "hasFailed": false, + "internalOperations": [], + "nftOperations": [ + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+0x42c2cEC3AE48302cB93BF14C4205992DfCBdFffB+2984+ethereum-0x76ec1febde0b5160f03141a4645086468e23af0f07d559067901c979de4d77c9-NFT_IN-i0", + "hash": "0x76ec1febde0b5160f03141a4645086468e23af0f07d559067901c979de4d77c9", + "type": "NFT_IN", + "senders": ["0x8DFAA06aFd2703E94A559F3bC7112E4C630956C0"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x9b9c25af5383eebc051107a4c5df04da5098804a831d33b7d5e81d71d83b34d7", + "blockHeight": 16933663, + "extra": {}, + "date": "2023-03-29T14:52:59.000Z", + "value": "1", + "fee": "12701568000000000", + "transactionSequenceNumber": 24, + "standard": "ERC721", + "tokenId": "2984", + "contract": "0x42c2cEC3AE48302cB93BF14C4205992DfCBdFffB" + } + ] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x6157d553fe34f080a4f1b9700377e1572ab238363110fb2a53d3ebe0da7f64d0-FEES", + "hash": "0x6157d553fe34f080a4f1b9700377e1572ab238363110fb2a53d3ebe0da7f64d0", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xf5e930dd7ef7bf6e7c00b41b8c70901fe8b11b99e009c04e6e4f832e00634c04", + "blockHeight": 16933623, + "extra": {}, + "date": "2023-03-29T14:44:59.000Z", + "value": "6808817061933184", + "fee": "6808817061933184", + "transactionSequenceNumber": 23, + "hasFailed": false, + "internalOperations": [ + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x6157d553fe34f080a4f1b9700377e1572ab238363110fb2a53d3ebe0da7f64d0-IN-i1", + "hash": "0x6157d553fe34f080a4f1b9700377e1572ab238363110fb2a53d3ebe0da7f64d0", + "type": "IN", + "senders": ["0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xf5e930dd7ef7bf6e7c00b41b8c70901fe8b11b99e009c04e6e4f832e00634c04", + "blockHeight": 16933623, + "extra": {}, + "date": "2023-03-29T14:44:59.000Z", + "value": "20065889076367732", + "fee": "0", + "hasFailed": false + } + ] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xe215e58b94ebcfe371474bbe894a6d8bc91bf34de579156e264da7a41a17a270-FEES", + "hash": "0xe215e58b94ebcfe371474bbe894a6d8bc91bf34de579156e264da7a41a17a270", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x6B175474E89094C44Da98b954EedeAC495271d0F"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x127f50b613d8b3ff15f603330c9666d5d7d327e06a9e44c6b5bf3acc0b17da70", + "blockHeight": 16933600, + "extra": {}, + "date": "2023-03-29T14:40:23.000Z", + "value": "1996511754458166", + "fee": "1996511754458166", + "transactionSequenceNumber": 22, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x529a2984ea1baaf37b7689423ba39eed59e356d141df550539a11b3f720a774e-FEES", + "hash": "0x529a2984ea1baaf37b7689423ba39eed59e356d141df550539a11b3f720a774e", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x6B175474E89094C44Da98b954EedeAC495271d0F"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x241362cd211eb5435c6ebcc5ddb681fd193868704637c075d09a3eb9f9ea3ebd", + "blockHeight": 16933553, + "extra": {}, + "date": "2023-03-29T14:30:59.000Z", + "value": "2032008000000000", + "fee": "2032008000000000", + "transactionSequenceNumber": 21, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xdc38a0b8310b82d3fda804a671021a815ebf2e5e3e57c2466fc322804c8d6bb7-OUT", + "hash": "0xdc38a0b8310b82d3fda804a671021a815ebf2e5e3e57c2466fc322804c8d6bb7", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xDEF171Fe48CF0115B1d80b88dc8eAB59176FEe57"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x39ee6678c4d72c06997af584ed6bab1813fa671317db96a461dc09cb81cb79bf", + "blockHeight": 16933544, + "extra": {}, + "date": "2023-03-29T14:28:59.000Z", + "value": "24813224000000000", + "fee": "4813224000000000", + "transactionSequenceNumber": 20, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x619fe17628014062aae69c30fb14ad750ec3b3cafc221a534384318b4b6a7645-FEES", + "hash": "0x619fe17628014062aae69c30fb14ad750ec3b3cafc221a534384318b4b6a7645", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x56d001ed2be6fe86e91087d140adbf1defdeb53866c73179dbd21c446d797528", + "blockHeight": 16933535, + "extra": {}, + "date": "2023-03-29T14:27:11.000Z", + "value": "993527654215560", + "fee": "993527654215560", + "transactionSequenceNumber": 19, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x082d12a95a6fc36a81104000ee5643ab6558e5403286b17a7385a9fa3baa65ed-FEES", + "hash": "0x082d12a95a6fc36a81104000ee5643ab6558e5403286b17a7385a9fa3baa65ed", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x00000000000001ad428e4906aE43D8F9852d0dD6"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xa26fb04d28684b9415d89186e9e2b6dbcc34b6886f69a801647f6d596f678dc6", + "blockHeight": 16931527, + "extra": {}, + "date": "2023-03-29T07:40:23.000Z", + "value": "1481194000000000", + "fee": "1481194000000000", + "transactionSequenceNumber": 18, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x2f281adfdb89ad8ecc9927bede8aeb6306a2d0f09ecf92521c390b1f8a5b3b5b-FEES", + "hash": "0x2f281adfdb89ad8ecc9927bede8aeb6306a2d0f09ecf92521c390b1f8a5b3b5b", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x495f947276749Ce646f68AC8c248420045cb7b5e"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xb1274d732ba659b2e08edaba163f6a2c7b4fec6fae71a7fa4a6d23c3b7eceaaf", + "blockHeight": 16931510, + "extra": {}, + "date": "2023-03-29T07:36:59.000Z", + "value": "1334464000000000", + "fee": "1334464000000000", + "transactionSequenceNumber": 17, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x7edd889239f80afb73de5d63ecf477f3c1f6ecf9b5aded8c36c6106a3eb87103-IN", + "hash": "0x7edd889239f80afb73de5d63ecf477f3c1f6ecf9b5aded8c36c6106a3eb87103", + "type": "IN", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x3cba66bbbe1e0fe0b6c0608b1ec94da06893060550e4e2f16767512e4b6baf45", + "blockHeight": 16931505, + "extra": {}, + "date": "2023-03-29T07:35:59.000Z", + "value": "50000000000000000", + "fee": "588000000000000", + "transactionSequenceNumber": 21, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x1eff7a8f118efef6559689db8fdb3c42913a542c2b6937ffa8b0c40408623fd9-OUT", + "hash": "0x1eff7a8f118efef6559689db8fdb3c42913a542c2b6937ffa8b0c40408623fd9", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x2dd8771836018e45b2e78110d2a343084dc7dbf9ccd24696b4c2a18544c626b3", + "blockHeight": 13727859, + "extra": {}, + "date": "2021-12-02T14:29:20.000Z", + "value": "20016009404614717", + "fee": "2194500000000000", + "transactionSequenceNumber": 16, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x31577e2911df6bc2b84e870cdcfd15b0f4bee0db852ba50e3516dd6a8bfbc3c5-NONE", + "hash": "0x31577e2911df6bc2b84e870cdcfd15b0f4bee0db852ba50e3516dd6a8bfbc3c5", + "type": "NONE", + "senders": ["0xabf06640f8ca8fC5e0Ed471b10BeFCDf65A33e43"], + "recipients": ["0x495f947276749Ce646f68AC8c248420045cb7b5e"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x19fb77dd59e302e5fac51db70282ab1c378cddfa86bdaf2feafe314419e5ec86", + "blockHeight": 13314489, + "extra": {}, + "date": "2021-09-28T13:23:32.000Z", + "value": "0", + "fee": "4798154953766064", + "transactionSequenceNumber": 1090, + "hasFailed": false, + "internalOperations": [], + "nftOperations": [ + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+0x495f947276749Ce646f68AC8c248420045cb7b5e+77770246133050101334277152821957558007745772239357041338818208158214799753316+ethereum-0x31577e2911df6bc2b84e870cdcfd15b0f4bee0db852ba50e3516dd6a8bfbc3c5-NFT_IN-i0_0", + "hash": "0x31577e2911df6bc2b84e870cdcfd15b0f4bee0db852ba50e3516dd6a8bfbc3c5", + "type": "NFT_IN", + "senders": ["0xabf06640f8ca8fC5e0Ed471b10BeFCDf65A33e43"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x19fb77dd59e302e5fac51db70282ab1c378cddfa86bdaf2feafe314419e5ec86", + "blockHeight": 13314489, + "extra": {}, + "date": "2021-09-28T13:23:32.000Z", + "value": "10", + "fee": "4798154953766064", + "transactionSequenceNumber": 1090, + "standard": "ERC1155", + "tokenId": "77770246133050101334277152821957558007745772239357041338818208158214799753316", + "contract": "0x495f947276749Ce646f68AC8c248420045cb7b5e" + } + ] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x2c9e71b9828ec73f8dd2f9569c6e3d4575e311f7ec46694bb02647deba2646ba-OUT", + "hash": "0x2c9e71b9828ec73f8dd2f9569c6e3d4575e311f7ec46694bb02647deba2646ba", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x4D127F2328cC1AD231aDdcDDe3afe56BE479a2EB"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xdaf275557bb23925ef55856796d5b772bcdab04654ae3a2221bd52d7f15e41f0", + "blockHeight": 12883373, + "extra": {}, + "date": "2021-07-23T15:20:38.000Z", + "value": "20609000000000000", + "fee": "609000000000000", + "transactionSequenceNumber": 15, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xda93ff2060a320d418de9792dbdb3bcb89f85c0621254802bb97046642d03335-IN", + "hash": "0xda93ff2060a320d418de9792dbdb3bcb89f85c0621254802bb97046642d03335", + "type": "IN", + "senders": ["0x4d846dA8257BB0Ebd164EFf513DfF0F0c2C3c0ba"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xbeff714e7e01d41c42b675db74f0d845d08e7581128e29670c2e36e1e89d3a0b", + "blockHeight": 12882829, + "extra": {}, + "date": "2021-07-23T13:10:36.000Z", + "value": "37124469199530679", + "fee": "327600039816000", + "transactionSequenceNumber": 65666, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xb6a9982e1609170853611a6e548408d230a5368443c80821ab97a1b971167155-OUT", + "hash": "0xb6a9982e1609170853611a6e548408d230a5368443c80821ab97a1b971167155", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x8b2DFE30C4423F4E848Fa745ED0f9f5f12fbb4F5"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xd03dabd0a5cb45238148827f52689da85872108e4cfcca53086855ec71891931", + "blockHeight": 12876766, + "extra": {}, + "date": "2021-07-22T14:32:29.000Z", + "value": "20380100000000000", + "fee": "380100000000000", + "transactionSequenceNumber": 14, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x4fe91245fc837806ab3307243b517fdabde0283a398ce5bb126c8fd565be96e0-OUT", + "hash": "0x4fe91245fc837806ab3307243b517fdabde0283a398ce5bb126c8fd565be96e0", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xb2E22505f001FEf22ac7173968D8fC21794A6Db0"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xa0fb8db8ef9074b060aaaadd5fd8755b87f98dcb9c9434761293ea46f6ba6dd3", + "blockHeight": 12876758, + "extra": {}, + "date": "2021-07-22T14:31:04.000Z", + "value": "20375900000000000", + "fee": "375900000000000", + "transactionSequenceNumber": 13, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x324114488dce88e3f155dbe81ded028aee84d3b62bc4004d1c9ec4ee499e3b05-IN", + "hash": "0x324114488dce88e3f155dbe81ded028aee84d3b62bc4004d1c9ec4ee499e3b05", + "type": "IN", + "senders": ["0x912fD21d7a69678227fE6d08C64222Db41477bA0"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x91626146d906d8b838028520d88517cdf141339cabde3d8b47783f0b0fa08a4d", + "blockHeight": 12838217, + "extra": {}, + "date": "2021-07-16T13:37:38.000Z", + "value": "44256540205084038", + "fee": "1141140000000000", + "transactionSequenceNumber": 588985, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x3cc27fd2f34febd7d4b22d6dc15e70eb8a259ed6323b5435be1c38369b9a11ad-OUT", + "hash": "0x3cc27fd2f34febd7d4b22d6dc15e70eb8a259ed6323b5435be1c38369b9a11ad", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x892a48bE46024cf48Ed0Dc07F2a5BE7396feb978"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x1af28544a3039deb6469d10354eca511b713db86c560e3262e498f300f05ea33", + "blockHeight": 12837997, + "extra": {}, + "date": "2021-07-16T12:47:25.000Z", + "value": "47950779400000000", + "fee": "779100000000000", + "transactionSequenceNumber": 12, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x45bd5a059b342e726b4d470ef29a1c10aba34ba7e26166e1ba89814720a27e12-IN", + "hash": "0x45bd5a059b342e726b4d470ef29a1c10aba34ba7e26166e1ba89814720a27e12", + "type": "IN", + "senders": ["0x56Eddb7aa87536c09CCc2793473599fD21A8b17F"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x0dc65f48623ce66308d665a7e48abe2835fc7c5b1474e65e9d45822f8bc4e4bf", + "blockHeight": 12818895, + "extra": {}, + "date": "2021-07-13T12:52:25.000Z", + "value": "28661240000000000", + "fee": "819000000000000", + "transactionSequenceNumber": 437035, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x5f3d5a44f512ae08c6343019cf46793163134c7112156a39de3fb88ceb61c4d9-FEES", + "hash": "0x5f3d5a44f512ae08c6343019cf46793163134c7112156a39de3fb88ceb61c4d9", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x9fd67a24dfc162e1e38264c8debed47cad957e2494b6030b7c13bf3ca8bba241", + "blockHeight": 12818877, + "extra": {}, + "date": "2021-07-13T12:48:09.000Z", + "value": "625856400000000", + "fee": "625856400000000", + "transactionSequenceNumber": 11, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xd98ce9f9cc7d3ead62fed72b23a015db540886f7535bbef5cd188fdee4939c48-NONE", + "hash": "0xd98ce9f9cc7d3ead62fed72b23a015db540886f7535bbef5cd188fdee4939c48", + "type": "NONE", + "senders": ["0x59a5208B32e627891C389EbafC644145224006E8"], + "recipients": ["0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x3a40aa78b8b5f0f39a2dbc1544ba13058470b064987082e26a478de33aa540e1", + "blockHeight": 12818755, + "extra": {}, + "date": "2021-07-13T12:20:02.000Z", + "value": "0", + "fee": "913224000000000", + "transactionSequenceNumber": 1669830, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xdf723e4304d3e25cd70eafda79082a9a1c692b8a81c38b705c0f442273c45cbd-OUT", + "hash": "0xdf723e4304d3e25cd70eafda79082a9a1c692b8a81c38b705c0f442273c45cbd", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xd08EF67D2030E85CA6F0354147C0c1E8E5E7A180"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xf41d850fd4e4488d77a81faf9dece00c25c16759d6d6351e0117ee23d7cf4654", + "blockHeight": 12818743, + "extra": {}, + "date": "2021-07-13T12:17:53.000Z", + "value": "21533400000000000", + "fee": "533400000000000", + "transactionSequenceNumber": 10, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x79543d534f57a507db7886a80c3828218df02304a4e36f62c57f36fc00135809-NONE", + "hash": "0x79543d534f57a507db7886a80c3828218df02304a4e36f62c57f36fc00135809", + "type": "NONE", + "senders": ["0x59a5208B32e627891C389EbafC644145224006E8"], + "recipients": ["0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x2e8a592157e77e28ba0e0158f13d7790e6163de6c1f90918310fff747390ec29", + "blockHeight": 12818543, + "extra": {}, + "date": "2021-07-13T11:35:39.000Z", + "value": "0", + "fee": "1410048000000000", + "transactionSequenceNumber": 1669812, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x1ebe58df9db5ad6791a6d0bb4ad000b067a53d38a5b77169ba1b1f463ffafd27-OUT", + "hash": "0x1ebe58df9db5ad6791a6d0bb4ad000b067a53d38a5b77169ba1b1f463ffafd27", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xd08EF67D2030E85CA6F0354147C0c1E8E5E7A180"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x0252498ecfc23dd63b8becbc7066e31236bee194ad947a9553988814ac3c0ec5", + "blockHeight": 12818530, + "extra": {}, + "date": "2021-07-13T11:32:42.000Z", + "value": "30510300000000000", + "fee": "510300000000000", + "transactionSequenceNumber": 9, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x25c4d007f5a4b3cd9d6d359feb0c784ee688702c8b66efe5568545b2af154ac7-IN", + "hash": "0x25c4d007f5a4b3cd9d6d359feb0c784ee688702c8b66efe5568545b2af154ac7", + "type": "IN", + "senders": ["0x56Eddb7aa87536c09CCc2793473599fD21A8b17F"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x0c279cfa6e74e25a956efc36f8589c757bac1df0372e1939695575bad5a3642f", + "blockHeight": 12818273, + "extra": {}, + "date": "2021-07-13T10:28:13.000Z", + "value": "50724400000000000", + "fee": "630000000000000", + "transactionSequenceNumber": 435552, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x9039d7ab6f56a463ee62ae5b8b9922eeb136c93686bbf0f469a2dab43e24f66d-FEES", + "hash": "0x9039d7ab6f56a463ee62ae5b8b9922eeb136c93686bbf0f469a2dab43e24f66d", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x6f023490a8dc73360c5e338d3c23de66d63819c0f38b48769f77679bedf3c24f", + "blockHeight": 12818253, + "extra": {}, + "date": "2021-07-13T10:25:22.000Z", + "value": "973821800000000", + "fee": "973821800000000", + "transactionSequenceNumber": 8, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xcb29a3c3ca8cdf2819de82ae04e864c68f2e620eb875a25499be63cb75682ae7-NONE", + "hash": "0xcb29a3c3ca8cdf2819de82ae04e864c68f2e620eb875a25499be63cb75682ae7", + "type": "NONE", + "senders": ["0x28C6c06298d514Db089934071355E5743bf21d60"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xa95d85490eb55d68dabbe017fd15100a6e5f17611c82b0831ab69966d272cacb", + "blockHeight": 12818206, + "extra": {}, + "date": "2021-07-13T10:16:23.000Z", + "value": "0", + "fee": "1383270000000000", + "transactionSequenceNumber": 732888, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x223586a9f9acbf07d90afa40f900af915abf8466cdd915ce551ef18ae7319a7b-OUT", + "hash": "0x223586a9f9acbf07d90afa40f900af915abf8466cdd915ce551ef18ae7319a7b", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x0C64d60693A8Bb53e16407AD4D397594342639b5"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x710d2d659d9418dfac00682652168161458aa46f4da145ea0d379b2fe1e7e6f3", + "blockHeight": 12818185, + "extra": {}, + "date": "2021-07-13T10:12:08.000Z", + "value": "30445200000000000", + "fee": "445200000000000", + "transactionSequenceNumber": 7, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xc97c1efa1db9b7c6128378a2bc5f11334d9baacd21328fb6bba39019af15da25-IN", + "hash": "0xc97c1efa1db9b7c6128378a2bc5f11334d9baacd21328fb6bba39019af15da25", + "type": "IN", + "senders": ["0x9696f59E4d72E237BE84fFD425DCaD154Bf96976"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xf9a805530606dc4cb68f6af378d9275cc8fddf2d370473ac8bbc28f7b1be5a3b", + "blockHeight": 12818135, + "extra": {}, + "date": "2021-07-13T09:59:17.000Z", + "value": "33776410000000000", + "fee": "630000000000000", + "transactionSequenceNumber": 415495, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x38a5dd47f79e4505e723b1c1c7531ed3526049f558b331ca6cc7bce30cd24630-FEES", + "hash": "0x38a5dd47f79e4505e723b1c1c7531ed3526049f558b331ca6cc7bce30cd24630", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x8d5e9964ec03c5197523e747b63ea93932162c2d9a6e56174243111355082ea0", + "blockHeight": 12818115, + "extra": {}, + "date": "2021-07-13T09:55:49.000Z", + "value": "748202400000000", + "fee": "748202400000000", + "transactionSequenceNumber": 6, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x3a1892c7d8e54f198f8e7d0f23c6a388e93e27ca058f4c9386dddbb3e5e83ed8-IN", + "hash": "0x3a1892c7d8e54f198f8e7d0f23c6a388e93e27ca058f4c9386dddbb3e5e83ed8", + "type": "IN", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x94de8a63192cb2ac0ed91ad08001e664eaa0c31a1b3fd46f2e263337c9e1da87", + "blockHeight": 12818011, + "extra": {}, + "date": "2021-07-13T09:32:51.000Z", + "value": "19625510000000000", + "fee": "411600000000000", + "transactionSequenceNumber": 1, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x8da302dc2915bbf989152a9fec2c50da6c5c9b7f8ef9961042e6f11b5048621f-NONE", + "hash": "0x8da302dc2915bbf989152a9fec2c50da6c5c9b7f8ef9961042e6f11b5048621f", + "type": "NONE", + "senders": ["0x59a5208B32e627891C389EbafC644145224006E8"], + "recipients": ["0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x1b1d2843c3149deb9a1e75661d3d98cb279773a8a93a32715063abe993b263ac", + "blockHeight": 12817542, + "extra": {}, + "date": "2021-07-13T07:49:01.000Z", + "value": "0", + "fee": "983472000000000", + "transactionSequenceNumber": 1669732, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xe75ef8ea9e297f7becf695c382998e5d0b023bc68c1882a5069dbc1d0ef96be4-OUT", + "hash": "0xe75ef8ea9e297f7becf695c382998e5d0b023bc68c1882a5069dbc1d0ef96be4", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x73CF0409bB32d3B2f1C9973eC60e2825d54653A5"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xfc0b43f8df3270cd68bc9b5e68daf916ada39e9a9ed460b4ca8161dcfdd9dad0", + "blockHeight": 12780743, + "extra": {}, + "date": "2021-07-07T14:11:20.000Z", + "value": "21929759945703692", + "fee": "806400000000000", + "transactionSequenceNumber": 5, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x92990cbc1c5aafe017b6c4eda032c9b205803df3d6349cb14b7d84798422df2e-IN", + "hash": "0x92990cbc1c5aafe017b6c4eda032c9b205803df3d6349cb14b7d84798422df2e", + "type": "IN", + "senders": ["0x000F422887eA7d370FF31173FD3B46c8F66A5B1c"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x38eec0da47f4726cbc3a356b76631dc7c2f0dcaa91153c2a3814401805370a3f", + "blockHeight": 12773180, + "extra": {}, + "date": "2021-07-06T09:49:42.000Z", + "value": "17474470894284373", + "fee": "2347800000000000", + "transactionSequenceNumber": 75310, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x54bfbec7c76b3015fef3a479c7c6385b614847cfdadda73e4814a15779ff4b7a-NONE", + "hash": "0x54bfbec7c76b3015fef3a479c7c6385b614847cfdadda73e4814a15779ff4b7a", + "type": "NONE", + "senders": ["0x912fD21d7a69678227fE6d08C64222Db41477bA0"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x9c4f3e78bebe804c960525f9f33b6baf9d57db87c8e3bd4e59177be36195cbe6", + "blockHeight": 12740598, + "extra": {}, + "date": "2021-07-01T08:08:00.000Z", + "value": "0", + "fee": "1102927280000000", + "transactionSequenceNumber": 572122, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x9d7845ed029efdb7bbbe9171f501cf6174926f5369e435019a8a1f91b869f8ef-FEES", + "hash": "0x9d7845ed029efdb7bbbe9171f501cf6174926f5369e435019a8a1f91b869f8ef", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x1bD435F3C054b6e901B7b108a0ab7617C808677b"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x0705ec7b9f3532876ada686e0d84d7f8bdd394733a8948a242efd3f77d911b67", + "blockHeight": 12613272, + "extra": {}, + "date": "2021-06-11T12:33:14.000Z", + "value": "2690457200000000", + "fee": "2690457200000000", + "transactionSequenceNumber": 4, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xdaa4cca7fd1c08e78038ff1573c9a89ca5e5a17eb86e6016ffc20f5a2bc6deb0-FEES", + "hash": "0xdaa4cca7fd1c08e78038ff1573c9a89ca5e5a17eb86e6016ffc20f5a2bc6deb0", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xde8bf4ed22a13bd18dbb9510348920282e8ac52416b0554d9871be96334b0baa", + "blockHeight": 12613107, + "extra": {}, + "date": "2021-06-11T11:59:11.000Z", + "value": "750936200000000", + "fee": "750936200000000", + "transactionSequenceNumber": 3, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x8675c3ae6e3f27084b238e95b88df953832639c0814cc11596c75582a761bfe4-OUT", + "hash": "0x8675c3ae6e3f27084b238e95b88df953832639c0814cc11596c75582a761bfe4", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xEe1Fe4BA3E0B7C1aC7E590412c9C33363102cdD5"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xd72151987f564e4555121ff136dcbe6552b2f9d7ba74a70e7aa1d0723ff3f16c", + "blockHeight": 12605944, + "extra": {}, + "date": "2021-06-10T09:19:26.000Z", + "value": "9378000000000000", + "fee": "378000000000000", + "transactionSequenceNumber": 2, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x24bf70be29746f07bfac338718af8f7848a125c4305d209f3f9033c4a0ca4011-NONE", + "hash": "0x24bf70be29746f07bfac338718af8f7848a125c4305d209f3f9033c4a0ca4011", + "type": "NONE", + "senders": ["0x59a5208B32e627891C389EbafC644145224006E8"], + "recipients": ["0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xc52aede6d027886a58a0044e0299feb7bb09f00019d9a62642524bde3a3402a2", + "blockHeight": 12596060, + "extra": {}, + "date": "2021-06-08T20:31:00.000Z", + "value": "0", + "fee": "1775616000000000", + "transactionSequenceNumber": 1634482, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x58cc1b68337db7a865ef507dbba14e3942d2d3d2cf54f6c086663bcd00abe572-FEES", + "hash": "0x58cc1b68337db7a865ef507dbba14e3942d2d3d2cf54f6c086663bcd00abe572", + "type": "FEES", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xd7eede7b12c914efe26e0e8797076ba807a60e735b3f46be216a3557109569ff", + "blockHeight": 12596045, + "extra": {}, + "date": "2021-06-08T20:27:56.000Z", + "value": "2410450000000000", + "fee": "2410450000000000", + "transactionSequenceNumber": 1, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x0edfcea4040ad6d09b6de0459f1417add2f3fb0cfd19964483265b49167b7f47-OUT", + "hash": "0x0edfcea4040ad6d09b6de0459f1417add2f3fb0cfd19964483265b49167b7f47", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x69ecea6343901fb3cea78dc6fdcf98e70d0705b6179083e4d70213d42f41a15c", + "blockHeight": 12595952, + "extra": {}, + "date": "2021-06-08T20:09:11.000Z", + "value": "5176000000000000", + "fee": "1176000000000000", + "transactionSequenceNumber": 0, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x71560bb7fdffceae0e25425eac91b865b30ca7c3e6d0dbb790db768275250c71-NONE", + "hash": "0x71560bb7fdffceae0e25425eac91b865b30ca7c3e6d0dbb790db768275250c71", + "type": "NONE", + "senders": ["0x44627CDE2fe1a0e0DbD807DeEeE075B51fE16e32"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0xa06e17e60bfe384119b46bda5e2dc9bdf6776bbe0f300a8044e1fe6b32435c71", + "blockHeight": 12567600, + "extra": {}, + "date": "2021-06-04T11:10:55.000Z", + "value": "0", + "fee": "1333709900000000", + "transactionSequenceNumber": 40, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xd7bbc9fd4c3c839b926f64a70bb0cd3b7fefa0865a04683a35bbd7da3e28a680-NONE", + "hash": "0xd7bbc9fd4c3c839b926f64a70bb0cd3b7fefa0865a04683a35bbd7da3e28a680", + "type": "NONE", + "senders": ["0xA7e6a2a545d3A9Ab1c7bf2B9456604A61939b370"], + "recipients": ["0x1bD435F3C054b6e901B7b108a0ab7617C808677b"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x73b29105d02aff84b7a278466fc42a653114f4fb338582dae6d4a1b816308138", + "blockHeight": 12567545, + "extra": {}, + "date": "2021-06-04T10:57:37.000Z", + "value": "0", + "fee": "3390498000000000", + "transactionSequenceNumber": 41, + "hasFailed": false, + "internalOperations": [ + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0xd7bbc9fd4c3c839b926f64a70bb0cd3b7fefa0865a04683a35bbd7da3e28a680-IN-i0", + "hash": "0xd7bbc9fd4c3c839b926f64a70bb0cd3b7fefa0865a04683a35bbd7da3e28a680", + "type": "IN", + "senders": ["0x1bD435F3C054b6e901B7b108a0ab7617C808677b"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x73b29105d02aff84b7a278466fc42a653114f4fb338582dae6d4a1b816308138", + "blockHeight": 12567545, + "extra": {}, + "date": "2021-06-04T10:57:37.000Z", + "value": "7366603229143109", + "fee": "0", + "hasFailed": false + } + ] + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:-0x961d29688a42e14c4a23498bb3433dfd453ae81072551f0bed99cea14905de79-IN", + "hash": "0x961d29688a42e14c4a23498bb3433dfd453ae81072551f0bed99cea14905de79", + "type": "IN", + "senders": ["0xA7e6a2a545d3A9Ab1c7bf2B9456604A61939b370"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "blockHash": "0x84a062eea24597eab386bd6c456a2a4725e84de5fdd5893ae1f91e2d0e8de3b4", + "blockHeight": 12510048, + "extra": {}, + "date": "2021-05-26T12:50:20.000Z", + "value": "17494529222276210", + "fee": "613200000000000", + "transactionSequenceNumber": 30, + "hasFailed": false, + "internalOperations": [] + } + ], + "pendingOperations": [], + "currencyId": "ethereum", + "lastSyncDate": "2024-08-06T14:37:05.535Z", + "balance": "88352425032934358", + "spendableBalance": "88352425032934358", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 88352425032934350, + 88352425032934350 + ], + "latestDate": 1722952800000 + }, + "DAY": { + "balances": [ + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 42387138617314000, 42387138617314000, 42387138617314000, 42387138617314000, + 42387138617314000, 42387138617314000, 42387138617314000, 42387138617314000, + 42387138617314000, 42387138617314000, 42387138617314000, 42387138617314000, + 42387138617314000, 42387138617314000, 42387138617314000, 42387138617314000, + 42387138617314000, 42387138617314000, 42387138617314000, 42387138617314000, + 42387138617314000, 42387138617314000, 42387138617314000, 42387138617314000, + 42387138617314000, 42387138617314000, 42387138617314000, 42387138617314000, + 42387138617314000, 42387138617314000, 42387138617314000, 42387138617314000, + 42387138617314000, 42387138617314000, 42387138617314000, 42387138617314000, + 42387138617314000, 42387138617314000, 42387138617314000, 42387138617314000, + 42387138617314000, 42387138617314000, 42387138617314000, 42387138617314000, + 42387138617314000, 42387138617314000, 42387138617314000, 42387138617314000, + 42387138617314000, 535511796811107, 535511796811107, 535511796811107, + 33294361272395508, 33294361272395508, 33294361272395508, 33294361272395508, + 33294361272395508, 33294361272395508, 33294361272395508, 33294361272395508, + 33294361272395508, 33294361272395508, 33294361272395508, 33294361272395508, + 33294361272395508, 33294361272395508, 33294361272395508, 33294361272395508, + 33294361272395508, 33294361272395508, 33294361272395508, 33294361272395508, + 33294361272395508, 33294361272395508, 33294361272395508, 33294361272395508, + 33294361272395508, 33294361272395508, 33294361272395508, 33294361272395508, + 33294361272395508, 33294361272395508, 33294361272395508, 33294361272395508, + 33294361272395508, 33294361272395508, 33294361272395508, 33294361272395508, + 33294361272395508, 33294361272395508, 33294361272395508, 33294361272395508, + 33294361272395508, 33294361272395508, 33294361272395508, 33294361272395508, + 33294361272395508, 33294361272395508, 33294361272395508, 33294361272395508, + 33294361272395508, 33294361272395508, 33294361272395508, 33294361272395508, + 33294361272395508, 33294361272395508, 33294361272395508, 33294361272395508, + 33294361272395508, 33294361272395508, 33294361272395508, 33294361272395508, + 33294361272395508, 33294361272395508, 33294361272395508, 33294361272395508, + 33294361272395508, 33294361272395508, 33294361272395508, 33294361272395508, + 83669921272395500, 83669921272395500, 2188439296844212, 2188439296844212, + 2188439296844212, 2188439296844212, 2188439296844212, 2188439296844212, + 2188439296844212, 2188439296844212, 2188439296844212, 2188439296844212, + 2188439296844212, 10362497115664552, 90060446625990450, 90060446625990450, + 90060446625990450, 90060446625990450, 90060446625990450, 90060446625990450, + 178060446625990460, 178060446625990460, 22070507874376000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [ + 0, 17494529222276210, 24861132451419320, 4455289051419319, 4455289051419319, + 4455289051419319, 4455289051419319, 0, 44256540205084040, 20016009404614716, + 20016009404614716, 20016009404614716, 20016009404614716, 20016009404614716, + 20016009404614716, 20016009404614716, 20016009404614716, 20016009404614716, + 20016009404614716, 20016009404614716, 20016009404614716, 20016009404614716, + 20016009404614716, 20016009404614716, 20016009404614716, 20016009404614716, + 20016009404614716, 20016009404614716, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 15090903792590648, 15090903792590648, 15090903792590648, 15090903792590648, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 120038617314000, 120038617314000, 120038617314000, + 120038617314000, 120038617314000, 42387138617314000, 42387138617314000, + 42387138617314000, 42387138617314000, 42387138617314000, 42387138617314000, + 42387138617314000, 33294361272395508, 33294361272395508, 33294361272395508, + 33294361272395508, 33294361272395508, 33294361272395508, 33294361272395508, + 33294361272395508, 33294361272395508, 33294361272395508, 2188439296844212, + 2188439296844212, 90060446625990450, 55288513920022000, 55288513920022000, + 55288513920022000, 55288513920022000, 55288513920022000 + ], + "latestDate": 1722722400000 + } + }, + "subAccounts": [ + { + "type": "TokenAccountRaw", + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "parentId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "tokenId": "ethereum/erc20/usd_tether__erc20_", + "balance": "0", + "spendableBalance": "0", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 0, 0 + ], + "latestDate": 1722952800000 + }, + "DAY": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 194790000, 194790000, 194790000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 144745116, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, 38941606, + 38941606 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [ + 0, 69987672, 1442, 1442, 1442, 64222745, 64222745, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 38941606, 38941606, 38941606, 38941606, 38941606 + ], + "latestDate": 1722722400000 + } + }, + "creationDate": "2024-08-06T13:48:11.790Z", + "operationsCount": 19, + "operations": [ + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x553b5c361f51ecd0dfa3ce032e97c118f2fe56d671e99100ff0276ae00f88f12-OUT-i0", + "hash": "0x553b5c361f51ecd0dfa3ce032e97c118f2fe56d671e99100ff0276ae00f88f12", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0x5b5af35a0965c9e779f4b1afaa170ce7f50bd47e99a94a6df8f80db5735abaa1", + "blockHeight": 20469429, + "extra": {}, + "date": "2024-08-06T12:07:59.000Z", + "value": "38941606", + "fee": "173619814334642", + "transactionSequenceNumber": 47, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x0c9445dc2b9c70ad4fd9acdb84f05cf02be08caa17f4552f14c7c58e71d62f79-IN-i0", + "hash": "0x0c9445dc2b9c70ad4fd9acdb84f05cf02be08caa17f4552f14c7c58e71d62f79", + "type": "IN", + "senders": ["0x974026E01660D11B5b5F08394806b619702Ac35C"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0xa870f670ae8e85ad097cb45fbe57260ca4f053abafebad9b7d6ae7ba819e08bf", + "blockHeight": 20240051, + "extra": {}, + "date": "2024-07-05T11:37:11.000Z", + "value": "38941606", + "fee": "2549651058972421", + "transactionSequenceNumber": 629738, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x90c030600d56f6e32e8358cf6d0b5cb58acb638f3be650d19bd50d6b773662b3-OUT-i0", + "hash": "0x90c030600d56f6e32e8358cf6d0b5cb58acb638f3be650d19bd50d6b773662b3", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x8cBAd60b6894b46c1f2F062C8eF3711C514b5563"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0xf2294b578be2af511ce7f5b868ef0a5b20bd0cb0da48a291bfc88a37614816dc", + "blockHeight": 20240013, + "extra": {}, + "date": "2024-07-05T11:29:35.000Z", + "value": "57609828", + "fee": "438361992862781", + "transactionSequenceNumber": 44, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x94447ae1acebf80b0ab83c7adb75dc7b15ecfc94e0c924e44b14f54c341f728f-OUT-i0", + "hash": "0x94447ae1acebf80b0ab83c7adb75dc7b15ecfc94e0c924e44b14f54c341f728f", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x59861265f201088607E691dC3e4E317197cc99D7"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0x679f2dec11ab924e2a23ac0951c0adcc333dfc219baedb8f394d5c80a218ee60", + "blockHeight": 20240009, + "extra": {}, + "date": "2024-07-05T11:28:47.000Z", + "value": "40000000", + "fee": "341211698897545", + "transactionSequenceNumber": 43, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x85179c479540a20454dcde82a2ac609621929777904c753049122024ff283270-OUT-i0", + "hash": "0x85179c479540a20454dcde82a2ac609621929777904c753049122024ff283270", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x4b5f834Ede79C52bD33d952C719a0B641a0310EA"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0xb6bccfa2ad6e9c082e74b512521fc681b94bf4432a0f0c4ad13e4322766d57bd", + "blockHeight": 20240005, + "extra": {}, + "date": "2024-07-05T11:27:59.000Z", + "value": "40000000", + "fee": "326550060894449", + "transactionSequenceNumber": 42, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x99acfdc806295636ebb3fad5d6dfcf97c34c612f60cd105321fca2790b7818f3-OUT-i0", + "hash": "0x99acfdc806295636ebb3fad5d6dfcf97c34c612f60cd105321fca2790b7818f3", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x187fE1a8B76c60b85c00A2819152ff00Ff642386"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0x1529c9bd012be0a6815eb95a38504f772028d8f69a1520e93321c39e30dd4b1a", + "blockHeight": 20240001, + "extra": {}, + "date": "2024-07-05T11:27:11.000Z", + "value": "40000000", + "fee": "345203356897186", + "transactionSequenceNumber": 41, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x2cdb5f3416d11e5c4a770458ebcb5423a8fe9141df38681df633d9ebc7a84a7e-IN-i0", + "hash": "0x2cdb5f3416d11e5c4a770458ebcb5423a8fe9141df38681df633d9ebc7a84a7e", + "type": "IN", + "senders": ["0x974026E01660D11B5b5F08394806b619702Ac35C"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0xf9fe90e9480616618abc032de9aa4cc2c9ef5353d7d3be68554c27ce56ede587", + "blockHeight": 20239328, + "extra": {}, + "date": "2024-07-05T09:11:59.000Z", + "value": "32864712", + "fee": "5331625936715048", + "transactionSequenceNumber": 629551, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0xf36e304f60983c0f1286adbb1aa98b1e59f9d353e617c7e9eeb821a35c8c009b-IN-i0", + "hash": "0xf36e304f60983c0f1286adbb1aa98b1e59f9d353e617c7e9eeb821a35c8c009b", + "type": "IN", + "senders": ["0x974026E01660D11B5b5F08394806b619702Ac35C"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0x1c112dc0261533672b59968f9eb5505df8b626090bc624e386895ee3d83e3d74", + "blockHeight": 20234127, + "extra": {}, + "date": "2024-07-04T15:45:11.000Z", + "value": "54303162", + "fee": "6192546301570460", + "transactionSequenceNumber": 628527, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x8b1a786730837092a7cb6bc9275a36ac24dca2fba7b0d77ca1035435eba79fc7-IN-i0", + "hash": "0x8b1a786730837092a7cb6bc9275a36ac24dca2fba7b0d77ca1035435eba79fc7", + "type": "IN", + "senders": ["0x974026E01660D11B5b5F08394806b619702Ac35C"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0xa3901b0a6999c9b2166476e29cb26313702482138acb375a734acb1e95013aab", + "blockHeight": 20232980, + "extra": {}, + "date": "2024-07-04T11:53:59.000Z", + "value": "90441954", + "fee": "6366195652044033", + "transactionSequenceNumber": 628292, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0xb9ba8e2e35d61c4a21c9044960e658d7d9c6193a409b43dbef03c229d5aa2397-OUT-i0", + "hash": "0xb9ba8e2e35d61c4a21c9044960e658d7d9c6193a409b43dbef03c229d5aa2397", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x187fE1a8B76c60b85c00A2819152ff00Ff642386"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0x7b423faa607acda7a1126f86e3bce4aca2c9b692c0f56637abbf68a14580fc60", + "blockHeight": 19587942, + "extra": {}, + "date": "2024-04-05T07:05:23.000Z", + "value": "194790000", + "fee": "641150524415600", + "transactionSequenceNumber": 32, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x4810b9e8b550c66267025d050c09420840828757d025c97681653f20d5768760-IN-i0", + "hash": "0x4810b9e8b550c66267025d050c09420840828757d025c97681653f20d5768760", + "type": "IN", + "senders": ["0x86BA8588E8AC97cD6fA91c670F0E104DC6B62501"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0x2b99f74f2c1c7d9d010de2d2cb3c51879f583b63e4d159a951c6729d15fb5c86", + "blockHeight": 19567805, + "extra": {}, + "date": "2024-04-02T11:25:11.000Z", + "value": "194790000", + "fee": "1910396556591551", + "transactionSequenceNumber": 1247, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x8a4c66bbe7f5426b726bc6b0a7b2a5e973d1523fb57cacea07136d30b078fac2-OUT-i0", + "hash": "0x8a4c66bbe7f5426b726bc6b0a7b2a5e973d1523fb57cacea07136d30b078fac2", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x4975e78Ae5a64353aA80806A4e15F2D30839226d"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0x255c0b79b87f1876f36c00bbc1679e58d6205ff43068a202e5494d9cc1fbc43c", + "blockHeight": 19567782, + "extra": {}, + "date": "2024-04-02T11:20:35.000Z", + "value": "58000000", + "fee": "1494729747429893", + "transactionSequenceNumber": 30, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x6709154d1efa39c6e96fead045173fc4f11608b10d62eb1a4aae5901e739effc-IN-i0", + "hash": "0x6709154d1efa39c6e96fead045173fc4f11608b10d62eb1a4aae5901e739effc", + "type": "IN", + "senders": ["0x86BA8588E8AC97cD6fA91c670F0E104DC6B62501"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0x77f3b1b88e2e51377800e9a1bb9241f5acc2cee6c3b11649fdf7baaca914aa26", + "blockHeight": 19567542, + "extra": {}, + "date": "2024-04-02T10:32:11.000Z", + "value": "58000000", + "fee": "1908536753001413", + "transactionSequenceNumber": 1246, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x9039d7ab6f56a463ee62ae5b8b9922eeb136c93686bbf0f469a2dab43e24f66d-OUT-i0", + "hash": "0x9039d7ab6f56a463ee62ae5b8b9922eeb136c93686bbf0f469a2dab43e24f66d", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xc104C99A2C38Bfb1814CFbE2d3A54e7B824D4677"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0x6f023490a8dc73360c5e338d3c23de66d63819c0f38b48769f77679bedf3c24f", + "blockHeight": 12818253, + "extra": {}, + "date": "2021-07-13T10:25:22.000Z", + "value": "113019909", + "fee": "973821800000000", + "transactionSequenceNumber": 8, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0xcb29a3c3ca8cdf2819de82ae04e864c68f2e620eb875a25499be63cb75682ae7-IN-i0", + "hash": "0xcb29a3c3ca8cdf2819de82ae04e864c68f2e620eb875a25499be63cb75682ae7", + "type": "IN", + "senders": ["0x28C6c06298d514Db089934071355E5743bf21d60"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0xa95d85490eb55d68dabbe017fd15100a6e5f17611c82b0831ab69966d272cacb", + "blockHeight": 12818206, + "extra": {}, + "date": "2021-07-13T10:16:23.000Z", + "value": "48797164", + "fee": "1383270000000000", + "transactionSequenceNumber": 732888, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x54bfbec7c76b3015fef3a479c7c6385b614847cfdadda73e4814a15779ff4b7a-IN-i0", + "hash": "0x54bfbec7c76b3015fef3a479c7c6385b614847cfdadda73e4814a15779ff4b7a", + "type": "IN", + "senders": ["0x912fD21d7a69678227fE6d08C64222Db41477bA0"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0x9c4f3e78bebe804c960525f9f33b6baf9d57db87c8e3bd4e59177be36195cbe6", + "blockHeight": 12740598, + "extra": {}, + "date": "2021-07-01T08:08:00.000Z", + "value": "64221303", + "fee": "1102927280000000", + "transactionSequenceNumber": 572122, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x9d7845ed029efdb7bbbe9171f501cf6174926f5369e435019a8a1f91b869f8ef-IN-i1", + "hash": "0x9d7845ed029efdb7bbbe9171f501cf6174926f5369e435019a8a1f91b869f8ef", + "type": "IN", + "senders": ["0x1bD435F3C054b6e901B7b108a0ab7617C808677b"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0x0705ec7b9f3532876ada686e0d84d7f8bdd394733a8948a242efd3f77d911b67", + "blockHeight": 12613272, + "extra": {}, + "date": "2021-06-11T12:33:14.000Z", + "value": "1442", + "fee": "2690457200000000", + "transactionSequenceNumber": 4, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x58cc1b68337db7a865ef507dbba14e3942d2d3d2cf54f6c086663bcd00abe572-OUT-i0", + "hash": "0x58cc1b68337db7a865ef507dbba14e3942d2d3d2cf54f6c086663bcd00abe572", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x8A4C443bE483f98407e794d3951C5cC0d2d25F26"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0xd7eede7b12c914efe26e0e8797076ba807a60e735b3f46be216a3557109569ff", + "blockHeight": 12596045, + "extra": {}, + "date": "2021-06-08T20:27:56.000Z", + "value": "69987672", + "fee": "2410450000000000", + "transactionSequenceNumber": 1, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x71560bb7fdffceae0e25425eac91b865b30ca7c3e6d0dbb790db768275250c71-IN-i0", + "hash": "0x71560bb7fdffceae0e25425eac91b865b30ca7c3e6d0dbb790db768275250c71", + "type": "IN", + "senders": ["0x44627CDE2fe1a0e0DbD807DeEeE075B51fE16e32"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0xa06e17e60bfe384119b46bda5e2dc9bdf6776bbe0f300a8044e1fe6b32435c71", + "blockHeight": 12567600, + "extra": {}, + "date": "2021-06-04T11:10:55.000Z", + "value": "69987672", + "fee": "1333709900000000", + "transactionSequenceNumber": 40, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + } + ], + "pendingOperations": [], + "swapHistory": [], + "starred": false + }, + { + "type": "TokenAccountRaw", + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fpooled~!underscore!~staked~!underscore!~eth", + "parentId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "tokenId": "ethereum/erc20/pooled_staked_eth", + "balance": "0", + "spendableBalance": "0", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0 + ], + "latestDate": 1722952800000 + }, + "DAY": { + "balances": [ + 0, 78274163409597090, 78274163409597090, 78274163409597090, 78274163409597090, + 78274163409597090, 78274163409597090, 78274163409597090, 78274163409597090, + 78274163409597090, 78274163409597090, 78274163409597090, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [0, 78274163409597090, 78274163409597090, 0, 0, 0, 0, 0, 0], + "latestDate": 1722722400000 + } + }, + "creationDate": "2024-08-06T13:48:11.790Z", + "operationsCount": 2, + "operations": [ + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fpooled~!underscore!~staked~!underscore!~eth-0xf170f5c1d1dc3f34d99312a203151806e6dec34c252a4ffbc642b1e33e5aa628-OUT-i0", + "hash": "0xf170f5c1d1dc3f34d99312a203151806e6dec34c252a4ffbc642b1e33e5aa628", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x0000000000000000000000000000000000000000"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fpooled~!underscore!~staked~!underscore!~eth", + "blockHash": "0xe65954c7cb86bbf5662d4e5703b67d82484ea335f5aca7c67e244af51180a4ad", + "blockHeight": 20167621, + "extra": {}, + "date": "2024-06-25T08:52:11.000Z", + "value": "78274163409597084", + "fee": "1710556094142440", + "transactionSequenceNumber": 34, + "contract": "0x5DB5235b5C7e247488784986e58019fFFd98FdA4" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fpooled~!underscore!~staked~!underscore!~eth-0xb1bbbb1b0bb1a8efef5a1abdffa7e554816ae77334266dbba7f43284d80c7fc4-IN-i0", + "hash": "0xb1bbbb1b0bb1a8efef5a1abdffa7e554816ae77334266dbba7f43284d80c7fc4", + "type": "IN", + "senders": ["0x0000000000000000000000000000000000000000"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fpooled~!underscore!~staked~!underscore!~eth", + "blockHash": "0x648ea5196c09ebbe06250580c0e7d8b390d83fff4aa2c702bb35bc179cb0596b", + "blockHeight": 20088517, + "extra": {}, + "date": "2024-06-14T07:20:59.000Z", + "value": "78274163409597084", + "fee": "1481481975551295", + "transactionSequenceNumber": 33, + "contract": "0x5DB5235b5C7e247488784986e58019fFFd98FdA4" + } + ], + "pendingOperations": [], + "swapHistory": [], + "starred": false + }, + { + "type": "TokenAccountRaw", + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fdai~!underscore!~stablecoin~!underscore!~v2~!underscore!~0", + "parentId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "tokenId": "ethereum/erc20/dai_stablecoin_v2_0", + "balance": "0", + "spendableBalance": "0", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0 + ], + "latestDate": 1722952800000 + }, + "DAY": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722722400000 + } + }, + "creationDate": "2024-08-06T13:48:11.790Z", + "operationsCount": 2, + "operations": [ + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fdai~!underscore!~stablecoin~!underscore!~v2~!underscore!~0-0x6157d553fe34f080a4f1b9700377e1572ab238363110fb2a53d3ebe0da7f64d0-OUT-i0", + "hash": "0x6157d553fe34f080a4f1b9700377e1572ab238363110fb2a53d3ebe0da7f64d0", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x60594a405d53811d3BC4766596EFD80fd545A270"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fdai~!underscore!~stablecoin~!underscore!~v2~!underscore!~0", + "blockHash": "0xf5e930dd7ef7bf6e7c00b41b8c70901fe8b11b99e009c04e6e4f832e00634c04", + "blockHeight": 16933623, + "extra": {}, + "date": "2023-03-29T14:44:59.000Z", + "value": "36162768891872079710", + "fee": "6808817061933184", + "transactionSequenceNumber": 23, + "contract": "0x6B175474E89094C44Da98b954EedeAC495271d0F" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fdai~!underscore!~stablecoin~!underscore!~v2~!underscore!~0-0xdc38a0b8310b82d3fda804a671021a815ebf2e5e3e57c2466fc322804c8d6bb7-IN-i0", + "hash": "0xdc38a0b8310b82d3fda804a671021a815ebf2e5e3e57c2466fc322804c8d6bb7", + "type": "IN", + "senders": ["0x8faf958E36c6970497386118030e6297fFf8d275"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fdai~!underscore!~stablecoin~!underscore!~v2~!underscore!~0", + "blockHash": "0x39ee6678c4d72c06997af584ed6bab1813fa671317db96a461dc09cb81cb79bf", + "blockHeight": 16933544, + "extra": {}, + "date": "2023-03-29T14:28:59.000Z", + "value": "36162768891872079710", + "fee": "4813224000000000", + "transactionSequenceNumber": 20, + "contract": "0x6B175474E89094C44Da98b954EedeAC495271d0F" + } + ], + "pendingOperations": [], + "swapHistory": [], + "starred": false + }, + { + "type": "TokenAccountRaw", + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fenjin", + "parentId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:", + "tokenId": "ethereum/erc20/enjin", + "balance": "0", + "spendableBalance": "0", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0 + ], + "latestDate": 1722952800000 + }, + "DAY": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [ + 0, 38214099380000000000, 38214099380000000000, 38214099380000000000, + 38214099380000000000, 38214099380000000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722722400000 + } + }, + "creationDate": "2024-08-06T13:48:11.790Z", + "operationsCount": 7, + "operations": [ + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fenjin-0x5f3d5a44f512ae08c6343019cf46793163134c7112156a39de3fb88ceb61c4d9-OUT-i0", + "hash": "0x5f3d5a44f512ae08c6343019cf46793163134c7112156a39de3fb88ceb61c4d9", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x75a1948471571764cED64599aa6006813bFa193D"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fenjin", + "blockHash": "0x9fd67a24dfc162e1e38264c8debed47cad957e2494b6030b7c13bf3ca8bba241", + "blockHeight": 12818877, + "extra": {}, + "date": "2021-07-13T12:48:09.000Z", + "value": "52143666200000000000", + "fee": "625856400000000", + "transactionSequenceNumber": 11, + "contract": "0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fenjin-0xd98ce9f9cc7d3ead62fed72b23a015db540886f7535bbef5cd188fdee4939c48-IN-i0", + "hash": "0xd98ce9f9cc7d3ead62fed72b23a015db540886f7535bbef5cd188fdee4939c48", + "type": "IN", + "senders": ["0x59a5208B32e627891C389EbafC644145224006E8"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fenjin", + "blockHash": "0x3a40aa78b8b5f0f39a2dbc1544ba13058470b064987082e26a478de33aa540e1", + "blockHeight": 12818755, + "extra": {}, + "date": "2021-07-13T12:20:02.000Z", + "value": "19698032320000000000", + "fee": "913224000000000", + "transactionSequenceNumber": 1669830, + "contract": "0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fenjin-0x79543d534f57a507db7886a80c3828218df02304a4e36f62c57f36fc00135809-IN-i0", + "hash": "0x79543d534f57a507db7886a80c3828218df02304a4e36f62c57f36fc00135809", + "type": "IN", + "senders": ["0x59a5208B32e627891C389EbafC644145224006E8"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fenjin", + "blockHash": "0x2e8a592157e77e28ba0e0158f13d7790e6163de6c1f90918310fff747390ec29", + "blockHeight": 12818543, + "extra": {}, + "date": "2021-07-13T11:35:39.000Z", + "value": "32445633880000000000", + "fee": "1410048000000000", + "transactionSequenceNumber": 1669812, + "contract": "0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fenjin-0x38a5dd47f79e4505e723b1c1c7531ed3526049f558b331ca6cc7bce30cd24630-OUT-i0", + "hash": "0x38a5dd47f79e4505e723b1c1c7531ed3526049f558b331ca6cc7bce30cd24630", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x75a1948471571764cED64599aa6006813bFa193D"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fenjin", + "blockHash": "0x8d5e9964ec03c5197523e747b63ea93932162c2d9a6e56174243111355082ea0", + "blockHeight": 12818115, + "extra": {}, + "date": "2021-07-13T09:55:49.000Z", + "value": "60440917440000000000", + "fee": "748202400000000", + "transactionSequenceNumber": 6, + "contract": "0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fenjin-0x8da302dc2915bbf989152a9fec2c50da6c5c9b7f8ef9961042e6f11b5048621f-IN-i0", + "hash": "0x8da302dc2915bbf989152a9fec2c50da6c5c9b7f8ef9961042e6f11b5048621f", + "type": "IN", + "senders": ["0x59a5208B32e627891C389EbafC644145224006E8"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fenjin", + "blockHash": "0x1b1d2843c3149deb9a1e75661d3d98cb279773a8a93a32715063abe993b263ac", + "blockHeight": 12817542, + "extra": {}, + "date": "2021-07-13T07:49:01.000Z", + "value": "22226818060000000000", + "fee": "983472000000000", + "transactionSequenceNumber": 1669732, + "contract": "0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fenjin-0x9d7845ed029efdb7bbbe9171f501cf6174926f5369e435019a8a1f91b869f8ef-OUT-i0", + "hash": "0x9d7845ed029efdb7bbbe9171f501cf6174926f5369e435019a8a1f91b869f8ef", + "type": "OUT", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x1bD435F3C054b6e901B7b108a0ab7617C808677b"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fenjin", + "blockHash": "0x0705ec7b9f3532876ada686e0d84d7f8bdd394733a8948a242efd3f77d911b67", + "blockHeight": 12613272, + "extra": {}, + "date": "2021-06-11T12:33:14.000Z", + "value": "1000000000000000", + "fee": "2690457200000000", + "transactionSequenceNumber": 4, + "contract": "0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fenjin-0x24bf70be29746f07bfac338718af8f7848a125c4305d209f3f9033c4a0ca4011-IN-i0", + "hash": "0x24bf70be29746f07bfac338718af8f7848a125c4305d209f3f9033c4a0ca4011", + "type": "IN", + "senders": ["0x59a5208B32e627891C389EbafC644145224006E8"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+ethereum%2Ferc20%2Fenjin", + "blockHash": "0xc52aede6d027886a58a0044e0299feb7bb09f00019d9a62642524bde3a3402a2", + "blockHeight": 12596060, + "extra": {}, + "date": "2021-06-08T20:31:00.000Z", + "value": "38215099380000000000", + "fee": "1775616000000000", + "transactionSequenceNumber": 1634482, + "contract": "0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c" + } + ], + "pendingOperations": [], + "swapHistory": [], + "starred": false + } + ], + "swapHistory": [], + "nfts": [ + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+0x42c2cEC3AE48302cB93BF14C4205992DfCBdFffB+2984+ethereum", + "tokenId": "2984", + "amount": "1", + "contract": "0x42c2cEC3AE48302cB93BF14C4205992DfCBdFffB", + "standard": "ERC721", + "currencyId": "ethereum" + }, + { + "id": "js:2:ethereum:0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4:+0x495f947276749Ce646f68AC8c248420045cb7b5e+77770246133050101334277152821957558007745772239357041338818208158214799753316+ethereum", + "tokenId": "77770246133050101334277152821957558007745772239357041338818208158214799753316", + "amount": "10", + "contract": "0x495f947276749Ce646f68AC8c248420045cb7b5e", + "standard": "ERC1155", + "currencyId": "ethereum" + } + ], + "name": "Ethereum 1", + "starred": false + }, + "version": 1 + }, + { + "data": { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "seedIdentifier": "048acdc882ef0e5812b111ba9fad64ad5592b608599052f85e76895f9db5e0e7e7a4de6104c5b506dd66cbf54ab15a5d23631441221d985f926032f3f050eccba3", + "used": true, + "derivationMode": "", + "index": 2, + "freshAddress": "0x57d86095C46a506e49BBe880864d977121E6Ecd9", + "freshAddressPath": "44'/60'/2'/0/0", + "blockHeight": 20470170, + "syncHash": "0xd88f724b", + "creationDate": "2022-06-06T15:35:41.000Z", + "operationsCount": 53, + "operations": [ + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x20b61a3234f7034bb7aadb3be8f98bba5053683bfb452c91c50b4d0e752adbe9-IN", + "hash": "0x20b61a3234f7034bb7aadb3be8f98bba5053683bfb452c91c50b4d0e752adbe9", + "type": "IN", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0xc2f4d4ff738698391f41144ed051267e85cf28f8375f72590532b5a32179bf63", + "blockHeight": 20469398, + "extra": {}, + "date": "2024-08-06T12:01:47.000Z", + "value": "9000000000000000", + "fee": "60219072753000", + "transactionSequenceNumber": 46, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x05d0d0a6d94755fe119b8e91ce74c2bd518f58c6071545836025c3a5e10d468a-OUT", + "hash": "0x05d0d0a6d94755fe119b8e91ce74c2bd518f58c6071545836025c3a5e10d468a", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x983B3Fb8c237ba6d49B5b54CCfF4D29918e88211"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0xe73a7eac355a7d767ad608f36ebf68a20bfc5cc172e2333d7fd78a24d3900f24", + "blockHeight": 19219344, + "extra": {}, + "date": "2024-02-13T13:20:11.000Z", + "value": "41623667207333020", + "fee": "621048187305000", + "transactionSequenceNumber": 29, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0xb7ae77cbca2f47158616a041acd19db9664cbd30c3858f9486f01f0e052dad0b-IN", + "hash": "0xb7ae77cbca2f47158616a041acd19db9664cbd30c3858f9486f01f0e052dad0b", + "type": "IN", + "senders": ["0x0Ae01978603e81c8a2aDE5fb9E76e581a7b4A663"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0xdf8104cb69276ae9cccc1c8e3941adb2ca25e120dab7546f382cc246e94e1809", + "blockHeight": 19182719, + "extra": {}, + "date": "2024-02-08T10:01:35.000Z", + "value": "41254762053170020", + "fee": "1356919108482000", + "transactionSequenceNumber": 87, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x8c20baeb4a17c8093fdef83069d904dabdd76a629f09c05420f7e9822570ea79-OUT", + "hash": "0x8c20baeb4a17c8093fdef83069d904dabdd76a629f09c05420f7e9822570ea79", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x4b5f834Ede79C52bD33d952C719a0B641a0310EA"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x08c0d2f68c314d0d9e9ec7aa87bfb2654b8db7ac541c175172a5790b60a123ec", + "blockHeight": 19177004, + "extra": {}, + "date": "2024-02-07T14:47:23.000Z", + "value": "45758133619073135", + "fee": "1025707893315000", + "transactionSequenceNumber": 28, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x71b6e5614af419c630ba3e47018d5bc2312c4c3787328f413fb1bdeefb141ce4-IN", + "hash": "0x71b6e5614af419c630ba3e47018d5bc2312c4c3787328f413fb1bdeefb141ce4", + "type": "IN", + "senders": ["0x0Ae01978603e81c8a2aDE5fb9E76e581a7b4A663"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x8d69e20977db0d80d51679b211bf53b13b266c8eb33bf4d224f7c5697c3b8e7e", + "blockHeight": 19176116, + "extra": {}, + "date": "2024-02-07T11:47:59.000Z", + "value": "29587151939483950", + "fee": "569577586368000", + "transactionSequenceNumber": 85, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x02cc45f245bba5c0526dbb304c3f6f4b730328b11ac278c1418a11f3d400b0a1-IN", + "hash": "0x02cc45f245bba5c0526dbb304c3f6f4b730328b11ac278c1418a11f3d400b0a1", + "type": "IN", + "senders": ["0xb36E6F4585bF47879D5FbA2e0DbfE05F79887Ee0"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0xcff1d6bb1112127edb401a3a8939d80bb395d5dac011b5ed2ab86cf686953c21", + "blockHeight": 19176080, + "extra": {}, + "date": "2024-02-07T11:40:35.000Z", + "value": "16490379080009185", + "fee": "568104459048000", + "transactionSequenceNumber": 113, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0xf03ac7d8d139241db59d95da44bcf2992950faab3d35d2bb2db352c3ce2d7829-OUT", + "hash": "0xf03ac7d8d139241db59d95da44bcf2992950faab3d35d2bb2db352c3ce2d7829", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x8e57422e782720b11a199fc050c45af7ac33a05c01419f5486291a5b9c60c48d", + "blockHeight": 19084142, + "extra": {}, + "date": "2024-01-25T14:11:35.000Z", + "value": "28512219464337000", + "fee": "617325947658000", + "transactionSequenceNumber": 27, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x05b5271ed3d3372869553b093acf7b51ea04235b2f0d52112ceef76b83121a11-IN", + "hash": "0x05b5271ed3d3372869553b093acf7b51ea04235b2f0d52112ceef76b83121a11", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x77e8877a7268553d7e1884218ef4e488f00df46609a07198e1dd57e5c26b08a6", + "blockHeight": 19083971, + "extra": {}, + "date": "2024-01-25T13:37:11.000Z", + "value": "28527660000000000", + "fee": "708839451873000", + "transactionSequenceNumber": 445058, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0xc4708f1d95299bc2bcaf8d3abb0150b48e86a130f0983d487383b9587729116a-OUT", + "hash": "0xc4708f1d95299bc2bcaf8d3abb0150b48e86a130f0983d487383b9587729116a", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x0023bda142f11a383b4588fa58c8434615add7fc86349c8815394ed3353b4010", + "blockHeight": 18641653, + "extra": {}, + "date": "2023-11-24T12:45:47.000Z", + "value": "33632722851676028", + "fee": "574726619145000", + "transactionSequenceNumber": 26, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x899dee0826ccbf8cbc057a47bec70b4b4fcff128235897b9cfa3169aa60c0187-IN", + "hash": "0x899dee0826ccbf8cbc057a47bec70b4b4fcff128235897b9cfa3169aa60c0187", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x357c09417f542ded755d7ae8888bb490be439703144e52fafdf2699ab9b98cce", + "blockHeight": 18640432, + "extra": {}, + "date": "2023-11-24T08:40:11.000Z", + "value": "30230800000000000", + "fee": "723135363342000", + "transactionSequenceNumber": 384505, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x31d28251f9c74a002b679be49a28c34c66afcca65b429dac26fe6f79747fb14f-FEES", + "hash": "0x31d28251f9c74a002b679be49a28c34c66afcca65b429dac26fe6f79747fb14f", + "type": "FEES", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x17df6d066998de3a4faa239f71bf1871698c01f8df60470eabab8ca2ed2e0cf0", + "blockHeight": 18141624, + "extra": {}, + "date": "2023-09-15T12:29:11.000Z", + "value": "863215815285252", + "fee": "863215815285252", + "transactionSequenceNumber": 25, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x3e90b12fe77585bcf59247f188c5e126eee56ae8c3a43f6cc8a1c9877e4305c0-NONE", + "hash": "0x3e90b12fe77585bcf59247f188c5e126eee56ae8c3a43f6cc8a1c9877e4305c0", + "type": "NONE", + "senders": ["0x44590aEE14A45493326C09Cf20E8302D59687D48"], + "recipients": ["0xfa0a67b341C074d9E4A162D27F065ad3540c0d4E"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x3f2d03aa7d5ade45b2ab9a19bf1705176ccd19c0db39b36f5dfc0203311c3dad", + "blockHeight": 16939405, + "extra": {}, + "date": "2023-03-30T10:14:47.000Z", + "value": "0", + "fee": "4331789544394176", + "transactionSequenceNumber": 6002, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0xa18dc0bb5ec0751299ce81000251e828592490b4bd16e2cf64b59794fe69f374-FEES", + "hash": "0xa18dc0bb5ec0751299ce81000251e828592490b4bd16e2cf64b59794fe69f374", + "type": "FEES", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x6B175474E89094C44Da98b954EedeAC495271d0F"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0xf76fa5fb5c4f15e267d8514a71dedb985882bfd9a3ccfaa8097615aede3a35a9", + "blockHeight": 16939387, + "extra": {}, + "date": "2023-03-30T10:11:11.000Z", + "value": "1298605637043720", + "fee": "1298605637043720", + "transactionSequenceNumber": 24, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0xc10b315f174d6c48e26b6a5a161eb96b398b9f59c972b108e5f8d51185f31eec-OUT", + "hash": "0xc10b315f174d6c48e26b6a5a161eb96b398b9f59c972b108e5f8d51185f31eec", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x996d0a2a4c9c14ceb0380cffca05d2b527c220b1f9fee13182e3811354f34a82", + "blockHeight": 16939360, + "extra": {}, + "date": "2023-03-30T10:05:47.000Z", + "value": "19102617295359876", + "fee": "4112280000000000", + "transactionSequenceNumber": 23, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0xbf448a77e0e748cb5ff451c4ba95628ea612ec2ac9675dfabdd588920ab02de5-FEES", + "hash": "0xbf448a77e0e748cb5ff451c4ba95628ea612ec2ac9675dfabdd588920ab02de5", + "type": "FEES", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0xa117000000f279D81A1D3cc75430fAA017FA5A2e"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x0bd8eb4f0dd36227b14fc7d491bc4655526fcd755f7eeca80707dd7b1cf99b0f", + "blockHeight": 16938671, + "extra": {}, + "date": "2023-03-30T07:46:59.000Z", + "value": "698958000000000", + "fee": "698958000000000", + "transactionSequenceNumber": 22, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x51cf4218b581ccb7e394fb5e5ac126040125d4197567d0112447f570b2e918f5-NONE", + "hash": "0x51cf4218b581ccb7e394fb5e5ac126040125d4197567d0112447f570b2e918f5", + "type": "NONE", + "senders": ["0xEe230dD7519BC5d0C9899E8704ffdc80560e8509"], + "recipients": ["0xA88800CD213dA5Ae406ce248380802BD53b47647"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0xf98222da13d62a379035f0dc843b766f1c9b25998eed3656c14ac6be86f043fe", + "blockHeight": 16938518, + "extra": {}, + "date": "2023-03-30T07:16:11.000Z", + "value": "0", + "fee": "11860883177718610", + "transactionSequenceNumber": 2371, + "hasFailed": false, + "internalOperations": [ + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x51cf4218b581ccb7e394fb5e5ac126040125d4197567d0112447f570b2e918f5-IN-i0", + "hash": "0x51cf4218b581ccb7e394fb5e5ac126040125d4197567d0112447f570b2e918f5", + "type": "IN", + "senders": ["0x8290dBccb15b5A516dEEE2805C58e56075d6605E"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0xf98222da13d62a379035f0dc843b766f1c9b25998eed3656c14ac6be86f043fe", + "blockHeight": 16938518, + "extra": {}, + "date": "2023-03-30T07:16:11.000Z", + "value": "17651721201424687", + "fee": "0", + "hasFailed": false + } + ] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x7edd889239f80afb73de5d63ecf477f3c1f6ecf9b5aded8c36c6106a3eb87103-OUT", + "hash": "0x7edd889239f80afb73de5d63ecf477f3c1f6ecf9b5aded8c36c6106a3eb87103", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x3cba66bbbe1e0fe0b6c0608b1ec94da06893060550e4e2f16767512e4b6baf45", + "blockHeight": 16931505, + "extra": {}, + "date": "2023-03-29T07:35:59.000Z", + "value": "50588000000000000", + "fee": "588000000000000", + "transactionSequenceNumber": 21, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0xe1bac3175532421b2ba1465baa4c950233def92bb66f57ec2605d21fd5313a6c-FEES", + "hash": "0xe1bac3175532421b2ba1465baa4c950233def92bb66f57ec2605d21fd5313a6c", + "type": "FEES", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0xa117000000f279D81A1D3cc75430fAA017FA5A2e"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0xc680c9a816dab46430ae3e188dc67b5229c93df313d0f011f779dadccb29a5cd", + "blockHeight": 16882138, + "extra": {}, + "date": "2023-03-22T09:07:35.000Z", + "value": "337428000000000", + "fee": "337428000000000", + "transactionSequenceNumber": 20, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x68a7fbc537273124890d90304d24d22336675bd8496395af817e0641117685a3-FEES", + "hash": "0x68a7fbc537273124890d90304d24d22336675bd8496395af817e0641117685a3", + "type": "FEES", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0xa117000000f279D81A1D3cc75430fAA017FA5A2e"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x682788288f08897830c755022760df656c254ae3820002da803fa05aeb65763d", + "blockHeight": 16881992, + "extra": {}, + "date": "2023-03-22T08:37:35.000Z", + "value": "599118000000000", + "fee": "599118000000000", + "transactionSequenceNumber": 19, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x390eba43cb4b4b4beab7b437a981abcb2a74a519b0931864cee07a28e0a5afd7-FEES", + "hash": "0x390eba43cb4b4b4beab7b437a981abcb2a74a519b0931864cee07a28e0a5afd7", + "type": "FEES", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0xd26114cd6EE289AccF82350c8d8487fedB8A0C07"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x8ce9195717f8117bb78f3a64e6216a53523738dddb4dc60009e96b0fa702e8c1", + "blockHeight": 16881930, + "extra": {}, + "date": "2023-03-22T08:25:11.000Z", + "value": "289356000000000", + "fee": "289356000000000", + "transactionSequenceNumber": 18, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0xa57d8bc647a11e118b6192c2e8b36f633c4fa2b03067a379d549f62ee60761ff-FEES", + "hash": "0xa57d8bc647a11e118b6192c2e8b36f633c4fa2b03067a379d549f62ee60761ff", + "type": "FEES", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0xab0259bc6c20540654889d9ad59d4c7b5fde587b6dd7fc13fda72df863715fac", + "blockHeight": 16881917, + "extra": {}, + "date": "2023-03-22T08:22:35.000Z", + "value": "324527532437488", + "fee": "324527532437488", + "transactionSequenceNumber": 17, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x0157e0c4665d8d98b6328087df48887f49c8461413ba91082bcfe54dbf864680-FEES", + "hash": "0x0157e0c4665d8d98b6328087df48887f49c8461413ba91082bcfe54dbf864680", + "type": "FEES", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0xcc1d0846c2b67730b353b8422357300492f0b6f17e3570cec8fa8c5f741c4010", + "blockHeight": 16876749, + "extra": {}, + "date": "2023-03-21T14:57:11.000Z", + "value": "1836160000000000", + "fee": "1836160000000000", + "transactionSequenceNumber": 16, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x19f5bdce046e5672dd3d3008b643207759aaed8685fb6c2b371c0b033e26583a-FEES", + "hash": "0x19f5bdce046e5672dd3d3008b643207759aaed8685fb6c2b371c0b033e26583a", + "type": "FEES", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0xd26114cd6EE289AccF82350c8d8487fedB8A0C07"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x26a83adff3f59041010eed120bcb2ef55e7cc6dc3d6fcf357c808ca48f706092", + "blockHeight": 16876745, + "extra": {}, + "date": "2023-03-21T14:56:23.000Z", + "value": "1529253000000000", + "fee": "1529253000000000", + "transactionSequenceNumber": 13, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0xeba0624582e2e6133d3e8c6752707a4d9f518843f225def1944e4461bf9d3fd4-FEES", + "hash": "0xeba0624582e2e6133d3e8c6752707a4d9f518843f225def1944e4461bf9d3fd4", + "type": "FEES", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x1111111254EEB25477B68fb85Ed929f73A960582"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x26a83adff3f59041010eed120bcb2ef55e7cc6dc3d6fcf357c808ca48f706092", + "blockHeight": 16876745, + "extra": {}, + "date": "2023-03-21T14:56:23.000Z", + "value": "5270067000000000", + "fee": "5270067000000000", + "transactionSequenceNumber": 14, + "hasFailed": false, + "internalOperations": [ + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0xeba0624582e2e6133d3e8c6752707a4d9f518843f225def1944e4461bf9d3fd4-IN-i1", + "hash": "0xeba0624582e2e6133d3e8c6752707a4d9f518843f225def1944e4461bf9d3fd4", + "type": "IN", + "senders": ["0x1111111254EEB25477B68fb85Ed929f73A960582"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x26a83adff3f59041010eed120bcb2ef55e7cc6dc3d6fcf357c808ca48f706092", + "blockHeight": 16876745, + "extra": {}, + "date": "2023-03-21T14:56:23.000Z", + "value": "9891274214791681", + "fee": "0", + "hasFailed": false + } + ] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x3b2f22a9c42aa0d8b270e93421b0e4345c9a37ddaa0a5b941f6604fcde17c15b-FEES", + "hash": "0x3b2f22a9c42aa0d8b270e93421b0e4345c9a37ddaa0a5b941f6604fcde17c15b", + "type": "FEES", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0xd26114cd6EE289AccF82350c8d8487fedB8A0C07"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x26a83adff3f59041010eed120bcb2ef55e7cc6dc3d6fcf357c808ca48f706092", + "blockHeight": 16876745, + "extra": {}, + "date": "2023-03-21T14:56:23.000Z", + "value": "1738205751993048", + "fee": "1738205751993048", + "transactionSequenceNumber": 15, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x75510264a7c2ed8f7e9d7a05daf5696e6c44f344faee0bcf56e28d60a0091114-OUT", + "hash": "0x75510264a7c2ed8f7e9d7a05daf5696e6c44f344faee0bcf56e28d60a0091114", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x1111111254EEB25477B68fb85Ed929f73A960582"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x166e8cba1ae1d5d9748e3a927bc8b0a8a1aa9c3a5160f310bdcf8ae28fb8a07b", + "blockHeight": 16876720, + "extra": {}, + "date": "2023-03-21T14:51:23.000Z", + "value": "16288871676425956", + "fee": "6288871676425956", + "transactionSequenceNumber": 12, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x76798117b5b59b3f56e32b01bd569f60dfb39e290bec57e5644bfec314bfe761-IN", + "hash": "0x76798117b5b59b3f56e32b01bd569f60dfb39e290bec57e5644bfec314bfe761", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x9e83505006b149e832953aae41131b63fd2f49a1b473d1d6eb383a3c23977eae", + "blockHeight": 15573042, + "extra": {}, + "date": "2022-09-20T06:55:47.000Z", + "value": "17190580000000000", + "fee": "207069295923000", + "transactionSequenceNumber": 62610, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x0d551a69b7d18142d1ee19afcd6adab00481d9bfe9c131ecc278543f4c859df1-FEES", + "hash": "0x0d551a69b7d18142d1ee19afcd6adab00481d9bfe9c131ecc278543f4c859df1", + "type": "FEES", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x59f69f4c6e44b3d932e9b020e1cb8cea846a4f99aaed4532baffe97775630d51", + "blockHeight": 15573030, + "extra": {}, + "date": "2022-09-20T06:53:23.000Z", + "value": "490892040000000", + "fee": "490892040000000", + "transactionSequenceNumber": 11, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x9b5dc0885e18249e8208aa7421ace30f194f2c8d8827f98ed25052baf92c361e-NONE", + "hash": "0x9b5dc0885e18249e8208aa7421ace30f194f2c8d8827f98ed25052baf92c361e", + "type": "NONE", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0xa81011Ae274eF6deBd3BDaB634102c7b6c2C452D"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x57fb8ad352094489ca4bcb0c04ee3d3f00c197efbea1c1e7e6ca69e275abfa08", + "blockHeight": 15539077, + "extra": {}, + "date": "2022-09-15T12:24:23.000Z", + "value": "0", + "fee": "2796574790929392", + "transactionSequenceNumber": 59275, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x762fca40a339d81b4f83e264f794dd42ed088e9904ceb657baa043a38a46d783-OUT", + "hash": "0x762fca40a339d81b4f83e264f794dd42ed088e9904ceb657baa043a38a46d783", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x20Dd9beb3333F68cDa6127b42B477FC73Fbd70BC"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x48a74dca749f5e6e0ef5273ae95b8a08d9b59762b5fbf4a626963179e820f909", + "blockHeight": 15539012, + "extra": {}, + "date": "2022-09-15T12:11:11.000Z", + "value": "28386900000000000", + "fee": "186900000000000", + "transactionSequenceNumber": 10, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0xf09207704711928ec987150d79d3e3e52a6db6cce91e6ff1d5e9fe729438443f-OUT", + "hash": "0xf09207704711928ec987150d79d3e3e52a6db6cce91e6ff1d5e9fe729438443f", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x23B2A041C6BE1fc57B7c395Dc26626104a23Bd3a"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x3b5a1b718ff7d7a7e4eb879f703b046575b0f2b7162525390f209cf0562f796e", + "blockHeight": 15538995, + "extra": {}, + "date": "2022-09-15T12:07:47.000Z", + "value": "17200550000000000", + "fee": "200550000000000", + "transactionSequenceNumber": 9, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x5dbb890b00af4c38a36cdd7a9a0a53d373dcf90a7c15cb650279922d43273085-NONE", + "hash": "0x5dbb890b00af4c38a36cdd7a9a0a53d373dcf90a7c15cb650279922d43273085", + "type": "NONE", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0xa81011Ae274eF6deBd3BDaB634102c7b6c2C452D"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x864e070500643eac3f75aea33d666f9d81f53a1e804f91a77a73007fde31de22", + "blockHeight": 15537907, + "extra": {}, + "date": "2022-09-15T08:27:11.000Z", + "value": "0", + "fee": "5316601591449213", + "transactionSequenceNumber": 59133, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x7a03a627750d3f994e83fed3ee687c6b98fbcf579b4c9c09ee57e9c194782ecd-IN", + "hash": "0x7a03a627750d3f994e83fed3ee687c6b98fbcf579b4c9c09ee57e9c194782ecd", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x4f97d85b2b608be25cf55d31becef9ba5c7d55817851efea27c2750b609f03c9", + "blockHeight": 15537856, + "extra": {}, + "date": "2022-09-15T08:16:23.000Z", + "value": "20858790000000000", + "fee": "577760447229000", + "transactionSequenceNumber": 59121, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x498d874b336cd99483d36a2d70e97b066dc05e5015c671f1da9bb0641f570388-OUT", + "hash": "0x498d874b336cd99483d36a2d70e97b066dc05e5015c671f1da9bb0641f570388", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0xA405e55CC2e9038C627EA4338a27901DfD94073E"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0xea62b0fd7b73839b5c6674b847502d6b5981a29132c23243d6e1e410d351681d", + "blockHeight": 15537849, + "extra": {}, + "date": "2022-09-15T08:14:59.000Z", + "value": "19587160000000000", + "fee": "587160000000000", + "transactionSequenceNumber": 8, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0xc0d76ae05d7f1280dcecd5ebab9cae9594c353b97bc37e8b88a9e0236d9ac423-FEES", + "hash": "0xc0d76ae05d7f1280dcecd5ebab9cae9594c353b97bc37e8b88a9e0236d9ac423", + "type": "FEES", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x75231F58b43240C9718Dd58B4967c5114342a86c"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0xb4099995bf2194e8bee50023278095b0f97cb6ee12f6b828c9cddfb24004ba29", + "blockHeight": 15537843, + "extra": {}, + "date": "2022-09-15T08:13:47.000Z", + "value": "1575061120000000", + "fee": "1575061120000000", + "transactionSequenceNumber": 7, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0xea281ab00eef2a976309df55e959e91c67ec97ab219bf226cdf275142ba431bc-IN", + "hash": "0xea281ab00eef2a976309df55e959e91c67ec97ab219bf226cdf275142ba431bc", + "type": "IN", + "senders": ["0x84c9A36721eB21da9244Fe50177180D8f4a7cAF7"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0xc7e6abcd51476d893bd8c880c8a9873a664469aaf675f624ce9776d193d8f197", + "blockHeight": 15527720, + "extra": {}, + "date": "2022-09-13T15:37:18.000Z", + "value": "100000000000000000", + "fee": "514500000000000", + "transactionSequenceNumber": 138, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0xfc2babc14bc9869659068559d66200a586ea186c1409d21530257a186c2e3598-NONE", + "hash": "0xfc2babc14bc9869659068559d66200a586ea186c1409d21530257a186c2e3598", + "type": "NONE", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0xa81011Ae274eF6deBd3BDaB634102c7b6c2C452D"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x4a268082c72e2918aaabe2b796b7d01b231cdc0ed3ea7a8d68698ec6c86b53b3", + "blockHeight": 15527246, + "extra": {}, + "date": "2022-09-13T13:46:35.000Z", + "value": "0", + "fee": "2553439920405856", + "transactionSequenceNumber": 57661, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x839ee6c313c251217ae5d496087b3e8291f291a72b980e9c182336703eca8d2f-OUT", + "hash": "0x839ee6c313c251217ae5d496087b3e8291f291a72b980e9c182336703eca8d2f", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x899962299Baf9e172becA8527905234e923EE61C"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0xf7cc50145d87fa6ea46cd2a0bdf7d752d6df0cc05b0a0b780e2ec9951bc9c1f4", + "blockHeight": 15526930, + "extra": {}, + "date": "2022-09-13T12:28:21.000Z", + "value": "20417900000000000", + "fee": "417900000000000", + "transactionSequenceNumber": 6, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0xb38b240cbdc757bd03b22bea976508ed6bd608c88bcfc6bdcfff48dd98a7bfeb-NONE", + "hash": "0xb38b240cbdc757bd03b22bea976508ed6bd608c88bcfc6bdcfff48dd98a7bfeb", + "type": "NONE", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0xa81011Ae274eF6deBd3BDaB634102c7b6c2C452D"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x18a0571f7a66012f873d7ee5ce430f36671b7d3c0cf7e4cfb6f6655b7e8e4f70", + "blockHeight": 15275430, + "extra": {}, + "date": "2022-08-04T10:50:24.000Z", + "value": "0", + "fee": "3811210175801961", + "transactionSequenceNumber": 29191, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x25095c19cd03a3c74fa41cadb56911a01559673e4c49fa7ca0990785698c1323-OUT", + "hash": "0x25095c19cd03a3c74fa41cadb56911a01559673e4c49fa7ca0990785698c1323", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x9cC376bd77067CA25880130686B96B9FF949E44f"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x2b9ccd0d6e299db73f5c7efef4861367451b66c8e807e1509651ff5157d46d0a", + "blockHeight": 15275382, + "extra": {}, + "date": "2022-08-04T10:41:11.000Z", + "value": "30212100000000000", + "fee": "212100000000000", + "transactionSequenceNumber": 5, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x7f27b9ee08d5363b9f5b40d48dc50f7e3073197c8148b8752baa90976ec07bc0-IN", + "hash": "0x7f27b9ee08d5363b9f5b40d48dc50f7e3073197c8148b8752baa90976ec07bc0", + "type": "IN", + "senders": ["0x0Ae01978603e81c8a2aDE5fb9E76e581a7b4A663"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x1edbba7229f8a3a55b7bd79821aec799ab60ac2762b6ba23af5cbe6ede8f1da8", + "blockHeight": 15275022, + "extra": {}, + "date": "2022-08-04T09:12:47.000Z", + "value": "30000000000000000", + "fee": "610050000000000", + "transactionSequenceNumber": 12, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x0ff52e8aa3e589d5b2dd0af7cac7e8f9ece7868c8ff52249add77a7950f94766-OUT", + "hash": "0x0ff52e8aa3e589d5b2dd0af7cac7e8f9ece7868c8ff52249add77a7950f94766", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0xFacCC1a3E07224A5d4f907A087ce6c2E33da2139"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0xf84f6e2b920ae8cd085ab4e0247ba01bd4eea9cdf8a441cda92ee418d26604f4", + "blockHeight": 15274869, + "extra": {}, + "date": "2022-08-04T08:40:33.000Z", + "value": "50518700000000000", + "fee": "518700000000000", + "transactionSequenceNumber": 4, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x685df4d408be7834759ea878c324e70f267be6db7935f328abf35beb6174c638-IN", + "hash": "0x685df4d408be7834759ea878c324e70f267be6db7935f328abf35beb6174c638", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x610c90ebaa20296a2b0c1d1e2e77394fd1d509bf3822d91ca19acadb0f2ccbb8", + "blockHeight": 15038892, + "extra": {}, + "date": "2022-06-28T08:56:02.000Z", + "value": "77287180000000000", + "fee": "788060848008000", + "transactionSequenceNumber": 3850, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0xa498ea1b16fc8e6678a0311d44e39aeeae213a1eeb4b4e5e5b9388b338c0f1c9-OUT", + "hash": "0xa498ea1b16fc8e6678a0311d44e39aeeae213a1eeb4b4e5e5b9388b338c0f1c9", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x3AB1d8FB92F0185917e9997B57cC49C0E2223ddD"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x9289cc28855fe0e562b1aa1e1a34c4b621c5603e3e9569fb54d41efbda11cf3e", + "blockHeight": 15038847, + "extra": {}, + "date": "2022-06-28T08:44:14.000Z", + "value": "83774268295407167", + "fee": "585900000000000", + "transactionSequenceNumber": 3, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x12ac9df6ecaa90482e5d5bf474011b1d65ba38ee53e80c36a8eb0ab78e03c5c2-IN", + "hash": "0x12ac9df6ecaa90482e5d5bf474011b1d65ba38ee53e80c36a8eb0ab78e03c5c2", + "type": "IN", + "senders": ["0x3B794929566e3Ba0f25e4263e1987828b5c87161"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0xfef3c86dc481188d393737efcf88314ff3688a34fabd7c2d693407ef0a9a2f60", + "blockHeight": 15038822, + "extra": {}, + "date": "2022-06-28T08:36:24.000Z", + "value": "27286000956226435", + "fee": "659011639671000", + "transactionSequenceNumber": 425704, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x9ec16acf7cecfd58a7ebca7cef2105bb85270781ecca935f30f44a06dd190c9f-FEES", + "hash": "0x9ec16acf7cecfd58a7ebca7cef2105bb85270781ecca935f30f44a06dd190c9f", + "type": "FEES", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x585c51b71c8e690cfbaa0866f2ae75085f173cae365fd9ce63f3b823a2f62d57", + "blockHeight": 15038810, + "extra": {}, + "date": "2022-06-28T08:32:45.000Z", + "value": "1559520300000000", + "fee": "1559520300000000", + "transactionSequenceNumber": 2, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x16e9c4285246d9ed259dac033b5b7da30df1b66da59cf8a9e7bd1bac423c61bb-NONE", + "hash": "0x16e9c4285246d9ed259dac033b5b7da30df1b66da59cf8a9e7bd1bac423c61bb", + "type": "NONE", + "senders": ["0x912fD21d7a69678227fE6d08C64222Db41477bA0"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x38027821047db80ff395d620d80965a495ee7c6636709d162b26d0ece6e51e78", + "blockHeight": 15038792, + "extra": {}, + "date": "2022-06-28T08:28:15.000Z", + "value": "0", + "fee": "2061241930827628", + "transactionSequenceNumber": 1108557, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x31b1016590fa27b65c2c817aad59ab7b55c5f435858a22dcf722ebefc1d08bbc-OUT", + "hash": "0x31b1016590fa27b65c2c817aad59ab7b55c5f435858a22dcf722ebefc1d08bbc", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x78B7A71B787aAe7B4e214eb2D553BD1C9DfA265a"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x7a06782eb79fe33de82b500e2a9e7bc69d2119c699c271946c39aca256cce34e", + "blockHeight": 15038775, + "extra": {}, + "date": "2022-06-28T08:23:49.000Z", + "value": "30573300000000000", + "fee": "573300000000000", + "transactionSequenceNumber": 1, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x3265687d75b8e4ec09a78c7a48817f7ce1405f9af69fb1488f331d067790af29-IN", + "hash": "0x3265687d75b8e4ec09a78c7a48817f7ce1405f9af69fb1488f331d067790af29", + "type": "IN", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0xb315c1764dd27f2a4e91a858bf789adb613884014de944a8686de80a28cee1ec", + "blockHeight": 15038759, + "extra": {}, + "date": "2022-06-28T08:19:43.000Z", + "value": "37942267639180732", + "fee": "846300000000000", + "transactionSequenceNumber": 10, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x6ac87ece849d01c8ab901595fb1080afd7d334d02efdb3ffa9e0c4d6d99e23ee-IN", + "hash": "0x6ac87ece849d01c8ab901595fb1080afd7d334d02efdb3ffa9e0c4d6d99e23ee", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x3df45faad71c54b57ca1209e2698d7a2cfdb64066b702277775ebd2a224236d1", + "blockHeight": 15038721, + "extra": {}, + "date": "2022-06-28T08:08:11.000Z", + "value": "50678820000000000", + "fee": "503494848675000", + "transactionSequenceNumber": 3834, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0x9fdfbae117f2c2fa6d6a105093af1a284629046c14d5c5499ae4d65106f64e85-OUT", + "hash": "0x9fdfbae117f2c2fa6d6a105093af1a284629046c14d5c5499ae4d65106f64e85", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0xB9e7e5cce0660D3825e88326bae8CC3f8B12eA01"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x3b691f1bc894bb0590aa2dd865aa86b2198846788fba80b282fbc0be7de53c8d", + "blockHeight": 15034224, + "extra": {}, + "date": "2022-06-27T11:49:47.000Z", + "value": "63281062766912202", + "fee": "594300000000000", + "transactionSequenceNumber": 0, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0xa2074ad77010ae48a698759c8d9ac3d52afc7a04086fe0f0ef0147312060745a-IN", + "hash": "0xa2074ad77010ae48a698759c8d9ac3d52afc7a04086fe0f0ef0147312060745a", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0x1766823816ffa0df6508af1514341097d05a027c652f092c7d2b1ecb4c424ffc", + "blockHeight": 15033468, + "extra": {}, + "date": "2022-06-27T08:31:22.000Z", + "value": "58049660000000000", + "fee": "548232453804000", + "transactionSequenceNumber": 3075, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:-0xd060dd74457babadd3912ce6d4acc40eb5a49618e5cf9d12e9ab6ac0890bfd80-IN", + "hash": "0xd060dd74457babadd3912ce6d4acc40eb5a49618e5cf9d12e9ab6ac0890bfd80", + "type": "IN", + "senders": ["0x912fD21d7a69678227fE6d08C64222Db41477bA0"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "blockHash": "0xec2d3625010937bcd133f23608ff3ed6d943939901053e01f306ae86c10f4076", + "blockHeight": 14915714, + "extra": {}, + "date": "2022-06-06T15:35:41.000Z", + "value": "5231402766912202", + "fee": "1359177275463000", + "transactionSequenceNumber": 1085153, + "hasFailed": false, + "internalOperations": [] + } + ], + "pendingOperations": [], + "currencyId": "ethereum", + "lastSyncDate": "2024-08-06T14:37:05.615Z", + "balance": "9289908477915000", + "spendableBalance": "9289908477915000", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 9289908477915000, 9289908477915000 + ], + "latestDate": 1722952800000 + }, + "DAY": { + "balances": [ + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 3725898547671028, + 3725898547671028, 3725898547671028, 3725898547671028, 3725898547671028, + 3725898547671028, 3725898547671028, 3725898547671028, 3725898547671028, + 3725898547671028, 3725898547671028, 3725898547671028, 3725898547671028, + 3725898547671028, 3725898547671028, 3725898547671028, 3725898547671028, + 3725898547671028, 3725898547671028, 3725898547671028, 3725898547671028, + 3725898547671028, 3725898547671028, 3725898547671028, 3725898547671028, + 3725898547671028, 3725898547671028, 3725898547671028, 3725898547671028, + 3725898547671028, 3725898547671028, 3725898547671028, 3725898547671028, + 3725898547671028, 3725898547671028, 3725898547671028, 3725898547671028, + 3725898547671028, 3725898547671028, 3725898547671028, 3725898547671028, + 3725898547671028, 3725898547671028, 3725898547671028, 3725898547671028, + 3725898547671028, 3725898547671028, 3725898547671028, 3725898547671028, + 3725898547671028, 3725898547671028, 3725898547671028, 3725898547671028, + 3725898547671028, 3725898547671028, 3725898547671028, 3725898547671028, + 3725898547671028, 3725898547671028, 3725898547671028, 3725898547671028, + 3725898547671028, 3725898547671028, 3725898547671028, 3725898547671028, + 3725898547671028, 3725898547671028, 3725898547671028, 3725898547671028, + 3725898547671028, 323975695995000, 323975695995000, 323975695995000, + 323975695995000, 323975695995000, 323975695995000, 323975695995000, 323975695995000, + 323975695995000, 323975695995000, 323975695995000, 323975695995000, 323975695995000, + 323975695995000, 323975695995000, 323975695995000, 323975695995000, 323975695995000, + 323975695995000, 323975695995000, 323975695995000, 323975695995000, 323975695995000, + 323975695995000, 323975695995000, 323975695995000, 323975695995000, 323975695995000, + 323975695995000, 323975695995000, 323975695995000, 323975695995000, 323975695995000, + 323975695995000, 323975695995000, 323975695995000, 323975695995000, 323975695995000, + 323975695995000, 323975695995000, 323975695995000, 323975695995000, 323975695995000, + 323975695995000, 323975695995000, 323975695995000, 323975695995000, 323975695995000, + 323975695995000, 323975695995000, 323975695995000, 323975695995000, 323975695995000, + 323975695995000, 323975695995000, 323975695995000, 323975695995000, 323975695995000, + 323975695995000, 323975695995000, 323975695995000, 323975695995000, 339416231658000, + 339416231658000, 339416231658000, 339416231658000, 339416231658000, 339416231658000, + 339416231658000, 339416231658000, 339416231658000, 339416231658000, 339416231658000, + 339416231658000, 339416231658000, 658813632078000, 41913575685248020, + 41913575685248020, 41913575685248020, 41913575685248020, 41913575685248020, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [ + 0, 5231402766912202, 5231402766912202, 5231402766912202, 77287180000000000, + 77287180000000000, 77287180000000000, 77287180000000000, 77287180000000000, + 26556380000000000, 26556380000000000, 26556380000000000, 26556380000000000, + 26556380000000000, 26556380000000000, 60247598880000000, 76947286840000000, + 76947286840000000, 76947286840000000, 76947286840000000, 76947286840000000, + 76947286840000000, 76947286840000000, 76947286840000000, 76947286840000000, + 76947286840000000, 76947286840000000, 76947286840000000, 76947286840000000, + 76947286840000000, 76947286840000000, 76947286840000000, 76947286840000000, + 76947286840000000, 76947286840000000, 76947286840000000, 76947286840000000, + 76947286840000000, 76947286840000000, 76947286840000000, 76947286840000000, + 76947286840000000, 58625574093935190, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 4589114362956280, 4589114362956280, + 4589114362956280, 4589114362956280, 3725898547671028, 3725898547671028, + 3725898547671028, 3725898547671028, 3725898547671028, 3725898547671028, + 3725898547671028, 3725898547671028, 3725898547671028, 3725898547671028, + 323975695995000, 323975695995000, 323975695995000, 323975695995000, 323975695995000, + 323975695995000, 323975695995000, 323975695995000, 323975695995000, 339416231658000, + 339416231658000, 41913575685248020, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000, 289908477915000, 289908477915000, + 289908477915000, 289908477915000, 289908477915000 + ], + "latestDate": 1722722400000 + } + }, + "subAccounts": [ + { + "type": "TokenAccountRaw", + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fwrapped~!underscore!~bitcoin", + "parentId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "tokenId": "ethereum/erc20/wrapped_bitcoin", + "balance": "0", + "spendableBalance": "0", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0 + ], + "latestDate": 1722952800000 + }, + "DAY": { + "balances": [ + 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, + 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, + 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, + 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, + 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, + 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, + 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, + 186513, 186513, 186513, 186513, 186513, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [ + 0, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, + 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, + 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, + 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, + 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, + 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 186513, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722722400000 + } + }, + "creationDate": "2024-08-06T13:48:11.767Z", + "operationsCount": 2, + "operations": [ + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fwrapped~!underscore!~bitcoin-0x31d28251f9c74a002b679be49a28c34c66afcca65b429dac26fe6f79747fb14f-OUT-i0", + "hash": "0x31d28251f9c74a002b679be49a28c34c66afcca65b429dac26fe6f79747fb14f", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x81DaA5EC8E9915BA047b51288f7B29D60AC85622"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fwrapped~!underscore!~bitcoin", + "blockHash": "0x17df6d066998de3a4faa239f71bf1871698c01f8df60470eabab8ca2ed2e0cf0", + "blockHeight": 18141624, + "extra": {}, + "date": "2023-09-15T12:29:11.000Z", + "value": "186513", + "fee": "863215815285252", + "transactionSequenceNumber": 25, + "contract": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599" + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fwrapped~!underscore!~bitcoin-0xb38b240cbdc757bd03b22bea976508ed6bd608c88bcfc6bdcfff48dd98a7bfeb-IN-i0", + "hash": "0xb38b240cbdc757bd03b22bea976508ed6bd608c88bcfc6bdcfff48dd98a7bfeb", + "type": "IN", + "senders": ["0xa81011Ae274eF6deBd3BDaB634102c7b6c2C452D"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fwrapped~!underscore!~bitcoin", + "blockHash": "0x18a0571f7a66012f873d7ee5ce430f36671b7d3c0cf7e4cfb6f6655b7e8e4f70", + "blockHeight": 15275430, + "extra": {}, + "date": "2022-08-04T10:50:24.000Z", + "value": "186513", + "fee": "3811210175801961", + "transactionSequenceNumber": 29191, + "contract": "0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599" + } + ], + "pendingOperations": [], + "swapHistory": [], + "starred": false + }, + { + "type": "TokenAccountRaw", + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fdai~!underscore!~stablecoin~!underscore!~v2~!underscore!~0", + "parentId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "tokenId": "ethereum/erc20/dai_stablecoin_v2_0", + "balance": "0", + "spendableBalance": "0", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0 + ], + "latestDate": 1722952800000 + }, + "DAY": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722722400000 + } + }, + "creationDate": "2024-08-06T13:48:11.767Z", + "operationsCount": 2, + "operations": [ + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fdai~!underscore!~stablecoin~!underscore!~v2~!underscore!~0-0xa18dc0bb5ec0751299ce81000251e828592490b4bd16e2cf64b59794fe69f374-OUT-i0", + "hash": "0xa18dc0bb5ec0751299ce81000251e828592490b4bd16e2cf64b59794fe69f374", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fdai~!underscore!~stablecoin~!underscore!~v2~!underscore!~0", + "blockHash": "0xf76fa5fb5c4f15e267d8514a71dedb985882bfd9a3ccfaa8097615aede3a35a9", + "blockHeight": 16939387, + "extra": {}, + "date": "2023-03-30T10:11:11.000Z", + "value": "26978740224140443130", + "fee": "1298605637043720", + "transactionSequenceNumber": 24, + "contract": "0x6B175474E89094C44Da98b954EedeAC495271d0F" + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fdai~!underscore!~stablecoin~!underscore!~v2~!underscore!~0-0xc10b315f174d6c48e26b6a5a161eb96b398b9f59c972b108e5f8d51185f31eec-IN-i0", + "hash": "0xc10b315f174d6c48e26b6a5a161eb96b398b9f59c972b108e5f8d51185f31eec", + "type": "IN", + "senders": ["0x60594a405d53811d3BC4766596EFD80fd545A270"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fdai~!underscore!~stablecoin~!underscore!~v2~!underscore!~0", + "blockHash": "0x996d0a2a4c9c14ceb0380cffca05d2b527c220b1f9fee13182e3811354f34a82", + "blockHeight": 16939360, + "extra": {}, + "date": "2023-03-30T10:05:47.000Z", + "value": "26978740224140443130", + "fee": "4112280000000000", + "transactionSequenceNumber": 23, + "contract": "0x6B175474E89094C44Da98b954EedeAC495271d0F" + } + ], + "pendingOperations": [], + "swapHistory": [], + "starred": false + }, + { + "type": "TokenAccountRaw", + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Faragon~!underscore!~network~!underscore!~token", + "parentId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "tokenId": "ethereum/erc20/aragon_network_token", + "balance": "0", + "spendableBalance": "0", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0 + ], + "latestDate": 1722952800000 + }, + "DAY": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [ + 0, 14016942160000000000, 14016942160000000000, 14016942160000000000, + 14016942160000000000, 14016942160000000000, 14016942160000000000, + 14016942160000000000, 14016942160000000000, 14016942160000000000, + 14016942160000000000, 14016942160000000000, 14016942160000000000, + 14016942160000000000, 14016942160000000000, 14016942160000000000, + 14016942160000000000, 14016942160000000000, 14016942160000000000, + 14016942160000000000, 14016942160000000000, 14016942160000000000, + 14016942160000000000, 14016942160000000000, 14016942160000000000, + 14016942160000000000, 14016942160000000000, 14016942160000000000, + 14016942160000000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722722400000 + } + }, + "creationDate": "2024-08-06T13:48:11.767Z", + "operationsCount": 2, + "operations": [ + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Faragon~!underscore!~network~!underscore!~token-0x51cf4218b581ccb7e394fb5e5ac126040125d4197567d0112447f570b2e918f5-OUT-i0", + "hash": "0x51cf4218b581ccb7e394fb5e5ac126040125d4197567d0112447f570b2e918f5", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x5623B873813b2f96416Cefd09d6A27cc5c938385"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Faragon~!underscore!~network~!underscore!~token", + "blockHash": "0xf98222da13d62a379035f0dc843b766f1c9b25998eed3656c14ac6be86f043fe", + "blockHeight": 16938518, + "extra": {}, + "date": "2023-03-30T07:16:11.000Z", + "value": "14016942160000000000", + "fee": "11860883177718610", + "transactionSequenceNumber": 2371, + "contract": "0xa117000000f279D81A1D3cc75430fAA017FA5A2e" + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Faragon~!underscore!~network~!underscore!~token-0x5dbb890b00af4c38a36cdd7a9a0a53d373dcf90a7c15cb650279922d43273085-IN-i0", + "hash": "0x5dbb890b00af4c38a36cdd7a9a0a53d373dcf90a7c15cb650279922d43273085", + "type": "IN", + "senders": ["0xa81011Ae274eF6deBd3BDaB634102c7b6c2C452D"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Faragon~!underscore!~network~!underscore!~token", + "blockHash": "0x864e070500643eac3f75aea33d666f9d81f53a1e804f91a77a73007fde31de22", + "blockHeight": 15537907, + "extra": {}, + "date": "2022-09-15T08:27:11.000Z", + "value": "14016942160000000000", + "fee": "5316601591449213", + "transactionSequenceNumber": 59133, + "contract": "0xa117000000f279D81A1D3cc75430fAA017FA5A2e" + } + ], + "pendingOperations": [], + "swapHistory": [], + "starred": false + }, + { + "type": "TokenAccountRaw", + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fomg", + "parentId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "tokenId": "ethereum/erc20/omg", + "balance": "0", + "spendableBalance": "0", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0 + ], + "latestDate": 1722952800000 + }, + "DAY": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722722400000 + } + }, + "creationDate": "2024-08-06T13:48:11.767Z", + "operationsCount": 2, + "operations": [ + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fomg-0xeba0624582e2e6133d3e8c6752707a4d9f518843f225def1944e4461bf9d3fd4-OUT-i0", + "hash": "0xeba0624582e2e6133d3e8c6752707a4d9f518843f225def1944e4461bf9d3fd4", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x7122db0Ebe4EB9B434a9F2fFE6760BC03BFbD0E0"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fomg", + "blockHash": "0x26a83adff3f59041010eed120bcb2ef55e7cc6dc3d6fcf357c808ca48f706092", + "blockHeight": 16876745, + "extra": {}, + "date": "2023-03-21T14:56:23.000Z", + "value": "9360383118720107457", + "fee": "5270067000000000", + "transactionSequenceNumber": 14, + "contract": "0xd26114cd6EE289AccF82350c8d8487fedB8A0C07" + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fomg-0x75510264a7c2ed8f7e9d7a05daf5696e6c44f344faee0bcf56e28d60a0091114-IN-i0", + "hash": "0x75510264a7c2ed8f7e9d7a05daf5696e6c44f344faee0bcf56e28d60a0091114", + "type": "IN", + "senders": ["0x1111111254EEB25477B68fb85Ed929f73A960582"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fomg", + "blockHash": "0x166e8cba1ae1d5d9748e3a927bc8b0a8a1aa9c3a5160f310bdcf8ae28fb8a07b", + "blockHeight": 16876720, + "extra": {}, + "date": "2023-03-21T14:51:23.000Z", + "value": "9360383118720107457", + "fee": "6288871676425956", + "transactionSequenceNumber": 12, + "contract": "0xd26114cd6EE289AccF82350c8d8487fedB8A0C07" + } + ], + "pendingOperations": [], + "swapHistory": [], + "starred": false + }, + { + "type": "TokenAccountRaw", + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fkyber~!underscore!~network~!underscore!~crystal~!underscore!~v2", + "parentId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "tokenId": "ethereum/erc20/kyber_network_crystal_v2", + "balance": "0", + "spendableBalance": "0", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0 + ], + "latestDate": 1722952800000 + }, + "DAY": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [ + 0, 20197198430000000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722722400000 + } + }, + "creationDate": "2024-08-06T13:48:11.767Z", + "operationsCount": 2, + "operations": [ + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fkyber~!underscore!~network~!underscore!~crystal~!underscore!~v2-0x0d551a69b7d18142d1ee19afcd6adab00481d9bfe9c131ecc278543f4c859df1-OUT-i0", + "hash": "0x0d551a69b7d18142d1ee19afcd6adab00481d9bfe9c131ecc278543f4c859df1", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x844d1545D589fcEc461eb862392967a9749aeE25"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fkyber~!underscore!~network~!underscore!~crystal~!underscore!~v2", + "blockHash": "0x59f69f4c6e44b3d932e9b020e1cb8cea846a4f99aaed4532baffe97775630d51", + "blockHeight": 15573030, + "extra": {}, + "date": "2022-09-20T06:53:23.000Z", + "value": "20197198430000000000", + "fee": "490892040000000", + "transactionSequenceNumber": 11, + "contract": "0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202" + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fkyber~!underscore!~network~!underscore!~crystal~!underscore!~v2-0x9b5dc0885e18249e8208aa7421ace30f194f2c8d8827f98ed25052baf92c361e-IN-i0", + "hash": "0x9b5dc0885e18249e8208aa7421ace30f194f2c8d8827f98ed25052baf92c361e", + "type": "IN", + "senders": ["0xa81011Ae274eF6deBd3BDaB634102c7b6c2C452D"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fkyber~!underscore!~network~!underscore!~crystal~!underscore!~v2", + "blockHash": "0x57fb8ad352094489ca4bcb0c04ee3d3f00c197efbea1c1e7e6ca69e275abfa08", + "blockHeight": 15539077, + "extra": {}, + "date": "2022-09-15T12:24:23.000Z", + "value": "20197198430000000000", + "fee": "2796574790929392", + "transactionSequenceNumber": 59275, + "contract": "0xdeFA4e8a7bcBA345F687a2f1456F5Edd9CE97202" + } + ], + "pendingOperations": [], + "swapHistory": [], + "starred": false + }, + { + "type": "TokenAccountRaw", + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fokb", + "parentId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "tokenId": "ethereum/erc20/okb", + "balance": "0", + "spendableBalance": "0", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0 + ], + "latestDate": 1722952800000 + }, + "DAY": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722722400000 + } + }, + "creationDate": "2024-08-06T13:48:11.767Z", + "operationsCount": 2, + "operations": [ + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fokb-0xc0d76ae05d7f1280dcecd5ebab9cae9594c353b97bc37e8b88a9e0236d9ac423-OUT-i0", + "hash": "0xc0d76ae05d7f1280dcecd5ebab9cae9594c353b97bc37e8b88a9e0236d9ac423", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0xa0B776458099ACA2e2Af8eAEf2CCBDf2d12D260f"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fokb", + "blockHash": "0xb4099995bf2194e8bee50023278095b0f97cb6ee12f6b828c9cddfb24004ba29", + "blockHeight": 15537843, + "extra": {}, + "date": "2022-09-15T08:13:47.000Z", + "value": "4125508900000000000", + "fee": "1575061120000000", + "transactionSequenceNumber": 7, + "contract": "0x75231F58b43240C9718Dd58B4967c5114342a86c" + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fokb-0xfc2babc14bc9869659068559d66200a586ea186c1409d21530257a186c2e3598-IN-i0", + "hash": "0xfc2babc14bc9869659068559d66200a586ea186c1409d21530257a186c2e3598", + "type": "IN", + "senders": ["0xa81011Ae274eF6deBd3BDaB634102c7b6c2C452D"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fokb", + "blockHash": "0x4a268082c72e2918aaabe2b796b7d01b231cdc0ed3ea7a8d68698ec6c86b53b3", + "blockHeight": 15527246, + "extra": {}, + "date": "2022-09-13T13:46:35.000Z", + "value": "4125508900000000000", + "fee": "2553439920405856", + "transactionSequenceNumber": 57661, + "contract": "0x75231F58b43240C9718Dd58B4967c5114342a86c" + } + ], + "pendingOperations": [], + "swapHistory": [], + "starred": false + }, + { + "type": "TokenAccountRaw", + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "parentId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:", + "tokenId": "ethereum/erc20/usd_tether__erc20_", + "balance": "0", + "spendableBalance": "0", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0 + ], + "latestDate": 1722952800000 + }, + "DAY": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0 + ], + "latestDate": 1722722400000 + } + }, + "creationDate": "2024-08-06T13:48:11.767Z", + "operationsCount": 2, + "operations": [ + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x9ec16acf7cecfd58a7ebca7cef2105bb85270781ecca935f30f44a06dd190c9f-OUT-i0", + "hash": "0x9ec16acf7cecfd58a7ebca7cef2105bb85270781ecca935f30f44a06dd190c9f", + "type": "OUT", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x243B72517383508576C6Be6a80152E378Ec7e464"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0x585c51b71c8e690cfbaa0866f2ae75085f173cae365fd9ce63f3b823a2f62d57", + "blockHeight": 15038810, + "extra": {}, + "date": "2022-06-28T08:32:45.000Z", + "value": "34141935", + "fee": "1559520300000000", + "transactionSequenceNumber": 2, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x16e9c4285246d9ed259dac033b5b7da30df1b66da59cf8a9e7bd1bac423c61bb-IN-i0", + "hash": "0x16e9c4285246d9ed259dac033b5b7da30df1b66da59cf8a9e7bd1bac423c61bb", + "type": "IN", + "senders": ["0x912fD21d7a69678227fE6d08C64222Db41477bA0"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0x57d86095C46a506e49BBe880864d977121E6Ecd9:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0x38027821047db80ff395d620d80965a495ee7c6636709d162b26d0ece6e51e78", + "blockHeight": 15038792, + "extra": {}, + "date": "2022-06-28T08:28:15.000Z", + "value": "34141935", + "fee": "2061241930827628", + "transactionSequenceNumber": 1108557, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + } + ], + "pendingOperations": [], + "swapHistory": [], + "starred": false + } + ], + "swapHistory": [], + "nfts": [], + "name": "Ethereum 3", + "starred": false + }, + "version": 1 + }, + { + "data": { + "id": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:", + "seedIdentifier": "048acdc882ef0e5812b111ba9fad64ad5592b608599052f85e76895f9db5e0e7e7a4de6104c5b506dd66cbf54ab15a5d23631441221d985f926032f3f050eccba3", + "used": true, + "derivationMode": "", + "index": 3, + "freshAddress": "0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481", + "freshAddressPath": "44'/60'/3'/0/0", + "blockHeight": 20470170, + "syncHash": "0xd88f724b", + "creationDate": "2023-03-30T10:11:11.000Z", + "operationsCount": 11, + "operations": [ + { + "id": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:-0x553b5c361f51ecd0dfa3ce032e97c118f2fe56d671e99100ff0276ae00f88f12-NONE", + "hash": "0x553b5c361f51ecd0dfa3ce032e97c118f2fe56d671e99100ff0276ae00f88f12", + "type": "NONE", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:", + "blockHash": "0x5b5af35a0965c9e779f4b1afaa170ce7f50bd47e99a94a6df8f80db5735abaa1", + "blockHeight": 20469429, + "extra": {}, + "date": "2024-08-06T12:07:59.000Z", + "value": "0", + "fee": "173619814334642", + "transactionSequenceNumber": 47, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:-0x3d96369d03bf20d01ecce49d5be98b43d94294fa1405f370fd71824c2ef2f8e9-OUT", + "hash": "0x3d96369d03bf20d01ecce49d5be98b43d94294fa1405f370fd71824c2ef2f8e9", + "type": "OUT", + "senders": ["0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481"], + "recipients": ["0x66c4371aE8FFeD2ec1c2EBbbcCfb7E494181E1E3"], + "accountId": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:", + "blockHash": "0xf5d4124f9827dad6d3a0266ccdc3aaca1e511bb6ea55b1c90f3bec238373ceb8", + "blockHeight": 18377820, + "extra": {}, + "date": "2023-10-18T14:25:47.000Z", + "value": "188009330933305818", + "fee": "382103047242000", + "transactionSequenceNumber": 2, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:-0xa6a648eb3ac5fbd11de91eac6743cadc281fe4b1da3a9a950b7d0abd0bf4f2a2-IN", + "hash": "0xa6a648eb3ac5fbd11de91eac6743cadc281fe4b1da3a9a950b7d0abd0bf4f2a2", + "type": "IN", + "senders": ["0x9CC671703d42F4bdeD4e8c48fCF163e3E6352d85"], + "recipients": ["0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481"], + "accountId": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:", + "blockHash": "0x42f2b7cf100a54ef3b87684e6ba46c1083a61b7ed8dacb7508f5363a58d96c90", + "blockHeight": 18377515, + "extra": {}, + "date": "2023-10-18T13:24:23.000Z", + "value": "70000000000000000", + "fee": "539853131139000", + "transactionSequenceNumber": 14, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:-0x271d1e51ad650b2f579ddacc607dadd6b85270cbd7d7f4da117b7b99864a5892-IN", + "hash": "0x271d1e51ad650b2f579ddacc607dadd6b85270cbd7d7f4da117b7b99864a5892", + "type": "IN", + "senders": ["0x04F479967bBc039E060d6292e5dE86f249291bbc"], + "recipients": ["0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481"], + "accountId": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:", + "blockHash": "0x0d3103b1727be373e9bca665e7d37137991b78a6a082b8d6305c6ad1e89bb227", + "blockHeight": 18262095, + "extra": {}, + "date": "2023-10-02T09:57:23.000Z", + "value": "60000000000000000", + "fee": "317542211742000", + "transactionSequenceNumber": 13, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:-0xecf44f90249c793fd24a38b1cd744e9f9fa66e32f004b3863f37d0f76c503776-IN", + "hash": "0xecf44f90249c793fd24a38b1cd744e9f9fa66e32f004b3863f37d0f76c503776", + "type": "IN", + "senders": ["0x0Ae01978603e81c8a2aDE5fb9E76e581a7b4A663"], + "recipients": ["0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481"], + "accountId": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:", + "blockHash": "0x8267af614d17261711f491f41331a5601e6647557c2ee8ffab101db65e30080d", + "blockHeight": 18177935, + "extra": {}, + "date": "2023-09-20T15:16:23.000Z", + "value": "58149146533782818", + "fee": "309090684945000", + "transactionSequenceNumber": 58, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:-0xecb89968e90f3de3fd46c08459b5da08e00b0e839cc454812309e4fd281e3c94-OUT", + "hash": "0xecb89968e90f3de3fd46c08459b5da08e00b0e839cc454812309e4fd281e3c94", + "type": "OUT", + "senders": ["0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481"], + "recipients": ["0x0Ae01978603e81c8a2aDE5fb9E76e581a7b4A663"], + "accountId": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:", + "blockHash": "0x179f88cee68c9f694c55c228704b30f34026e463c97cf0546881f96a356cc41c", + "blockHeight": 18177794, + "extra": {}, + "date": "2023-09-20T14:47:59.000Z", + "value": "58942275226551818", + "fee": "454343504454000", + "transactionSequenceNumber": 1, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:-0xf26812482fb988fef08c276ab8e3ee7819dd06d1d24d4bc88304a53e34e04f64-IN", + "hash": "0xf26812482fb988fef08c276ab8e3ee7819dd06d1d24d4bc88304a53e34e04f64", + "type": "IN", + "senders": ["0x6abd8C743dD6F57e79532ffC39d40c74EacF8EF9"], + "recipients": ["0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481"], + "accountId": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:", + "blockHash": "0x6847fc18dfdf4af991b6c8046d49a1c7c81b815a68bfc036c69ab2cde64041f4", + "blockHeight": 18142221, + "extra": {}, + "date": "2023-09-15T14:30:47.000Z", + "value": "30852009082831470", + "fee": "486287145603000", + "transactionSequenceNumber": 95, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:-0x4a0a5db9da3b3e2acbf022d07207a20fc12a96d663aed8e2d113a5244321f67b-IN", + "hash": "0x4a0a5db9da3b3e2acbf022d07207a20fc12a96d663aed8e2d113a5244321f67b", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481"], + "accountId": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:", + "blockHash": "0x8880676730aa23ad8b4745826ee40438f5bb501d6623826194f3c6f7fb93847d", + "blockHeight": 18141889, + "extra": {}, + "date": "2023-09-15T13:22:59.000Z", + "value": "14305500000000000", + "fee": "424851433062000", + "transactionSequenceNumber": 331196, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:-0x81a6a3f96ce36e4c14bbce129183be2abcca27693623c3096ccb45aa9e078dbd-FEES", + "hash": "0x81a6a3f96ce36e4c14bbce129183be2abcca27693623c3096ccb45aa9e078dbd", + "type": "FEES", + "senders": ["0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481"], + "recipients": ["0x6B175474E89094C44Da98b954EedeAC495271d0F"], + "accountId": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:", + "blockHash": "0x3c1886007ca714bb25c272b5b8ef9edf79c6f3cf7c19dee5fb1e7df2f5c2f2b8", + "blockHeight": 18141878, + "extra": {}, + "date": "2023-09-15T13:20:47.000Z", + "value": "884976103191300", + "fee": "884976103191300", + "transactionSequenceNumber": 0, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:-0x280805c8d3a0da43448534acec564389e54e8ae4cff535e2be075ba11c46d347-IN", + "hash": "0x280805c8d3a0da43448534acec564389e54e8ae4cff535e2be075ba11c46d347", + "type": "IN", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481"], + "accountId": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:", + "blockHash": "0x4f4981727457098da0f8f3253c01a28f739078fed4c42d3f9c49f656bda89edc", + "blockHeight": 18140689, + "extra": {}, + "date": "2023-09-15T09:19:59.000Z", + "value": "14715611170781648", + "fee": "255254004495000", + "transactionSequenceNumber": 28, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:-0xa18dc0bb5ec0751299ce81000251e828592490b4bd16e2cf64b59794fe69f374-NONE", + "hash": "0xa18dc0bb5ec0751299ce81000251e828592490b4bd16e2cf64b59794fe69f374", + "type": "NONE", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x6B175474E89094C44Da98b954EedeAC495271d0F"], + "accountId": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:", + "blockHash": "0xf76fa5fb5c4f15e267d8514a71dedb985882bfd9a3ccfaa8097615aede3a35a9", + "blockHeight": 16939387, + "extra": {}, + "date": "2023-03-30T10:11:11.000Z", + "value": "0", + "fee": "1298605637043720", + "transactionSequenceNumber": 24, + "hasFailed": false, + "internalOperations": [] + } + ], + "pendingOperations": [], + "currencyId": "ethereum", + "lastSyncDate": "2024-08-06T14:37:05.649Z", + "balance": "185684524347000", + "spendableBalance": "185684524347000", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000 + ], + "latestDate": 1722952800000 + }, + "DAY": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 58988144150421816, + 58988144150421816, 58988144150421816, 58988144150421816, 58988144150421816, + 58195015457652820, 58195015457652820, 58195015457652820, 58195015457652820, + 58195015457652820, 58195015457652820, 58195015457652820, 58195015457652820, + 58195015457652820, 58195015457652820, 58195015457652820, 58195015457652820, + 118195015457652820, 118195015457652820, 118195015457652820, 118195015457652820, + 118195015457652820, 118195015457652820, 118195015457652820, 118195015457652820, + 118195015457652820, 118195015457652820, 118195015457652820, 118195015457652820, + 118195015457652820, 118195015457652820, 118195015457652820, 118195015457652820, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 58988144150421816, 58195015457652820, 58195015457652820, 118195015457652820, + 118195015457652820, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000, 185684524347000, + 185684524347000, 185684524347000, 185684524347000, 185684524347000 + ], + "latestDate": 1722722400000 + } + }, + "subAccounts": [ + { + "type": "TokenAccountRaw", + "id": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "parentId": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:", + "tokenId": "ethereum/erc20/usd_tether__erc20_", + "balance": "38941606", + "spendableBalance": "38941606", + "balanceHistoryCache": { + "HOUR": { "balances": [0, 38941606, 38941606], "latestDate": 1722952800000 }, + "DAY": { "balances": [0], "latestDate": 1722895200000 }, + "WEEK": { "balances": [0], "latestDate": 1722722400000 } + }, + "creationDate": "2024-08-06T13:48:11.693Z", + "operationsCount": 1, + "operations": [ + { + "id": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x553b5c361f51ecd0dfa3ce032e97c118f2fe56d671e99100ff0276ae00f88f12-IN-i0", + "hash": "0x553b5c361f51ecd0dfa3ce032e97c118f2fe56d671e99100ff0276ae00f88f12", + "type": "IN", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481"], + "accountId": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0x5b5af35a0965c9e779f4b1afaa170ce7f50bd47e99a94a6df8f80db5735abaa1", + "blockHeight": 20469429, + "extra": {}, + "date": "2024-08-06T12:07:59.000Z", + "value": "38941606", + "fee": "173619814334642", + "transactionSequenceNumber": 47, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + } + ], + "pendingOperations": [], + "swapHistory": [], + "starred": false + }, + { + "type": "TokenAccountRaw", + "id": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:+ethereum%2Ferc20%2Fdai~!underscore!~stablecoin~!underscore!~v2~!underscore!~0", + "parentId": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:", + "tokenId": "ethereum/erc20/dai_stablecoin_v2_0", + "balance": "0", + "spendableBalance": "0", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0 + ], + "latestDate": 1722952800000 + }, + "DAY": { + "balances": [ + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [ + 0, 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, + 26978740224140444000, 26978740224140444000, 26978740224140444000, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722722400000 + } + }, + "creationDate": "2024-08-06T13:48:11.693Z", + "operationsCount": 2, + "operations": [ + { + "id": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:+ethereum%2Ferc20%2Fdai~!underscore!~stablecoin~!underscore!~v2~!underscore!~0-0x81a6a3f96ce36e4c14bbce129183be2abcca27693623c3096ccb45aa9e078dbd-OUT-i0", + "hash": "0x81a6a3f96ce36e4c14bbce129183be2abcca27693623c3096ccb45aa9e078dbd", + "type": "OUT", + "senders": ["0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481"], + "recipients": ["0x5d6742076188B5472a1f9c3356b707456B1469C1"], + "accountId": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:+ethereum%2Ferc20%2Fdai~!underscore!~stablecoin~!underscore!~v2~!underscore!~0", + "blockHash": "0x3c1886007ca714bb25c272b5b8ef9edf79c6f3cf7c19dee5fb1e7df2f5c2f2b8", + "blockHeight": 18141878, + "extra": {}, + "date": "2023-09-15T13:20:47.000Z", + "value": "26978740224140443130", + "fee": "884976103191300", + "transactionSequenceNumber": 0, + "contract": "0x6B175474E89094C44Da98b954EedeAC495271d0F" + }, + { + "id": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:+ethereum%2Ferc20%2Fdai~!underscore!~stablecoin~!underscore!~v2~!underscore!~0-0xa18dc0bb5ec0751299ce81000251e828592490b4bd16e2cf64b59794fe69f374-IN-i0", + "hash": "0xa18dc0bb5ec0751299ce81000251e828592490b4bd16e2cf64b59794fe69f374", + "type": "IN", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481"], + "accountId": "js:2:ethereum:0x4bd959D4e33E8Ac112C3250436C6f9d2725DA481:+ethereum%2Ferc20%2Fdai~!underscore!~stablecoin~!underscore!~v2~!underscore!~0", + "blockHash": "0xf76fa5fb5c4f15e267d8514a71dedb985882bfd9a3ccfaa8097615aede3a35a9", + "blockHeight": 16939387, + "extra": {}, + "date": "2023-03-30T10:11:11.000Z", + "value": "26978740224140443130", + "fee": "1298605637043720", + "transactionSequenceNumber": 24, + "contract": "0x6B175474E89094C44Da98b954EedeAC495271d0F" + } + ], + "pendingOperations": [], + "swapHistory": [], + "starred": false + } + ], + "swapHistory": [], + "nfts": [], + "name": "Ethereum 4", + "starred": false + }, + "version": 1 + }, + { + "data": { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "seedIdentifier": "048acdc882ef0e5812b111ba9fad64ad5592b608599052f85e76895f9db5e0e7e7a4de6104c5b506dd66cbf54ab15a5d23631441221d985f926032f3f050eccba3", + "used": true, + "derivationMode": "", + "index": 1, + "freshAddress": "0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5", + "freshAddressPath": "44'/60'/1'/0/0", + "blockHeight": 20470170, + "syncHash": "0xd88f724b", + "creationDate": "2021-06-08T20:09:11.000Z", + "operationsCount": 47, + "operations": [ + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x972a97b2c65ee9305d1bad34d7b409956c00a8f91e83827c9849828f6929085e-OUT", + "hash": "0x972a97b2c65ee9305d1bad34d7b409956c00a8f91e83827c9849828f6929085e", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xc59c9884248385451a683cb52f4040f2da5a8c4a901d7bc78f98e8cbd50385b3", + "blockHeight": 20167604, + "extra": {}, + "date": "2024-06-25T08:48:47.000Z", + "value": "10004204134181781", + "fee": "119590221219000", + "transactionSequenceNumber": 26, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x4d4eb36186987fb987b127c65c1706efa0c1561dd86bcbc2d96bbcaa0ca72465-OUT", + "hash": "0x4d4eb36186987fb987b127c65c1706efa0c1561dd86bcbc2d96bbcaa0ca72465", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x8cBAd60b6894b46c1f2F062C8eF3711C514b5563"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xc2a80dd8a0fd3571b187ee1f124ffdf8546edf08ace598d1f23bb4870ffda77f", + "blockHeight": 20089178, + "extra": {}, + "date": "2024-06-14T09:34:35.000Z", + "value": "10161263479531000", + "fee": "161263479531000", + "transactionSequenceNumber": 25, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x81f9b1d8d8d855fe464987d765dc524447cfc7bdb44a020cb5416c6c2907f184-FEES", + "hash": "0x81f9b1d8d8d855fe464987d765dc524447cfc7bdb44a020cb5416c6c2907f184", + "type": "FEES", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xf2a285f10f8596f29dac9c51afc7777a1ffa2d7aa74d57b0b16db77bf642aadb", + "blockHeight": 19588775, + "extra": {}, + "date": "2024-04-05T09:53:59.000Z", + "value": "972089092649649", + "fee": "972089092649649", + "transactionSequenceNumber": 24, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0xe05067df97f415217c3bbe7ae94bdc3ac4aee656b395f9d27b87cbb6a42050d8-NONE", + "hash": "0xe05067df97f415217c3bbe7ae94bdc3ac4aee656b395f9d27b87cbb6a42050d8", + "type": "NONE", + "senders": ["0x86BA8588E8AC97cD6fA91c670F0E104DC6B62501"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xdb5a32543b5313deff1a00f7a1e07d7325e6668c7aab34b25de0c30cfab6cbde", + "blockHeight": 19588601, + "extra": {}, + "date": "2024-04-05T09:18:35.000Z", + "value": "0", + "fee": "1874640105350458", + "transactionSequenceNumber": 1265, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x9edc27dc7399088642f6b3e29ac1e79c81e165abeae8eaa40a474796bbfd799d-OUT", + "hash": "0x9edc27dc7399088642f6b3e29ac1e79c81e165abeae8eaa40a474796bbfd799d", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0xaeF513B09e9A42C58D625388eb220CCa5316b295"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xc02ec3b974f6fe5c6f2728890f9c1191d222fca02c39901b75f672a58e55fad9", + "blockHeight": 19588572, + "extra": {}, + "date": "2024-04-05T09:12:47.000Z", + "value": "30353810517522000", + "fee": "353810517522000", + "transactionSequenceNumber": 23, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0xc2a8a747ed3cc2d751a9defbcba2c83978c35a019a74503baa04035e20151008-OUT", + "hash": "0xc2a8a747ed3cc2d751a9defbcba2c83978c35a019a74503baa04035e20151008", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0xd4845E3392F6aD94D9772Ad8F89F219777032a50"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x243d73349f30835ffc714051a9e722482ab924c33c415e0ee07df7af5c12c150", + "blockHeight": 19588248, + "extra": {}, + "date": "2024-04-05T08:07:23.000Z", + "value": "30298833401412000", + "fee": "298833401412000", + "transactionSequenceNumber": 22, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0xc83f212c624b38750f50d376f984d508bfc7cd37e534fd32c91b2983c2132336-IN", + "hash": "0xc83f212c624b38750f50d376f984d508bfc7cd37e534fd32c91b2983c2132336", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xc33ffdc70059a014689ac84241f3a2d73658743d03face7434a70f6302acfbfa", + "blockHeight": 19588225, + "extra": {}, + "date": "2024-04-05T08:02:47.000Z", + "value": "25057300000000000", + "fee": "354954425091000", + "transactionSequenceNumber": 540524, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x2f4c27d01ab5599ed9721cf12a7a91b8980cd4ccc59a8405867f593d45b8dace-FEES", + "hash": "0x2f4c27d01ab5599ed9721cf12a7a91b8980cd4ccc59a8405867f593d45b8dace", + "type": "FEES", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x099d0939c3e4d729c9dc29101b554821b7e2a86ff0b0a7605fdfeb035c109180", + "blockHeight": 19588214, + "extra": {}, + "date": "2024-04-05T08:00:35.000Z", + "value": "602516758022570", + "fee": "602516758022570", + "transactionSequenceNumber": 21, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x5b22b4bb1fa68b53e289722ece18845bad685bd5627a9aea49295211f9b35a28-IN", + "hash": "0x5b22b4bb1fa68b53e289722ece18845bad685bd5627a9aea49295211f9b35a28", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x781645a95fc0374e779fd9d0179f9ef70019231a9be272765ac205bd45c0e9ee", + "blockHeight": 19587961, + "extra": {}, + "date": "2024-04-05T07:09:11.000Z", + "value": "57236030000000000", + "fee": "297196132695000", + "transactionSequenceNumber": 540478, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0xccf16566cf91d9abe224fafd793ab1b32d35364ba87bb9fbdbcafe1c8a36ba2f-OUT", + "hash": "0xccf16566cf91d9abe224fafd793ab1b32d35364ba87bb9fbdbcafe1c8a36ba2f", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x8cBAd60b6894b46c1f2F062C8eF3711C514b5563"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x71171712f0425bae929e2e6aa3039d71e54b9f6bdb46465f8aca659c5784af9d", + "blockHeight": 19587921, + "extra": {}, + "date": "2024-04-05T07:01:11.000Z", + "value": "36007723120340000", + "fee": "307350280524000", + "transactionSequenceNumber": 20, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0xd389b51c9abf2a5d2fe6b16cd6589debe27c256c8ce01baf9380d760c818ad0f-IN", + "hash": "0xd389b51c9abf2a5d2fe6b16cd6589debe27c256c8ce01baf9380d760c818ad0f", + "type": "IN", + "senders": ["0x9696f59E4d72E237BE84fFD425DCaD154Bf96976"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x0c545abdfbd53e4c3afe10fe9cadbcc47955f8d4e0fb2c33104163c5313b349e", + "blockHeight": 19587871, + "extra": {}, + "date": "2024-04-05T06:50:59.000Z", + "value": "23700000000000000", + "fee": "342255583005000", + "transactionSequenceNumber": 6170641, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0xc509063b170a403e651608a0c304043285d92b75700b9e9708940f681601702a-OUT", + "hash": "0xc509063b170a403e651608a0c304043285d92b75700b9e9708940f681601702a", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x6beab1066ae3a93cd6956da43e8af11c6621bd641c22e4b0931e45d72c7d60df", + "blockHeight": 19587795, + "extra": {}, + "date": "2024-04-05T06:35:47.000Z", + "value": "10270122810622000", + "fee": "270122810622000", + "transactionSequenceNumber": 19, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x6ef16db20ee795596be41ddd6a4d945d9b3d00b926e67ee1531901caf2979dfc-NONE", + "hash": "0x6ef16db20ee795596be41ddd6a4d945d9b3d00b926e67ee1531901caf2979dfc", + "type": "NONE", + "senders": ["0x86BA8588E8AC97cD6fA91c670F0E104DC6B62501"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xbfe05bce4cb3cb8b1432e65a34c44820edf014b0038cd2ffbb843a2c98bf0745", + "blockHeight": 19581175, + "extra": {}, + "date": "2024-04-04T08:21:23.000Z", + "value": "0", + "fee": "1151440682901151", + "transactionSequenceNumber": 1256, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x40114026a2cdfd7d51df7aee2fede059a16943bd7c89e914f14c7d6c9f4fb249-OUT", + "hash": "0x40114026a2cdfd7d51df7aee2fede059a16943bd7c89e914f14c7d6c9f4fb249", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0xB300020cd831778c7aFF2E0444827cE3D94C1664"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x5ed5b5acb49037785e068f7e3156188ea5687ccea88068d90553e609200fb170", + "blockHeight": 19567273, + "extra": {}, + "date": "2024-04-02T09:37:47.000Z", + "value": "30541054874094000", + "fee": "541054874094000", + "transactionSequenceNumber": 18, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x2524db888f60d1608e9184d02369b6a185d6bb3cf01337cb987c0fea9000ca46-IN", + "hash": "0x2524db888f60d1608e9184d02369b6a185d6bb3cf01337cb987c0fea9000ca46", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xb8ff9f8090e41d293748fbc5d929caa6e6e9199ac4e5667cfc0539e0f41d3974", + "blockHeight": 19412221, + "extra": {}, + "date": "2024-03-11T13:41:35.000Z", + "value": "53131920000000000", + "fee": "1818155453289000", + "transactionSequenceNumber": 504694, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0xbda59afa418be57cdf858a0756085002e8e36fade921a70e36ac40cc2ae7b12b-OUT", + "hash": "0xbda59afa418be57cdf858a0756085002e8e36fade921a70e36ac40cc2ae7b12b", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x59861265f201088607E691dC3e4E317197cc99D7"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x8325660e2c40098d348cac950208c5959921565c0e349dd9ec6827032e799bf0", + "blockHeight": 19161235, + "extra": {}, + "date": "2024-02-05T09:38:59.000Z", + "value": "49381070109801605", + "fee": "320151905766000", + "transactionSequenceNumber": 17, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x126b0f40fda30b8b0e4ff0abc6a92bdca948470c975e413bfc6db1bd0831199d-FEES", + "hash": "0x126b0f40fda30b8b0e4ff0abc6a92bdca948470c975e413bfc6db1bd0831199d", + "type": "FEES", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x1111111254EEB25477B68fb85Ed929f73A960582"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xb516dff351f06501f451b6c50bd02f090a0afcdd8a65d98f8a9edc16a5c00930", + "blockHeight": 19161217, + "extra": {}, + "date": "2024-02-05T09:35:23.000Z", + "value": "2457734137403268", + "fee": "2457734137403268", + "transactionSequenceNumber": 16, + "hasFailed": false, + "internalOperations": [ + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x126b0f40fda30b8b0e4ff0abc6a92bdca948470c975e413bfc6db1bd0831199d-IN-i1", + "hash": "0x126b0f40fda30b8b0e4ff0abc6a92bdca948470c975e413bfc6db1bd0831199d", + "type": "IN", + "senders": ["0x1111111254EEB25477B68fb85Ed929f73A960582"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xb516dff351f06501f451b6c50bd02f090a0afcdd8a65d98f8a9edc16a5c00930", + "blockHeight": 19161217, + "extra": {}, + "date": "2024-02-05T09:35:23.000Z", + "value": "25972380521788646", + "fee": "0", + "hasFailed": false + } + ] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x427f0121a5a416607ddf816bf2530224c76f3137389072dec56db9ace9f42e0d-FEES", + "hash": "0x427f0121a5a416607ddf816bf2530224c76f3137389072dec56db9ace9f42e0d", + "type": "FEES", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xf9ba327477fccd7a8fa942d64257b3bebaa3452015422d2d42861e251f5efa89", + "blockHeight": 19161212, + "extra": {}, + "date": "2024-02-05T09:34:23.000Z", + "value": "805579091128557", + "fee": "805579091128557", + "transactionSequenceNumber": 15, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x9aa524c873b50b9818573b2a8baf9b2ea44e1bff4d92f13472ec3ac2283e3af9-FEES", + "hash": "0x9aa524c873b50b9818573b2a8baf9b2ea44e1bff4d92f13472ec3ac2283e3af9", + "type": "FEES", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x4c9b4957698990731f1b33145c427dfdb2fb4cfb01990c87192cc080408390e6", + "blockHeight": 19084167, + "extra": {}, + "date": "2024-01-25T14:16:35.000Z", + "value": "1405814283018216", + "fee": "1405814283018216", + "transactionSequenceNumber": 14, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0xf03ac7d8d139241db59d95da44bcf2992950faab3d35d2bb2db352c3ce2d7829-IN", + "hash": "0xf03ac7d8d139241db59d95da44bcf2992950faab3d35d2bb2db352c3ce2d7829", + "type": "IN", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x8e57422e782720b11a199fc050c45af7ac33a05c01419f5486291a5b9c60c48d", + "blockHeight": 19084142, + "extra": {}, + "date": "2024-01-25T14:11:35.000Z", + "value": "27894893516679000", + "fee": "617325947658000", + "transactionSequenceNumber": 27, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x7c936ee3a9cbd7a40c4a525031b65d65e815dd6b2e2206fede270f500c23fb82-NONE", + "hash": "0x7c936ee3a9cbd7a40c4a525031b65d65e815dd6b2e2206fede270f500c23fb82", + "type": "NONE", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0x974026E01660D11B5b5F08394806b619702Ac35C"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xfe77bc4f1e39e27c2cf537ca1bb8fb2d035e5b2c84c4fe82eb2ca2ed87362040", + "blockHeight": 19033096, + "extra": {}, + "date": "2024-01-18T10:16:59.000Z", + "value": "0", + "fee": "9409163342423770", + "transactionSequenceNumber": 439697, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0xcc4e6723a94916ff07535b1d8547662c80090c16704024f3e156c49c59cbcb3f-OUT", + "hash": "0xcc4e6723a94916ff07535b1d8547662c80090c16704024f3e156c49c59cbcb3f", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x187fE1a8B76c60b85c00A2819152ff00Ff642386"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xea0926171d651d8d28dc8f7c9fdb305587fa76a651beb1fc104b0e6c8bc0b17f", + "blockHeight": 19032962, + "extra": {}, + "date": "2024-01-18T09:49:23.000Z", + "value": "29397827359333004", + "fee": "746163265491000", + "transactionSequenceNumber": 13, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x7f817ce2f33ca8ca9c52e8cd5666594faf38c4049ce45862293db18a5cd321f1-IN", + "hash": "0x7f817ce2f33ca8ca9c52e8cd5666594faf38c4049ce45862293db18a5cd321f1", + "type": "IN", + "senders": ["0x6d9387B628B034ebe7429459AABC0a3406e4707e"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xea409cf6d900dc7dcc05caf437ec29ec0c6a237d37c0913d1bc8570b83fe612e", + "blockHeight": 18983539, + "extra": {}, + "date": "2024-01-11T11:59:35.000Z", + "value": "22737871882896976", + "fee": "530025279189000", + "transactionSequenceNumber": 241, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0xc207e62aef9b28df4f3a001c1ab70887781a81dde846038b14c2ccc49cb75572-OUT", + "hash": "0xc207e62aef9b28df4f3a001c1ab70887781a81dde846038b14c2ccc49cb75572", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x2B368711CE6A3412c53E047961f7152AdF16e0C5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x4df9a37c1efa2fd72ea93ea26f1b2162dda6951b5da5e631e9ef9a82ba9653bc", + "blockHeight": 18683487, + "extra": {}, + "date": "2023-11-30T09:19:11.000Z", + "value": "20645309883827000", + "fee": "645309883827000", + "transactionSequenceNumber": 12, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x2f5ee9b7e65dc5aa2417e025105e5f23ced05aa0024b66634c6e22cbd4177af3-IN", + "hash": "0x2f5ee9b7e65dc5aa2417e025105e5f23ced05aa0024b66634c6e22cbd4177af3", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x28893eb541f76d17f67b0465220afb8b7ec3a89fc169bd06ff15a80643692d98", + "blockHeight": 18683464, + "extra": {}, + "date": "2023-11-30T09:14:35.000Z", + "value": "25190200000000000", + "fee": "738847561305000", + "transactionSequenceNumber": 390070, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0xe9c62a240fa1829b959a8c0d3157a194daa2dcffca5f0bf0256aeb93832a6e0d-OUT", + "hash": "0xe9c62a240fa1829b959a8c0d3157a194daa2dcffca5f0bf0256aeb93832a6e0d", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0xeE0fB5cFa90f666FB7E758227cBA0C55Ad0273e6"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x097c7ea52594efeaaaf03b8be6aa5ea92b123e2f28546ae2f85b70f144fa1953", + "blockHeight": 18683421, + "extra": {}, + "date": "2023-11-30T09:05:59.000Z", + "value": "30620025643461000", + "fee": "620025643461000", + "transactionSequenceNumber": 11, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0xc4708f1d95299bc2bcaf8d3abb0150b48e86a130f0983d487383b9587729116a-IN", + "hash": "0xc4708f1d95299bc2bcaf8d3abb0150b48e86a130f0983d487383b9587729116a", + "type": "IN", + "senders": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x0023bda142f11a383b4588fa58c8434615add7fc86349c8815394ed3353b4010", + "blockHeight": 18641653, + "extra": {}, + "date": "2023-11-24T12:45:47.000Z", + "value": "33057996232531028", + "fee": "574726619145000", + "transactionSequenceNumber": 26, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x3265687d75b8e4ec09a78c7a48817f7ce1405f9af69fb1488f331d067790af29-OUT", + "hash": "0x3265687d75b8e4ec09a78c7a48817f7ce1405f9af69fb1488f331d067790af29", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x57d86095C46a506e49BBe880864d977121E6Ecd9"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xb315c1764dd27f2a4e91a858bf789adb613884014de944a8686de80a28cee1ec", + "blockHeight": 15038759, + "extra": {}, + "date": "2022-06-28T08:19:43.000Z", + "value": "38788567639180732", + "fee": "846300000000000", + "transactionSequenceNumber": 10, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x93098d3476725759bd34007775c6c990da61783c0d8600fc86499db7bb1f4df7-OUT", + "hash": "0x93098d3476725759bd34007775c6c990da61783c0d8600fc86499db7bb1f4df7", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x1487710e5838109FA3602AaD18ABa6F622d7926B"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xeea83f499c95591e704504897bb8662e6aa90aae3e916c2fc11b1467c1ec7678", + "blockHeight": 15038634, + "extra": {}, + "date": "2022-06-28T07:48:45.000Z", + "value": "33648900000000000", + "fee": "648900000000000", + "transactionSequenceNumber": 9, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0xa76a69083b0b7dbbd779da2d4b7feaf1ff74d5971868c450f1b8879f307c01de-IN", + "hash": "0xa76a69083b0b7dbbd779da2d4b7feaf1ff74d5971868c450f1b8879f307c01de", + "type": "IN", + "senders": ["0x963737C550E70FFe4D59464542a28604eDb2eF9a"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xb9e25e155205d410f438bdb8d8943114faf01c84406b403ec8b644bdd40dbdf0", + "blockHeight": 15034272, + "extra": {}, + "date": "2022-06-27T12:02:59.000Z", + "value": "57423740000000000", + "fee": "748075814325000", + "transactionSequenceNumber": 3192, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x75882f517a70c7463540e6fdd7e7799d624c757ace07bb59ba0bd0608a9193a1-OUT", + "hash": "0x75882f517a70c7463540e6fdd7e7799d624c757ace07bb59ba0bd0608a9193a1", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x24d882dd2cCeB77A4c52754B5Cf265d49Abe983D"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xb5d5b69e81f2afe8ea7bf1aff44c6c1577902faac8774b41b70fe831b382adcb", + "blockHeight": 14949316, + "extra": {}, + "date": "2022-06-12T09:03:17.000Z", + "value": "20412000000000000", + "fee": "1512000000000000", + "transactionSequenceNumber": 8, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x0fab726ce3855113063059da423a4ad17b3661ef8774a56d52e3849f9c0a451d-IN", + "hash": "0x0fab726ce3855113063059da423a4ad17b3661ef8774a56d52e3849f9c0a451d", + "type": "IN", + "senders": ["0x601A74e9b89d8594d08B0E587F0c04c1F87fa162"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xa9cdcb2367dd1ffd6c9009c10447f9b4b0ac82ded87a4b6e7045f86f8b44b428", + "blockHeight": 14949315, + "extra": {}, + "date": "2022-06-12T09:02:55.000Z", + "value": "21768150000000000", + "fee": "601377127512000", + "transactionSequenceNumber": 45601, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0xbaffe0a0306aa04047900fa4d70e5f92704ccdd289f6f5fe15ee1e75aba6dd64-OUT", + "hash": "0xbaffe0a0306aa04047900fa4d70e5f92704ccdd289f6f5fe15ee1e75aba6dd64", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0xf5b126b73Bd3f22b7044854AA9DA9B04CFb3599c"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xa340d75551faa0e06b010ae01b988065e0325625c46faa3436463c5e2d3e7316", + "blockHeight": 14949314, + "extra": {}, + "date": "2022-06-12T09:02:51.000Z", + "value": "21558200000000000", + "fee": "1558200000000000", + "transactionSequenceNumber": 7, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x309209318c4e9242747ec12b2e06fe75dbf2a6d7794f80a675c6f319964a0e7f-IN", + "hash": "0x309209318c4e9242747ec12b2e06fe75dbf2a6d7794f80a675c6f319964a0e7f", + "type": "IN", + "senders": ["0x601A74e9b89d8594d08B0E587F0c04c1F87fa162"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xdac119f149997900cafacbf794ca46c34aa22352863b2fc6bb029731bc5413ac", + "blockHeight": 14949313, + "extra": {}, + "date": "2022-06-12T09:02:25.000Z", + "value": "21768150000000000", + "fee": "628085600457000", + "transactionSequenceNumber": 45600, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x7598f92f0bd4063cc33e4d6ea7e54cae4f9c93dd3a48b435cd04b092c57076bd-OUT", + "hash": "0x7598f92f0bd4063cc33e4d6ea7e54cae4f9c93dd3a48b435cd04b092c57076bd", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0xe9F39E6C1F68C7Afc277539CEA27868b353C4e53"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x82bfede2528a2c10a5ead61fdf0d05a85abad23817df524646212f42e3ce6d5c", + "blockHeight": 14916295, + "extra": {}, + "date": "2022-06-06T18:00:37.000Z", + "value": "25768600000000000", + "fee": "768600000000000", + "transactionSequenceNumber": 4, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x47fef7d416e2415cff5f9fbcca15aab32c310d45e71ab981c9835a1e71e55582-OUT", + "hash": "0x47fef7d416e2415cff5f9fbcca15aab32c310d45e71ab981c9835a1e71e55582", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0xa4C2f891A1B188013EbbC7775e5A0f0111eB4971"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x82bfede2528a2c10a5ead61fdf0d05a85abad23817df524646212f42e3ce6d5c", + "blockHeight": 14916295, + "extra": {}, + "date": "2022-06-06T18:00:37.000Z", + "value": "26323000000000000", + "fee": "1323000000000000", + "transactionSequenceNumber": 5, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x0138cc843a06589b674fff97aed5fddde77ec50a9e01fc6fdaf107bfe3051760-OUT", + "hash": "0x0138cc843a06589b674fff97aed5fddde77ec50a9e01fc6fdaf107bfe3051760", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x7C2860c9c2Cbe80F0c9B012D9c9d873A73a8E555"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x82bfede2528a2c10a5ead61fdf0d05a85abad23817df524646212f42e3ce6d5c", + "blockHeight": 14916295, + "extra": {}, + "date": "2022-06-06T18:00:37.000Z", + "value": "21701000000000000", + "fee": "1701000000000000", + "transactionSequenceNumber": 6, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x6484427c0744e1978072bbb465602e567acb3ff8dc1751f0bdfa6fd9170ade0b-IN", + "hash": "0x6484427c0744e1978072bbb465602e567acb3ff8dc1751f0bdfa6fd9170ade0b", + "type": "IN", + "senders": ["0x4d846dA8257BB0Ebd164EFf513DfF0F0c2C3c0ba"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xec2d3625010937bcd133f23608ff3ed6d943939901053e01f306ae86c10f4076", + "blockHeight": 14915714, + "extra": {}, + "date": "2022-06-06T15:35:41.000Z", + "value": "300318234566015", + "fee": "1359177275463000", + "transactionSequenceNumber": 428282, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x26669ff8d36d5a040d630811c19fef9b779162138295d97399f5b02fce99421a-OUT", + "hash": "0x26669ff8d36d5a040d630811c19fef9b779162138295d97399f5b02fce99421a", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x6abd8C743dD6F57e79532ffC39d40c74EacF8EF9"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xf6327c8cc2a18c22ed5bd926db4b115cbc6442f7f8be7aaee5ea215afd5df006", + "blockHeight": 14915330, + "extra": {}, + "date": "2022-06-06T13:58:35.000Z", + "value": "71096200000000000", + "fee": "1096200000000000", + "transactionSequenceNumber": 3, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x3276118183c3aaf29a79debe911519fb373c181c093cb773c4c5f56a80cf76e2-OUT", + "hash": "0x3276118183c3aaf29a79debe911519fb373c181c093cb773c4c5f56a80cf76e2", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0xf95b70B0F086c64812051E154DA38A3C72d61Ff9"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x8d2c4ed6388680eaffb97e599707bc9c1d82027793177e8660bbe1746a50ecba", + "blockHeight": 14896330, + "extra": {}, + "date": "2022-06-03T09:20:04.000Z", + "value": "9785400000000000", + "fee": "785400000000000", + "transactionSequenceNumber": 2, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x0129b866b7a10433609ef882f9f8ac9f467f3fadcbaff9a8e079c4dbeb1fcf96-IN", + "hash": "0x0129b866b7a10433609ef882f9f8ac9f467f3fadcbaff9a8e079c4dbeb1fcf96", + "type": "IN", + "senders": ["0x84c9A36721eB21da9244Fe50177180D8f4a7cAF7"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xcef69c17b22603f5c4b1d5e671a5e288d6c0ace5eccc242f5e6d6902eb04c30f", + "blockHeight": 14878920, + "extra": {}, + "date": "2022-05-31T13:21:10.000Z", + "value": "150000000000000000", + "fee": "630000000000000", + "transactionSequenceNumber": 65, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x12eeb19ffc960950d16728d116c3bebdf637ba0911a3e695e6570c432af983f7-NONE", + "hash": "0x12eeb19ffc960950d16728d116c3bebdf637ba0911a3e695e6570c432af983f7", + "type": "NONE", + "senders": ["0xCe0dd2748f024172351Ecf83c6D8471440DcdbBC"], + "recipients": ["0x495f947276749Ce646f68AC8c248420045cb7b5e"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xf61bab669f62ab9a66dd6e7403818038ad3a311af1102d5e8f17b489178ed4d1", + "blockHeight": 14067870, + "extra": {}, + "date": "2022-01-24T10:43:29.000Z", + "value": "0", + "fee": "6167920000000000", + "transactionSequenceNumber": 36, + "hasFailed": false, + "internalOperations": [], + "nftOperations": [ + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:+0x495f947276749Ce646f68AC8c248420045cb7b5e+77770246133050101334277152821957558007745772239357041338818208158214799753316+ethereum-0x12eeb19ffc960950d16728d116c3bebdf637ba0911a3e695e6570c432af983f7-NFT_IN-i0_0", + "hash": "0x12eeb19ffc960950d16728d116c3bebdf637ba0911a3e695e6570c432af983f7", + "type": "NFT_IN", + "senders": ["0xCe0dd2748f024172351Ecf83c6D8471440DcdbBC"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0xf61bab669f62ab9a66dd6e7403818038ad3a311af1102d5e8f17b489178ed4d1", + "blockHeight": 14067870, + "extra": {}, + "date": "2022-01-24T10:43:29.000Z", + "value": "2", + "fee": "6167920000000000", + "transactionSequenceNumber": 36, + "standard": "ERC1155", + "tokenId": "77770246133050101334277152821957558007745772239357041338818208158214799753316", + "contract": "0x495f947276749Ce646f68AC8c248420045cb7b5e" + } + ] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x1eff7a8f118efef6559689db8fdb3c42913a542c2b6937ffa8b0c40408623fd9-IN", + "hash": "0x1eff7a8f118efef6559689db8fdb3c42913a542c2b6937ffa8b0c40408623fd9", + "type": "IN", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x2dd8771836018e45b2e78110d2a343084dc7dbf9ccd24696b4c2a18544c626b3", + "blockHeight": 13727859, + "extra": {}, + "date": "2021-12-02T14:29:20.000Z", + "value": "17821509404614717", + "fee": "2194500000000000", + "transactionSequenceNumber": 16, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x3a1892c7d8e54f198f8e7d0f23c6a388e93e27ca058f4c9386dddbb3e5e83ed8-OUT", + "hash": "0x3a1892c7d8e54f198f8e7d0f23c6a388e93e27ca058f4c9386dddbb3e5e83ed8", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x94de8a63192cb2ac0ed91ad08001e664eaa0c31a1b3fd46f2e263337c9e1da87", + "blockHeight": 12818011, + "extra": {}, + "date": "2021-07-13T09:32:51.000Z", + "value": "20037110000000000", + "fee": "411600000000000", + "transactionSequenceNumber": 1, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x79772552765b25901a77846e5abc317c1e5fb0163e652edd4b92ab1b455e073a-OUT", + "hash": "0x79772552765b25901a77846e5abc317c1e5fb0163e652edd4b92ab1b455e073a", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0xd08EF67D2030E85CA6F0354147C0c1E8E5E7A180"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x26d09ba2db53f9a0a2d869a469fd6c8366693ac971a050082ade5f319d02a52d", + "blockHeight": 12817530, + "extra": {}, + "date": "2021-07-13T07:47:31.000Z", + "value": "23704800000000000", + "fee": "604800000000000", + "transactionSequenceNumber": 0, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0xb6b24cc50d347020a46fdd45dc622cdc51e69eb030a974979d9f125b8d21b9ae-IN", + "hash": "0xb6b24cc50d347020a46fdd45dc622cdc51e69eb030a974979d9f125b8d21b9ae", + "type": "IN", + "senders": ["0xDFd5293D8e347dFe59E90eFd55b2956a1343963d"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x4efd184095def366ebb39981474a6ba5bb6199a97214c006ee48fac7d701359b", + "blockHeight": 12812370, + "extra": {}, + "date": "2021-07-12T12:08:48.000Z", + "value": "39741910000000000", + "fee": "630000000000000", + "transactionSequenceNumber": 515655, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:-0x0edfcea4040ad6d09b6de0459f1417add2f3fb0cfd19964483265b49167b7f47-IN", + "hash": "0x0edfcea4040ad6d09b6de0459f1417add2f3fb0cfd19964483265b49167b7f47", + "type": "IN", + "senders": ["0x93459e4Fc63B46749c19ccafD96bd761Db01D0e4"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "blockHash": "0x69ecea6343901fb3cea78dc6fdcf98e70d0705b6179083e4d70213d42f41a15c", + "blockHeight": 12595952, + "extra": {}, + "date": "2021-06-08T20:09:11.000Z", + "value": "4000000000000000", + "fee": "1176000000000000", + "transactionSequenceNumber": 0, + "hasFailed": false, + "internalOperations": [] + } + ], + "pendingOperations": [], + "currencyId": "ethereum", + "lastSyncDate": "2024-08-06T14:37:05.575Z", + "balance": "53613457548000", + "spendableBalance": "53613457548000", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000 + ], + "latestDate": 1722952800000 + }, + "DAY": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 33057996232531028, 33057996232531028, 33057996232531028, + 33057996232531028, 33057996232531028, 33057996232531028, 6982860705243028, + 6982860705243028, 6982860705243028, 6982860705243028, 6982860705243028, + 6982860705243028, 6982860705243028, 6982860705243028, 6982860705243028, + 6982860705243028, 6982860705243028, 6982860705243028, 6982860705243028, + 6982860705243028, 6982860705243028, 6982860705243028, 6982860705243028, + 6982860705243028, 6982860705243028, 6982860705243028, 6982860705243028, + 6982860705243028, 6982860705243028, 6982860705243028, 6982860705243028, + 6982860705243028, 6982860705243028, 6982860705243028, 6982860705243028, + 6982860705243028, 6982860705243028, 6982860705243028, 6982860705243028, + 6982860705243028, 6982860705243028, 6982860705243028, 6982860705243028, + 6982860705243028, 6982860705243028, 6982860705243028, 6982860705243028, + 6982860705243028, 29720732588140004, 29720732588140004, 29720732588140004, + 29720732588140004, 29720732588140004, 29720732588140004, 29720732588140004, + 322905228807000, 322905228807000, 322905228807000, 322905228807000, 322905228807000, + 322905228807000, 322905228807000, 26811984462467784, 26811984462467784, + 26811984462467784, 26811984462467784, 26811984462467784, 26811984462467784, + 26811984462467784, 26811984462467784, 26811984462467784, 26811984462467784, + 26811984462467784, 139981645923000, 139981645923000, 139981645923000, + 139981645923000, 139981645923000, 139981645923000, 139981645923000, 139981645923000, + 139981645923000, 139981645923000, 139981645923000, 139981645923000, 139981645923000, + 139981645923000, 139981645923000, 139981645923000, 139981645923000, 139981645923000, + 139981645923000, 139981645923000, 139981645923000, 139981645923000, 139981645923000, + 139981645923000, 139981645923000, 139981645923000, 139981645923000, 139981645923000, + 139981645923000, 139981645923000, 139981645923000, 139981645923000, 139981645923000, + 139981645923000, 139981645923000, 53271901645923000, 53271901645923000, + 53271901645923000, 53271901645923000, 53271901645923000, 53271901645923000, + 53271901645923000, 53271901645923000, 53271901645923000, 53271901645923000, + 53271901645923000, 53271901645923000, 53271901645923000, 53271901645923000, + 53271901645923000, 53271901645923000, 53271901645923000, 53271901645923000, + 53271901645923000, 53271901645923000, 53271901645923000, 53271901645923000, + 22730846771829000, 22730846771829000, 22730846771829000, 20219081071260780, + 20219081071260780, 20219081071260780, 20219081071260780, 20219081071260780, + 20219081071260780, 20219081071260780, 20219081071260780, 20219081071260780, + 20219081071260780, 20219081071260780, 20219081071260780, 20219081071260780, + 20219081071260780, 20219081071260780, 20219081071260780, 20219081071260780, + 20219081071260780, 20219081071260780, 20219081071260780, 20219081071260780, + 20219081071260780, 20219081071260780, 20219081071260780, 20219081071260780, + 20219081071260780, 20219081071260780, 20219081071260780, 20219081071260780, + 20219081071260780, 20219081071260780, 20219081071260780, 20219081071260780, + 20219081071260780, 20219081071260780, 20219081071260780, 20219081071260780, + 20219081071260780, 20219081071260780, 20219081071260780, 20219081071260780, + 20219081071260780, 20219081071260780, 20219081071260780, 20219081071260780, + 20219081071260780, 20219081071260780, 20219081071260780, 20219081071260780, + 20219081071260780, 20219081071260780, 20219081071260780, 20219081071260780, + 20219081071260780, 20219081071260780, 20219081071260780, 20219081071260780, + 20219081071260780, 20219081071260780, 20219081071260780, 20219081071260780, + 20219081071260780, 20219081071260780, 20219081071260780, 20219081071260780, + 20219081071260780, 20219081071260780, 20219081071260780, 20219081071260780, + 20219081071260780, 10057817591729780, 10057817591729780, 10057817591729780, + 10057817591729780, 10057817591729780, 10057817591729780, 10057817591729780, + 10057817591729780, 10057817591729780, 10057817591729780, 10057817591729780, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000, + 53613457548000, 53613457548000 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [ + 0, 4000000000000000, 4000000000000000, 4000000000000000, 4000000000000000, + 4000000000000000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 17821509404614716, 17821509404614716, 17821509404614716, 17821509404614716, + 17821509404614716, 17821509404614716, 17821509404614716, 17821509404614716, + 17821509404614716, 17821509404614716, 17821509404614716, 17821509404614716, + 17821509404614716, 17821509404614716, 17821509404614716, 17821509404614716, + 17821509404614716, 17821509404614716, 17821509404614716, 17821509404614716, + 17821509404614716, 17821509404614716, 17821509404614716, 17821509404614716, + 17821509404614716, 17821509404614716, 158036109404614720, 13447627639180732, + 15013727639180732, 15013727639180732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 33057996232531028, 6982860705243028, 6982860705243028, 6982860705243028, + 6982860705243028, 6982860705243028, 6982860705243028, 29720732588140004, + 322905228807000, 26811984462467784, 26811984462467784, 139981645923000, + 139981645923000, 139981645923000, 139981645923000, 139981645923000, + 53271901645923000, 53271901645923000, 53271901645923000, 20219081071260780, + 20219081071260780, 20219081071260780, 20219081071260780, 20219081071260780, + 20219081071260780, 20219081071260780, 20219081071260780, 20219081071260780, + 20219081071260780, 10057817591729780, 10057817591729780, 53613457548000, + 53613457548000, 53613457548000, 53613457548000, 53613457548000, 53613457548000 + ], + "latestDate": 1722722400000 + } + }, + "subAccounts": [ + { + "type": "TokenAccountRaw", + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "parentId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:", + "tokenId": "ethereum/erc20/usd_tether__erc20_", + "balance": "0", + "spendableBalance": "0", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0 + ], + "latestDate": 1722952800000 + }, + "DAY": { + "balances": [ + 0, 60846968, 60846968, 60846968, 60846968, 60846968, 60846968, 60846968, + 60846968, 60846968, 60846968, 60846968, 60846968, 60846968, 60846968, 60846968, + 60846968, 60846968, 60846968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 87330000, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [ + 0, 60846968, 60846968, 60846968, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722722400000 + } + }, + "creationDate": "2024-08-06T13:48:11.693Z", + "operationsCount": 6, + "operations": [ + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x81f9b1d8d8d855fe464987d765dc524447cfc7bdb44a020cb5416c6c2907f184-OUT-i0", + "hash": "0x81f9b1d8d8d855fe464987d765dc524447cfc7bdb44a020cb5416c6c2907f184", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x2A5E310E0370aB04F360cDD7F110d44209a65888"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0xf2a285f10f8596f29dac9c51afc7777a1ffa2d7aa74d57b0b16db77bf642aadb", + "blockHeight": 19588775, + "extra": {}, + "date": "2024-04-05T09:53:59.000Z", + "value": "90650000", + "fee": "972089092649649", + "transactionSequenceNumber": 24, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0xe05067df97f415217c3bbe7ae94bdc3ac4aee656b395f9d27b87cbb6a42050d8-IN-i0", + "hash": "0xe05067df97f415217c3bbe7ae94bdc3ac4aee656b395f9d27b87cbb6a42050d8", + "type": "IN", + "senders": ["0x86BA8588E8AC97cD6fA91c670F0E104DC6B62501"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0xdb5a32543b5313deff1a00f7a1e07d7325e6668c7aab34b25de0c30cfab6cbde", + "blockHeight": 19588601, + "extra": {}, + "date": "2024-04-05T09:18:35.000Z", + "value": "90650000", + "fee": "1874640105350458", + "transactionSequenceNumber": 1265, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x2f4c27d01ab5599ed9721cf12a7a91b8980cd4ccc59a8405867f593d45b8dace-OUT-i0", + "hash": "0x2f4c27d01ab5599ed9721cf12a7a91b8980cd4ccc59a8405867f593d45b8dace", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x187fE1a8B76c60b85c00A2819152ff00Ff642386"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0x099d0939c3e4d729c9dc29101b554821b7e2a86ff0b0a7605fdfeb035c109180", + "blockHeight": 19588214, + "extra": {}, + "date": "2024-04-05T08:00:35.000Z", + "value": "87330000", + "fee": "602516758022570", + "transactionSequenceNumber": 21, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x6ef16db20ee795596be41ddd6a4d945d9b3d00b926e67ee1531901caf2979dfc-IN-i0", + "hash": "0x6ef16db20ee795596be41ddd6a4d945d9b3d00b926e67ee1531901caf2979dfc", + "type": "IN", + "senders": ["0x86BA8588E8AC97cD6fA91c670F0E104DC6B62501"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0xbfe05bce4cb3cb8b1432e65a34c44820edf014b0038cd2ffbb843a2c98bf0745", + "blockHeight": 19581175, + "extra": {}, + "date": "2024-04-04T08:21:23.000Z", + "value": "87330000", + "fee": "1151440682901151", + "transactionSequenceNumber": 1256, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x126b0f40fda30b8b0e4ff0abc6a92bdca948470c975e413bfc6db1bd0831199d-OUT-i0", + "hash": "0x126b0f40fda30b8b0e4ff0abc6a92bdca948470c975e413bfc6db1bd0831199d", + "type": "OUT", + "senders": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "recipients": ["0x5F515F6C524B18cA30f7783Fb58Dd4bE2e9904EC"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0xb516dff351f06501f451b6c50bd02f090a0afcdd8a65d98f8a9edc16a5c00930", + "blockHeight": 19161217, + "extra": {}, + "date": "2024-02-05T09:35:23.000Z", + "value": "60846968", + "fee": "2457734137403268", + "transactionSequenceNumber": 16, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + }, + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x7c936ee3a9cbd7a40c4a525031b65d65e815dd6b2e2206fede270f500c23fb82-IN-i0", + "hash": "0x7c936ee3a9cbd7a40c4a525031b65d65e815dd6b2e2206fede270f500c23fb82", + "type": "IN", + "senders": ["0x974026E01660D11B5b5F08394806b619702Ac35C"], + "recipients": ["0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5"], + "accountId": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0xfe77bc4f1e39e27c2cf537ca1bb8fb2d035e5b2c84c4fe82eb2ca2ed87362040", + "blockHeight": 19033096, + "extra": {}, + "date": "2024-01-18T10:16:59.000Z", + "value": "60846968", + "fee": "9409163342423770", + "transactionSequenceNumber": 439697, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + } + ], + "pendingOperations": [], + "swapHistory": [], + "starred": false + } + ], + "swapHistory": [], + "nfts": [ + { + "id": "js:2:ethereum:0xc9BEd375b8c2d053d1f32D6E873e54d7d5b07dc5:+0x495f947276749Ce646f68AC8c248420045cb7b5e+77770246133050101334277152821957558007745772239357041338818208158214799753316+ethereum", + "tokenId": "77770246133050101334277152821957558007745772239357041338818208158214799753316", + "amount": "2", + "contract": "0x495f947276749Ce646f68AC8c248420045cb7b5e", + "standard": "ERC1155", + "currencyId": "ethereum" + } + ], + "name": "Ethereum 2", + "starred": false + }, + "version": 1 + } + ], + "user": { "id": "d167a222-9fdb-4d7b-9834-c0c040c1f1ae" }, + "announcements": { "announcements": [], "seenIds": [], "lastUpdateTime": 1722955122072 }, + "countervalues": { + "USD algorand": { + "2024-06-28": 0.14256885329068716, + "2024-06-30": 0.14027088941675836, + "2024-07-15": 0.15727578090264582, + "2024-07-18": 0.1545499010013397, + "2024-07-14": 0.14857214932517143, + "2024-07-11": 0.13930102744665254, + "2024-07-19": 0.15428159830416555, + "2024-07-12": 0.13699086499379057, + "2024-07-24": 0.14349055050360174, + "2024-07-08": 0.13169582381298928, + "2024-07-07": 0.13328888801424588, + "2024-07-13": 0.1421297454450859, + "2024-07-09": 0.13720018459481081, + "2024-07-02": 0.14911551170355372, + "2024-07-20": 0.15927641442682383, + "2024-06-29": 0.14077715735506516, + "2024-07-21": 0.1574667308704235, + "2024-07-23": 0.14686840885935418, + "2024-07-10": 0.1388238616962068, + "2024-07-01": 0.1467260962289187, + "2024-06-26": 0.14090619761983456, + "2024-07-17": 0.15936280674332232, + "2024-07-22": 0.15370064628947716, + "2024-07-04": 0.13593892758722043, + "2024-06-25": 0.13895023278591953, + "2024-07-26": 0.14036668771742908, + "2024-07-03": 0.14544237255481413, + "2024-07-05": 0.12491879496194104, + "2024-07-25": 0.13585922612446588, + "2024-07-16": 0.15785828712980404, + "2024-07-06": 0.1324987545188944, + "2024-06-27": 0.1408588631248215, + "2024-07-22T13": 0.153421476, + "2024-07-25T10": 0.13523129920000002, + "2024-07-26T06": 0.14017195999999998, + "2024-07-24T14": 0.14622193, + "2024-07-21T20": 0.15835494596426092, + "2024-07-21T07": 0.157445646, + "2024-07-21T14": 0.155953006, + "2024-07-22T23": 0.15154691706363568, + "2024-07-24T07": 0.1437756866, + "2024-07-20T11": 0.1591579492, + "2024-07-26T08": 0.14077747200000001, + "2024-07-25T20": 0.13347795759999997, + "2024-07-21T02": 0.159644688, + "2024-07-20T04": 0.15887463599999999, + "2024-07-20T03": 0.15727074000000002, + "2024-07-25T13": 0.1345969152, + "2024-07-21T06": 0.1581358461, + "2024-07-20T12": 0.159976752, + "2024-07-24T02": 0.142401424, + "2024-07-24T17": 0.144698553, + "2024-07-25T06": 0.13677442939999998, + "2024-07-25T22": 0.1371657, + "2024-07-22T07": 0.153543028, + "2024-07-22T22": 0.15205016, + "2024-07-26T03": 0.139077744, + "2024-07-23T01": 0.15181518, + "2024-07-24T03": 0.143308598, + "2024-07-23T21": 0.143521525, + "2024-07-19T20": 0.158971505, + "2024-07-23T22": 0.143225776, + "2024-07-21T23": 0.15961276800000002, + "2024-07-19T16": 0.15808160999999998, + "2024-07-22T20": 0.154258596, + "2024-07-23T10": 0.148298517, + "2024-07-19T17": 0.1577405036, + "2024-07-22T09": 0.15324, + "2024-07-24T04": 0.143304299, + "2024-07-22T06": 0.1542892568, + "2024-07-24T21": 0.14118587999999999, + "2024-07-20T21": 0.15807268, + "2024-07-21T15": 0.156651678, + "2024-07-20T09": 0.16028811, + "2024-07-25T14": 0.13464196150138774, + "2024-07-19T11": 0.1535277524, + "2024-07-23T20": 0.14392878, + "2024-07-25T03": 0.1353642759, + "2024-07-20T01": 0.15715853999999999, + "2024-07-25T23": 0.13695753, + "2024-07-20T16": 0.15985752799999997, + "2024-07-22T15": 0.15242371689999998, + "2024-07-23T16": 0.144624582, + "2024-07-22T02": 0.157, + "2024-07-21T04": 0.15935460680000002, + "2024-07-23T09": 0.1492, + "2024-07-20T10": 0.159773462, + "2024-07-22T19": 0.1536718618436878, + "2024-07-20T00": 0.157428675, + "2024-07-20T19": 0.158973094, + "2024-07-26T05": 0.1394934912, + "2024-07-19T14": 0.1563, + "2024-07-21T00": 0.15847660765024926, + "2024-07-22T12": 0.15401232, + "2024-07-24T06": 0.143201432, + "2024-07-25T01": 0.13598368, + "2024-07-20T22": 0.15736763899999998, + "2024-07-19T15": 0.15680313599999998, + "2024-07-21T13": 0.1558783073, + "2024-07-25T07": 0.137225685, + "2024-07-21T08": 0.15748565759999997, + "2024-07-23T06": 0.14682202000000003, + "2024-07-22T16": 0.15242286000000002, + "2024-07-24T11": 0.1457, + "2024-07-24T01": 0.142402848, + "2024-07-23T00": 0.15164548, + "2024-07-19T12": 0.154264511, + "2024-07-25T17": 0.13657141464840591, + "2024-07-25T19": 0.1339911313, + "2024-07-19T21": 0.15873091150000002, + "2024-07-23T08": 0.14830444899999998, + "2024-07-21T21": 0.1585901264, + "2024-07-21T11": 0.1574124899, + "2024-07-22T14": 0.15225283450000002, + "2024-07-20T23": 0.15797579969999997, + "2024-07-20T08": 0.16008, + "2024-07-20T02": 0.157150686, + "2024-07-24T05": 0.1425114, + "2024-07-24T16": 0.143112879, + "2024-07-21T01": 0.159859126, + "2024-07-24T13": 0.1459, + "2024-07-25T04": 0.1362209264, + "2024-07-19T13": 0.15470905199999999, + "2024-07-25T12": 0.1350503076383772, + "2024-07-19T22": 0.15817746900000001, + "2024-07-26T07": 0.14047330500000002, + "2024-07-25T02": 0.1354729, + "2024-07-21T12": 0.15706710599999998, + "2024-07-23T18": 0.143415774, + "2024-07-23T11": 0.14730294599999996, + "2024-07-19T10": 0.1527479162, + "2024-07-19T19": 0.15796316000000002, + "2024-07-25T11": 0.1350872954, + "2024-07-22T08": 0.153312264, + "2024-07-23T19": 0.14414755299999998, + "2024-07-22T21": 0.15286528100107855, + "2024-07-21T09": 0.157844184, + "2024-07-21T22": 0.15971597, + "2024-07-22T04": 0.15741259200000002, + "2024-07-25T16": 0.1359400866, + "2024-07-19T23": 0.15803897999999997, + "2024-07-20T06": 0.15967384399999998, + "2024-07-23T02": 0.152212176, + "2024-07-23T14": 0.147123536, + "2024-07-23T03": 0.151210584, + "2024-07-25T08": 0.13676032800000001, + "2024-07-24T15": 0.144627474, + "2024-07-19T09": 0.15266946, + "2024-07-20T15": 0.159749507, + "2024-07-23T23": 0.143712933, + "2024-07-23T12": 0.146826424, + "2024-07-22T10": 0.15400154000000002, + "2024-07-21T10": 0.15804266, + "2024-07-22T00": 0.15871793550000002, + "2024-07-24T22": 0.14047471000000003, + "2024-07-24T19": 0.14313316947033192, + "2024-07-24T09": 0.145, + "2024-07-23T04": 0.14921492, + "2024-07-23T05": 0.14720883199999998, + "2024-07-25T18": 0.13516484799999998, + "2024-07-25T15": 0.136270014, + "2024-07-26T01": 0.13741251200000001, + "2024-07-22T01": 0.157668918, + "2024-07-26T02": 0.138362322, + "2024-07-24T18": 0.14351434999999998, + "2024-07-21T19": 0.1548503681, + "2024-07-25T05": 0.13696712, + "2024-07-22T18": 0.15293058, + "2024-07-24T00": 0.142912861, + "2024-07-24T08": 0.14479855200000002, + "2024-07-24T20": 0.143398566, + "2024-07-24T23": 0.13942501536158106, + "2024-07-22T17": 0.152321322, + "2024-07-21T17": 0.15616744537959473, + "2024-07-24T12": 0.1457143713, + "2024-07-23T13": 0.14602336, + "2024-07-21T05": 0.1586244024, + "2024-07-20T05": 0.1586661232, + "2024-07-21T03": 0.15924457600000003, + "2024-07-26T00": 0.13717118799999997, + "2024-07-20T20": 0.158543392, + "2024-07-22T03": 0.156806272, + "2024-07-25T21": 0.136368628, + "2024-07-21T16": 0.15632000018353148, + "2024-07-20T17": 0.15961382, + "2024-07-22T11": 0.15380461399999998, + "2024-07-25T00": 0.139674854, + "2024-07-20T13": 0.15846652800000002, + "2024-07-23T07": 0.14692469100000002, + "2024-07-22T05": 0.15550933, + "2024-07-20T07": 0.16077231500000003, + "2024-07-21T18": 0.153365919, + "2024-07-23T17": 0.14311431, + "2024-07-20T14": 0.1593034118814418, + "2024-07-26T04": 0.13918051199999998, + "2024-07-24T10": 0.1456, + "2024-07-20T18": 0.15907949999999998, + "2024-07-23T15": 0.14632487100000002, + "2024-07-19T18": 0.157640976, + "2024-07-25T09": 0.136750752, + "latest": 0.114203, + "2024-07-26T09": 0.14091463080000002, + "2024-07-26T10": 0.14026211900000002, + "2024-07-26T11": 0.1396764696, + "2024-07-26T12": 0.139876217, + "2024-07-26T13": 0.14047752, + "2024-07-26T14": 0.14034832967979963, + "2024-07-26T17": 0.14119717599999998, + "2024-07-26T16": 0.141212939, + "2024-07-26T15": 0.140388768, + "2024-07-26T18": 0.14147, + "2024-07-27": 0.14326104490977717, + "2024-07-28": 0.14054555803821103, + "2024-07-28T05": 0.140198598, + "2024-07-26T21": 0.14235, + "2024-07-27T02": 0.142704281, + "2024-07-28T01": 0.142790004, + "2024-07-27T10": 0.14401152, + "2024-07-28T02": 0.1423828805, + "2024-07-27T19": 0.142535625, + "2024-07-27T09": 0.144112969, + "2024-07-27T06": 0.14300285999999998, + "2024-07-27T18": 0.14282142000000003, + "2024-07-26T22": 0.14252570080000002, + "2024-07-27T13": 0.14534889289999997, + "2024-07-27T12": 0.144424548, + "2024-07-27T16": 0.14331433000000002, + "2024-07-27T05": 0.142802856, + "2024-07-26T23": 0.14275570999999998, + "2024-07-26T20": 0.1416, + "2024-07-27T08": 0.14402720100000002, + "2024-07-28T03": 0.1422871542, + "2024-07-27T01": 0.1424856992, + "2024-07-28T09": 0.140697186, + "2024-07-28T10": 0.14099577, + "2024-07-27T00": 0.1428757148, + "2024-07-28T00": 0.142398576, + "2024-07-27T04": 0.142702854, + "2024-07-27T14": 0.14510212891526383, + "2024-07-27T07": 0.14380398550021878, + "2024-07-27T11": 0.14382444600000002, + "2024-07-27T22": 0.1444469986, + "2024-07-27T03": 0.1426714267, + "2024-07-27T20": 0.141987099, + "2024-07-27T23": 0.1435699494, + "2024-07-28T08": 0.14061364399778456, + "2024-07-27T21": 0.1442256731, + "2024-07-28T07": 0.1404671906, + "2024-07-27T15": 0.143064305, + "2024-07-26T19": 0.1423, + "2024-07-28T04": 0.14099717999999997, + "2024-07-28T06": 0.14089718199999998, + "2024-07-27T17": 0.1429271492, + "2024-07-29": 0.14189687238981047, + "2024-07-28T20": 0.13898471, + "2024-07-28T16": 0.139398606, + "2024-07-29T07": 0.143774116, + "2024-07-28T23": 0.13849723, + "2024-07-28T15": 0.13929860700000002, + "2024-07-28T18": 0.139484655, + "2024-07-29T04": 0.143082828, + "2024-07-29T06": 0.14388169484212276, + "2024-07-28T21": 0.138156183, + "2024-07-29T03": 0.14398415999999997, + "2024-07-28T12": 0.141095767, + "2024-07-29T05": 0.1433727932, + "2024-07-28T17": 0.139084699, + "2024-07-29T00": 0.1397, + "2024-07-29T01": 0.1402, + "2024-07-28T22": 0.13779586600000002, + "2024-07-28T19": 0.1394146627, + "2024-07-28T14": 0.1398, + "2024-07-29T02": 0.142090053, + "2024-07-29T08": 0.14387154885358344, + "2024-07-28T11": 0.1412575435815347, + "2024-07-28T13": 0.1412871742, + "2024-07-29T09": 0.144268254, + "2024-07-29T10": 0.1442097096, + "2024-07-29T11": 0.1437398083, + "2024-07-29T12": 0.1431971111, + "2024-07-29T13": 0.143487085, + "2024-07-30": 0.14016984762308343, + "2024-07-29T23": 0.1391619066, + "2024-07-29T18": 0.13967206, + "2024-07-29T21": 0.13898888, + "2024-07-29T22": 0.13981566604840745, + "2024-07-29T17": 0.1392893496, + "2024-07-29T15": 0.14096334, + "2024-07-30T01": 0.14062905480000001, + "2024-07-29T19": 0.1399776, + "2024-07-30T04": 0.14060187400000002, + "2024-07-29T14": 0.14257861, + "2024-07-29T20": 0.139884611, + "2024-07-30T03": 0.140380344, + "2024-07-30T00": 0.138876387, + "2024-07-29T16": 0.13945536000000003, + "2024-07-30T02": 0.13962207, + "2024-07-30T09": 0.141768804, + "2024-07-30T08": 0.141860268, + "2024-07-30T06": 0.140669046, + "2024-07-30T05": 0.140573286, + "2024-07-30T07": 0.141363236, + "2024-07-30T10": 0.14170339342346489, + "2024-07-30T11": 0.14167024299999997, + "2024-07-30T12": 0.14187162, + "2024-07-30T13": 0.14167166, + "2024-07-31": 0.13731737410841785, + "2024-07-31T00": 0.1371956925, + "2024-07-31T05": 0.136170036, + "2024-07-30T23": 0.137760038, + "2024-07-30T19": 0.137649051, + "2024-07-30T16": 0.140105152, + "2024-07-30T17": 0.139256817, + "2024-07-30T18": 0.13865561599999998, + "2024-07-30T20": 0.136688981, + "2024-07-30T15": 0.140152332, + "2024-07-31T03": 0.13717118799999997, + "2024-07-30T21": 0.1364845048, + "2024-07-31T01": 0.13796826, + "2024-07-31T07": 0.139756662, + "2024-07-31T06": 0.13895969, + "2024-07-31T02": 0.13732253, + "2024-07-30T22": 0.1369802642, + "2024-07-30T14": 0.14037192, + "2024-07-31T04": 0.13640134969999998, + "2024-07-31T08": 0.13913736, + "2024-07-31T11": 0.13948324199999998, + "2024-07-31T09": 0.139345634, + "2024-07-31T10": 0.13941304959999998, + "2024-07-31T12": 0.1400915048, + "2024-08-01": 0.1327842888438429, + "2024-07-31T14": 0.140816604, + "2024-07-31T23": 0.135806528, + "2024-07-31T13": 0.141133636, + "2024-07-31T21": 0.136348168, + "2024-08-01T01": 0.13545257500000002, + "2024-07-31T18": 0.14052361189999998, + "2024-07-31T19": 0.13915267199999998, + "2024-07-31T16": 0.140245283, + "2024-08-01T02": 0.134829852, + "2024-07-31T22": 0.136357716, + "2024-07-31T20": 0.13694657000000002, + "2024-07-31T17": 0.1403052596, + "2024-08-01T00": 0.136255021, + "2024-07-31T15": 0.141142108, + "2024-08-01T07": 0.13250034800000002, + "2024-08-01T06": 0.1326849525, + "2024-08-01T05": 0.1322992482, + "2024-08-01T04": 0.13293084000000002, + "2024-08-01T03": 0.134228821, + "2024-08-01T08": 0.133030788, + "2024-08-01T09": 0.133322628, + "2024-08-01T10": 0.1334592291, + "2024-08-01T11": 0.13392898, + "2024-08-01T12": 0.134330112, + "2024-08-01T13": 0.134535392, + "2024-08-01T14": 0.1331640476, + "2024-08-01T15": 0.13063465000000002, + "2024-08-02": 0.13505840377348569, + "2024-08-02T00": 0.1348785, + "2024-08-01T20": 0.1301384273, + "2024-08-01T21": 0.13257791600000002, + "2024-08-02T04": 0.13253927940000002, + "2024-08-01T19": 0.12895799, + "2024-08-01T16": 0.12860991, + "2024-08-02T02": 0.132184899, + "2024-08-01T17": 0.12789632, + "2024-08-01T23": 0.13487445, + "2024-08-02T01": 0.133680918, + "2024-08-01T22": 0.134688116, + "2024-08-01T18": 0.12708297600000001, + "2024-08-02T03": 0.132677824, + "2024-08-02T05": 0.1317652644, + "2024-08-02T06": 0.130500744, + "2024-08-02T07": 0.130993809, + "2024-08-02T08": 0.130391685, + "2024-08-02T09": 0.131486824, + "2024-08-02T10": 0.1314200448, + "2024-08-02T11": 0.131789204, + "2024-08-02T12": 0.13131801299999998, + "2024-08-02T13": 0.13287627559999998, + "2024-08-02T14": 0.1332616070134236, + "2024-08-02T15": 0.1261162848, + "2024-08-03": 0.1230082827567445, + "2024-08-02T16": 0.127071897, + "2024-08-02T22": 0.124557842, + "2024-08-02T23": 0.12438231142900985, + "2024-08-03T00": 0.12379761239999999, + "2024-08-03T01": 0.122549079, + "2024-08-03T03": 0.12509096439999998, + "2024-08-02T19": 0.124924497848968, + "2024-08-02T18": 0.1259739, + "2024-08-02T21": 0.1243755, + "2024-08-02T17": 0.12727897000000002, + "2024-08-02T20": 0.125762769, + "2024-08-03T02": 0.1243656204, + "2024-08-03T06": 0.12544404092181236, + "2024-08-03T19": 0.117758077, + "2024-08-03T10": 0.12508982400000002, + "2024-08-03T09": 0.1251085542, + "2024-08-03T15": 0.1230075297, + "2024-08-03T22": 0.12023142900000001, + "2024-08-03T05": 0.125061028, + "2024-08-03T08": 0.125178459, + "2024-08-03T14": 0.1251486005, + "2024-08-03T18": 0.117627603, + "2024-08-03T17": 0.118214824, + "2024-08-03T21": 0.11859875246218277, + "2024-08-03T12": 0.12558819472048763, + "2024-08-03T20": 0.11753141911916823, + "2024-08-03T04": 0.12524337630000001, + "2024-08-03T16": 0.1202397525, + "2024-08-03T11": 0.124895, + "2024-08-03T07": 0.1258352121, + "2024-08-03T13": 0.12518481639999998, + "2024-08-04": 0.11620949011871172, + "2024-08-03T23": 0.120332576, + "2024-08-04T17": 0.11190704, + "2024-08-04T13": 0.1203398, + "2024-08-04T06": 0.121324732, + "2024-08-04T12": 0.12030981500000001, + "2024-08-04T10": 0.12013749600000001, + "2024-08-04T16": 0.11381799199999999, + "2024-08-04T15": 0.1150928361, + "2024-08-04T00": 0.120628787, + "2024-08-04T11": 0.12027862660000001, + "2024-08-04T01": 0.120428905, + "2024-08-04T03": 0.121824422, + "2024-08-04T04": 0.12124599479999999, + "2024-08-04T07": 0.120528846, + "2024-08-04T08": 0.120026739, + "2024-08-04T18": 0.11237512185556876, + "2024-08-04T09": 0.12023142900000001, + "2024-08-04T02": 0.12172692, + "2024-08-04T05": 0.12092619, + "2024-08-04T14": 0.11654986199999999, + "2024-08-05": 0.1030497366972547, + "2024-08-05T01": 0.11033381019895513, + "2024-08-04T19": 0.11433626771877456, + "2024-08-04T22": 0.11523406294339796, + "2024-08-05T03": 0.10369827301426392, + "2024-08-05T02": 0.10257500846304217, + "2024-08-04T23": 0.11575237955883562, + "2024-08-05T00": 0.11453102202189455, + "2024-08-05T04": 0.10197024475431904, + "2024-08-05T06": 0.10162703991231042, + "2024-08-04T20": 0.1158952074264656, + "2024-08-05T05": 0.1027279666231791, + "2024-08-04T21": 0.11582280058392655, + "2024-08-05T07": 0.09899075415459704, + "2024-08-05T08": 0.10528008326116621, + "2024-08-05T09": 0.10376251844316532, + "2024-08-05T10": 0.10324176386028544, + "2024-08-05T11": 0.09831277899999999, + "2024-08-05T12": 0.09964576524959094, + "2024-08-05T13": 0.09743107300607624, + "2024-08-05T14": 0.10501595235542054, + "2024-08-05T15": 0.11064966539999999, + "2024-08-06": 0.11416140550950463, + "2024-08-05T19": 0.10954161000000001, + "2024-08-05T20": 0.110491048, + "2024-08-05T21": 0.11071992600000001, + "2024-08-06T02": 0.114143358, + "2024-08-05T18": 0.1105108116, + "2024-08-05T23": 0.110642124, + "2024-08-05T16": 0.11259876399999999, + "2024-08-06T05": 0.11438744880000001, + "2024-08-05T17": 0.11246631600000001, + "2024-08-06T00": 0.11322264, + "2024-08-06T04": 0.114031291, + "2024-08-06T03": 0.11434457699999999, + "2024-08-05T22": 0.111518955, + "2024-08-06T01": 0.1150345, + "2024-08-06T06": 0.115384169, + "2024-08-06T07": 0.1148669093, + "2024-08-06T08": 0.11326565599999999, + "2024-08-06T09": 0.11183354, + "2024-08-06T10": 0.111735744, + "2024-08-06T11": 0.11142785000000001, + "2024-08-06T12": 0.110941033, + "2024-08-06T13": 0.11081101840000002, + "2024-08-06T14": 0.11081212619999999 + }, + "USD astar": { + "2024-06-28": 0.06798417155553188, + "2024-06-30": 0.06694936397091458, + "2024-07-15": 0.0754721319007559, + "2024-07-18": 0.08118854150444595, + "2024-07-14": 0.07494470837254277, + "2024-07-11": 0.06588736778348243, + "2024-07-19": 0.07998138458117787, + "2024-07-12": 0.06520881116886701, + "2024-07-24": 0.07381079698844449, + "2024-07-08": 0.06320825967890445, + "2024-07-07": 0.06351460726097762, + "2024-07-13": 0.07183247278631763, + "2024-07-09": 0.06444563073983778, + "2024-07-02": 0.07515082438831923, + "2024-07-20": 0.08101358952788544, + "2024-06-29": 0.06666447811115174, + "2024-07-21": 0.0794350133587384, + "2024-07-23": 0.0744221340068431, + "2024-07-10": 0.06470588784473605, + "2024-07-01": 0.07131602454258433, + "2024-06-26": 0.06847919927373722, + "2024-07-17": 0.08097177280762621, + "2024-07-22": 0.07757613142563265, + "2024-07-04": 0.06703542681513167, + "2024-06-25": 0.06866718749928549, + "2024-07-26": 0.07375112333832762, + "2024-07-03": 0.07093124676080771, + "2024-07-05": 0.06050561526296169, + "2024-07-25": 0.07066526310400527, + "2024-07-16": 0.07674345900840772, + "2024-07-06": 0.06270884015368342, + "2024-06-27": 0.06737655958510907, + "2024-07-22T13": 0.07801092, + "2024-07-25T10": 0.070674548, + "2024-07-26T06": 0.07377524199999999, + "2024-07-24T14": 0.07561134000000001, + "2024-07-21T20": 0.08053254280000001, + "2024-07-21T07": 0.07899644155995836, + "2024-07-21T14": 0.0784666696, + "2024-07-22T23": 0.07609282099999999, + "2024-07-24T07": 0.0736577902, + "2024-07-20T11": 0.08043939600000001, + "2024-07-26T08": 0.07348824, + "2024-07-25T20": 0.0696632768, + "2024-07-21T02": 0.0816028424, + "2024-07-20T04": 0.08160833790000001, + "2024-07-20T03": 0.081576693, + "2024-07-25T13": 0.070177536, + "2024-07-21T06": 0.07961308109999998, + "2024-07-20T12": 0.0802284912, + "2024-07-24T02": 0.0731407314, + "2024-07-24T17": 0.074899251, + "2024-07-25T06": 0.0707416024, + "2024-07-25T22": 0.07198199999999999, + "2024-07-22T07": 0.0773215965, + "2024-07-22T22": 0.07642521199999999, + "2024-07-26T03": 0.07298832, + "2024-07-23T01": 0.07730772999999999, + "2024-07-24T03": 0.07389443339999999, + "2024-07-23T21": 0.07331099500000002, + "2024-07-19T20": 0.081336585, + "2024-07-23T22": 0.07282310580000001, + "2024-07-21T23": 0.08133650640000001, + "2024-07-19T16": 0.08071613999999999, + "2024-07-22T20": 0.07769016236603543, + "2024-07-23T10": 0.07569924300000001, + "2024-07-19T17": 0.0803704468, + "2024-07-22T09": 0.07765, + "2024-07-24T04": 0.07390221699999999, + "2024-07-22T06": 0.0779746782, + "2024-07-24T21": 0.07239276, + "2024-07-20T21": 0.080637076, + "2024-07-21T15": 0.0791861228, + "2024-07-20T09": 0.08107456650000001, + "2024-07-25T14": 0.070674548, + "2024-07-19T11": 0.07853350449999999, + "2024-07-23T20": 0.073494696, + "2024-07-25T03": 0.0699867, + "2024-07-20T01": 0.08072034, + "2024-07-25T23": 0.0719576862, + "2024-07-20T16": 0.081129196, + "2024-07-22T15": 0.07698182944356088, + "2024-07-23T16": 0.07331246100000001, + "2024-07-22T02": 0.08019, + "2024-07-21T04": 0.08073259880000001, + "2024-07-23T09": 0.0763, + "2024-07-20T10": 0.08097723239999999, + "2024-07-22T19": 0.0773008656, + "2024-07-20T00": 0.08086041, + "2024-07-20T19": 0.08098723699999999, + "2024-07-26T05": 0.073186092, + "2024-07-19T14": 0.0801, + "2024-07-21T00": 0.0813535857, + "2024-07-22T12": 0.07850628000000001, + "2024-07-24T06": 0.07366073660000001, + "2024-07-25T01": 0.07000159880000001, + "2024-07-20T22": 0.08115488159999999, + "2024-07-19T15": 0.08000159999999999, + "2024-07-21T13": 0.078124211, + "2024-07-25T07": 0.070682325, + "2024-07-21T08": 0.07934300279999999, + "2024-07-23T06": 0.07431114500000001, + "2024-07-22T16": 0.077311595, + "2024-07-24T11": 0.07421, + "2024-07-24T01": 0.0728114562, + "2024-07-23T00": 0.07674354319212738, + "2024-07-19T12": 0.0785919197, + "2024-07-25T17": 0.07144499339999999, + "2024-07-25T19": 0.0700396826, + "2024-07-19T21": 0.081641616, + "2024-07-23T08": 0.075802274, + "2024-07-21T21": 0.08121542799999999, + "2024-07-21T11": 0.079121357, + "2024-07-22T14": 0.07690153350000001, + "2024-07-20T23": 0.08122354799999999, + "2024-07-20T08": 0.08150073, + "2024-07-20T02": 0.0808663735, + "2024-07-24T05": 0.07307584560000001, + "2024-07-24T16": 0.0740566645, + "2024-07-21T01": 0.0813901032, + "2024-07-24T13": 0.07468, + "2024-07-25T04": 0.0704301384, + "2024-07-19T13": 0.07902419200000001, + "2024-07-25T12": 0.0705638817, + "2024-07-19T22": 0.081740033, + "2024-07-26T07": 0.0738759609, + "2024-07-25T02": 0.06988602000000001, + "2024-07-21T12": 0.07905463778366603, + "2024-07-23T18": 0.073108041, + "2024-07-23T11": 0.07500149999999998, + "2024-07-19T10": 0.0784735171, + "2024-07-19T19": 0.0810324, + "2024-07-25T11": 0.07097231, + "2024-07-22T08": 0.077406192, + "2024-07-23T19": 0.073624288, + "2024-07-22T21": 0.07712235899999999, + "2024-07-21T09": 0.07962228800000001, + "2024-07-21T22": 0.08150815, + "2024-07-22T04": 0.0794463552, + "2024-07-25T16": 0.07128772708988508, + "2024-07-19T23": 0.081570765, + "2024-07-20T06": 0.08138254, + "2024-07-23T02": 0.0770661648, + "2024-07-23T14": 0.0749519904, + "2024-07-23T03": 0.07704994780966529, + "2024-07-25T08": 0.070679497, + "2024-07-24T15": 0.0750842633, + "2024-07-19T09": 0.0789842, + "2024-07-20T15": 0.0807950387, + "2024-07-23T23": 0.07293656369999998, + "2024-07-23T12": 0.074713446, + "2024-07-22T10": 0.07800078, + "2024-07-21T10": 0.0797515271, + "2024-07-22T00": 0.08119405950000001, + "2024-07-24T22": 0.07174788455488251, + "2024-07-24T19": 0.07341926580000001, + "2024-07-24T09": 0.0742, + "2024-07-23T04": 0.07580758, + "2024-07-23T05": 0.0743844628, + "2024-07-25T18": 0.070681618, + "2024-07-25T15": 0.071384292, + "2024-07-26T01": 0.07228554000000001, + "2024-07-22T01": 0.08046965519999999, + "2024-07-26T02": 0.07268546000000001, + "2024-07-24T18": 0.07398739800000001, + "2024-07-21T19": 0.078730693, + "2024-07-25T05": 0.07068303199999999, + "2024-07-22T18": 0.07731545999999999, + "2024-07-24T00": 0.07320658799999999, + "2024-07-24T08": 0.07429925700000001, + "2024-07-24T20": 0.0732092679, + "2024-07-24T23": 0.071587112, + "2024-07-22T17": 0.077210808, + "2024-07-21T17": 0.0786638109, + "2024-07-24T12": 0.07439223169999999, + "2024-07-23T13": 0.07420261041064358, + "2024-07-21T05": 0.08012242800000001, + "2024-07-20T05": 0.0810288752, + "2024-07-21T03": 0.081222736, + "2024-07-26T00": 0.072284817, + "2024-07-20T20": 0.08093236, + "2024-07-22T03": 0.08028321120000001, + "2024-07-25T21": 0.071483555, + "2024-07-21T16": 0.079129267, + "2024-07-20T17": 0.08123248, + "2024-07-22T11": 0.0779123373, + "2024-07-25T00": 0.072037031, + "2024-07-20T13": 0.079933558, + "2024-07-23T07": 0.07420742, + "2024-07-22T05": 0.0783246992, + "2024-07-20T07": 0.08163672000000001, + "2024-07-21T18": 0.0777033981, + "2024-07-23T17": 0.07250725, + "2024-07-20T14": 0.08043099088816046, + "2024-07-26T04": 0.0730297744, + "2024-07-24T10": 0.0743, + "2024-07-20T18": 0.08118057, + "2024-07-23T15": 0.07440452615919198, + "2024-07-19T18": 0.08065096379999999, + "2024-07-25T09": 0.07122468471592135, + "latest": 0.055394, + "2024-07-26T09": 0.07336679160000001, + "2024-07-26T10": 0.0731902333, + "2024-07-26T11": 0.0733423936, + "2024-07-26T12": 0.073487505, + "2024-07-26T13": 0.073788192, + "2024-07-26T14": 0.0740133382, + "2024-07-26T17": 0.0743185136, + "2024-07-26T16": 0.07439628, + "2024-07-26T15": 0.07408407280000001, + "2024-07-26T18": 0.0743, + "2024-07-27": 0.07520319119708571, + "2024-07-28": 0.074198516, + "2024-07-28T05": 0.07382926170000001, + "2024-07-26T21": 0.07456, + "2024-07-27T02": 0.0750222506, + "2024-07-28T01": 0.07544519362519655, + "2024-07-27T10": 0.07519601520000001, + "2024-07-28T02": 0.075096245, + "2024-07-27T19": 0.07513878000000002, + "2024-07-27T09": 0.07550679499999999, + "2024-07-27T06": 0.0749214984, + "2024-07-27T18": 0.07541131, + "2024-07-26T22": 0.075003, + "2024-07-27T13": 0.07607988909999999, + "2024-07-27T12": 0.07502275169999999, + "2024-07-27T16": 0.075497549, + "2024-07-27T05": 0.07502031627381056, + "2024-07-26T23": 0.075203008, + "2024-07-26T20": 0.07436, + "2024-07-27T08": 0.07520376000000001, + "2024-07-28T03": 0.0747885042, + "2024-07-27T01": 0.07476299039999999, + "2024-07-28T09": 0.07428851419999999, + "2024-07-28T10": 0.074597762, + "2024-07-27T00": 0.075103004, + "2024-07-28T00": 0.0751092489, + "2024-07-27T04": 0.07497149939999999, + "2024-07-27T14": 0.07580758, + "2024-07-27T07": 0.07539, + "2024-07-27T11": 0.0746926956, + "2024-07-27T22": 0.076593106, + "2024-07-27T03": 0.07495074950000001, + "2024-07-27T20": 0.07466373300000001, + "2024-07-27T23": 0.076094673, + "2024-07-28T08": 0.07421851559999999, + "2024-07-27T21": 0.0761377158, + "2024-07-28T07": 0.074198516, + "2024-07-27T15": 0.074987498, + "2024-07-26T19": 0.07468, + "2024-07-28T04": 0.0743385132, + "2024-07-28T06": 0.0742085158, + "2024-07-27T17": 0.0752390276, + "2024-07-29": 0.07500090295786985, + "2024-07-28T20": 0.07353191059999999, + "2024-07-28T16": 0.073699263, + "2024-07-29T07": 0.075886338, + "2024-07-28T23": 0.073298534, + "2024-07-28T15": 0.073599264, + "2024-07-28T18": 0.0738118798, + "2024-07-29T04": 0.075590928, + "2024-07-29T06": 0.07579035767222311, + "2024-07-28T21": 0.07329267, + "2024-07-29T03": 0.07554168950000001, + "2024-07-28T12": 0.074597762, + "2024-07-29T05": 0.0756209244, + "2024-07-28T17": 0.07349191499999999, + "2024-07-29T00": 0.07439, + "2024-07-29T01": 0.07444, + "2024-07-28T22": 0.07314780550000001, + "2024-07-28T19": 0.0738818721, + "2024-07-28T14": 0.07381, + "2024-07-29T02": 0.0748855066, + "2024-07-29T08": 0.07603484767726501, + "2024-07-28T11": 0.07469095246508074, + "2024-07-28T13": 0.0744585108, + "2024-07-29T09": 0.0759732822, + "2024-07-29T10": 0.07609401689999999, + "2024-07-29T11": 0.076183998, + "2024-07-29T12": 0.076193142, + "2024-07-29T13": 0.07654311050000001, + "2024-07-30": 0.07258438614433566, + "2024-07-29T23": 0.0738004047, + "2024-07-29T18": 0.07468506, + "2024-07-29T21": 0.0739840808, + "2024-07-29T22": 0.07422035010000001, + "2024-07-29T17": 0.07491351539999999, + "2024-07-29T15": 0.074780552, + "2024-07-30T01": 0.07425459217320717, + "2024-07-29T19": 0.07448808, + "2024-07-30T04": 0.07438512, + "2024-07-29T14": 0.07578863000000001, + "2024-07-29T20": 0.07428551876299407, + "2024-07-30T03": 0.0741996106, + "2024-07-30T00": 0.07363747949999999, + "2024-07-29T16": 0.0742862208, + "2024-07-30T02": 0.07371525400000001, + "2024-07-30T09": 0.0749835, + "2024-07-30T08": 0.075378888, + "2024-07-30T06": 0.07438363199999999, + "2024-07-30T05": 0.0743058792, + "2024-07-30T07": 0.074730565, + "2024-07-30T10": 0.073288272, + "2024-07-30T11": 0.0728247036, + "2024-07-30T12": 0.0724855, + "2024-07-30T13": 0.07238552000000001, + "2024-07-31": 0.07122589104079274, + "2024-07-31T00": 0.071842035, + "2024-07-31T05": 0.07149901989244271, + "2024-07-30T23": 0.0711293665, + "2024-07-30T19": 0.0708437781, + "2024-07-30T16": 0.07199900336112112, + "2024-07-30T17": 0.07147783499999999, + "2024-07-30T18": 0.07127718400000001, + "2024-07-30T20": 0.070558826, + "2024-07-30T15": 0.07187555400000001, + "2024-07-31T03": 0.0717049388, + "2024-07-30T21": 0.070581644, + "2024-07-31T01": 0.071583532, + "2024-07-31T07": 0.0723375684, + "2024-07-31T06": 0.07237900400000001, + "2024-07-31T02": 0.071425712, + "2024-07-30T22": 0.070879439, + "2024-07-30T14": 0.07188562000000001, + "2024-07-31T04": 0.0712450354, + "2024-07-31T08": 0.07186764500000001, + "2024-07-31T11": 0.07184238544368922, + "2024-07-31T09": 0.0721318576, + "2024-07-31T10": 0.07203637543721811, + "2024-07-31T12": 0.0717897752, + "2024-08-01": 0.06826377088038153, + "2024-07-31T14": 0.07240740200000001, + "2024-07-31T23": 0.0703874688, + "2024-07-31T13": 0.072465925, + "2024-07-31T21": 0.0706131568, + "2024-08-01T01": 0.070315381, + "2024-07-31T18": 0.07197624, + "2024-07-31T19": 0.0715056798, + "2024-07-31T16": 0.07197192, + "2024-08-01T02": 0.06976370400000001, + "2024-07-31T22": 0.0705981078, + "2024-07-31T20": 0.070572466, + "2024-07-31T17": 0.07203189659999999, + "2024-08-01T00": 0.070276801, + "2024-07-31T15": 0.07197047999999999, + "2024-08-01T07": 0.06846917500000001, + "2024-08-01T06": 0.068666337, + "2024-08-01T05": 0.0687080625, + "2024-08-01T04": 0.06896412, + "2024-08-01T03": 0.069663059, + "2024-08-01T08": 0.0684843696, + "2024-08-01T09": 0.0690499278, + "2024-08-01T10": 0.069163324, + "2024-08-01T11": 0.06902339819999999, + "2024-08-01T12": 0.06966375600000001, + "2024-08-01T13": 0.069866448, + "2024-08-01T14": 0.06886106620000002, + "2024-08-01T15": 0.06805376701220932, + "2024-08-02": 0.07000059451898102, + "2024-08-02T00": 0.069937, + "2024-08-01T20": 0.06725568782553021, + "2024-08-01T21": 0.06853688799999999, + "2024-08-02T04": 0.0686075103, + "2024-08-01T19": 0.06712607999999999, + "2024-08-01T16": 0.06686316299999999, + "2024-08-02T02": 0.0686302397, + "2024-08-01T17": 0.0663761917, + "2024-08-01T23": 0.0697258773429084, + "2024-08-02T01": 0.069138412, + "2024-08-01T22": 0.069542232, + "2024-08-01T18": 0.0658093996, + "2024-08-02T03": 0.06868675, + "2024-08-02T05": 0.0682312700754487, + "2024-08-02T06": 0.067348776, + "2024-08-02T07": 0.0673753817, + "2024-08-02T08": 0.0671542157, + "2024-08-02T09": 0.0679115458, + "2024-08-02T10": 0.0676185708, + "2024-08-02T11": 0.067543216, + "2024-08-02T12": 0.067322841, + "2024-08-02T13": 0.06773864675213362, + "2024-08-02T14": 0.06796317572737338, + "2024-08-02T15": 0.063487721, + "2024-08-03": 0.06036291717990934, + "2024-08-02T16": 0.06324619499999999, + "2024-08-02T22": 0.062378806999999994, + "2024-08-02T23": 0.062619744, + "2024-08-03T00": 0.06222993034064548, + "2024-08-03T01": 0.061124724, + "2024-08-03T03": 0.062325743999999995, + "2024-08-02T19": 0.06233198399999999, + "2024-08-02T18": 0.0624375, + "2024-08-02T21": 0.06229764, + "2024-08-02T17": 0.06264201723519554, + "2024-08-02T20": 0.06263165700000001, + "2024-08-03T02": 0.062018028, + "2024-08-03T06": 0.06298127549999999, + "2024-08-03T19": 0.058454370000000005, + "2024-08-03T10": 0.06254491200000001, + "2024-08-03T09": 0.06264419700000001, + "2024-08-03T15": 0.060759264, + "2024-08-03T22": 0.059566028, + "2024-08-03T05": 0.0627203031, + "2024-08-03T08": 0.0627290937, + "2024-08-03T14": 0.061999674, + "2024-08-03T18": 0.05885877, + "2024-08-03T17": 0.0592473112, + "2024-08-03T21": 0.05866478, + "2024-08-03T12": 0.062252652000000006, + "2024-08-03T20": 0.058251602453028316, + "2024-08-03T04": 0.062636673, + "2024-08-03T16": 0.060054925, + "2024-08-03T11": 0.062347584, + "2024-08-03T07": 0.0632922048, + "2024-08-03T13": 0.0621177312, + "2024-08-04": 0.059615299613786685, + "2024-08-03T23": 0.0596265904, + "2024-08-04T17": 0.0548644247, + "2024-08-04T13": 0.05919039, + "2024-08-04T06": 0.05952307280000001, + "2024-08-04T12": 0.059170400000000005, + "2024-08-04T10": 0.058809403200000006, + "2024-08-04T16": 0.055759824, + "2024-08-04T15": 0.0567019842, + "2024-08-04T00": 0.0597147475, + "2024-08-04T11": 0.0591198335, + "2024-08-04T01": 0.059564836, + "2024-08-04T03": 0.059563048, + "2024-08-04T04": 0.059463705, + "2024-08-04T07": 0.05881965224063487, + "2024-08-04T08": 0.058664193, + "2024-08-04T18": 0.05528032202178607, + "2024-08-04T09": 0.058906404200000005, + "2024-08-04T02": 0.05976412, + "2024-08-04T05": 0.0595336623, + "2024-08-04T14": 0.0572853567, + "2024-08-05": 0.05076478865437057, + "2024-08-05T01": 0.05339110791926319, + "2024-08-04T19": 0.056173126019538125, + "2024-08-04T22": 0.056496708245095145, + "2024-08-05T03": 0.050903047175861825, + "2024-08-05T02": 0.050291515832320714, + "2024-08-04T23": 0.05649084470657901, + "2024-08-05T00": 0.055667390761179616, + "2024-08-05T04": 0.05030322763297899, + "2024-08-05T06": 0.04975433220388314, + "2024-08-04T20": 0.05688502786345062, + "2024-08-05T05": 0.05052553762928228, + "2024-08-04T21": 0.05664583368565026, + "2024-08-05T07": 0.04924286525081538, + "2024-08-05T08": 0.050705577, + "2024-08-05T09": 0.05070912600000001, + "2024-08-05T10": 0.0496969566, + "2024-08-05T11": 0.04881757631016413, + "2024-08-05T12": 0.04949420377762913, + "2024-08-05T13": 0.04817525025706807, + "2024-08-05T14": 0.05207008405605278, + "2024-08-05T15": 0.0540440263, + "2024-08-06": 0.05505723695767198, + "2024-08-05T19": 0.052319874, + "2024-08-05T20": 0.052805279999999996, + "2024-08-05T21": 0.05310955800000001, + "2024-08-06T02": 0.055020900000000005, + "2024-08-05T18": 0.0529943662, + "2024-08-05T23": 0.05311062, + "2024-08-05T16": 0.05434801699999999, + "2024-08-06T05": 0.055232568, + "2024-08-05T17": 0.05403186, + "2024-08-06T00": 0.05481096, + "2024-08-06T04": 0.0549947365, + "2024-08-06T03": 0.05504145779999999, + "2024-08-05T22": 0.0533790729, + "2024-08-06T01": 0.055346598999999996, + "2024-08-06T06": 0.055840733999999996, + "2024-08-06T07": 0.055837386, + "2024-08-06T08": 0.054751737599999996, + "2024-08-06T09": 0.054406316999999996, + "2024-08-06T10": 0.054277800597769814, + "2024-08-06T11": 0.054114655928964875, + "2024-08-06T12": 0.0541700355, + "2024-08-06T13": 0.053805061200000004, + "2024-08-06T14": 0.05380559909999999 + }, + "USD avalanche_c_chain": { + "2024-06-28": 28.153690318563985, + "2024-06-30": 28.229720697114644, + "2024-07-15": 27.007811566257747, + "2024-07-18": 27.49512002828193, + "2024-07-14": 26.004923495207834, + "2024-07-11": 25.60411558955867, + "2024-07-19": 27.310860446724714, + "2024-07-12": 25.45153578947061, + "2024-07-24": 29.178467281239502, + "2024-07-08": 25.769309655203156, + "2024-07-07": 26.295232246984266, + "2024-07-13": 25.867483001087276, + "2024-07-09": 25.59972411933907, + "2024-07-02": 28.386770254951195, + "2024-07-20": 28.323246810192813, + "2024-06-29": 28.064952564050312, + "2024-07-21": 30.596837515251156, + "2024-07-23": 30.512992845653915, + "2024-07-10": 26.467275988166783, + "2024-07-01": 29.70618792023917, + "2024-06-26": 25.936702146796158, + "2024-07-17": 28.315632074821178, + "2024-07-22": 32.133506286332, + "2024-07-04": 25.603210420453465, + "2024-06-25": 25.242776403225886, + "2024-07-26": 28.109491745449024, + "2024-07-03": 27.22370513126973, + "2024-07-05": 23.80394731727265, + "2024-07-25": 27.293195410951178, + "2024-07-16": 27.84230926791443, + "2024-07-06": 25.78888661639284, + "2024-06-27": 26.77361234810608, + "2024-07-22T13": 32.0144814, + "2024-07-25T10": 27.231493131999997, + "2024-07-26T06": 28.163806782411967, + "2024-07-24T14": 29.944491000000003, + "2024-07-21T20": 32.27305665483705, + "2024-07-21T07": 28.751335469999997, + "2024-07-21T14": 29.8701524, + "2024-07-22T23": 31.849552, + "2024-07-24T07": 29.17512472, + "2024-07-20T11": 28.081653271000004, + "2024-07-26T08": 28.105302432, + "2024-07-25T20": 26.606312952, + "2024-07-21T02": 29.309804448, + "2024-07-20T04": 28.377531173999998, + "2024-07-20T03": 28.262712500000003, + "2024-07-25T13": 26.990760192000003, + "2024-07-21T06": 28.80034968, + "2024-07-20T12": 28.023444800000004, + "2024-07-24T02": 28.780287800000004, + "2024-07-24T17": 29.2097079, + "2024-07-25T06": 27.4228682, + "2024-07-25T22": 27.413145000000004, + "2024-07-22T07": 31.954792500000003, + "2024-07-22T22": 31.9905534, + "2024-07-26T03": 27.821147904, + "2024-07-23T01": 32.04040372, + "2024-07-24T03": 28.87911923877398, + "2024-07-23T21": 30.097113890000003, + "2024-07-19T20": 28.258615092871125, + "2024-07-23T22": 29.855373000000004, + "2024-07-21T23": 32.6266007630282, + "2024-07-19T16": 27.85557, + "2024-07-22T20": 32.2922664, + "2024-07-23T10": 30.523994757, + "2024-07-19T17": 28.025342821, + "2024-07-22T09": 31.8874, + "2024-07-24T04": 28.759062745999998, + "2024-07-22T06": 32.17093491908384, + "2024-07-24T21": 28.677133392246176, + "2024-07-20T21": 28.777031347999998, + "2024-07-21T15": 30.780154099999997, + "2024-07-20T09": 28.1434704, + "2024-07-25T14": 27.140226, + "2024-07-19T11": 26.817567128, + "2024-07-23T20": 30.046007999999997, + "2024-07-25T03": 27.3847959, + "2024-07-20T01": 28.154069999999997, + "2024-07-25T23": 27.2215587, + "2024-07-20T16": 28.416926412, + "2024-07-22T15": 31.711463331208567, + "2024-07-23T16": 29.89612929038499, + "2024-07-22T02": 32.32, + "2024-07-21T04": 29.131354496000004, + "2024-07-23T09": 30.63483935744531, + "2024-07-20T10": 28.1329352, + "2024-07-22T19": 32.1486778, + "2024-07-20T00": 28.090238099999997, + "2024-07-20T19": 28.777346173633983, + "2024-07-26T05": 28.094661000000002, + "2024-07-19T14": 27.4509, + "2024-07-21T00": 29.082285712090176, + "2024-07-22T12": 32.3725896, + "2024-07-24T06": 28.840288400000002, + "2024-07-25T01": 27.6366832, + "2024-07-20T22": 28.9924614, + "2024-07-19T15": 27.57455148, + "2024-07-21T13": 29.289076800000004, + "2024-07-25T07": 27.3955494, + "2024-07-21T08": 28.922285030999998, + "2024-07-23T06": 30.964644000000003, + "2024-07-22T16": 31.946791300000005, + "2024-07-24T11": 30.21, + "2024-07-24T01": 29.191289137613285, + "2024-07-23T00": 32.089624, + "2024-07-19T12": 26.8738176, + "2024-07-25T17": 27.150297239999997, + "2024-07-25T19": 26.518407431, + "2024-07-19T21": 28.294422800000003, + "2024-07-23T08": 30.400911999999998, + "2024-07-21T21": 32.431879164120005, + "2024-07-21T11": 29.344020747, + "2024-07-22T14": 31.542630685000002, + "2024-07-20T23": 29.111039753999997, + "2024-07-20T08": 28.172987571034238, + "2024-07-20T02": 28.14367297321024, + "2024-07-24T05": 28.53328248, + "2024-07-24T16": 29.115755388520434, + "2024-07-21T01": 29.1607855, + "2024-07-24T13": 30.0938, + "2024-07-25T04": 27.488751036, + "2024-07-19T13": 27.01969498, + "2024-07-25T12": 27.142005369383227, + "2024-07-19T22": 28.183803300000005, + "2024-07-26T07": 28.130754140999997, + "2024-07-25T02": 27.349851016363544, + "2024-07-21T12": 29.376810399999997, + "2024-07-23T18": 29.937492762, + "2024-07-23T11": 30.352407036, + "2024-07-19T10": 26.804369899999998, + "2024-07-19T19": 28.271304, + "2024-07-25T11": 27.339333500000002, + "2024-07-22T08": 31.922553600000004, + "2024-07-23T19": 29.899863699999997, + "2024-07-22T21": 32.05429305, + "2024-07-21T09": 29.118150800000002, + "2024-07-21T22": 32.66294392473683, + "2024-07-22T04": 32.682614400000006, + "2024-07-25T16": 27.07304262, + "2024-07-19T23": 28.18018305, + "2024-07-20T06": 28.351736159999998, + "2024-07-23T02": 32.24864132640808, + "2024-07-23T14": 30.544371408538378, + "2024-07-23T03": 32.231956079, + "2024-07-25T08": 27.272088800000002, + "2024-07-24T15": 29.505604999999996, + "2024-07-19T09": 26.864626, + "2024-07-20T15": 28.317775790000002, + "2024-07-23T23": 29.866887778, + "2024-07-23T12": 30.429276284000004, + "2024-07-22T10": 32.3303233, + "2024-07-21T10": 29.229489832, + "2024-07-22T00": 32.66436487881757, + "2024-07-24T22": 28.6798367, + "2024-07-24T19": 28.91201732031478, + "2024-07-24T09": 30.22, + "2024-07-23T04": 31.65017462795269, + "2024-07-23T05": 30.9218552, + "2024-07-25T18": 26.7330476, + "2024-07-25T15": 27.18133785403389, + "2024-07-26T01": 27.334532, + "2024-07-22T01": 32.44389279999999, + "2024-07-26T02": 27.59448, + "2024-07-24T18": 28.99169888, + "2024-07-21T19": 31.403356659000384, + "2024-07-25T05": 27.58037912, + "2024-07-22T18": 32.0474082, + "2024-07-24T00": 29.538304479966452, + "2024-07-24T08": 29.544704550000002, + "2024-07-24T20": 28.94871051, + "2024-07-24T23": 28.3548952, + "2024-07-22T17": 32.00980209060424, + "2024-07-21T17": 31.14438633, + "2024-07-24T12": 29.997531368075713, + "2024-07-23T13": 30.14282208, + "2024-07-21T05": 28.985813756, + "2024-07-20T05": 28.354046340927006, + "2024-07-21T03": 29.286097812, + "2024-07-26T00": 27.30626448, + "2024-07-20T20": 28.830527599999996, + "2024-07-22T03": 32.311292400000006, + "2024-07-25T21": 27.2637279, + "2024-07-21T16": 31.3315884, + "2024-07-20T17": 28.513400799999996, + "2024-07-22T11": 32.29738554081316, + "2024-07-25T00": 28.411684976, + "2024-07-20T13": 27.941730600000003, + "2024-07-23T07": 30.523052, + "2024-07-22T05": 32.221933199999995, + "2024-07-20T07": 28.2367008, + "2024-07-21T18": 30.582016442002892, + "2024-07-23T17": 29.678967599999996, + "2024-07-20T14": 28.12819530133746, + "2024-07-26T04": 27.836102399999998, + "2024-07-24T10": 30.3441, + "2024-07-20T18": 28.79439, + "2024-07-23T15": 30.3251544, + "2024-07-19T18": 27.989395925285855, + "2024-07-25T09": 27.4301216, + "latest": 20.99, + "2024-07-26T09": 28.241015702, + "2024-07-26T10": 27.919059818, + "2024-07-26T11": 27.883506352, + "2024-07-26T12": 27.872860808000002, + "2024-07-26T13": 27.9155328, + "2024-07-26T14": 27.93431374842073, + "2024-07-26T17": 28.481430359999997, + "2024-07-26T16": 28.6485675, + "2024-07-26T15": 28.36274210974035, + "2024-07-26T18": 28.47, + "2024-07-27": 28.614747558684808, + "2024-07-28": 27.551730120347635, + "2024-07-28T05": 27.3797262, + "2024-07-26T21": 28.4933, + "2024-07-27T02": 28.62986044794777, + "2024-07-28T01": 28.076734491, + "2024-07-27T10": 28.5922872, + "2024-07-28T02": 28.027939703216276, + "2024-07-27T19": 28.147535125, + "2024-07-27T09": 28.669680039, + "2024-07-27T06": 28.566371315999998, + "2024-07-27T18": 28.479317974713464, + "2024-07-26T22": 28.5411416, + "2024-07-27T13": 29.127486080999997, + "2024-07-27T12": 28.930617369, + "2024-07-27T16": 28.752875, + "2024-07-27T05": 28.566071309999998, + "2024-07-26T23": 28.7311492, + "2024-07-26T20": 28.4341, + "2024-07-27T08": 28.640431950000004, + "2024-07-28T03": 27.8794424, + "2024-07-27T01": 28.621144800000003, + "2024-07-28T09": 27.602491958460043, + "2024-07-28T10": 27.669769882, + "2024-07-27T00": 28.6611464, + "2024-07-28T00": 27.9097209, + "2024-07-27T04": 28.594407622934327, + "2024-07-27T14": 29.262926, + "2024-07-27T07": 28.6983, + "2024-07-27T11": 28.621797621615617, + "2024-07-27T22": 28.3874449, + "2024-07-27T03": 28.670286700000002, + "2024-07-27T20": 27.969798420000004, + "2024-07-27T23": 28.187326749, + "2024-07-28T08": 27.6894462, + "2024-07-27T21": 28.479145600000003, + "2024-07-28T07": 27.673946509999997, + "2024-07-27T15": 28.9968994, + "2024-07-26T19": 28.625032862810144, + "2024-07-28T04": 27.561648756, + "2024-07-28T06": 27.6594468, + "2024-07-27T17": 28.553425999999998, + "2024-07-29": 28.06684694944696, + "2024-07-28T20": 27.466978299999997, + "2024-07-28T16": 27.3197268, + "2024-07-29T07": 28.6748376, + "2024-07-28T23": 27.334553298, + "2024-07-28T15": 27.327326724000002, + "2024-07-28T18": 27.523672062999996, + "2024-07-29T04": 28.168519372000002, + "2024-07-29T06": 28.676351689173597, + "2024-07-28T21": 27.287271, + "2024-07-29T03": 28.32960681122937, + "2024-07-28T12": 27.526174190000003, + "2024-07-29T05": 28.4065908, + "2024-07-28T17": 27.37298864, + "2024-07-29T00": 27.6331, + "2024-07-29T01": 27.67, + "2024-07-28T22": 27.208183730000002, + "2024-07-28T19": 27.566967299999998, + "2024-07-28T14": 27.4414, + "2024-07-29T02": 27.998084391280095, + "2024-07-29T08": 28.69426, + "2024-07-28T11": 27.719390601176702, + "2024-07-28T13": 27.5594488, + "2024-07-29T09": 28.710226621585885, + "2024-07-29T10": 28.714168757999996, + "2024-07-29T11": 28.687874281, + "2024-07-29T12": 28.5774278, + "2024-07-29T13": 28.538931265, + "2024-07-30": 26.883753302623166, + "2024-07-29T23": 27.166467900000004, + "2024-07-29T18": 27.44451, + "2024-07-29T21": 27.285716968000003, + "2024-07-29T22": 27.349462237523753, + "2024-07-29T17": 27.4039698, + "2024-07-29T15": 27.5128448, + "2024-07-30T01": 27.154024800000002, + "2024-07-29T19": 27.455106479999998, + "2024-07-30T04": 27.164566, + "2024-07-29T14": 28.0657895, + "2024-07-29T20": 27.420229204430033, + "2024-07-30T03": 27.09320642, + "2024-07-30T00": 27.005408300000003, + "2024-07-29T16": 27.321254399999997, + "2024-07-30T02": 26.94461, + "2024-07-30T09": 27.09957800692542, + "2024-07-30T08": 27.192384, + "2024-07-30T06": 27.159223655999998, + "2024-07-30T05": 27.1048491, + "2024-07-30T07": 27.218921239999997, + "2024-07-30T10": 26.97218376, + "2024-07-30T11": 26.994329999999998, + "2024-07-30T12": 26.91831526, + "2024-07-30T13": 26.8806228, + "2024-07-31": 26.20831007116562, + "2024-07-31T00": 26.292441816129827, + "2024-07-31T05": 25.984516657718988, + "2024-07-30T23": 26.330961805999998, + "2024-07-30T19": 26.39885901738477, + "2024-07-30T16": 26.731443199999998, + "2024-07-30T17": 26.6017509, + "2024-07-30T18": 26.5814912, + "2024-07-30T20": 26.31932773535287, + "2024-07-30T15": 26.6609322, + "2024-07-31T03": 26.455243231999997, + "2024-07-30T21": 26.345848297999996, + "2024-07-31T01": 26.452514522, + "2024-07-31T07": 26.362140513555367, + "2024-07-31T06": 26.417836604999998, + "2024-07-31T02": 26.484702, + "2024-07-30T22": 26.330861835, + "2024-07-30T14": 26.658667200000004, + "2024-07-31T04": 26.0245337, + "2024-07-31T08": 26.218293477699326, + "2024-07-31T11": 26.1556065, + "2024-07-31T09": 26.154333260478015, + "2024-07-31T10": 26.10381729441478, + "2024-07-31T12": 26.27327872, + "2024-08-01": 25.30522111484531, + "2024-07-31T14": 26.551146605, + "2024-07-31T23": 25.761353728, + "2024-07-31T13": 26.607488600000003, + "2024-07-31T21": 25.582224184590874, + "2024-08-01T01": 25.7649791, + "2024-07-31T18": 26.628837077383654, + "2024-07-31T19": 26.241075, + "2024-07-31T16": 26.596535026848592, + "2024-08-01T02": 25.529417796, + "2024-07-31T22": 25.74914359004813, + "2024-07-31T20": 25.69097661, + "2024-07-31T17": 26.6995831, + "2024-08-01T00": 25.8114794, + "2024-07-31T15": 26.623180019, + "2024-08-01T07": 25.336993220000004, + "2024-08-01T06": 25.387553999999998, + "2024-08-01T05": 25.1946219, + "2024-08-01T04": 25.2168804, + "2024-08-01T03": 25.428016005, + "2024-08-01T08": 25.35380916, + "2024-08-01T09": 25.405256400000003, + "2024-08-01T10": 25.306580399999998, + "2024-08-01T11": 25.29819075874666, + "2024-08-01T12": 25.590386076, + "2024-08-01T13": 25.645636529648755, + "2024-08-01T14": 25.231402207556755, + "2024-08-01T15": 24.661363150000003, + "2024-08-02": 25.713184251794907, + "2024-08-02T00": 25.716768205133928, + "2024-08-01T20": 24.90004380447581, + "2024-08-01T21": 25.3666412, + "2024-08-02T04": 25.3069497, + "2024-08-01T19": 24.641564430000003, + "2024-08-01T16": 24.412899, + "2024-08-02T02": 25.24601684, + "2024-08-01T17": 24.463068851000003, + "2024-08-01T23": 25.636935456000003, + "2024-08-02T01": 25.497287200000002, + "2024-08-01T22": 25.6586856, + "2024-08-01T18": 24.27564584, + "2024-08-02T03": 25.306696399999996, + "2024-08-02T05": 25.108136899999998, + "2024-08-02T06": 24.8211216, + "2024-08-02T07": 24.883063796054994, + "2024-08-02T08": 24.995503523449628, + "2024-08-02T09": 25.113084158, + "2024-08-02T10": 25.000485180000002, + "2024-08-02T11": 25.028958000000003, + "2024-08-02T12": 24.842598, + "2024-08-02T13": 25.039154214000003, + "2024-08-02T14": 24.52008535548234, + "2024-08-02T15": 23.701819843515054, + "2024-08-03": 23.493124542850115, + "2024-08-02T16": 24.055835145, + "2024-08-02T22": 23.607956214, + "2024-08-02T23": 23.556708768, + "2024-08-03T00": 23.58929230410328, + "2024-08-03T01": 23.251365600000003, + "2024-08-03T03": 23.554336944, + "2024-08-02T19": 23.8439817, + "2024-08-02T18": 23.9703057, + "2024-08-02T21": 23.60637, + "2024-08-02T17": 24.126757785, + "2024-08-02T20": 23.7840471, + "2024-08-03T02": 23.518914000000002, + "2024-08-03T06": 23.756277402, + "2024-08-03T19": 22.577475822, + "2024-08-03T10": 23.8390032, + "2024-08-03T09": 23.5690049, + "2024-08-03T15": 23.62615986, + "2024-08-03T22": 22.60810603, + "2024-08-03T05": 23.673110045948278, + "2024-08-03T08": 23.602583265, + "2024-08-03T14": 24.004087195, + "2024-08-03T18": 22.57398714, + "2024-08-03T17": 22.659773208, + "2024-08-03T21": 22.365618794986098, + "2024-08-03T12": 23.932497468, + "2024-08-03T20": 22.51591801071295, + "2024-08-03T04": 23.665673504, + "2024-08-03T16": 23.088970275, + "2024-08-03T11": 23.927583932, + "2024-08-03T07": 23.751177852244776, + "2024-08-03T13": 23.984979116, + "2024-08-04": 21.8944812687906, + "2024-08-03T23": 22.66130256, + "2024-08-04T17": 21.0025534, + "2024-08-04T13": 22.54073781360924, + "2024-08-04T06": 22.792759722, + "2024-08-04T12": 22.5241323, + "2024-08-04T10": 22.472308320000003, + "2024-08-04T16": 21.424063559999997, + "2024-08-04T15": 21.7554141, + "2024-08-04T00": 22.618977252768648, + "2024-08-04T11": 22.541139683745584, + "2024-08-04T01": 22.615648890000003, + "2024-08-04T03": 22.790461148000002, + "2024-08-04T04": 22.800783033, + "2024-08-04T07": 22.701398268000002, + "2024-08-04T08": 22.521053772000002, + "2024-08-04T18": 20.99001450567247, + "2024-08-04T09": 22.5771237, + "2024-08-04T02": 22.806936188949507, + "2024-08-04T05": 22.796085899999998, + "2024-08-04T14": 21.99435296582719, + "2024-08-05": 18.909465859490513, + "2024-08-05T01": 20.22488459932498, + "2024-08-04T19": 21.432850808867997, + "2024-08-04T22": 21.6479398747641, + "2024-08-05T03": 18.99015217628657, + "2024-08-05T02": 18.96179023067339, + "2024-08-04T23": 21.5780297696509, + "2024-08-05T00": 21.261057778741673, + "2024-08-05T04": 18.714014217629032, + "2024-08-05T06": 18.8506847841314, + "2024-08-04T20": 21.814312240390247, + "2024-08-05T05": 18.925942226279545, + "2024-08-04T21": 21.771870793102664, + "2024-08-05T07": 18.290408556269558, + "2024-08-05T08": 19.06516063979549, + "2024-08-05T09": 18.787233654328936, + "2024-08-05T10": 18.760404254828778, + "2024-08-05T11": 17.985373345157676, + "2024-08-05T12": 18.20278632973935, + "2024-08-05T13": 17.759069635446835, + "2024-08-05T14": 18.923378528556274, + "2024-08-05T15": 19.615699131075992, + "2024-08-06": 20.481628914008898, + "2024-08-05T19": 19.359890956237862, + "2024-08-05T20": 19.594893959264294, + "2024-08-05T21": 19.785862033757997, + "2024-08-06T02": 20.54880558, + "2024-08-05T18": 19.671304051548017, + "2024-08-05T23": 19.666432500000003, + "2024-08-05T16": 19.909317299708572, + "2024-08-06T05": 20.6621835, + "2024-08-05T17": 19.890133176448998, + "2024-08-06T00": 20.288080961864246, + "2024-08-06T04": 20.5192295, + "2024-08-06T03": 20.457975499999996, + "2024-08-05T22": 19.768760118, + "2024-08-06T01": 20.636188999999998, + "2024-08-06T06": 20.8652205, + "2024-08-06T07": 20.897301197489565, + "2024-08-06T08": 20.611948, + "2024-08-06T09": 20.446132000000002, + "2024-08-06T10": 20.444240064000002, + "2024-08-06T11": 20.465115, + "2024-08-06T12": 20.3975443, + "2024-08-06T13": 20.255670000000002, + "2024-08-06T14": 20.2558725 + }, + "USD axelar": { + "2024-06-28": 0.5824822204603167, + "2024-06-30": 0.6154322381352346, + "2024-07-15": 0.7063927108634576, + "2024-07-18": 0.7566549818735421, + "2024-07-14": 0.7015289872133728, + "2024-07-11": 0.6329306737031205, + "2024-07-19": 0.7218726035648234, + "2024-07-12": 0.65855988368868, + "2024-07-24": 0.670046967472742, + "2024-07-08": 0.6472055672559868, + "2024-07-07": 0.673988796703053, + "2024-07-13": 0.7111032774072833, + "2024-07-09": 0.6369443508224494, + "2024-07-02": 0.6308320694809173, + "2024-07-20": 0.7225404109075168, + "2024-06-29": 0.5855668988553794, + "2024-07-21": 0.7571860214826553, + "2024-07-23": 0.7010958101006792, + "2024-07-10": 0.6332867936066074, + "2024-07-01": 0.6400790550050107, + "2024-06-26": 0.5697149144469551, + "2024-07-17": 0.7612915674227054, + "2024-07-22": 0.7344501146635324, + "2024-07-04": 0.5991334623948809, + "2024-06-25": 0.5752173069953298, + "2024-07-26": 0.6546331854366783, + "2024-07-03": 0.6204620468090665, + "2024-07-05": 0.48589065141850674, + "2024-07-25": 0.6446525082238349, + "2024-07-16": 0.7146019603345733, + "2024-07-06": 0.6140431157758963, + "2024-06-27": 0.5733288325988226, + "2024-07-22T13": 0.750527211997889, + "2024-07-25T10": 0.6513854655724187, + "2024-07-26T06": 0.669094987296264, + "2024-07-24T14": 0.6799618822578276, + "2024-07-21T20": 0.7489572784448834, + "2024-07-21T07": 0.7517552974320652, + "2024-07-21T14": 0.7402945723176532, + "2024-07-22T23": 0.7060228477893045, + "2024-07-24T07": 0.6689157652087842, + "2024-07-20T11": 0.7202077675062866, + "2024-07-26T08": 0.6739509194960179, + "2024-07-25T20": 0.6324210100916173, + "2024-07-21T02": 0.7907699596048181, + "2024-07-20T04": 0.7180783439118441, + "2024-07-20T03": 0.7142848589624764, + "2024-07-25T13": 0.6384506701124518, + "2024-07-21T06": 0.76579486929044, + "2024-07-20T12": 0.7106986275114093, + "2024-07-24T02": 0.6621178860432909, + "2024-07-24T17": 0.678037506430802, + "2024-07-25T06": 0.6509270143120498, + "2024-07-25T22": 0.651648666143843, + "2024-07-22T07": 0.7327426462352489, + "2024-07-22T22": 0.7149458955961339, + "2024-07-26T03": 0.6664751366737216, + "2024-07-23T01": 0.6981219929680106, + "2024-07-24T03": 0.669744859348365, + "2024-07-23T21": 0.6723356137574193, + "2024-07-19T20": 0.7151058501499277, + "2024-07-23T22": 0.6693551400069253, + "2024-07-21T23": 0.7605000097175643, + "2024-07-19T16": 0.7208462007924505, + "2024-07-22T20": 0.7284624244762866, + "2024-07-23T10": 0.728252541648745, + "2024-07-19T17": 0.7285972707692082, + "2024-07-22T09": 0.7297735395062189, + "2024-07-24T04": 0.6739472648594906, + "2024-07-22T06": 0.7369100922569041, + "2024-07-24T21": 0.666602621219807, + "2024-07-20T21": 0.7397986972233255, + "2024-07-21T15": 0.7436155557887507, + "2024-07-20T09": 0.7172634401679308, + "2024-07-25T14": 0.6387478065775896, + "2024-07-19T11": 0.7153704961775121, + "2024-07-23T20": 0.6728103724398533, + "2024-07-25T03": 0.6455608053517271, + "2024-07-20T01": 0.7178829039403567, + "2024-07-25T23": 0.6528373444384711, + "2024-07-20T16": 0.7268838853321048, + "2024-07-22T15": 0.7234126408125203, + "2024-07-23T16": 0.6890831868455266, + "2024-07-22T02": 0.7516497742897362, + "2024-07-21T04": 0.7771294145577898, + "2024-07-23T09": 0.7223914250381174, + "2024-07-20T10": 0.7210080520557096, + "2024-07-22T19": 0.7224453970445295, + "2024-07-20T00": 0.7181591452829865, + "2024-07-20T19": 0.7267342547088927, + "2024-07-26T05": 0.6663859032558934, + "2024-07-19T14": 0.7353367579022633, + "2024-07-21T00": 0.7679744788239463, + "2024-07-22T12": 0.7447298282333703, + "2024-07-24T06": 0.6696168384711605, + "2024-07-25T01": 0.654505792303903, + "2024-07-20T22": 0.7591326341756568, + "2024-07-19T15": 0.733640391693899, + "2024-07-21T13": 0.744001578578194, + "2024-07-25T07": 0.6530502284564152, + "2024-07-21T08": 0.753087851700003, + "2024-07-23T06": 0.7048636720810847, + "2024-07-22T16": 0.7293199639365082, + "2024-07-24T11": 0.6791457594962079, + "2024-07-24T01": 0.660317844318297, + "2024-07-23T00": 0.6986819506575196, + "2024-07-19T12": 0.713185507604192, + "2024-07-25T17": 0.6486606349391022, + "2024-07-25T19": 0.6326384779908841, + "2024-07-19T21": 0.7188940505794693, + "2024-07-23T08": 0.7000024143986007, + "2024-07-21T21": 0.759250374934038, + "2024-07-21T11": 0.7516877908791934, + "2024-07-22T14": 0.7368231482346733, + "2024-07-20T23": 0.7457165636609351, + "2024-07-20T08": 0.72111046765779, + "2024-07-20T02": 0.7088646449546191, + "2024-07-24T05": 0.6711237574935107, + "2024-07-24T16": 0.6702216120405557, + "2024-07-21T01": 0.7538330552471069, + "2024-07-24T13": 0.6768533282589398, + "2024-07-25T04": 0.6406774382499287, + "2024-07-19T13": 0.720649712818875, + "2024-07-25T12": 0.6449629162366681, + "2024-07-19T22": 0.7159940104027993, + "2024-07-26T07": 0.6752171561857283, + "2024-07-25T02": 0.6450441079009187, + "2024-07-21T12": 0.7438694688415874, + "2024-07-23T18": 0.6729168791109041, + "2024-07-23T11": 0.7191264093388396, + "2024-07-19T10": 0.7110742937750876, + "2024-07-19T19": 0.7081039394476144, + "2024-07-25T11": 0.6410988706895683, + "2024-07-22T08": 0.7295487561101849, + "2024-07-23T19": 0.6704099605375587, + "2024-07-22T21": 0.7270847782696572, + "2024-07-21T09": 0.754178284115733, + "2024-07-21T22": 0.7584730742110919, + "2024-07-22T04": 0.7479316730856281, + "2024-07-25T16": 0.6447453017786892, + "2024-07-19T23": 0.7196115746441264, + "2024-07-26T09": 0.6767981757025845, + "2024-07-20T06": 0.7224781223582841, + "2024-07-23T02": 0.7110653506287973, + "2024-07-23T14": 0.699345817464779, + "2024-07-23T03": 0.7185689116668609, + "2024-07-25T08": 0.6522964602273277, + "2024-07-24T15": 0.6880619483126266, + "2024-07-19T09": 0.7179886591348917, + "2024-07-20T15": 0.7252525246393761, + "2024-07-23T23": 0.6683204886161924, + "2024-07-23T12": 0.7099304813772865, + "2024-07-22T10": 0.7371510905680793, + "2024-07-21T10": 0.764766403985727, + "2024-07-22T00": 0.7670054590620289, + "2024-07-24T22": 0.6552857961464387, + "2024-07-24T19": 0.663397538894705, + "2024-07-24T09": 0.6757026234432675, + "2024-07-23T04": 0.7220643785201942, + "2024-07-23T05": 0.7108608353251905, + "2024-07-25T18": 0.6495533893616503, + "2024-07-25T15": 0.6474860602863348, + "2024-07-26T01": 0.6570312569782576, + "2024-07-22T01": 0.7639568809941066, + "2024-07-26T02": 0.6577303841281341, + "2024-07-24T18": 0.675980828127755, + "2024-07-21T19": 0.7404314770067585, + "2024-07-25T05": 0.6525959876137427, + "2024-07-22T18": 0.7285161226209096, + "2024-07-24T00": 0.668664020098222, + "2024-07-24T08": 0.6760873124304669, + "2024-07-24T20": 0.6616020453976422, + "2024-07-24T23": 0.649706680588412, + "2024-07-22T17": 0.7241455306430054, + "2024-07-21T17": 0.7534734546539685, + "2024-07-24T12": 0.6810220285645793, + "2024-07-23T13": 0.7066876222904965, + "2024-07-21T05": 0.7722574824145271, + "2024-07-20T05": 0.7287229094612262, + "2024-07-21T03": 0.7901893907924131, + "2024-07-26T00": 0.6535944056583067, + "2024-07-20T20": 0.7304094852423006, + "2024-07-22T03": 0.7517962532029894, + "2024-07-25T21": 0.6423806138996568, + "2024-07-21T16": 0.7430123688348648, + "2024-07-20T17": 0.719414099236016, + "2024-07-22T11": 0.7399715921575793, + "2024-07-25T00": 0.6548348825571904, + "2024-07-20T13": 0.7130228801425709, + "2024-07-23T07": 0.7064569416379737, + "2024-07-22T05": 0.7491610056171432, + "2024-07-20T07": 0.7214617480020062, + "2024-07-21T18": 0.7404248544346334, + "2024-07-23T17": 0.6593933133267517, + "2024-07-20T14": 0.7140461231995767, + "2024-07-26T04": 0.6650309566097186, + "2024-07-24T10": 0.6773643507291139, + "2024-07-20T18": 0.7220090604940118, + "2024-07-23T15": 0.701560245055343, + "2024-07-19T18": 0.7243663709198276, + "2024-07-25T09": 0.6483517704690467, + "latest": 0.48204, + "2024-07-26T10": 0.6787174688858708, + "2024-07-26T11": 0.6721082478066985, + "2024-07-26T12": 0.6774337131935149, + "2024-07-26T13": 0.6728225659667209, + "2024-07-26T14": 0.671039601, + "2024-07-26T17": 0.67748645, + "2024-07-26T16": 0.6779661, + "2024-07-26T15": 0.672746176, + "2024-07-26T18": 0.6788, + "2024-07-27": 0.6812741768093772, + "2024-07-28": 0.6794582438040345, + "2024-07-28T05": 0.657093429, + "2024-07-26T21": 0.6775284602406695, + "2024-07-27T02": 0.6706547376262906, + "2024-07-28T01": 0.680452365, + "2024-07-27T10": 0.675854064, + "2024-07-28T02": 0.6789660500000001, + "2024-07-27T19": 0.6674668250000001, + "2024-07-27T09": 0.676360867, + "2024-07-27T06": 0.6755135099999999, + "2024-07-27T18": 0.6712006650000001, + "2024-07-26T22": 0.6774270960000001, + "2024-07-27T13": 0.6829887769999999, + "2024-07-27T12": 0.676815039, + "2024-07-27T16": 0.66976697, + "2024-07-27T05": 0.6737134739999999, + "2024-07-26T23": 0.681127244, + "2024-07-26T20": 0.6787, + "2024-07-27T08": 0.68063403, + "2024-07-28T03": 0.67348653, + "2024-07-27T01": 0.676227048, + "2024-07-28T09": 0.6669866600000001, + "2024-07-28T10": 0.670379888, + "2024-07-27T00": 0.6775295556643975, + "2024-07-28T00": 0.672493275, + "2024-07-27T04": 0.6686133719999999, + "2024-07-27T14": 0.68286828, + "2024-07-27T07": 0.6801149823152429, + "2024-07-27T11": 0.6738145289999999, + "2024-07-27T22": 0.686638197, + "2024-07-27T03": 0.6670066700000001, + "2024-07-27T20": 0.6681334050000001, + "2024-07-27T23": 0.679352442, + "2024-07-28T08": 0.66848663, + "2024-07-27T21": 0.6812795610000001, + "2024-07-28T07": 0.6693866119999999, + "2024-07-27T15": 0.6736673599999999, + "2024-07-26T19": 0.6792, + "2024-07-28T04": 0.665886682, + "2024-07-28T06": 0.66598668, + "2024-07-27T17": 0.6673800759999999, + "2024-07-29": 0.6652214106065419, + "2024-07-28T20": 0.6610459884975467, + "2024-07-28T16": 0.664293357, + "2024-07-29T07": 0.678977762, + "2024-07-28T23": 0.657286854, + "2024-07-28T15": 0.6612933870000001, + "2024-07-28T18": 0.666626663, + "2024-07-29T04": 0.675318952, + "2024-07-29T06": 0.6821132390472185, + "2024-07-28T21": 0.6576819800680097, + "2024-07-29T03": 0.6826249029999999, + "2024-07-28T12": 0.668679939, + "2024-07-29T05": 0.67641882, + "2024-07-28T17": 0.662027169, + "2024-07-29T00": 0.6667, + "2024-07-29T01": 0.6696, + "2024-07-28T22": 0.654080377, + "2024-07-28T19": 0.665026839, + "2024-07-28T14": 0.6632382923937719, + "2024-07-29T02": 0.674252799, + "2024-07-29T08": 0.67966404, + "2024-07-28T11": 0.6727730879999999, + "2024-07-28T13": 0.668386632, + "2024-07-29T09": 0.677950818, + "2024-07-29T10": 0.6774577039999999, + "2024-07-29T11": 0.6802571159999999, + "2024-07-29T12": 0.6787697436588838, + "2024-07-29T13": 0.6746849187642259, + "2024-07-30": 0.6358533565569068, + "2024-07-29T23": 0.6444323789287896, + "2024-07-29T18": 0.65566884, + "2024-07-29T21": 0.649048072, + "2024-07-29T22": 0.64854982560677, + "2024-07-29T17": 0.656555526, + "2024-07-29T15": 0.657129102, + "2024-07-30T01": 0.645557946, + "2024-07-29T19": 0.6541953119999999, + "2024-07-30T04": 0.64547088, + "2024-07-29T14": 0.666599995, + "2024-07-29T20": 0.6532281369999999, + "2024-07-30T03": 0.6460095459999999, + "2024-07-30T00": 0.638791387, + "2024-07-29T16": 0.65279104, + "2024-07-30T02": 0.6413717, + "2024-07-30T09": 0.641958738, + "2024-07-30T08": 0.641120436, + "2024-07-30T06": 0.643158474, + "2024-07-30T05": 0.641778039, + "2024-07-30T07": 0.6479314939999999, + "2024-07-30T10": 0.6413909449999999, + "2024-07-30T11": 0.6424650539999999, + "2024-07-30T12": 0.6376835488236045, + "2024-07-30T13": 0.63677262, + "2024-07-31": 0.6248874320710626, + "2024-07-31T00": 0.6153461250000001, + "2024-07-31T05": 0.6172641719999999, + "2024-07-30T23": 0.6136219980000001, + "2024-07-30T19": 0.616871673, + "2024-07-30T16": 0.637895808, + "2024-07-30T17": 0.6282051959999999, + "2024-07-30T18": 0.622500736, + "2024-07-30T20": 0.6126161600000001, + "2024-07-30T15": 0.6377830800000001, + "2024-07-31T03": 0.6221693169999999, + "2024-07-30T21": 0.612540698, + "2024-07-31T01": 0.622156871, + "2024-07-31T07": 0.6344681235120616, + "2024-07-31T06": 0.6309169809999999, + "2024-07-31T02": 0.62407516, + "2024-07-30T22": 0.612722259, + "2024-07-30T14": 0.6328734, + "2024-07-31T04": 0.617670262, + "2024-07-31T08": 0.6301428364349274, + "2024-07-31T11": 0.6229580513286666, + "2024-07-31T09": 0.6278433395833208, + "2024-07-31T10": 0.626750290854053, + "2024-07-31T12": 0.626249104, + "2024-08-01": 0.5931851832724223, + "2024-07-31T14": 0.628616995, + "2024-07-31T23": 0.6120040959999999, + "2024-07-31T13": 0.63170296, + "2024-07-31T21": 0.608568656, + "2024-08-01T01": 0.60698748, + "2024-07-31T18": 0.627392892, + "2024-07-31T19": 0.621488622, + "2024-07-31T16": 0.6239565619999999, + "2024-08-01T02": 0.6061846200000001, + "2024-07-31T22": 0.6138096599999999, + "2024-07-31T20": 0.608462607, + "2024-07-31T17": 0.625855821, + "2024-08-01T00": 0.6111982380000001, + "2024-07-31T15": 0.6281423559999999, + "2024-08-01T07": 0.60032973, + "2024-08-01T06": 0.5993002000000001, + "2024-08-01T05": 0.598734549, + "2024-08-01T04": 0.599688, + "2024-08-01T03": 0.603080198, + "2024-08-01T08": 0.6009312093774991, + "2024-08-01T09": 0.601251072, + "2024-08-01T10": 0.5998818939999999, + "2024-08-01T11": 0.60467935, + "2024-08-01T12": 0.6091629574634602, + "2024-08-01T13": 0.609507296, + "2024-08-01T14": 0.5971490920000001, + "2024-08-01T15": 0.5833082, + "2024-08-02": 0.5739058130099075, + "2024-08-02T00": 0.60455541, + "2024-08-01T20": 0.571122583, + "2024-08-01T21": 0.585660696, + "2024-08-02T04": 0.591960825, + "2024-08-01T19": 0.5733686, + "2024-08-01T16": 0.5714996699999999, + "2024-08-02T02": 0.592983655, + "2024-08-01T17": 0.570137814, + "2024-08-01T23": 0.5998416280000001, + "2024-08-02T01": 0.6009646650000001, + "2024-08-01T22": 0.5980346452288704, + "2024-08-01T18": 0.566678176, + "2024-08-02T03": 0.59395306, + "2024-08-02T05": 0.5852440651307158, + "2024-08-02T06": 0.5776620670066661, + "2024-08-02T07": 0.5827189219510794, + "2024-08-02T08": 0.580317936, + "2024-08-02T09": 0.584596814, + "2024-08-02T10": 0.582956616, + "2024-08-02T11": 0.583809188, + "2024-08-02T12": 0.5835853599999999, + "2024-08-02T13": 0.587641282, + "2024-08-02T14": 0.5931444959495004, + "2024-08-02T15": 0.563247476, + "2024-08-03": 0.555054193192222, + "2024-08-02T16": 0.568016775, + "2024-08-02T22": 0.551470606, + "2024-08-02T23": 0.5529316579919968, + "2024-08-03T00": 0.554472688, + "2024-08-03T01": 0.543131126, + "2024-08-03T03": 0.549847460918573, + "2024-08-02T19": 0.5561930879999999, + "2024-08-02T18": 0.5625369, + "2024-08-02T21": 0.5513480999999999, + "2024-08-02T17": 0.5685593550000001, + "2024-08-02T20": 0.5578912349999999, + "2024-08-03T02": 0.5486005666233124, + "2024-08-03T06": 0.554195268, + "2024-08-03T19": 0.515297754, + "2024-08-03T10": 0.546618552, + "2024-08-03T09": 0.5495105000000001, + "2024-08-03T15": 0.5356408800000001, + "2024-08-03T22": 0.527099382, + "2024-08-03T05": 0.5529855039999999, + "2024-08-03T08": 0.5494665000000001, + "2024-08-03T14": 0.5475438650000001, + "2024-08-03T18": 0.51753747, + "2024-08-03T17": 0.519525672, + "2024-08-03T21": 0.5206874, + "2024-08-03T12": 0.550781088, + "2024-08-03T20": 0.5166536100000001, + "2024-08-03T04": 0.553240662, + "2024-08-03T16": 0.5244064, + "2024-08-03T11": 0.5458411080000001, + "2024-08-03T07": 0.556703689, + "2024-08-03T13": 0.547427496, + "2024-08-04": 0.5027429087978499, + "2024-08-03T23": 0.528004152, + "2024-08-04T17": 0.477003758, + "2024-08-04T13": 0.52643665, + "2024-08-04T06": 0.531570222, + "2024-08-04T12": 0.5269364000000001, + "2024-08-04T10": 0.525926376, + "2024-08-04T16": 0.488847776, + "2024-08-04T15": 0.502463124, + "2024-08-04T00": 0.529087654, + "2024-08-04T11": 0.526931128, + "2024-08-04T01": 0.5273316901280675, + "2024-08-04T03": 0.53017109, + "2024-08-04T04": 0.529876578, + "2024-08-04T07": 0.526089424, + "2024-08-04T08": 0.524180055, + "2024-08-04T18": 0.483290496, + "2024-08-04T09": 0.5268994960000001, + "2024-08-04T02": 0.531788727358704, + "2024-08-04T05": 0.530875968, + "2024-08-04T14": 0.508881087, + "2024-08-05": 0.49714777669951604, + "2024-08-05T01": 0.44411783699999996, + "2024-08-04T19": 0.50164905, + "2024-08-04T22": 0.509411448, + "2024-08-05T03": 0.430078495, + "2024-08-05T02": 0.43511296, + "2024-08-04T23": 0.49679623, + "2024-08-05T00": 0.48620746904483975, + "2024-08-05T04": 0.429278535, + "2024-08-05T06": 0.4171107445842134, + "2024-08-04T20": 0.50332881, + "2024-08-05T05": 0.420574764, + "2024-08-04T21": 0.503753869, + "2024-08-05T07": 0.4046603034612994, + "2024-08-05T08": 0.4240925635065045, + "2024-08-05T09": 0.4205213964637967, + "2024-08-05T10": 0.4193050823076186, + "2024-08-05T11": 0.397351649, + "2024-08-05T12": 0.401318595466446, + "2024-08-05T13": 0.3927503878869234, + "2024-08-05T14": 0.41675236741382476, + "2024-08-05T15": 0.4409776409999999, + "2024-08-06": 0.43203782972733856, + "2024-08-05T19": 0.43456507200000005, + "2024-08-05T20": 0.43014301, + "2024-08-05T21": 0.4318777240000001, + "2024-08-06T02": 0.457473774, + "2024-08-05T18": 0.439218548144616, + "2024-08-05T23": 0.43238646000000003, + "2024-08-05T16": 0.44701268999999993, + "2024-08-06T05": 0.465174291, + "2024-08-05T17": 0.44466219600000007, + "2024-08-06T00": 0.45049008, + "2024-08-06T04": 0.46000691, + "2024-08-06T03": 0.45597776199999995, + "2024-08-05T22": 0.43207344, + "2024-08-06T01": 0.4591377, + "2024-08-06T06": 0.470943538, + "2024-08-06T07": 0.46771315799999996, + "2024-08-06T08": 0.46216790199999996, + "2024-08-06T09": 0.4613012410907418, + "2024-08-06T10": 0.464048448, + "2024-08-06T11": 0.46311575000000005, + "2024-08-06T12": 0.462771162, + "2024-08-06T13": 0.4621614783133227, + "2024-08-06T14": 0.4606918143723663 + }, + "USD bitcoin": { + "2024-06-28": 61311.527510495696, + "2024-06-30": 61517.31583746057, + "2024-07-15": 62918.72291156123, + "2024-07-18": 64453.179214728676, + "2024-07-14": 60023.754807284655, + "2024-07-11": 57855.26863420017, + "2024-07-19": 64813.08958160364, + "2024-07-12": 57372.965093057814, + "2024-07-24": 66050.29149692682, + "2024-07-08": 56238.50556639431, + "2024-07-07": 57318.22030555993, + "2024-07-13": 58598.94348023881, + "2024-07-09": 57429.32516577569, + "2024-07-02": 62550.352761322545, + "2024-07-20": 66673.07260644222, + "2024-06-29": 60881.480689498865, + "2024-07-21": 67129.69217291326, + "2024-07-23": 66561.95400859701, + "2024-07-10": 57904.21880821967, + "2024-07-01": 63072.27978516641, + "2024-06-26": 61437.711106278475, + "2024-07-17": 65056.873244147086, + "2024-07-22": 67533.13849623637, + "2024-07-04": 58122.41239169103, + "2024-06-25": 61308.22627108405, + "2024-07-26": 67284.40835796585, + "2024-07-03": 60337.67841297836, + "2024-07-05": 55505.174315626085, + "2024-07-25": 64335.36639026953, + "2024-07-16": 64391.64718828868, + "2024-07-06": 56760.395523508574, + "2024-06-27": 61283.47280746795, + "2024-07-22T13": 67628.91276167128, + "2024-07-25T10": 64048.99229720062, + "2024-07-26T06": 66997.99865983859, + "2024-07-24T14": 66811.34279904906, + "2024-07-21T20": 67948.02485108844, + "2024-07-21T07": 66729.90673332855, + "2024-07-21T14": 67154.96961316714, + "2024-07-22T23": 67506.87164009543, + "2024-07-24T07": 65992.7880005184, + "2024-07-20T11": 66543.10943577011, + "2024-07-26T08": 67061.11888365335, + "2024-07-25T20": 64727.44521138842, + "2024-07-21T02": 67329.69242292008, + "2024-07-20T04": 66658.58056582199, + "2024-07-20T03": 66676.80254856613, + "2024-07-25T13": 64064.86474300439, + "2024-07-21T06": 66771.21256953028, + "2024-07-20T12": 66548.06786851482, + "2024-07-24T02": 65631.23490483174, + "2024-07-24T17": 66541.70973510381, + "2024-07-25T06": 64194.540513173604, + "2024-07-25T22": 65815.71168173716, + "2024-07-22T07": 67283.59523844204, + "2024-07-22T22": 67656.43666963381, + "2024-07-26T03": 67117.18620237573, + "2024-07-23T01": 67368.10292016636, + "2024-07-24T03": 65990.86003608968, + "2024-07-23T21": 65934.51495726561, + "2024-07-19T20": 66994.56222758228, + "2024-07-23T22": 65922.58847180157, + "2024-07-21T23": 68080.28276818439, + "2024-07-19T16": 66296.9046212272, + "2024-07-22T20": 68066.21609813915, + "2024-07-23T10": 66930.26590387155, + "2024-07-19T17": 66523.49125780162, + "2024-07-22T09": 67280.47004334268, + "2024-07-24T04": 65929.92606959782, + "2024-07-22T06": 67479.0199717702, + "2024-07-24T21": 65642.12521761615, + "2024-07-20T21": 67056.3808973556, + "2024-07-21T15": 67213.77811559766, + "2024-07-20T09": 66619.89638448371, + "2024-07-25T14": 64181.647840557576, + "2024-07-19T11": 64025.02692493132, + "2024-07-23T20": 65738.72383559431, + "2024-07-25T03": 64091.78522017692, + "2024-07-20T01": 66554.78531057478, + "2024-07-25T23": 65693.64345593224, + "2024-07-20T16": 66839.14749299623, + "2024-07-22T15": 66849.91766335229, + "2024-07-23T16": 66317.29862847737, + "2024-07-22T02": 68113.33974646055, + "2024-07-21T04": 67143.78226503801, + "2024-07-23T09": 66980.87276325359, + "2024-07-20T10": 66564.6667171204, + "2024-07-22T19": 67803.61707431526, + "2024-07-20T00": 66536.08083546597, + "2024-07-20T19": 67390.89823754482, + "2024-07-26T05": 66933.40827915278, + "2024-07-19T14": 65597.68539612243, + "2024-07-21T00": 67121.94017515097, + "2024-07-22T12": 67615.74738292661, + "2024-07-24T06": 65883.24342068858, + "2024-07-25T01": 64417.900627538926, + "2024-07-20T22": 67132.42569568084, + "2024-07-19T15": 65661.19051846102, + "2024-07-21T13": 66785.27818554288, + "2024-07-25T07": 64236.043896750336, + "2024-07-21T08": 66828.12206949393, + "2024-07-23T06": 66626.40750519653, + "2024-07-22T16": 67068.0780733138, + "2024-07-24T11": 66438.361540791, + "2024-07-24T01": 65879.09011325627, + "2024-07-23T00": 67623.44496822148, + "2024-07-19T12": 64189.52498066017, + "2024-07-25T17": 64899.76540916709, + "2024-07-25T19": 64702.24539661625, + "2024-07-19T21": 67094.78577078202, + "2024-07-23T08": 66770.37268687712, + "2024-07-21T21": 67852.31466069678, + "2024-07-21T11": 66838.04418082537, + "2024-07-22T14": 67005.42925113876, + "2024-07-20T23": 67167.37805072304, + "2024-07-20T08": 66579.56475131627, + "2024-07-20T02": 66572.75622239005, + "2024-07-24T05": 65758.0809901752, + "2024-07-24T16": 66297.02927636032, + "2024-07-21T01": 67232.36379946426, + "2024-07-24T13": 66637.04945160485, + "2024-07-25T04": 64110.23208511392, + "2024-07-19T13": 64610.827121723, + "2024-07-25T12": 64128.87273785187, + "2024-07-19T22": 66951.33988707908, + "2024-07-26T07": 66982.95524349359, + "2024-07-25T02": 64223.04076831951, + "2024-07-21T12": 66944.7172211392, + "2024-07-23T18": 65913.09875291643, + "2024-07-23T11": 66692.60188454595, + "2024-07-19T10": 64018.34509116235, + "2024-07-19T19": 67118.41308594143, + "2024-07-25T11": 64187.976031829676, + "2024-07-22T08": 67233.58130541297, + "2024-07-23T19": 65827.26952644454, + "2024-07-22T21": 67866.64792927989, + "2024-07-21T09": 66931.33366457584, + "2024-07-21T22": 68064.86671227212, + "2024-07-22T04": 67914.88786474013, + "2024-07-25T16": 64879.77304225102, + "2024-07-19T23": 66763.14246843866, + "2024-07-20T06": 66609.73876877593, + "2024-07-23T02": 67512.01304491486, + "2024-07-23T14": 66900.36113132093, + "2024-07-23T03": 67589.86069333862, + "2024-07-25T08": 64062.8998347277, + "2024-07-24T15": 66382.64288456031, + "2024-07-19T09": 63883.8441028096, + "2024-07-20T15": 66692.30164185756, + "2024-07-23T23": 65939.49419464331, + "2024-07-23T12": 66513.56894665536, + "2024-07-22T10": 67421.95464950359, + "2024-07-21T10": 66938.29466569, + "2024-07-22T00": 68226.14624695285, + "2024-07-24T22": 65428.93893461924, + "2024-07-24T19": 65859.15663302771, + "2024-07-24T09": 66391.05575525979, + "2024-07-23T04": 67281.89344327885, + "2024-07-23T05": 66487.73637915245, + "2024-07-25T18": 64880.94906353305, + "2024-07-25T15": 64723.139309979095, + "2024-07-26T01": 66367.94781024253, + "2024-07-22T01": 67942.80926526313, + "2024-07-26T02": 66789.4038809345, + "2024-07-24T18": 66195.62894796414, + "2024-07-21T19": 67314.91889743779, + "2024-07-25T05": 64233.92985692716, + "2024-07-22T18": 67479.10956426164, + "2024-07-24T00": 65930.87536714462, + "2024-07-24T08": 66273.81476356288, + "2024-07-24T20": 65900.50399003022, + "2024-07-24T23": 65340.56283112412, + "2024-07-22T17": 67304.03758901956, + "2024-07-21T17": 67391.4265635562, + "2024-07-24T12": 66403.5955979392, + "2024-07-23T13": 66408.48865232042, + "2024-07-21T05": 67069.69001313012, + "2024-07-20T05": 66551.10929823742, + "2024-07-21T03": 67266.65522705583, + "2024-07-26T00": 66047.64049005155, + "2024-07-20T20": 67365.47729003987, + "2024-07-22T03": 67976.73569278794, + "2024-07-25T21": 65565.67776473267, + "2024-07-21T16": 67188.3983728172, + "2024-07-20T17": 67340.63974054392, + "2024-07-22T11": 67429.1755878335, + "2024-07-25T00": 65491.477083066544, + "2024-07-20T13": 66483.06957593463, + "2024-07-23T07": 66521.48438342776, + "2024-07-22T05": 67704.92050371373, + "2024-07-20T07": 66655.65106266059, + "2024-07-21T18": 66749.16554255181, + "2024-07-23T17": 65912.8654599753, + "2024-07-20T14": 66624.75722734288, + "2024-07-26T04": 66963.81355493434, + "2024-07-24T10": 66467.98297656208, + "2024-07-20T18": 67418.59922779456, + "2024-07-23T15": 66625.82290450935, + "2024-07-19T18": 66602.67611449021, + "2024-07-25T09": 64323.37945224032, + "latest": 56070, + "2024-07-26T09": 67286.51314064402, + "2024-07-26T10": 67283.82338009926, + "2024-07-26T11": 67224.03310000923, + "2024-07-26T12": 67236.46716709292, + "2024-07-26T13": 67499.76075810676, + "2024-07-26T14": 67346.72308089165, + "2024-07-26T17": 67385.01089876627, + "2024-07-26T16": 67581.40179376012, + "2024-07-26T15": 67535.04068318052, + "2024-07-26T18": 67482.56797673964, + "2024-07-27": 68238.40854362202, + "2024-07-28": 67857.96578916008, + "2024-07-28T05": 67302.45391583753, + "2024-07-26T21": 67930.27817028062, + "2024-07-27T02": 67818.10498769657, + "2024-07-28T01": 68116.48908859315, + "2024-07-27T10": 68180.22260668286, + "2024-07-28T02": 68082.16542099738, + "2024-07-27T19": 68275.68937336556, + "2024-07-27T09": 68138.64240319181, + "2024-07-27T06": 67956.88406972215, + "2024-07-27T18": 68789.46747323089, + "2024-07-26T22": 67943.69252593594, + "2024-07-27T13": 68872.19802251406, + "2024-07-27T12": 68383.11410974067, + "2024-07-27T16": 68853.89444376054, + "2024-07-27T05": 67927.51183871564, + "2024-07-26T23": 67898.34069559822, + "2024-07-26T20": 67770.58948418811, + "2024-07-27T08": 68014.04052319308, + "2024-07-28T03": 68046.9510064338, + "2024-07-27T01": 67762.8071560712, + "2024-07-28T09": 67442.58926758438, + "2024-07-28T10": 67422.00552025615, + "2024-07-27T00": 67874.00564872289, + "2024-07-28T00": 67824.96135937901, + "2024-07-27T04": 67837.37105947634, + "2024-07-27T14": 69039.70078493393, + "2024-07-27T07": 68169.74342168549, + "2024-07-27T11": 68161.3479815227, + "2024-07-27T22": 68692.47961968383, + "2024-07-27T03": 67832.91113944247, + "2024-07-27T20": 67599.69076477835, + "2024-07-27T23": 68127.99364557184, + "2024-07-28T08": 67410.535461799, + "2024-07-27T21": 68714.98166470094, + "2024-07-28T07": 67404.46474314194, + "2024-07-27T15": 68820.50942504022, + "2024-07-26T19": 67844.36701470759, + "2024-07-28T04": 67762.32229647663, + "2024-07-28T06": 67484.15982155013, + "2024-07-27T17": 68564.72348371537, + "2024-07-29": 68859.9836686864, + "2024-07-28T20": 68133.20270544798, + "2024-07-28T16": 67651.62436971924, + "2024-07-29T07": 69566.4759172011, + "2024-07-28T23": 68008.48886398134, + "2024-07-28T15": 67741.76931195756, + "2024-07-28T18": 68000.28867184075, + "2024-07-29T04": 69335.32910163881, + "2024-07-29T06": 69679.01090304222, + "2024-07-28T21": 68002.19483552892, + "2024-07-29T03": 69565.82280519971, + "2024-07-28T12": 67872.36805510709, + "2024-07-29T05": 69392.28055209857, + "2024-07-28T17": 67697.16853181255, + "2024-07-29T00": 68261.03933242228, + "2024-07-29T01": 68715.29194973854, + "2024-07-28T22": 68018.179017321, + "2024-07-28T19": 68252.0075225683, + "2024-07-28T14": 67994.07841770815, + "2024-07-29T02": 68537.06385147007, + "2024-07-29T08": 69531.39292612123, + "2024-07-28T11": 67569.94375621696, + "2024-07-28T13": 67993.69832667381, + "2024-07-29T09": 69492.52427079252, + "2024-07-29T10": 69506.51610571225, + "2024-07-29T11": 69727.03567549569, + "2024-07-29T12": 69666.97207113433, + "2024-07-29T13": 69611.08975975988, + "2024-07-30": 66369.98506197213, + "2024-07-29T23": 66903.88544340516, + "2024-07-29T18": 67335.32413699478, + "2024-07-29T21": 67276.25230796503, + "2024-07-29T22": 67382.42067104254, + "2024-07-29T17": 66940.34640960376, + "2024-07-29T15": 67980.28192431608, + "2024-07-30T01": 66592.71990204393, + "2024-07-29T19": 67411.46217689053, + "2024-07-30T04": 66656.23015026264, + "2024-07-29T14": 68783.306151586, + "2024-07-29T20": 67289.16425729332, + "2024-07-30T03": 66537.67295674396, + "2024-07-30T00": 66392.80298757691, + "2024-07-29T16": 67179.98896918827, + "2024-07-30T02": 66289.84022953823, + "2024-07-30T09": 66745.52011719484, + "2024-07-30T08": 66842.15975571674, + "2024-07-30T06": 66642.55142596006, + "2024-07-30T05": 66527.75710840621, + "2024-07-30T07": 66899.58152283874, + "2024-07-30T10": 66550.00779354645, + "2024-07-30T11": 66555.14228860867, + "2024-07-30T12": 66508.64851359202, + "2024-07-30T13": 66649.98503291568, + "2024-07-31": 66191.9479518304, + "2024-07-31T00": 66133.64689465435, + "2024-07-31T05": 65806.73277776419, + "2024-07-30T23": 66191.89419338194, + "2024-07-30T19": 65768.37459456315, + "2024-07-30T16": 66279.75731214303, + "2024-07-30T17": 65879.05045997509, + "2024-07-30T18": 65811.9223890408, + "2024-07-30T20": 66003.02246496353, + "2024-07-30T15": 66045.40181952284, + "2024-07-31T03": 66091.51654524117, + "2024-07-30T21": 66104.41147910434, + "2024-07-31T01": 66281.51599139815, + "2024-07-31T07": 66353.94640156376, + "2024-07-31T06": 66385.86906377226, + "2024-07-31T02": 66180.51202205877, + "2024-07-30T22": 66226.93650845715, + "2024-07-30T14": 66145.94636140573, + "2024-07-31T04": 65764.54210829177, + "2024-07-31T08": 66249.15578393213, + "2024-07-31T11": 66054.11681747033, + "2024-07-31T09": 66278.01661150403, + "2024-07-31T10": 66066.58066335593, + "2024-07-31T12": 66091.33498747593, + "2024-08-01": 64199.960797901476, + "2024-07-31T14": 66360.47689356093, + "2024-07-31T23": 64722.83882123218, + "2024-07-31T13": 66463.32222498968, + "2024-07-31T21": 64826.54705327675, + "2024-08-01T01": 64395.57078080071, + "2024-07-31T18": 66398.62205926703, + "2024-07-31T19": 65706.25937174814, + "2024-07-31T16": 66420.44334493934, + "2024-08-01T02": 64017.026340734505, + "2024-07-31T22": 64852.78161306262, + "2024-07-31T20": 64748.87343985227, + "2024-07-31T17": 66526.22249809223, + "2024-08-01T00": 64631.517541440575, + "2024-07-31T15": 66415.82271352423, + "2024-08-01T07": 64206.02247457189, + "2024-08-01T06": 64223.44604151243, + "2024-08-01T05": 64087.18203308074, + "2024-08-01T04": 63827.82608524254, + "2024-08-01T03": 63930.5109120194, + "2024-08-01T08": 64299.749855350165, + "2024-08-01T09": 64481.80674403229, + "2024-08-01T10": 64418.25186559839, + "2024-08-01T11": 64538.36533270046, + "2024-08-01T12": 64632.89825538767, + "2024-08-01T13": 64863.734243143386, + "2024-08-01T14": 64660.5872814565, + "2024-08-01T15": 62984.57126943765, + "2024-08-02": 65357.52960767435, + "2024-08-02T00": 65165.93225668022, + "2024-08-01T20": 63809.890125008846, + "2024-08-01T21": 64806.508195887676, + "2024-08-02T04": 64584.560832841235, + "2024-08-01T19": 63236.52581262726, + "2024-08-01T16": 62876.48139679798, + "2024-08-02T02": 64176.822236226915, + "2024-08-01T17": 62613.96309793828, + "2024-08-01T23": 65067.5339623561, + "2024-08-02T01": 64685.00509072468, + "2024-08-01T22": 65329.68732233156, + "2024-08-01T18": 62992.315648179545, + "2024-08-02T03": 64371.36746356324, + "2024-08-02T05": 64447.55138707363, + "2024-08-02T06": 64124.32732725874, + "2024-08-02T07": 64411.68863452723, + "2024-08-02T08": 64169.0281050557, + "2024-08-02T09": 64554.52712942659, + "2024-08-02T10": 64475.76152176985, + "2024-08-02T11": 64704.77178858918, + "2024-08-02T12": 64519.6845314868, + "2024-08-02T13": 64784.725966168204, + "2024-08-02T14": 65179.60582920067, + "2024-08-02T15": 63113.584090465025, + "2024-08-03": 61347.79155176474, + "2024-08-02T16": 63333.82940591962, + "2024-08-02T22": 62014.16606069845, + "2024-08-02T23": 61252.317738994185, + "2024-08-03T00": 61462.846215832105, + "2024-08-03T01": 61099.737065772824, + "2024-08-03T03": 61662.08408689793, + "2024-08-02T19": 62898.28931385637, + "2024-08-02T18": 63045.10495467909, + "2024-08-02T21": 62566.2005220767, + "2024-08-02T17": 63249.65469527216, + "2024-08-02T20": 62604.54213802363, + "2024-08-03T02": 61294.18015985263, + "2024-08-03T06": 61674.14230735263, + "2024-08-03T19": 60133.82860824632, + "2024-08-03T10": 61700.11971900606, + "2024-08-03T09": 61537.632582581085, + "2024-08-03T15": 61389.16689873711, + "2024-08-03T22": 60595.3449303109, + "2024-08-03T05": 61543.51016551883, + "2024-08-03T08": 61552.34006025882, + "2024-08-03T14": 62021.05500774619, + "2024-08-03T18": 60445.38666699607, + "2024-08-03T17": 60655.845094735785, + "2024-08-03T21": 60416.23634084951, + "2024-08-03T12": 61967.93459979107, + "2024-08-03T20": 60430.09496156183, + "2024-08-03T04": 61712.36136026193, + "2024-08-03T16": 60789.17957565663, + "2024-08-03T11": 61850.96803471296, + "2024-08-03T07": 61688.84480849361, + "2024-08-03T13": 61890.588179034494, + "2024-08-04": 59622.37579724586, + "2024-08-03T23": 60662.06760926121, + "2024-08-04T17": 58154.01551248308, + "2024-08-04T13": 60877.28443725242, + "2024-08-04T06": 60758.76098659194, + "2024-08-04T12": 60908.34130893148, + "2024-08-04T10": 60636.91576661131, + "2024-08-04T16": 58943.53289145042, + "2024-08-04T15": 59277.9732124636, + "2024-08-04T00": 60693.19017353672, + "2024-08-04T11": 60839.29750537484, + "2024-08-04T01": 60535.53945246915, + "2024-08-04T03": 60721.80455615035, + "2024-08-04T04": 60679.77269485913, + "2024-08-04T07": 60439.1130422479, + "2024-08-04T08": 60398.98469460404, + "2024-08-04T18": 57857.795300133206, + "2024-08-04T09": 60616.94676211678, + "2024-08-04T02": 60864.131819823044, + "2024-08-04T05": 60699.244808986485, + "2024-08-04T14": 59979.296437007164, + "2024-08-05": 53438.27154469499, + "2024-08-05T01": 55963.139191813796, + "2024-08-04T19": 58760.78329650206, + "2024-08-04T22": 58578.12092744931, + "2024-08-05T03": 54425.23696422312, + "2024-08-05T02": 54359.5357154989, + "2024-08-04T23": 58679.976186931264, + "2024-08-05T00": 58163.74245899074, + "2024-08-05T04": 53771.510903360184, + "2024-08-05T06": 52704.295260273255, + "2024-08-04T20": 59176.337764402015, + "2024-08-05T05": 53489.784003749664, + "2024-08-04T21": 59126.91129053192, + "2024-08-05T07": 51631.72668698442, + "2024-08-05T08": 52675.12807997217, + "2024-08-05T09": 52561.9570035417, + "2024-08-05T10": 52610.72506406195, + "2024-08-05T11": 51280.89756610801, + "2024-08-05T12": 51360.10415050089, + "2024-08-05T13": 49665.37783856012, + "2024-08-05T14": 52055.97671736185, + "2024-08-05T15": 54394.87853390949, + "2024-08-06": 55766.91021260364, + "2024-08-05T19": 52971.578637186394, + "2024-08-05T20": 53680.24194216028, + "2024-08-05T21": 54582.97144712701, + "2024-08-06T02": 55766.21768528761, + "2024-08-05T18": 54680.728122230335, + "2024-08-05T23": 54694.5295305891, + "2024-08-05T16": 54358.69884820695, + "2024-08-06T05": 55554.389209261484, + "2024-08-05T17": 54306.83792146313, + "2024-08-06T00": 54052.37447235508, + "2024-08-06T04": 55646.715638810834, + "2024-08-06T03": 55954.24135811321, + "2024-08-05T22": 54367.72368238622, + "2024-08-06T01": 56119.23695012546, + "2024-08-06T06": 55855.47084128666, + "2024-08-06T07": 55826.52827242657, + "2024-08-06T08": 56002.805480190815, + "2024-08-06T09": 54939.120121597116, + "2024-08-06T10": 55226.44878623311, + "2024-08-06T11": 55119.45162161754, + "2024-08-06T12": 55264.22744628101, + "2024-08-06T13": 54822.41810694833, + "2024-08-06T14": 55181.77127493169 + }, + "USD bitcoin_cash": { + "2024-06-28": 390.94046569825286, + "2024-06-30": 388.42940959978614, + "2024-07-15": 386.6743489777782, + "2024-07-18": 380.4626661510061, + "2024-07-14": 377.2017596412097, + "2024-07-11": 346.67903372401804, + "2024-07-19": 380.9040438628712, + "2024-07-12": 350.44036139678786, + "2024-07-24": 368.10336811479067, + "2024-07-08": 326.97292835494596, + "2024-07-07": 327.6582006438815, + "2024-07-13": 374.7671144000141, + "2024-07-09": 333.27700870057606, + "2024-07-02": 384.2737156556451, + "2024-07-20": 392.4725194122764, + "2024-06-29": 383.07158225543463, + "2024-07-21": 393.96561211268767, + "2024-07-23": 377.7830438334136, + "2024-07-10": 338.2988139876674, + "2024-07-01": 389.38867826042264, + "2024-06-26": 377.9071596390426, + "2024-07-17": 381.68636258896674, + "2024-07-22": 391.9837936539782, + "2024-07-04": 345.6916116005983, + "2024-06-25": 379.48876404967905, + "2024-07-26": 373.17382767214775, + "2024-07-03": 373.8323762524468, + "2024-07-05": 311.4792529375491, + "2024-07-25": 353.3788715362961, + "2024-07-16": 386.653667416984, + "2024-07-06": 328.893371973096, + "2024-06-27": 379.4351516151743, + "2024-07-22T13": 389.55453, + "2024-07-25T10": 351.173532, + "2024-07-26T06": 371.22574000000003, + "2024-07-24T14": 373.15596500000004, + "2024-07-21T20": 395.6407484, + "2024-07-21T07": 391.51350599999995, + "2024-07-21T14": 391.13294, + "2024-07-22T23": 385.61564999999996, + "2024-07-24T07": 370.488885, + "2024-07-20T11": 389.69085500000006, + "2024-07-26T08": 372.94032, + "2024-07-25T20": 351.115712, + "2024-07-21T02": 395.61074, + "2024-07-20T04": 390.983676, + "2024-07-20T03": 389.075005, + "2024-07-25T13": 349.987968, + "2024-07-21T06": 392.61382499999996, + "2024-07-20T12": 389.3604917018893, + "2024-07-24T02": 365.403654, + "2024-07-24T17": 369.196308, + "2024-07-25T06": 352.30837599999995, + "2024-07-25T22": 361.30965, + "2024-07-22T07": 388.45826, + "2024-07-22T22": 389.32843599999995, + "2024-07-26T03": 367.541184, + "2024-07-23T01": 390.83908, + "2024-07-24T03": 367.42204399999997, + "2024-07-23T21": 366.35494500000004, + "2024-07-19T20": 395.77802, + "2024-07-23T22": 365.665808, + "2024-07-21T23": 400.33202400000005, + "2024-07-19T16": 387.5775, + "2024-07-22T20": 395.74206077550247, + "2024-07-23T10": 383.09616900000003, + "2024-07-19T17": 388.25046599999996, + "2024-07-22T09": 387.4, + "2024-07-24T04": 369.11107300000003, + "2024-07-22T06": 390.92345399999994, + "2024-07-24T21": 362.46375, + "2024-07-20T21": 395.08165399999996, + "2024-07-21T15": 394.33008599999994, + "2024-07-20T09": 391.81538000000006, + "2024-07-25T14": 352.87291999999997, + "2024-07-19T11": 373.221607, + "2024-07-23T20": 366.27324, + "2024-07-25T03": 351.0780556069087, + "2024-07-20T01": 387.1935, + "2024-07-25T23": 361.687842, + "2024-07-20T16": 396.2947560005417, + "2024-07-22T15": 388.78704595447056, + "2024-07-23T16": 373.163427, + "2024-07-22T02": 399.9, + "2024-07-21T04": 395.81079600000004, + "2024-07-23T09": 383.8, + "2024-07-20T10": 391.78013599999997, + "2024-07-22T19": 395.506758, + "2024-07-20T00": 388.29405, + "2024-07-20T19": 396.5823439999999, + "2024-07-26T05": 369.529776, + "2024-07-19T14": 383.9, + "2024-07-21T00": 395.11454999999995, + "2024-07-22T12": 390.93127200000004, + "2024-07-24T06": 369.00369, + "2024-07-25T01": 354.65743599999996, + "2024-07-20T22": 396.05902103598646, + "2024-07-19T15": 383.107662, + "2024-07-21T13": 389.420683, + "2024-07-25T07": 352.91175, + "2024-07-21T08": 392.913912, + "2024-07-23T06": 376.35644500000006, + "2024-07-22T16": 392.0415087707574, + "2024-07-24T11": 372.2, + "2024-07-24T01": 366.00732, + "2024-07-23T00": 387.11609999999996, + "2024-07-19T12": 374.8637615, + "2024-07-25T17": 356.725072, + "2024-07-25T19": 352.34865153772773, + "2024-07-19T21": 395.701705, + "2024-07-23T08": 381.311439, + "2024-07-21T21": 396.97541099999995, + "2024-07-21T11": 393.30616399999997, + "2024-07-22T14": 387.75815500000004, + "2024-07-20T23": 395.01452099999995, + "2024-07-20T08": 392.09594999999996, + "2024-07-20T02": 387.474285, + "2024-07-24T05": 366.72933600000005, + "2024-07-24T16": 367.73309299999994, + "2024-07-21T01": 394.946076, + "2024-07-24T13": 371.8, + "2024-07-25T04": 351.7438957555006, + "2024-07-19T13": 379.32412, + "2024-07-25T12": 351.26998199999997, + "2024-07-19T22": 391.2916390000001, + "2024-07-26T07": 372.47179065457016, + "2024-07-25T02": 352.82941999999997, + "2024-07-21T12": 392.61775, + "2024-07-23T18": 365.84023800000006, + "2024-07-23T11": 381.00762, + "2024-07-19T10": 371.521964, + "2024-07-19T19": 396.45852, + "2024-07-25T11": 352.362525, + "2024-07-22T08": 388.03104, + "2024-07-23T19": 366.720978, + "2024-07-22T21": 391.81359299999997, + "2024-07-21T09": 394.910544, + "2024-07-21T22": 399.43994, + "2024-07-22T04": 400.33202400000005, + "2024-07-25T16": 355.42179, + "2024-07-19T23": 391.09544999999997, + "2024-07-20T06": 392.55695999999995, + "2024-07-23T02": 388.331064, + "2024-07-23T14": 382.0931719881183, + "2024-07-23T03": 385.526985, + "2024-07-25T08": 353.397485, + "2024-07-24T15": 368.670034, + "2024-07-19T09": 373.72524000000004, + "2024-07-20T15": 396.12276, + "2024-07-23T23": 366.73300299999994, + "2024-07-23T12": 379.7887833276799, + "2024-07-22T10": 389.10389100000003, + "2024-07-21T10": 395.206677, + "2024-07-22T00": 403.22016, + "2024-07-24T22": 362.13480400000003, + "2024-07-24T19": 364.896351, + "2024-07-24T09": 373.7, + "2024-07-23T04": 380.23802, + "2024-07-23T05": 374.122446, + "2024-07-25T18": 355.107648, + "2024-07-25T15": 354.98224181363133, + "2024-07-26T01": 364.62706, + "2024-07-22T01": 400.94810799999993, + "2024-07-26T02": 365.52688, + "2024-07-24T18": 365.93658999999997, + "2024-07-21T19": 387.75116399999996, + "2024-07-25T05": 353.115232, + "2024-07-22T18": 395.67912, + "2024-07-24T00": 366.332967, + "2024-07-24T08": 372.99627000000004, + "2024-07-24T20": 365.496345, + "2024-07-24T23": 361.035002, + "2024-07-22T17": 395.355342, + "2024-07-21T17": 390.36881373401616, + "2024-07-24T12": 371.01113, + "2024-07-23T13": 378.660576, + "2024-07-21T05": 394.010292, + "2024-07-20T05": 390.487344, + "2024-07-21T03": 396.11088, + "2024-07-26T00": 365.22328699999997, + "2024-07-20T20": 397.45892, + "2024-07-22T03": 401.316052, + "2024-07-25T21": 358.01763700000004, + "2024-07-21T16": 393.54555799999997, + "2024-07-20T17": 397.25884, + "2024-07-22T11": 389.7616925, + "2024-07-25T00": 363.43457, + "2024-07-20T13": 389.863674, + "2024-07-23T07": 376.43764, + "2024-07-22T05": 396.9561246000567, + "2024-07-20T07": 393.076805, + "2024-07-21T18": 384.9100193757061, + "2024-07-23T17": 364.83648, + "2024-07-20T14": 393.40943880000003, + "2024-07-26T04": 368.848354, + "2024-07-24T10": 373.2, + "2024-07-20T18": 396.7983, + "2024-07-23T15": 379.916159991988, + "2024-07-19T18": 388.4552989276054, + "2024-07-25T09": 353.37273999999996, + "latest": 321.44, + "2024-07-26T09": 375.8923272, + "2024-07-26T10": 375.598561, + "2024-07-26T11": 373.01045600000003, + "2024-07-26T12": 372.736624, + "2024-07-26T13": 373.640208, + "2024-07-26T14": 372.666457, + "2024-07-26T17": 376.192476, + "2024-07-26T16": 376.78116, + "2024-07-26T15": 375.76993600000003, + "2024-07-26T18": 375.41224798598466, + "2024-07-27": 389.9174235966979, + "2024-07-28": 397.1106696333456, + "2024-07-28T05": 390.896091, + "2024-07-26T21": 375.5, + "2024-07-27T02": 378.71136099999995, + "2024-07-28T01": 395.97228, + "2024-07-27T10": 381.630528, + "2024-07-28T02": 395.480225, + "2024-07-27T19": 392.4981, + "2024-07-27T09": 381.134299, + "2024-07-27T06": 381.30762599999997, + "2024-07-27T18": 393.33073947933894, + "2024-07-26T22": 377.31509200000005, + "2024-07-27T13": 387.25033599999995, + "2024-07-27T12": 384.165297, + "2024-07-27T16": 396.13961, + "2024-07-27T05": 382.00764, + "2024-07-26T23": 377.20609653739825, + "2024-07-26T20": 375, + "2024-07-27T08": 381.8190900000001, + "2024-07-28T03": 396.4320712, + "2024-07-27T01": 379.415176, + "2024-07-28T09": 394.69210599999997, + "2024-07-28T10": 394.98815, + "2024-07-27T00": 378.815152, + "2024-07-28T00": 391.39608599999997, + "2024-07-27T04": 381.107622, + "2024-07-27T14": 392.0392, + "2024-07-27T07": 383.3, + "2024-07-27T11": 382.06494, + "2024-07-27T22": 396.47431409999996, + "2024-07-27T03": 379.60379600000005, + "2024-07-27T20": 389.19945900000005, + "2024-07-27T23": 392.97249, + "2024-07-28T08": 395.392092, + "2024-07-27T21": 392.888213, + "2024-07-28T07": 394.69210599999997, + "2024-07-27T15": 394.43944, + "2024-07-26T19": 375, + "2024-07-28T04": 396.59206800000004, + "2024-07-28T06": 394.89210199999997, + "2024-07-27T17": 394.347316, + "2024-07-29": 444.9589733496396, + "2024-07-28T20": 415.854251, + "2024-07-28T16": 401.8321789795817, + "2024-07-29T07": 449.619054, + "2024-07-28T23": 416.191676, + "2024-07-28T15": 399.29600700000003, + "2024-07-28T18": 414.25442699999996, + "2024-07-29T04": 429.44846, + "2024-07-29T06": 449.24713666409656, + "2024-07-28T21": 415.45845, + "2024-07-29T03": 427.053019, + "2024-07-28T12": 393.88818299999997, + "2024-07-29T05": 439.44725999999997, + "2024-07-28T17": 403.7257755806021, + "2024-07-29T00": 418.3, + "2024-07-29T01": 417.5, + "2024-07-28T22": 415.687529, + "2024-07-28T19": 416.754152, + "2024-07-28T14": 397.7, + "2024-07-29T02": 420.0074427726962, + "2024-07-29T08": 450.9098, + "2024-07-28T11": 393.98424, + "2024-07-28T13": 397.292054, + "2024-07-29T09": 449.701044, + "2024-07-29T10": 451.005269, + "2024-07-29T11": 453.90466, + "2024-07-29T12": 454.85905899999995, + "2024-07-29T13": 453.26022731363827, + "2024-07-30": 436.19855713128845, + "2024-07-29T23": 441.742566, + "2024-07-29T18": 444.01118, + "2024-07-29T21": 443.364528, + "2024-07-29T22": 445.142124, + "2024-07-29T17": 442.502628, + "2024-07-29T15": 447.28367599999996, + "2024-07-30T01": 439.10337599999997, + "2024-07-29T19": 444.228912, + "2024-07-30T04": 435.51288000000005, + "2024-07-29T14": 445.633145, + "2024-07-29T20": 444.65108299999997, + "2024-07-30T03": 438.93854, + "2024-07-30T00": 440.425115, + "2024-07-29T16": 440.6189568, + "2024-07-30T02": 434.71304000000003, + "2024-07-30T09": 437.40375, + "2024-07-30T08": 436.177836, + "2024-07-30T06": 432.304872, + "2024-07-30T05": 430.718148, + "2024-07-30T07": 435.286796, + "2024-07-30T10": 436.93008, + "2024-07-30T11": 436.6382867, + "2024-07-30T12": 438.63581546045395, + "2024-07-30T13": 436.11276, + "2024-07-31": 434.36536873125317, + "2024-07-31T00": 436.790775, + "2024-07-31T05": 427.20599400000003, + "2024-07-30T23": 434.473966, + "2024-07-30T19": 434.93901300000005, + "2024-07-30T16": 441.45868800000005, + "2024-07-30T17": 435.86483999999996, + "2024-07-30T18": 436.060416, + "2024-07-30T20": 431.60048100000006, + "2024-07-30T15": 439.95036600000003, + "2024-07-31T03": 432.90907, + "2024-07-30T21": 431.38556594812366, + "2024-07-31T01": 435.199881, + "2024-07-31T07": 429.966669, + "2024-07-31T06": 431.074952, + "2024-07-31T02": 435.71284, + "2024-07-30T22": 434.5102500898889, + "2024-07-30T14": 435.51288000000005, + "2024-07-31T04": 426.91033, + "2024-07-31T08": 427.40758000000005, + "2024-07-31T11": 424.66630499999997, + "2024-07-31T09": 425.034172, + "2024-07-31T10": 424.0163744, + "2024-07-31T12": 424.162336, + "2024-08-01": 413.65870626070597, + "2024-07-31T14": 424.30897500000003, + "2024-07-31T23": 415.966848, + "2024-07-31T13": 426.499451, + "2024-07-31T21": 413.34287, + "2024-08-01T01": 415.554505, + "2024-07-31T18": 426.659156, + "2024-07-31T19": 419.95716600000003, + "2024-07-31T16": 428.033002, + "2024-08-01T02": 415.29665419068033, + "2024-07-31T22": 417.770451, + "2024-07-31T20": 415.138033, + "2024-07-31T17": 428.83269, + "2024-08-01T00": 414.76308299999994, + "2024-07-31T15": 423.926119, + "2024-08-01T07": 418.511585, + "2024-08-01T06": 419.294445, + "2024-08-01T05": 414.347094, + "2024-08-01T04": 411.885708, + "2024-08-01T03": 415.379732, + "2024-08-01T08": 419.181912, + "2024-08-01T09": 417.557676, + "2024-08-01T10": 417.578566, + "2024-08-01T11": 420.277135, + "2024-08-01T12": 422.2803, + "2024-08-01T13": 417.88931679999996, + "2024-08-01T14": 415.9263802333411, + "2024-08-01T15": 407.09635000000003, + "2024-08-02": 414.891962907511, + "2024-08-02T00": 413.82722, + "2024-08-01T20": 406.18933400000003, + "2024-08-01T21": 412.719948, + "2024-08-02T04": 407.47298640726234, + "2024-08-01T19": 395.96396, + "2024-08-01T16": 399.91985999999997, + "2024-08-02T02": 405.04730199999995, + "2024-08-01T17": 395.579321, + "2024-08-01T23": 412.016468, + "2024-08-02T01": 409.43527800000004, + "2024-08-01T22": 413.156795, + "2024-08-01T18": 392.0989368, + "2024-08-02T03": 408.224088, + "2024-08-02T05": 403.948259, + "2024-08-02T06": 399.596076, + "2024-08-02T07": 400.175595, + "2024-08-02T08": 399.168415, + "2024-08-02T09": 401.3645294, + "2024-08-02T10": 405.2189148195262, + "2024-08-02T11": 407.757196, + "2024-08-02T12": 407.11481999999995, + "2024-08-02T13": 413.67708, + "2024-08-02T14": 412.61270177931686, + "2024-08-02T15": 392.11535000000003, + "2024-08-03": 376.92456086516637, + "2024-08-02T16": 398.560935, + "2024-08-02T22": 388.856198, + "2024-08-02T23": 381.61091200000004, + "2024-08-03T00": 380.40102099999996, + "2024-08-03T01": 374.53875, + "2024-08-03T03": 379.248157, + "2024-08-02T19": 394.66934100000003, + "2024-08-02T18": 395.2044, + "2024-08-02T21": 389.61, + "2024-08-02T17": 397.5319855, + "2024-08-02T20": 393.870213, + "2024-08-03T02": 379.598268, + "2024-08-03T06": 383.0320395, + "2024-08-03T19": 359.31951200000003, + "2024-08-03T10": 381.064368, + "2024-08-03T09": 378.562779, + "2024-08-03T15": 371.550894, + "2024-08-03T22": 363.59263400000003, + "2024-08-03T05": 381.27631299999996, + "2024-08-03T08": 379.6314, + "2024-08-03T14": 378.95351999999997, + "2024-08-03T18": 359.04849, + "2024-08-03T17": 360.04058399999997, + "2024-08-03T21": 360.98328, + "2024-08-03T12": 380.51059200000003, + "2024-08-03T20": 358.459671, + "2024-08-03T04": 380.18562430000003, + "2024-08-03T16": 365.7255, + "2024-08-03T11": 380.580044, + "2024-08-03T07": 381.49136699999997, + "2024-08-03T13": 377.842892, + "2024-08-04": 365.3960764481704, + "2024-08-03T23": 364.095992, + "2024-08-04T17": 339.6606031613682, + "2024-08-04T13": 353.0234, + "2024-08-04T06": 361.07599400000004, + "2024-08-04T12": 352.0239, + "2024-08-04T10": 349.41820800000005, + "2024-08-04T16": 346.75016, + "2024-08-04T15": 351.164562, + "2024-08-04T00": 365.584178, + "2024-08-04T11": 352.22027599999996, + "2024-08-04T01": 362.58594800000003, + "2024-08-04T03": 361.77556000000004, + "2024-08-04T04": 360.979668, + "2024-08-04T07": 354.990432, + "2024-08-04T08": 350.78589, + "2024-08-04T18": 339.50497144952897, + "2024-08-04T09": 350.200272, + "2024-08-04T02": 363.08202, + "2024-08-04T05": 361.39976830781694, + "2024-08-04T14": 348.650016, + "2024-08-05": 301.5045894440044, + "2024-08-05T01": 323.31167727798146, + "2024-08-04T19": 342.06455340693327, + "2024-08-04T22": 341.3552350786219, + "2024-08-05T03": 304.296148349282, + "2024-08-05T02": 307.7590464594651, + "2024-08-04T23": 340.03825829193585, + "2024-08-05T00": 331.22878331346715, + "2024-08-05T04": 297.4765314228697, + "2024-08-05T06": 297.33368712351864, + "2024-08-04T20": 345.3556078714002, + "2024-08-05T05": 299.52027903829816, + "2024-08-04T21": 345.6601039204841, + "2024-08-05T07": 284.7680821318617, + "2024-08-05T08": 301.8458547960638, + "2024-08-05T09": 297.98785292110455, + "2024-08-05T10": 295.6792349435761, + "2024-08-05T11": 284.03692, + "2024-08-05T12": 289.1836613736039, + "2024-08-05T13": 281.3603016236157, + "2024-08-05T14": 297.7510369040065, + "2024-08-05T15": 310.795678, + "2024-08-06": 321.54153512989814, + "2024-08-05T19": 303.67535280000004, + "2024-08-05T20": 306.63066000000003, + "2024-08-05T21": 310.15581800000007, + "2024-08-06T02": 321.12198, + "2024-08-05T18": 305.84062199999994, + "2024-08-05T23": 312.06239999999997, + "2024-08-05T16": 314.31987, + "2024-08-06T05": 320.589036, + "2024-08-05T17": 311.88390300000003, + "2024-08-06T00": 321.26424, + "2024-08-06T04": 320.043955, + "2024-08-06T03": 320.825073, + "2024-08-05T22": 312.853176, + "2024-08-06T01": 325.89774, + "2024-08-06T06": 323.035644, + "2024-08-06T07": 324.016946, + "2024-08-06T08": 318.78478800000005, + "2024-08-06T09": 313.99416999999994, + "2024-08-06T10": 313.40025600000007, + "2024-08-06T11": 312.6781500000001, + "2024-08-06T12": 313.215847, + "2024-08-06T13": 310.88702400000005, + "2024-08-06T14": 310.890132 + }, + "USD bitcoin_gold": { + "2024-06-28": 25.0977789591762, + "2024-06-30": 24.620259746386743, + "2024-07-15": 26.4607878943582, + "2024-07-18": 26.0272493322891, + "2024-07-14": 24.49996559189854, + "2024-07-11": 22.94686972486044, + "2024-07-19": 25.994567300507136, + "2024-07-12": 22.72443501465018, + "2024-07-24": 25.420679438488573, + "2024-07-08": 22.115905671779544, + "2024-07-07": 22.981210121511474, + "2024-07-13": 23.38477627338661, + "2024-07-09": 22.394922665697063, + "2024-07-02": 24.817831896705666, + "2024-07-20": 26.540330479255093, + "2024-06-29": 24.73169396644278, + "2024-07-21": 26.502995653970718, + "2024-07-23": 25.593268773713994, + "2024-07-10": 23.07715420094499, + "2024-07-01": 25.229869480580923, + "2024-06-26": 25.480008887419615, + "2024-07-17": 27.005787152589615, + "2024-07-22": 26.207913213209757, + "2024-07-04": 23.355370478513837, + "2024-06-25": 25.70254214301666, + "2024-07-26": 24.97478278624881, + "2024-07-03": 24.062781636439418, + "2024-07-05": 21.812431983439236, + "2024-07-25": 24.119114209055795, + "2024-07-16": 27.24685792554645, + "2024-07-06": 22.221629045466663, + "2024-06-27": 24.70077931033014, + "2024-07-22T13": 26.23872453658234, + "2024-07-25T10": 23.950880982416248, + "2024-07-26T06": 24.869661382398778, + "2024-07-24T14": 25.645717668327276, + "2024-07-21T20": 26.607286461141904, + "2024-07-21T07": 26.393379566308994, + "2024-07-21T14": 26.280546229617592, + "2024-07-22T23": 25.874465065368682, + "2024-07-24T07": 25.338100368308602, + "2024-07-20T11": 26.486260988292095, + "2024-07-26T08": 24.885919064355257, + "2024-07-25T20": 23.883322947885418, + "2024-07-21T02": 26.702387715048324, + "2024-07-20T04": 26.48575522913643, + "2024-07-20T03": 26.380277781465093, + "2024-07-25T13": 23.899166990231738, + "2024-07-21T06": 26.37843754640064, + "2024-07-20T12": 26.485509055831137, + "2024-07-24T02": 25.423991611111113, + "2024-07-24T17": 25.394454098896553, + "2024-07-25T06": 24.047139579920934, + "2024-07-25T22": 24.485170434831645, + "2024-07-22T07": 25.867462632736434, + "2024-07-22T22": 26.063793614082854, + "2024-07-26T03": 24.807019874081057, + "2024-07-23T01": 26.27668814559864, + "2024-07-24T03": 25.43767735954762, + "2024-07-23T21": 25.313508302333528, + "2024-07-19T20": 26.711350746840473, + "2024-07-23T22": 25.284301050673122, + "2024-07-21T23": 26.951416298978764, + "2024-07-19T16": 26.129463144437594, + "2024-07-22T20": 26.291796899400143, + "2024-07-23T10": 25.687961675003724, + "2024-07-19T17": 26.511644106425575, + "2024-07-22T09": 26.152821611329287, + "2024-07-24T04": 25.43303170620256, + "2024-07-22T06": 26.172411069500818, + "2024-07-24T21": 25.21875249594438, + "2024-07-20T21": 26.79107006297313, + "2024-07-21T15": 26.44116272637967, + "2024-07-20T09": 26.54959565197014, + "2024-07-25T14": 24.04213657603935, + "2024-07-19T11": 25.44605011475377, + "2024-07-23T20": 25.37816854318789, + "2024-07-25T03": 24.03531150446007, + "2024-07-20T01": 26.387278119092567, + "2024-07-25T23": 24.544330044721264, + "2024-07-20T16": 26.658802209266412, + "2024-07-22T15": 25.950418079675323, + "2024-07-23T16": 25.428854730335882, + "2024-07-22T02": 26.58550120481928, + "2024-07-21T04": 26.59597292107862, + "2024-07-23T09": 25.689849428568568, + "2024-07-20T10": 26.58802503640735, + "2024-07-22T19": 26.18539859404968, + "2024-07-20T00": 26.599334728897716, + "2024-07-20T19": 26.809186866698802, + "2024-07-26T05": 24.806851209986597, + "2024-07-19T14": 26.143471842365773, + "2024-07-21T00": 26.684541535589272, + "2024-07-22T12": 26.22968964053622, + "2024-07-24T06": 25.291069137279237, + "2024-07-25T01": 24.29057882968629, + "2024-07-20T22": 26.784820306778435, + "2024-07-19T15": 26.11753355899152, + "2024-07-21T13": 26.340237019497796, + "2024-07-25T07": 24.040893985414236, + "2024-07-21T08": 26.382146697583792, + "2024-07-23T06": 25.499613258694858, + "2024-07-22T16": 26.05440934489645, + "2024-07-24T11": 25.52874512502603, + "2024-07-24T01": 25.467221909101795, + "2024-07-23T00": 25.96858197535105, + "2024-07-19T12": 25.583610246619628, + "2024-07-25T17": 24.226613785278563, + "2024-07-25T19": 23.937266139515977, + "2024-07-19T21": 26.76850685023264, + "2024-07-23T08": 25.52002231331306, + "2024-07-21T21": 26.710975701184935, + "2024-07-21T11": 26.37349147236307, + "2024-07-22T14": 25.9867076279487, + "2024-07-20T23": 26.785465533, + "2024-07-20T08": 26.52511633935018, + "2024-07-20T02": 26.360160842967368, + "2024-07-24T05": 25.295438483160186, + "2024-07-24T16": 25.35967143922814, + "2024-07-21T01": 26.689211739472235, + "2024-07-24T13": 25.542463837382684, + "2024-07-25T04": 24.04712958833353, + "2024-07-19T13": 25.76861261657231, + "2024-07-25T12": 23.95959000115642, + "2024-07-19T22": 26.762192515272922, + "2024-07-26T07": 24.867140317523088, + "2024-07-25T02": 24.096407016914085, + "2024-07-21T12": 26.317408891165485, + "2024-07-23T18": 25.34461834326904, + "2024-07-23T11": 25.596033509454802, + "2024-07-19T10": 25.468977663999997, + "2024-07-19T19": 26.643400298985018, + "2024-07-25T11": 23.99150113654238, + "2024-07-22T08": 26.142419568726556, + "2024-07-23T19": 25.42390069344899, + "2024-07-22T21": 26.15268568889406, + "2024-07-21T09": 26.414453465760655, + "2024-07-21T22": 26.91505641242972, + "2024-07-22T04": 26.522528861493985, + "2024-07-25T16": 24.136375204745303, + "2024-07-19T23": 26.685829981203007, + "2024-07-20T06": 26.52172616706444, + "2024-07-23T02": 26.189387357160243, + "2024-07-23T14": 25.54370624546917, + "2024-07-23T03": 26.176900522970886, + "2024-07-25T08": 23.995917018255717, + "2024-07-24T15": 25.43681137779443, + "2024-07-19T09": 25.48016242620132, + "2024-07-20T15": 26.58132023200335, + "2024-07-23T23": 25.342937269413902, + "2024-07-23T12": 25.50870849460875, + "2024-07-22T10": 26.132774953958283, + "2024-07-21T10": 26.432615215373676, + "2024-07-22T00": 26.842621707656196, + "2024-07-24T22": 25.041464088475326, + "2024-07-24T19": 25.445851529723505, + "2024-07-24T09": 25.48153977765694, + "2024-07-23T04": 25.812677271181062, + "2024-07-23T05": 25.43606249939719, + "2024-07-25T18": 24.17955809016427, + "2024-07-25T15": 24.116126365720007, + "2024-07-26T01": 24.624028218632077, + "2024-07-22T01": 26.60061088894806, + "2024-07-26T02": 24.71100460302072, + "2024-07-24T18": 25.458531757785465, + "2024-07-21T19": 26.23177733305867, + "2024-07-25T05": 24.169082496442517, + "2024-07-22T18": 26.07696276358366, + "2024-07-24T00": 25.440539352466686, + "2024-07-24T08": 25.445622156980022, + "2024-07-24T20": 25.344274554720002, + "2024-07-24T23": 24.999130937540826, + "2024-07-22T17": 26.042720166539535, + "2024-07-21T17": 26.425205104267903, + "2024-07-24T12": 25.513243027624032, + "2024-07-23T13": 25.45258942530628, + "2024-07-21T05": 26.49937558459617, + "2024-07-20T05": 26.44234458347468, + "2024-07-21T03": 26.632427196913522, + "2024-07-26T00": 24.53227820240396, + "2024-07-20T20": 26.871962974789913, + "2024-07-22T03": 26.58103145269842, + "2024-07-25T21": 24.436047980631773, + "2024-07-21T16": 26.411027250171383, + "2024-07-20T17": 26.794354272653056, + "2024-07-22T11": 26.150416620989066, + "2024-07-25T00": 25.12852140874998, + "2024-07-20T13": 26.42547084985507, + "2024-07-23T07": 25.44436050701311, + "2024-07-22T05": 26.365565156213727, + "2024-07-20T07": 26.653554854946364, + "2024-07-21T18": 26.322646902495585, + "2024-07-23T17": 25.337951198652565, + "2024-07-20T14": 26.55511725372559, + "2024-07-26T04": 24.747524960396042, + "2024-07-24T10": 25.435889752973473, + "2024-07-20T18": 26.850458239768198, + "2024-07-23T15": 25.521109429188982, + "2024-07-19T18": 26.522564434883762, + "2024-07-25T09": 24.101735470773882, + "latest": 21.28, + "2024-07-26T09": 25.084161380901545, + "2024-07-26T10": 25.060995989357146, + "2024-07-26T11": 24.949982474848234, + "2024-07-26T12": 24.95350468411471, + "2024-07-26T13": 25.04336562602871, + "2024-07-26T14": 25.127495699018837, + "2024-07-26T17": 25.20747111653865, + "2024-07-26T16": 25.21677923739935, + "2024-07-26T15": 25.118811374220073, + "2024-07-26T18": 25.166017203266765, + "2024-07-27": 26.26940073701239, + "2024-07-28": 25.99415917557113, + "2024-07-28T05": 25.46517350489023, + "2024-07-26T21": 25.382241870819946, + "2024-07-27T02": 25.886688766120496, + "2024-07-28T01": 26.13098989848974, + "2024-07-27T10": 26.084867865189974, + "2024-07-28T02": 26.049140426094993, + "2024-07-27T19": 26.094896985631866, + "2024-07-27T09": 26.130348582318593, + "2024-07-27T06": 26.023754593159115, + "2024-07-27T18": 26.317483319453334, + "2024-07-26T22": 25.431841265257656, + "2024-07-27T13": 26.46358947934881, + "2024-07-27T12": 26.177479907073888, + "2024-07-27T16": 26.429995841439354, + "2024-07-27T05": 25.98155674337373, + "2024-07-26T23": 25.524511191631003, + "2024-07-26T20": 25.268244976076552, + "2024-07-27T08": 26.131190889296942, + "2024-07-28T03": 25.820810980926897, + "2024-07-27T01": 26.076137608400845, + "2024-07-28T09": 25.556808584853712, + "2024-07-28T10": 25.660628901912492, + "2024-07-27T00": 26.420128676820234, + "2024-07-28T00": 26.097584241524892, + "2024-07-27T04": 25.93533185849063, + "2024-07-27T14": 26.44487898664611, + "2024-07-27T07": 26.24256639433766, + "2024-07-27T11": 26.08364806583387, + "2024-07-27T22": 26.41978319759054, + "2024-07-27T03": 25.954296386929848, + "2024-07-27T20": 25.98718365246119, + "2024-07-27T23": 26.242927905680357, + "2024-07-28T08": 25.54607057001405, + "2024-07-27T21": 26.366458760951566, + "2024-07-28T07": 25.571509701547004, + "2024-07-27T15": 26.511876096096376, + "2024-07-26T19": 25.31267525035766, + "2024-07-28T04": 25.595077860935465, + "2024-07-28T06": 25.578609992493632, + "2024-07-27T17": 26.2259826244984, + "2024-07-29": 27.88131639617426, + "2024-07-28T20": 26.39483148071169, + "2024-07-28T16": 25.7279779337489, + "2024-07-29T07": 27.827004024760324, + "2024-07-28T23": 26.527019793763326, + "2024-07-28T15": 25.62772050858426, + "2024-07-28T18": 26.357896920271727, + "2024-07-29T04": 26.57029668450427, + "2024-07-29T02": 26.576871697270096, + "2024-07-29T06": 28.047500426748037, + "2024-07-28T21": 26.310787169831148, + "2024-07-29T03": 26.6446565583838, + "2024-07-28T12": 25.70328064967971, + "2024-07-29T05": 27.080540229113886, + "2024-07-28T17": 25.671300056474756, + "2024-07-29T00": 26.428000590991644, + "2024-07-29T01": 26.21626762192719, + "2024-07-28T22": 26.343138620999156, + "2024-07-28T19": 26.511515073591987, + "2024-07-28T14": 25.62837221634729, + "2024-07-28T11": 25.695894897302768, + "2024-07-28T13": 25.78308728023246, + "2024-07-29T08": 28.174002331978087, + "2024-07-29T09": 28.335499381522784, + "2024-07-29T10": 28.254356518897033, + "2024-07-29T11": 28.031282336607322, + "2024-07-29T12": 28.096517327693032, + "2024-07-29T13": 28.367411557842427, + "2024-07-30": 27.33790556667021, + "2024-07-29T23": 27.605278893891345, + "2024-07-29T18": 27.445025414646025, + "2024-07-29T21": 27.403288758562827, + "2024-07-29T22": 27.70163692385744, + "2024-07-29T17": 27.156016271432897, + "2024-07-29T15": 27.640664906973274, + "2024-07-30T01": 27.463265020564858, + "2024-07-29T19": 27.281764854929786, + "2024-07-30T04": 27.25929401777724, + "2024-07-29T14": 27.845371883663503, + "2024-07-29T20": 27.3482018764346, + "2024-07-30T03": 27.217262725874104, + "2024-07-30T00": 27.965745006739056, + "2024-07-29T16": 27.157867881161216, + "2024-07-30T02": 26.952485815515992, + "2024-07-30T09": 28.14888691023881, + "2024-07-30T08": 27.84405962893109, + "2024-07-30T06": 27.118978858935673, + "2024-07-30T05": 27.061000007468692, + "2024-07-30T07": 27.687362822092478, + "2024-07-30T10": 27.264342063807273, + "2024-07-30T11": 27.274409742899753, + "2024-07-30T12": 27.45562707240524, + "2024-07-30T13": 27.089125845584025, + "2024-07-31": 27.20428661649417, + "2024-07-31T00": 26.448324545493787, + "2024-07-31T05": 25.981895342896543, + "2024-07-30T23": 26.814084385681085, + "2024-07-30T19": 26.48891415872421, + "2024-07-30T16": 26.91550490729713, + "2024-07-30T17": 26.622556442043646, + "2024-07-30T18": 26.681057247640734, + "2024-07-30T20": 26.6718613959952, + "2024-07-30T15": 26.901137298602006, + "2024-07-31T03": 26.09477600455642, + "2024-07-30T21": 26.593360280570355, + "2024-07-31T01": 26.297542055879628, + "2024-07-31T07": 26.18622291185196, + "2024-07-31T06": 26.281155337931825, + "2024-07-31T02": 26.122005555143065, + "2024-07-30T22": 26.833155692215268, + "2024-07-30T14": 26.747070110570675, + "2024-07-31T04": 25.912940917027107, + "2024-07-31T08": 26.062212481646778, + "2024-07-31T09": 26.139382875047513, + "2024-07-31T10": 26.143848934944668, + "2024-07-31T11": 26.106421006817992, + "2024-08-01": 25.275643965677435, + "2024-07-31T14": 26.349328944674202, + "2024-07-31T23": 25.687858063257018, + "2024-07-31T13": 26.43378758808208, + "2024-07-31T21": 25.818494414594248, + "2024-08-01T01": 25.553820364386063, + "2024-07-31T12": 26.169327618323933, + "2024-07-31T18": 26.367503126954045, + "2024-07-31T19": 26.187484678608563, + "2024-07-31T16": 26.386717981167717, + "2024-08-01T02": 25.41551951331786, + "2024-07-31T22": 25.785785174431293, + "2024-07-31T20": 25.79619647773258, + "2024-07-31T17": 26.390331305786667, + "2024-08-01T00": 25.64819083726027, + "2024-07-31T15": 26.326902482468775, + "2024-08-01T07": 25.437969283356765, + "2024-08-01T06": 25.354782353612404, + "2024-08-01T05": 25.2706722756669, + "2024-08-01T04": 25.13856039597812, + "2024-08-01T03": 25.50462432965537, + "2024-08-01T08": 25.390782902001174, + "2024-08-01T09": 25.452461399577462, + "2024-08-01T10": 25.242072353873244, + "2024-08-01T11": 25.401322436278527, + "2024-08-01T12": 25.529999216437716, + "2024-08-01T13": 25.398670298169694, + "2024-08-01T14": 25.198897101491475, + "2024-08-01T15": 24.662713623781443, + "2024-08-02": 26.10424988462844, + "2024-08-02T00": 25.531770918551487, + "2024-08-01T20": 24.339861203899282, + "2024-08-01T21": 25.081411025793173, + "2024-08-02T04": 24.556296655526992, + "2024-08-01T19": 24.562689465139133, + "2024-08-01T16": 24.596470054541122, + "2024-08-02T02": 24.677556836333697, + "2024-08-01T17": 24.40923030559777, + "2024-08-01T23": 25.169613770514488, + "2024-08-02T01": 25.16272645354589, + "2024-08-01T22": 25.331227014550176, + "2024-08-01T18": 24.53875175768814, + "2024-08-02T03": 24.526523600215608, + "2024-08-02T05": 24.277491834474656, + "2024-08-02T06": 24.04979304059163, + "2024-08-02T07": 24.206323824746082, + "2024-08-02T08": 24.23749481073058, + "2024-08-02T09": 24.34436164178203, + "2024-08-02T10": 24.450717537375102, + "2024-08-02T11": 24.5300033560331, + "2024-08-02T12": 24.428539596629154, + "2024-08-02T13": 24.58835652143391, + "2024-08-02T14": 25.440270752325777, + "2024-08-02T15": 24.80580845566843, + "2024-08-03": 24.464190739307494, + "2024-08-02T16": 24.875309233205172, + "2024-08-02T22": 24.836530180359237, + "2024-08-02T23": 24.46069075668375, + "2024-08-03T00": 24.38558285741357, + "2024-08-03T01": 23.784577145814573, + "2024-08-03T03": 23.414190470073667, + "2024-08-02T19": 24.84250453547018, + "2024-08-02T18": 24.7171597580196, + "2024-08-02T21": 24.783704126193268, + "2024-08-02T17": 24.74912638836998, + "2024-08-02T20": 24.962081183699123, + "2024-08-03T02": 24.005521574508055, + "2024-08-03T06": 23.56878835935702, + "2024-08-03T19": 22.529236931980947, + "2024-08-03T10": 23.234753895319884, + "2024-08-03T09": 23.161157548168273, + "2024-08-03T15": 23.160222468080615, + "2024-08-03T22": 22.665617910187013, + "2024-08-03T05": 23.369878490821048, + "2024-08-03T08": 23.212832808249015, + "2024-08-03T14": 23.529149518305438, + "2024-08-03T18": 22.887781317394516, + "2024-08-03T17": 22.77143231983917, + "2024-08-03T21": 22.5938284298704, + "2024-08-03T12": 23.352421030108314, + "2024-08-03T20": 22.450438284001635, + "2024-08-03T04": 23.471181514518054, + "2024-08-03T16": 22.778557285837877, + "2024-08-03T11": 23.291218933418126, + "2024-08-03T07": 23.4660416160171, + "2024-08-03T13": 23.3385700305158, + "2024-08-04": 21.9740444888299, + "2024-08-03T23": 22.77687057717878, + "2024-08-04T17": 21.345320860623396, + "2024-08-04T13": 22.581257405407822, + "2024-08-04T06": 22.75051590693357, + "2024-08-04T12": 22.625125268978742, + "2024-08-04T10": 22.44155142702943, + "2024-08-04T16": 21.71145685304912, + "2024-08-04T15": 21.77202737970015, + "2024-08-04T00": 22.73184957935552, + "2024-08-04T11": 22.531496142534802, + "2024-08-04T01": 22.61225608136248, + "2024-08-04T03": 22.786350229924576, + "2024-08-04T04": 22.706089225280532, + "2024-08-04T07": 22.561747510204974, + "2024-08-04T08": 22.511231994391125, + "2024-08-04T18": 22.258672457647805, + "2024-08-04T09": 22.576448217066282, + "2024-08-04T02": 22.67449762639265, + "2024-08-04T05": 22.77621994507095, + "2024-08-04T14": 22.051528952133975, + "2024-08-05": 19.18246965144409, + "2024-08-05T01": 21.271245837053957, + "2024-08-04T19": 22.580125649140708, + "2024-08-04T22": 22.457096048439833, + "2024-08-05T03": 20.823142273536227, + "2024-08-05T02": 21.361280185970895, + "2024-08-04T23": 22.545655673756027, + "2024-08-05T00": 22.17770325123273, + "2024-08-05T04": 20.700442931693296, + "2024-08-05T06": 19.86728136492298, + "2024-08-04T20": 22.766083420011977, + "2024-08-05T05": 20.645101954912725, + "2024-08-04T21": 22.76311107456937, + "2024-08-05T07": 19.187638642552617, + "2024-08-05T08": 19.677190235579424, + "2024-08-05T09": 19.73480895260702, + "2024-08-05T10": 19.60475064147761, + "2024-08-05T11": 19.135703335761157, + "2024-08-05T12": 19.021457356930163, + "2024-08-05T13": 18.71077937342623, + "2024-08-05T14": 19.637370191087392, + "2024-08-05T15": 20.37953045687029, + "2024-08-06": 20.565884904700734, + "2024-08-05T19": 20.47764023468403, + "2024-08-05T20": 20.453815706446843, + "2024-08-05T21": 20.97274083078523, + "2024-08-06T02": 21.650190442170018, + "2024-08-05T18": 21.005859788456693, + "2024-08-05T23": 21.40254467722927, + "2024-08-05T16": 20.83036500673665, + "2024-08-06T05": 20.685718093441665, + "2024-08-05T17": 20.75777878053391, + "2024-08-06T00": 20.93967836680832, + "2024-08-06T04": 21.458076092024115, + "2024-08-06T03": 21.68202722691837, + "2024-08-05T22": 21.186444435582576, + "2024-08-06T01": 21.8615771850465, + "2024-08-06T06": 20.811901464150644, + "2024-08-06T07": 20.842015268547705, + "2024-08-06T08": 21.753264987692546, + "2024-08-06T09": 20.06366586140134, + "2024-08-06T10": 21.01711397083561, + "2024-08-06T11": 20.938836644980153, + "2024-08-06T12": 21.086585078402575, + "2024-08-06T13": 20.89010569880622, + "2024-08-06T14": 20.842653213292394 + }, + "USD bittorrent": { + "2024-06-28": 8.800894520454183e-7, + "2024-06-30": 8.568027428615716e-7, + "2024-07-15": 8.243973154204264e-7, + "2024-07-18": 8.949021584293824e-7, + "2024-07-14": 8.171382125255041e-7, + "2024-07-11": 7.951232635862344e-7, + "2024-07-19": 8.753879229934606e-7, + "2024-07-12": 7.948265993099029e-7, + "2024-07-24": 8.680759798404206e-7, + "2024-07-08": 7.546908514885886e-7, + "2024-07-07": 7.921496176675759e-7, + "2024-07-13": 7.986212571376436e-7, + "2024-07-09": 7.738840971896627e-7, + "2024-07-02": 8.714976505994942e-7, + "2024-07-20": 8.883368143372145e-7, + "2024-06-29": 8.595074196651573e-7, + "2024-07-21": 9.032010914001518e-7, + "2024-07-23": 8.890738393360605e-7, + "2024-07-10": 7.871755563408201e-7, + "2024-07-01": 8.722147566593685e-7, + "2024-06-26": 8.781364902020406e-7, + "2024-07-17": 9.173801459799816e-7, + "2024-07-22": 9.060786541186805e-7, + "2024-07-04": 8.259945697341945e-7, + "2024-06-25": 8.519910819737588e-7, + "2024-07-26": 8.365810377776231e-7, + "2024-07-03": 8.671947520491138e-7, + "2024-07-05": 7.776404909422168e-7, + "2024-07-25": 8.604435821082005e-7, + "2024-07-16": 8.903662388552079e-7, + "2024-07-06": 7.532242874907583e-7, + "2024-06-27": 8.648925769107138e-7, + "2024-07-22T13": 8.974385086744787e-7, + "2024-07-25T10": 8.30753549734188e-7, + "2024-07-26T06": 8.437582363866854e-7, + "2024-07-24T14": 8.701469780168694e-7, + "2024-07-21T20": 8.993627822117607e-7, + "2024-07-21T07": 8.982418773367398e-7, + "2024-07-21T14": 8.931352905272122e-7, + "2024-07-22T23": 8.887027453908573e-7, + "2024-07-24T07": 8.643010061200135e-7, + "2024-07-20T11": 8.999178482931561e-7, + "2024-07-26T08": 8.464548964698164e-7, + "2024-07-25T20": 8.314687260317743e-7, + "2024-07-21T02": 9.035647704823929e-7, + "2024-07-20T04": 8.966280984553912e-7, + "2024-07-20T03": 8.959409259104729e-7, + "2024-07-25T13": 8.268455669044998e-7, + "2024-07-21T06": 9.041555282091136e-7, + "2024-07-20T12": 8.991568103021605e-7, + "2024-07-24T02": 8.654388802499745e-7, + "2024-07-24T17": 8.68194367112981e-7, + "2024-07-25T06": 8.292305148667e-7, + "2024-07-25T22": 8.352496660229961e-7, + "2024-07-22T07": 8.940015290872037e-7, + "2024-07-22T22": 8.90745424249632e-7, + "2024-07-26T03": 8.46042431241296e-7, + "2024-07-23T01": 8.907581998654705e-7, + "2024-07-24T03": 8.679234341046033e-7, + "2024-07-23T21": 8.697041750955263e-7, + "2024-07-19T20": 8.953289242696875e-7, + "2024-07-23T22": 8.687059419526061e-7, + "2024-07-21T23": 9.063000248092592e-7, + "2024-07-19T16": 8.855460049866415e-7, + "2024-07-22T20": 8.978758008358788e-7, + "2024-07-23T10": 8.788852931246011e-7, + "2024-07-19T17": 8.873443853306731e-7, + "2024-07-22T09": 8.90090902300456e-7, + "2024-07-24T04": 8.692224103130228e-7, + "2024-07-22T06": 9.021061619875883e-7, + "2024-07-24T21": 8.663742950949544e-7, + "2024-07-20T21": 9.04047973726624e-7, + "2024-07-21T15": 8.976536561733286e-7, + "2024-07-20T09": 8.976134289027542e-7, + "2024-07-25T14": 8.265954703043575e-7, + "2024-07-19T11": 8.676736657455402e-7, + "2024-07-23T20": 8.743601478616992e-7, + "2024-07-25T03": 8.351682439696574e-7, + "2024-07-20T01": 8.92920648404859e-7, + "2024-07-25T23": 8.34835170435603e-7, + "2024-07-20T16": 8.986068326973441e-7, + "2024-07-22T15": 8.878994587213033e-7, + "2024-07-23T16": 8.777251772997715e-7, + "2024-07-22T02": 9.111374767721701e-7, + "2024-07-21T04": 9.082753338022725e-7, + "2024-07-23T09": 8.800681455477176e-7, + "2024-07-20T10": 8.987041156759162e-7, + "2024-07-22T19": 8.928812045655584e-7, + "2024-07-20T00": 8.895014240662434e-7, + "2024-07-20T19": 9.060232639818759e-7, + "2024-07-26T05": 8.453369565627162e-7, + "2024-07-19T14": 8.714556637587008e-7, + "2024-07-21T00": 9.042134150725022e-7, + "2024-07-22T12": 8.958722854403983e-7, + "2024-07-24T06": 8.641121510168519e-7, + "2024-07-25T01": 8.570056024506771e-7, + "2024-07-20T22": 8.999339512127761e-7, + "2024-07-19T15": 8.796602412696108e-7, + "2024-07-21T13": 8.963010992470372e-7, + "2024-07-25T07": 8.294702874330379e-7, + "2024-07-21T08": 8.953706332946188e-7, + "2024-07-23T06": 8.795661573560152e-7, + "2024-07-22T16": 8.922597962042883e-7, + "2024-07-24T11": 8.704729972496469e-7, + "2024-07-24T01": 8.662087080937219e-7, + "2024-07-23T00": 8.880026517521874e-7, + "2024-07-19T12": 8.673058882599089e-7, + "2024-07-25T17": 8.334920475315384e-7, + "2024-07-25T19": 8.30207203150049e-7, + "2024-07-19T21": 8.965855576268818e-7, + "2024-07-23T08": 8.787538836906485e-7, + "2024-07-21T21": 9.021128659706625e-7, + "2024-07-21T11": 8.966738715395724e-7, + "2024-07-22T14": 8.907649507398757e-7, + "2024-07-20T23": 9.061988407403338e-7, + "2024-07-20T08": 9.055057074683872e-7, + "2024-07-20T02": 8.924779006664527e-7, + "2024-07-24T05": 8.653187923244609e-7, + "2024-07-24T16": 8.702516975089154e-7, + "2024-07-21T01": 9.020693590415634e-7, + "2024-07-24T13": 8.681046281455283e-7, + "2024-07-25T04": 8.280448516253191e-7, + "2024-07-19T13": 8.653826592882492e-7, + "2024-07-25T12": 8.296461274188926e-7, + "2024-07-19T22": 8.973417355924321e-7, + "2024-07-26T07": 8.470317781580972e-7, + "2024-07-25T02": 8.404373375456018e-7, + "2024-07-21T12": 8.960525638343319e-7, + "2024-07-23T18": 8.774028681188783e-7, + "2024-07-23T11": 8.767931085646223e-7, + "2024-07-19T10": 8.664297596008572e-7, + "2024-07-19T19": 8.896791903559682e-7, + "2024-07-25T11": 8.278856490685818e-7, + "2024-07-22T08": 8.912133243240282e-7, + "2024-07-23T19": 8.738033007549597e-7, + "2024-07-22T21": 8.960546141923253e-7, + "2024-07-21T09": 8.971089926431283e-7, + "2024-07-21T22": 9.061909458523174e-7, + "2024-07-22T04": 9.115075886365042e-7, + "2024-07-25T16": 8.324167852561457e-7, + "2024-07-19T23": 8.94746459284372e-7, + "2024-07-20T06": 8.961496002027712e-7, + "2024-07-23T02": 8.887520808326432e-7, + "2024-07-23T14": 8.732252289892925e-7, + "2024-07-23T03": 8.901430536622262e-7, + "2024-07-25T08": 8.279699391515381e-7, + "2024-07-24T15": 8.746664724221893e-7, + "2024-07-19T09": 8.700817551525914e-7, + "2024-07-20T15": 8.932476457384673e-7, + "2024-07-23T23": 8.696950464845939e-7, + "2024-07-23T12": 8.768429905032819e-7, + "2024-07-22T10": 8.903970702558893e-7, + "2024-07-21T10": 8.984232553447819e-7, + "2024-07-22T00": 9.06292558191256e-7, + "2024-07-24T22": 8.644807891384513e-7, + "2024-07-24T19": 8.661477749837043e-7, + "2024-07-24T09": 8.728986877194456e-7, + "2024-07-23T04": 8.899073438487417e-7, + "2024-07-23T05": 8.837794903567563e-7, + "2024-07-25T18": 8.341789438836353e-7, + "2024-07-25T15": 8.330172871997974e-7, + "2024-07-26T01": 8.397969028597489e-7, + "2024-07-22T01": 9.05107572065511e-7, + "2024-07-26T02": 8.391458806669741e-7, + "2024-07-24T18": 8.706584020543575e-7, + "2024-07-21T19": 8.931554148506976e-7, + "2024-07-25T05": 8.279970198402544e-7, + "2024-07-22T18": 8.926999508556512e-7, + "2024-07-24T00": 8.680759798404206e-7, + "2024-07-24T08": 8.661620240659717e-7, + "2024-07-24T20": 8.659203488518208e-7, + "2024-07-24T23": 8.627008866287387e-7, + "2024-07-22T17": 8.909641537401856e-7, + "2024-07-21T17": 9.001814799748881e-7, + "2024-07-24T12": 8.696035936331128e-7, + "2024-07-23T13": 8.770779412681828e-7, + "2024-07-21T05": 9.066116881545058e-7, + "2024-07-20T05": 8.974913423892909e-7, + "2024-07-21T03": 9.052204394828263e-7, + "2024-07-26T00": 8.357551716242911e-7, + "2024-07-20T20": 9.027692992052566e-7, + "2024-07-22T03": 9.146781493502913e-7, + "2024-07-25T21": 8.315077519203515e-7, + "2024-07-21T16": 8.963862251793994e-7, + "2024-07-20T17": 9.021096739366506e-7, + "2024-07-22T11": 8.96675057828827e-7, + "2024-07-25T00": 8.584997308288957e-7, + "2024-07-20T13": 8.968431797103815e-7, + "2024-07-23T07": 8.785682761990757e-7, + "2024-07-22T05": 9.083681925957576e-7, + "2024-07-20T07": 8.996411489876855e-7, + "2024-07-21T18": 8.96772877381333e-7, + "2024-07-23T17": 8.735545434572386e-7, + "2024-07-20T14": 8.942964186362826e-7, + "2024-07-26T04": 8.433420074105027e-7, + "2024-07-24T10": 8.682792889960794e-7, + "2024-07-20T18": 9.053062743627614e-7, + "2024-07-23T15": 8.826845419240316e-7, + "2024-07-19T18": 8.876457699041008e-7, + "2024-07-25T09": 8.284224609656543e-7, + "latest": 7.22826e-7, + "2024-07-26T09": 8.510729717147953e-7, + "2024-07-26T10": 8.605894917699868e-7, + "2024-07-26T11": 8.587051149389239e-7, + "2024-07-26T12": 8.574617949793465e-7, + "2024-07-26T13": 8.561365067531969e-7, + "2024-07-26T14": 8.60536850764623e-7, + "2024-07-26T17": 8.575151768903872e-7, + "2024-07-26T16": 8.606269069151639e-7, + "2024-07-26T15": 8.602754235429883e-7, + "2024-07-26T18": 8.586681463452953e-7, + "2024-07-27": 8.763772646449497e-7, + "2024-07-28": 8.944508234983068e-7, + "2024-07-28T05": 8.740970839063022e-7, + "2024-07-26T21": 8.618380939187226e-7, + "2024-07-27T02": 8.968731728429046e-7, + "2024-07-28T01": 8.938976685842345e-7, + "2024-07-27T10": 9.018586471912826e-7, + "2024-07-28T02": 8.972804491744269e-7, + "2024-07-27T19": 8.982136068107493e-7, + "2024-07-27T09": 9.040834691577297e-7, + "2024-07-27T06": 8.962196267500866e-7, + "2024-07-27T18": 9.034623981457172e-7, + "2024-07-26T22": 8.667178681581807e-7, + "2024-07-27T13": 8.990213783426099e-7, + "2024-07-27T12": 8.96573569988537e-7, + "2024-07-27T16": 9.141958321878638e-7, + "2024-07-27T05": 8.947092725643594e-7, + "2024-07-26T23": 8.687432759291494e-7, + "2024-07-26T20": 8.664187070002481e-7, + "2024-07-27T08": 8.988133206391451e-7, + "2024-07-28T03": 8.961395627264776e-7, + "2024-07-27T01": 9.051207031344599e-7, + "2024-07-28T09": 8.782673837461801e-7, + "2024-07-28T10": 8.777422661667242e-7, + "2024-07-27T00": 8.718443273499446e-7, + "2024-07-28T00": 8.962063780111474e-7, + "2024-07-27T04": 8.950361615178118e-7, + "2024-07-27T14": 9.095130394317956e-7, + "2024-07-27T07": 8.972337480046697e-7, + "2024-07-27T11": 8.962549169429982e-7, + "2024-07-27T22": 8.997066222592583e-7, + "2024-07-27T03": 8.955156131632063e-7, + "2024-07-27T20": 8.995468710556381e-7, + "2024-07-27T23": 8.995534329130622e-7, + "2024-07-28T08": 8.796050386713484e-7, + "2024-07-27T21": 8.986760176797194e-7, + "2024-07-28T07": 8.83179355872028e-7, + "2024-07-27T15": 9.078458722833343e-7, + "2024-07-26T19": 8.622569277150636e-7, + "2024-07-28T04": 8.856307469017647e-7, + "2024-07-28T06": 8.805225826985785e-7, + "2024-07-27T17": 9.088529797446926e-7, + "2024-07-29": 8.881068145849185e-7, + "2024-07-28T20": 8.866827593137118e-7, + "2024-07-28T16": 8.843778188038928e-7, + "2024-07-29T07": 9.025691340738867e-7, + "2024-07-28T23": 8.807035746936444e-7, + "2024-07-28T15": 8.780788684547787e-7, + "2024-07-28T18": 8.843855071524265e-7, + "2024-07-29T04": 8.878162559538011e-7, + "2024-07-29T06": 8.918564957223327e-7, + "2024-07-28T21": 8.86801546341726e-7, + "2024-07-29T03": 8.885347666804017e-7, + "2024-07-28T12": 8.84223786011991e-7, + "2024-07-29T05": 8.888603720600809e-7, + "2024-07-28T17": 8.829871520987622e-7, + "2024-07-29T00": 8.825686589499705e-7, + "2024-07-29T01": 8.856122543008106e-7, + "2024-07-28T22": 8.830175712799713e-7, + "2024-07-28T19": 8.869945096864508e-7, + "2024-07-28T14": 8.832376906961802e-7, + "2024-07-29T02": 8.853474061288301e-7, + "2024-07-29T08": 9.025676545210905e-7, + "2024-07-28T11": 8.797146955315193e-7, + "2024-07-28T13": 8.846746348101904e-7, + "2024-07-29T09": 9.11904699336859e-7, + "2024-07-29T10": 9.121461442022256e-7, + "2024-07-29T11": 9.109461699353959e-7, + "2024-07-29T12": 9.110439300700729e-7, + "2024-07-29T13": 9.234883248386313e-7, + "2024-07-30": 9.152728703241899e-7, + "2024-07-29T23": 9.057691808411456e-7, + "2024-07-29T18": 9.083281083595178e-7, + "2024-07-29T21": 9.069927575441861e-7, + "2024-07-29T22": 9.102847167394519e-7, + "2024-07-29T17": 9.046062949971375e-7, + "2024-07-29T15": 9.055486461928679e-7, + "2024-07-30T01": 9.381751273982222e-7, + "2024-07-29T19": 9.085214200651623e-7, + "2024-07-30T04": 9.299311920114316e-7, + "2024-07-29T14": 9.082617759787936e-7, + "2024-07-29T20": 9.136534036626041e-7, + "2024-07-30T03": 9.292752173074083e-7, + "2024-07-30T00": 8.958413058648295e-7, + "2024-07-29T16": 9.071941399047581e-7, + "2024-07-30T02": 9.353633680698546e-7, + "2024-07-30T09": 9.268970172154094e-7, + "2024-07-30T08": 9.28708775780035e-7, + "2024-07-30T06": 9.296667165302606e-7, + "2024-07-30T05": 9.3151465833101e-7, + "2024-07-30T07": 9.296837214674934e-7, + "2024-07-30T10": 9.259133364665894e-7, + "2024-07-30T11": 9.178360501177213e-7, + "2024-07-30T12": 9.157191240156994e-7, + "2024-07-30T13": 9.093413026418732e-7, + "2024-07-31": 9.06502016548209e-7, + "2024-07-31T00": 9.19282867675396e-7, + "2024-07-31T05": 8.921868604219374e-7, + "2024-07-30T23": 9.12538437698996e-7, + "2024-07-30T19": 9.088153384982013e-7, + "2024-07-30T16": 9.163204753557154e-7, + "2024-07-30T17": 9.133407898662497e-7, + "2024-07-30T18": 9.134117120292367e-7, + "2024-07-30T20": 9.09533076327744e-7, + "2024-07-30T15": 9.095200313631498e-7, + "2024-07-31T03": 8.909767398957733e-7, + "2024-07-30T21": 9.072208776220104e-7, + "2024-07-31T01": 9.089365379487202e-7, + "2024-07-31T07": 8.975572398772381e-7, + "2024-07-31T06": 8.950650024682245e-7, + "2024-07-31T02": 8.994322964809244e-7, + "2024-07-30T22": 9.094841132499594e-7, + "2024-07-30T14": 9.12374535784814e-7, + "2024-07-31T04": 8.897960832602274e-7, + "2024-07-31T08": 8.962327859539027e-7, + "2024-07-31T11": 8.89855128887581e-7, + "2024-07-31T09": 8.967015374606471e-7, + "2024-07-31T10": 8.90959132112133e-7, + "2024-07-31T12": 8.930707978467756e-7, + "2024-08-01": 8.779977646881202e-7, + "2024-07-31T14": 8.986392160699659e-7, + "2024-07-31T23": 8.822112216782277e-7, + "2024-07-31T13": 8.916789508557626e-7, + "2024-07-31T21": 8.82777003413826e-7, + "2024-08-01T01": 8.785219852034265e-7, + "2024-07-31T18": 8.98671760322324e-7, + "2024-07-31T19": 8.978465391088774e-7, + "2024-07-31T16": 8.917592957370197e-7, + "2024-08-01T02": 8.76763162392282e-7, + "2024-07-31T22": 8.839290082347231e-7, + "2024-07-31T20": 8.869140076688208e-7, + "2024-07-31T17": 8.968948628731427e-7, + "2024-08-01T00": 8.782095447547228e-7, + "2024-07-31T15": 8.979241599313335e-7, + "2024-08-01T07": 8.703414792987502e-7, + "2024-08-01T06": 8.727600023878747e-7, + "2024-08-01T05": 8.70363107368682e-7, + "2024-08-01T04": 8.736822597992492e-7, + "2024-08-01T03": 8.691299315899995e-7, + "2024-08-01T08": 8.727324996764485e-7, + "2024-08-01T09": 8.710812964193415e-7, + "2024-08-01T10": 8.698009045275311e-7, + "2024-08-01T11": 8.679346566043558e-7, + "2024-08-01T12": 8.674754865372034e-7, + "2024-08-01T13": 8.727348008018809e-7, + "2024-08-01T14": 8.716881505464374e-7, + "2024-08-01T15": 8.629271709801431e-7, + "2024-08-02": 8.661646674190951e-7, + "2024-08-02T00": 8.610734559660166e-7, + "2024-08-01T20": 8.527109003963045e-7, + "2024-08-01T21": 8.556628761743951e-7, + "2024-08-02T04": 8.620810021495891e-7, + "2024-08-01T19": 8.478140932436085e-7, + "2024-08-01T16": 8.547321850476776e-7, + "2024-08-02T02": 8.620833228809182e-7, + "2024-08-01T17": 8.50972567605613e-7, + "2024-08-01T23": 8.61765750787701e-7, + "2024-08-02T01": 8.643164765431985e-7, + "2024-08-01T22": 8.55708074539544e-7, + "2024-08-01T18": 8.524679823254173e-7, + "2024-08-02T03": 8.620471656385911e-7, + "2024-08-02T05": 8.619682983733673e-7, + "2024-08-02T06": 8.564096448464879e-7, + "2024-08-02T07": 8.477066844391569e-7, + "2024-08-02T08": 8.450585078662137e-7, + "2024-08-02T09": 8.470580388419622e-7, + "2024-08-02T10": 8.464776741187917e-7, + "2024-08-02T11": 8.475185179859028e-7, + "2024-08-02T12": 8.49597490102684e-7, + "2024-08-02T13": 8.453687086850114e-7, + "2024-08-02T14": 8.449423133160707e-7, + "2024-08-02T15": 8.303414833252866e-7, + "2024-08-03": 8.165427151142848e-7, + "2024-08-02T16": 8.231992698475983e-7, + "2024-08-02T22": 8.12275208988745e-7, + "2024-08-02T23": 8.086195187038497e-7, + "2024-08-03T00": 8.10979943312216e-7, + "2024-08-03T01": 8.03530760382003e-7, + "2024-08-03T03": 7.959161942848698e-7, + "2024-08-02T19": 8.216776662859496e-7, + "2024-08-02T18": 8.227008728521118e-7, + "2024-08-02T21": 8.180665790263157e-7, + "2024-08-02T17": 8.234976656201442e-7, + "2024-08-02T20": 8.153499837241705e-7, + "2024-08-03T02": 7.949654858176559e-7, + "2024-08-03T06": 7.980845223957238e-7, + "2024-08-03T19": 7.863300656696434e-7, + "2024-08-03T10": 8.029593914364447e-7, + "2024-08-03T09": 8.015550631834427e-7, + "2024-08-03T15": 8.051161255586938e-7, + "2024-08-03T22": 7.869933572728534e-7, + "2024-08-03T05": 7.954510701665307e-7, + "2024-08-03T08": 8.019552460536571e-7, + "2024-08-03T14": 8.043366033906532e-7, + "2024-08-03T18": 7.888781905323504e-7, + "2024-08-03T17": 8.025161174503641e-7, + "2024-08-03T21": 7.841253727067729e-7, + "2024-08-03T12": 8.022912906239428e-7, + "2024-08-03T20": 7.84767185649597e-7, + "2024-08-03T04": 7.992553991655616e-7, + "2024-08-03T16": 7.96703191737833e-7, + "2024-08-03T11": 8.027472831630182e-7, + "2024-08-03T07": 8.036650215761168e-7, + "2024-08-03T13": 8.048754998995639e-7, + "2024-08-04": 7.8729053046043e-7, + "2024-08-03T23": 7.865773043607166e-7, + "2024-08-04T17": 7.809496252844405e-7, + "2024-08-04T13": 7.952908732812996e-7, + "2024-08-04T06": 7.931618199079839e-7, + "2024-08-04T12": 7.947495509618535e-7, + "2024-08-04T10": 7.946304728272432e-7, + "2024-08-04T16": 7.898828440266779e-7, + "2024-08-04T15": 7.766142389114396e-7, + "2024-08-04T00": 7.865022797740013e-7, + "2024-08-04T11": 7.989576245386179e-7, + "2024-08-04T01": 7.874142043599984e-7, + "2024-08-04T03": 7.947453771441652e-7, + "2024-08-04T04": 7.9296429014359e-7, + "2024-08-04T07": 7.934075028828939e-7, + "2024-08-04T08": 7.904322860862504e-7, + "2024-08-04T18": 7.746909171055412e-7, + "2024-08-04T09": 7.903525290996931e-7, + "2024-08-04T02": 7.92273768741286e-7, + "2024-08-04T05": 7.900607404500834e-7, + "2024-08-04T14": 7.948240851986625e-7, + "2024-08-05": 7.589808828432039e-7, + "2024-08-05T01": 7.321012751057631e-7, + "2024-08-04T19": 7.766839267657428e-7, + "2024-08-04T22": 7.72060885249986e-7, + "2024-08-05T03": 7.054634831409963e-7, + "2024-08-05T02": 7.040531974919522e-7, + "2024-08-04T23": 7.690042388285936e-7, + "2024-08-05T00": 7.671695743389062e-7, + "2024-08-05T04": 7.049795830232946e-7, + "2024-08-05T06": 6.84257198672557e-7, + "2024-08-04T20": 7.765516995504953e-7, + "2024-08-05T05": 6.991249063086032e-7, + "2024-08-04T21": 7.766847398982689e-7, + "2024-08-05T07": 6.640077132648184e-7, + "2024-08-05T08": 6.72476679466056e-7, + "2024-08-05T09": 6.691876717626448e-7, + "2024-08-05T10": 6.689532276082522e-7, + "2024-08-05T11": 6.594476297697297e-7, + "2024-08-05T12": 6.56386018503335e-7, + "2024-08-05T13": 6.518592367545012e-7, + "2024-08-05T14": 6.625597623221733e-7, + "2024-08-05T15": 6.856477246663089e-7, + "2024-08-06": 6.949532042162451e-7, + "2024-08-05T19": 6.986334736798996e-7, + "2024-08-05T20": 6.966380189376523e-7, + "2024-08-05T21": 7.029230605026889e-7, + "2024-08-06T02": 7.17393854520673e-7, + "2024-08-05T18": 7.045986289442268e-7, + "2024-08-05T23": 6.977140270398919e-7, + "2024-08-05T16": 6.937566538195617e-7, + "2024-08-06T05": 7.173704270812489e-7, + "2024-08-05T17": 7.013981558786512e-7, + "2024-08-06T00": 6.949532042162451e-7, + "2024-08-06T04": 7.186708638636854e-7, + "2024-08-06T03": 7.236438277340828e-7, + "2024-08-05T22": 6.970776007798924e-7, + "2024-08-06T01": 7.169996717274057e-7, + "2024-08-06T06": 7.266883898391123e-7, + "2024-08-06T07": 7.273856602331502e-7, + "2024-08-06T08": 7.267759109636805e-7, + "2024-08-06T09": 7.106700641781024e-7, + "2024-08-06T10": 7.070330365780346e-7, + "2024-08-06T11": 7.084025755024438e-7, + "2024-08-06T12": 7.135387375208644e-7, + "2024-08-06T13": 7.081313024991396e-7, + "2024-08-06T14": 7.102111284534447e-7 + }, + "USD bsc": { + "2024-06-28": 574.883047964823, + "2024-06-30": 575.7213620959285, + "2024-07-15": 563.0731358912597, + "2024-07-18": 572.4992356059385, + "2024-07-14": 536.8875412034189, + "2024-07-11": 527.7806189759618, + "2024-07-19": 578.6373026700362, + "2024-07-12": 525.5288404925591, + "2024-07-24": 583.8320504083373, + "2024-07-08": 504.62687520468927, + "2024-07-07": 508.0010482244308, + "2024-07-13": 533.5021897560774, + "2024-07-09": 515.5292792630489, + "2024-07-02": 577.9507746445573, + "2024-07-20": 591.8144740960619, + "2024-06-29": 570.2805487811781, + "2024-07-21": 596.1195772220597, + "2024-07-23": 583.4615420503495, + "2024-07-10": 523.3253778163858, + "2024-07-01": 580.8647575198895, + "2024-06-26": 574.5677470778579, + "2024-07-17": 577.0018067921104, + "2024-07-22": 594.7345295078062, + "2024-07-04": 526.239872024073, + "2024-06-25": 573.7018141234399, + "2024-07-26": 578.0299965164397, + "2024-07-03": 558.9505496339965, + "2024-07-05": 484.4279061233261, + "2024-07-25": 563.6984682508622, + "2024-07-16": 573.5095275132985, + "2024-07-06": 511.2405994784911, + "2024-06-27": 574.2420619940895, + "2024-07-22T13": 596.983566, + "2024-07-25T10": 562.0975719999999, + "2024-07-26T06": 579.58406, + "2024-07-24T14": 586.449329060728, + "2024-07-21T20": 600.7681680000001, + "2024-07-21T07": 592.071651, + "2024-07-21T14": 598.3138696117684, + "2024-07-22T23": 588.7365679999999, + "2024-07-24T07": 585.082447, + "2024-07-20T11": 590.989443, + "2024-07-26T08": 578.607408, + "2024-07-25T20": 564.0645920000001, + "2024-07-21T02": 597.267188, + "2024-07-20T04": 591.4778640000001, + "2024-07-20T03": 591.1659050000001, + "2024-07-25T13": 560.82048, + "2024-07-21T06": 593.5720859999999, + "2024-07-20T12": 591.5838239999999, + "2024-07-24T02": 582.305823, + "2024-07-24T17": 585.094149, + "2024-07-25T06": 562.2537759999999, + "2024-07-25T22": 572.05695, + "2024-07-22T07": 593.5890250000001, + "2024-07-22T22": 591.2150366, + "2024-07-26T03": 577.507584, + "2024-07-23T01": 592.0592, + "2024-07-24T03": 584.235052, + "2024-07-23T21": 582.387345, + "2024-07-19T20": 594.6674800000001, + "2024-07-23T22": 581.504652, + "2024-07-21T23": 601.748136, + "2024-07-19T16": 595.71912, + "2024-07-22T20": 595.3370042530379, + "2024-07-23T10": 586.3741362000001, + "2024-07-19T17": 591.9269405, + "2024-07-22T09": 593.9, + "2024-07-24T04": 583.417502, + "2024-07-22T06": 593.3355979999999, + "2024-07-24T21": 577.14228, + "2024-07-20T21": 594.973562, + "2024-07-21T15": 600.198, + "2024-07-20T09": 590.52461, + "2024-07-25T14": 560.698076, + "2024-07-19T11": 572.2797959999999, + "2024-07-23T20": 582.3164400000001, + "2024-07-25T03": 556.394265, + "2024-07-20T01": 588.8943, + "2024-07-25T23": 571.522773, + "2024-07-20T16": 595.2142, + "2024-07-22T15": 591.9132674, + "2024-07-23T16": 583.2991440000001, + "2024-07-22T02": 601.6, + "2024-07-21T04": 595.7667680000001, + "2024-07-23T09": 587.4, + "2024-07-20T10": 592.0722279999999, + "2024-07-22T19": 595.260677, + "2024-07-20T00": 591.4956, + "2024-07-20T19": 596.0740679999999, + "2024-07-26T05": 578.989971, + "2024-07-19T14": 580.8, + "2024-07-21T00": 594.572376, + "2024-07-22T12": 599.6479680000001, + "2024-07-24T06": 583.9263367204295, + "2024-07-25T01": 561.93256, + "2024-07-20T22": 594.355463, + "2024-07-19T15": 589.6117919999999, + "2024-07-21T13": 594.084109, + "2024-07-25T07": 562.759275, + "2024-07-21T08": 593.0719409999999, + "2024-07-23T06": 581.467207, + "2024-07-22T16": 592.0888000000001, + "2024-07-24T11": 584.6, + "2024-07-24T01": 584.01168, + "2024-07-23T00": 590.5771199999999, + "2024-07-19T12": 573.8079938000001, + "2024-07-25T17": 568.5805730000001, + "2024-07-25T19": 565.7358889999999, + "2024-07-19T21": 594.503042, + "2024-07-23T08": 584.117523, + "2024-07-21T21": 600.6140949999999, + "2024-07-21T11": 594.360434, + "2024-07-22T14": 592.3888450000001, + "2024-07-20T23": 593.7721439999999, + "2024-07-20T08": 589.8948, + "2024-07-20T02": 588.1645550000001, + "2024-07-24T05": 582.5466, + "2024-07-24T16": 583.8525419999999, + "2024-07-21T01": 596.720705, + "2024-07-24T13": 585.5, + "2024-07-25T04": 558.621782, + "2024-07-19T13": 577.354506, + "2024-07-25T12": 561.9420044999999, + "2024-07-19T22": 593.7908150000001, + "2024-07-26T07": 579.389895, + "2024-07-25T02": 556.6731778880659, + "2024-07-21T12": 594.67835, + "2024-07-23T18": 582.4662817769896, + "2024-07-23T11": 583.51167, + "2024-07-19T10": 570.380195, + "2024-07-19T19": 593.2372, + "2024-07-25T11": 564.479767, + "2024-07-22T08": 593.4474720000001, + "2024-07-23T19": 582.792258, + "2024-07-22T21": 592.4217524999999, + "2024-07-21T09": 594.066292, + "2024-07-21T22": 601.26012, + "2024-07-22T04": 601.4989800523268, + "2024-07-25T16": 567.37515, + "2024-07-19T23": 594.1969499999999, + "2024-07-20T06": 590.988424858619, + "2024-07-23T02": 592.147368, + "2024-07-23T14": 585.9037295999999, + "2024-07-23T03": 591.141377, + "2024-07-25T08": 562.5168227999999, + "2024-07-24T15": 584.2376676404291, + "2024-07-19T09": 570.3859, + "2024-07-20T15": 593.3838920000001, + "2024-07-23T23": 582.552425, + "2024-07-23T12": 584.60521, + "2024-07-22T10": 596.805968, + "2024-07-21T10": 594.560488, + "2024-07-22T00": 604.0302, + "2024-07-24T22": 575.3664154, + "2024-07-24T19": 580.2941969999999, + "2024-07-24T09": 588.3, + "2024-07-23T04": 585.638558, + "2024-07-23T05": 580.3348179999999, + "2024-07-25T18": 567.052528, + "2024-07-25T15": 564.8757, + "2024-07-26T01": 573.28532, + "2024-07-22T01": 601.672192, + "2024-07-26T02": 574.885, + "2024-07-24T18": 581.15811, + "2024-07-21T19": 596.732635, + "2024-07-25T05": 561.8651199999999, + "2024-07-22T18": 594.6188999999999, + "2024-07-24T00": 581.752353, + "2024-07-24T08": 587.5941240000001, + "2024-07-24T20": 580.394196, + "2024-07-24T23": 572.0970040000001, + "2024-07-22T17": 593.383062, + "2024-07-21T17": 597.957011, + "2024-07-24T12": 583.7175110000001, + "2024-07-23T13": 581.3930079999999, + "2024-07-21T05": 594.566432, + "2024-07-20T05": 590.9735312, + "2024-07-21T03": 596.66702, + "2024-07-26T00": 572.2335336380222, + "2024-07-20T20": 597.2388, + "2024-07-22T03": 602.924116, + "2024-07-25T21": 570.768693, + "2024-07-21T16": 599.821852, + "2024-07-20T17": 596.33844, + "2024-07-22T11": 598.8079637, + "2024-07-25T00": 574.8965000000001, + "2024-07-20T13": 589.8476320000001, + "2024-07-23T07": 579.85798, + "2024-07-22T05": 597.03582, + "2024-07-20T07": 591.3659950000001, + "2024-07-21T18": 589.453356, + "2024-07-23T17": 581.6581600000001, + "2024-07-20T14": 591.6447396, + "2024-07-26T04": 578.518996, + "2024-07-24T10": 586.8, + "2024-07-20T18": 597.4986, + "2024-07-23T15": 585.399501, + "2024-07-19T18": 590.655936364767, + "2024-07-25T09": 565.29642, + "latest": 487.44, + "2024-07-26T09": 577.6959959999999, + "2024-07-26T10": 576.1443989999999, + "2024-07-26T11": 576.461616, + "2024-07-26T12": 577.301842, + "2024-07-26T13": 577.4076, + "2024-07-26T14": 576.848079, + "2024-07-26T17": 577.9231499445267, + "2024-07-26T16": 578.071095, + "2024-07-26T15": 578.1537440000001, + "2024-07-26T18": 578, + "2024-07-27": 584.3964247309128, + "2024-07-28": 580.8052828964328, + "2024-07-28T05": 576.4442355000001, + "2024-07-26T21": 580.8, + "2024-07-27T02": 578.517355, + "2024-07-28T01": 583.2591689999999, + "2024-07-27T10": 588.247056, + "2024-07-28T02": 582.1708900000001, + "2024-07-27T19": 583.2457750000001, + "2024-07-27T09": 587.952911, + "2024-07-27T06": 585.711714, + "2024-07-27T18": 583.9875850000001, + "2024-07-26T22": 582.223288, + "2024-07-27T13": 590.576765, + "2024-07-27T12": 587.7298971, + "2024-07-27T16": 584.85848, + "2024-07-27T05": 584.3116859999999, + "2024-07-26T23": 581.423256, + "2024-07-26T20": 579.7, + "2024-07-27T08": 587.02935, + "2024-07-28T03": 581.8683624, + "2024-07-27T01": 578.923156, + "2024-07-28T09": 578.2884339999999, + "2024-07-28T10": 579.782606, + "2024-07-27T00": 580.0232, + "2024-07-28T00": 580.5541944, + "2024-07-27T04": 583.611672, + "2024-07-27T14": 589.0589, + "2024-07-27T07": 587.15, + "2024-07-27T11": 586.8997559999999, + "2024-07-27T22": 583.94744, + "2024-07-27T03": 583.1058310000001, + "2024-07-27T20": 577.7288850000001, + "2024-07-27T23": 582.759204, + "2024-07-28T08": 578.2884339999999, + "2024-07-27T21": 583.1425052, + "2024-07-28T07": 577.8884419999999, + "2024-07-27T15": 585.35853, + "2024-07-26T19": 580.6, + "2024-07-28T04": 579.6724483961559, + "2024-07-28T06": 579.388412, + "2024-07-27T17": 583.970068, + "2024-07-29": 588.4072076133785, + "2024-07-28T20": 583.135848, + "2024-07-28T16": 580.794192, + "2024-07-29T07": 593.4765842928555, + "2024-07-28T23": 584.188316, + "2024-07-28T15": 580.094199, + "2024-07-28T18": 582.435925, + "2024-07-29T04": 591.129056, + "2024-07-29T06": 593.9044412948164, + "2024-07-28T21": 582.24177, + "2024-07-29T03": 595.134528, + "2024-07-28T12": 580.98257, + "2024-07-29T05": 592.028948, + "2024-07-28T17": 579.8362109999999, + "2024-07-29T00": 586.8, + "2024-07-29T01": 586.9, + "2024-07-28T22": 582.782516, + "2024-07-28T19": 583.8357709999999, + "2024-07-28T14": 580, + "2024-07-29T02": 591.1499326880011, + "2024-07-29T08": 593.18134, + "2024-07-28T11": 581.026758, + "2024-07-28T13": 581.288374, + "2024-07-29T09": 592.86954, + "2024-07-29T10": 593.7356892616166, + "2024-07-29T11": 593.2987028935174, + "2024-07-29T12": 592.3073652567913, + "2024-07-29T13": 591.646747, + "2024-07-30": 573.2804060287864, + "2024-07-29T23": 575.425185, + "2024-07-29T18": 577.050260578161, + "2024-07-29T21": 577.253816, + "2024-07-29T22": 579.024717, + "2024-07-29T17": 575.2034274, + "2024-07-29T15": 582.548498, + "2024-07-30T01": 572.474028, + "2024-07-29T19": 577.507584, + "2024-07-30T04": 572.48548, + "2024-07-29T14": 588.011785, + "2024-07-29T20": 577.636453, + "2024-07-30T03": 572.619822, + "2024-07-30T00": 570.802947, + "2024-07-29T16": 576.915328, + "2024-07-30T02": 569.6860399999999, + "2024-07-30T09": 573.173874, + "2024-07-30T08": 573.239448, + "2024-07-30T06": 572.6739839999999, + "2024-07-30T05": 571.3914149999999, + "2024-07-30T07": 574.450604, + "2024-07-30T10": 572.802607, + "2024-07-30T11": 573.3595692, + "2024-07-30T12": 573.48528, + "2024-07-30T13": 573.68524, + "2024-07-31": 587.4749917405737, + "2024-07-31T00": 585.25365, + "2024-07-31T05": 582.671784, + "2024-07-30T23": 584.130553, + "2024-07-30T19": 571.588434, + "2024-07-30T16": 574.915968, + "2024-07-30T17": 573.1122800999999, + "2024-07-30T18": 573.0165760000001, + "2024-07-30T20": 573.12801, + "2024-07-30T15": 573.2050439999999, + "2024-07-31T03": 585.1770869999999, + "2024-07-30T21": 575.6502919999999, + "2024-07-31T01": 584.465542, + "2024-07-31T07": 585.918309, + "2024-07-31T06": 586.1999527, + "2024-07-31T02": 585.8828, + "2024-07-30T22": 579.2719624, + "2024-07-30T14": 573.3853, + "2024-07-31T04": 583.477444, + "2024-07-31T08": 587.635445, + "2024-07-31T11": 585.777645, + "2024-07-31T09": 586.970992, + "2024-07-31T10": 585.119008, + "2024-07-31T12": 585.8717280000001, + "2024-08-01": 569.6885419903697, + "2024-07-31T14": 586.33603, + "2024-07-31T23": 576.81536, + "2024-07-31T13": 587.023969, + "2024-07-31T21": 576.980664, + "2024-08-01T01": 573.9990300000001, + "2024-07-31T18": 588.905597, + "2024-07-31T19": 583.80144, + "2024-07-31T16": 586.371226, + "2024-08-01T02": 570.70308, + "2024-07-31T22": 578.220696, + "2024-07-31T20": 578.1744239999999, + "2024-07-31T17": 590.5895802, + "2024-08-01T00": 576.309755, + "2024-07-31T15": 586.7993136, + "2024-08-01T07": 569.1767382463676, + "2024-08-01T06": 568.921092, + "2024-08-01T05": 567.4943767663733, + "2024-08-01T04": 566.0055239999999, + "2024-08-01T03": 569.6979, + "2024-08-01T08": 569.403756, + "2024-08-01T09": 570.8196812206082, + "2024-08-01T10": 570.3975290000001, + "2024-08-01T11": 571.9567022, + "2024-08-01T12": 573.2262006742072, + "2024-08-01T13": 572.674984, + "2024-08-01T14": 571.0800456000001, + "2024-08-01T15": 560.7195, + "2024-08-02": 575.3955117876043, + "2024-08-02T00": 575.4816, + "2024-08-01T20": 565.628138, + "2024-08-01T21": 571.074128, + "2024-08-02T04": 571.7792069999999, + "2024-08-01T19": 558.245254, + "2024-08-01T16": 556.3103100000001, + "2024-08-02T02": 566.906362, + "2024-08-01T17": 556.4189353, + "2024-08-01T23": 574.764971, + "2024-08-02T01": 570.691632, + "2024-08-01T22": 575.721754, + "2024-08-01T18": 555.188756, + "2024-08-02T03": 570.075048, + "2024-08-02T05": 569.5041, + "2024-08-02T06": 566.3892168000001, + "2024-08-02T07": 569.9379759999999, + "2024-08-02T08": 570.126402, + "2024-08-02T09": 571.5080800000001, + "2024-08-02T10": 571.1955612, + "2024-08-02T11": 573.2480668000001, + "2024-08-02T12": 571.19988, + "2024-08-02T13": 574.1518120000001, + "2024-08-02T14": 567.191328, + "2024-08-02T15": 551.658844, + "2024-08-03": 535.0822966397136, + "2024-08-02T16": 556.12689, + "2024-08-02T22": 541.981436, + "2024-08-02T23": 542.8043200000001, + "2024-08-03T00": 536.895744, + "2024-08-03T01": 529.947362, + "2024-08-03T03": 539.3474119, + "2024-08-02T19": 554.494941, + "2024-08-02T18": 556.7130750725617, + "2024-08-02T21": 549.7497, + "2024-08-02T17": 558.1692350000001, + "2024-08-02T20": 554.095377, + "2024-08-03T02": 536.29116, + "2024-08-03T06": 542.508021, + "2024-08-03T19": 525.539759, + "2024-08-03T10": 539.624712, + "2024-08-03T09": 537.7210020000001, + "2024-08-03T15": 535.8407460000001, + "2024-08-03T22": 527.7310103020388, + "2024-08-03T05": 541.2185798, + "2024-08-03T08": 538.2873543, + "2024-08-03T14": 543.3306054, + "2024-08-03T18": 526.950876, + "2024-08-03T17": 527.519912, + "2024-08-03T21": 524.9848199999999, + "2024-08-03T12": 541.58808, + "2024-08-03T20": 523.64892, + "2024-08-03T04": 540.353691, + "2024-08-03T16": 529.9022749999999, + "2024-08-03T11": 540.2458120000001, + "2024-08-03T07": 542.8185619999999, + "2024-08-03T13": 541.63144, + "2024-08-04": 528.7641458775303, + "2024-08-03T23": 528.9036480000001, + "2024-08-04T17": 493.68989700000003, + "2024-08-04T13": 526.3367000000001, + "2024-08-04T06": 527.972454, + "2024-08-04T12": 525.7370000000001, + "2024-08-04T10": 525.72648, + "2024-08-04T16": 501.738488, + "2024-08-04T15": 503.562387, + "2024-08-04T00": 529.587359, + "2024-08-04T11": 526.9311280000001, + "2024-08-04T01": 528.787831, + "2024-08-04T03": 528.072392, + "2024-08-04T04": 528.177615, + "2024-08-04T07": 523.391017, + "2024-08-04T08": 523.68036, + "2024-08-04T18": 495.0468811701582, + "2024-08-04T09": 526.099952, + "2024-08-04T02": 529.1822999999999, + "2024-08-04T05": 527.6379444, + "2024-08-04T14": 511.479969, + "2024-08-05": 445.73318841206395, + "2024-08-05T01": 473.2916470391791, + "2024-08-04T19": 503.51022904357745, + "2024-08-04T22": 502.1595905280056, + "2024-08-05T03": 451.60889645932343, + "2024-08-05T02": 452.5639778507159, + "2024-08-04T23": 502.94215821034635, + "2024-08-05T00": 496.90675751811546, + "2024-08-05T04": 442.6885093785315, + "2024-08-05T06": 432.659451111809, + "2024-08-04T20": 507.21002124546123, + "2024-08-05T05": 439.8689204361363, + "2024-08-04T21": 506.6347106961694, + "2024-08-05T07": 421.81322259446574, + "2024-08-05T08": 438.20166012774945, + "2024-08-05T09": 444.0435338669035, + "2024-08-05T10": 442.90536055610266, + "2024-08-05T11": 431.6891287747263, + "2024-08-05T12": 431.5531791536668, + "2024-08-05T13": 410.43255100835916, + "2024-08-05T14": 438.0529269935436, + "2024-08-05T15": 461.3798401466033, + "2024-08-06": 482.8128988178774, + "2024-08-05T19": 455.7707920228882, + "2024-08-05T20": 461.36037296334405, + "2024-08-05T21": 465.483772, + "2024-08-06T02": 483.18354000000005, + "2024-08-05T18": 461.2099182635505, + "2024-08-05T23": 468.39366, + "2024-08-05T16": 466.7422507300311, + "2024-08-06T05": 482.4244626, + "2024-08-05T17": 467.5650790890101, + "2024-08-06T00": 481.0962, + "2024-08-06T04": 480.01591, + "2024-08-06T03": 480.28723899999994, + "2024-08-05T22": 467.4796271545576, + "2024-08-06T01": 486.74598000000003, + "2024-08-06T06": 489.2568969999999, + "2024-08-06T07": 488.72722799999997, + "2024-08-06T08": 483.0672632760613, + "2024-08-06T09": 479.14369999999997, + "2024-08-06T10": 479.053248, + "2024-08-06T11": 478.019475, + "2024-08-06T12": 476.97641600000003, + "2024-08-06T13": 474.63286000000005, + "2024-08-06T14": 474.63760499999995 + }, + "USD cardano": { + "2024-06-28": 0.3903499394686465, + "2024-06-30": 0.38507104660529323, + "2024-07-15": 0.4371604062883676, + "2024-07-18": 0.43648208011776235, + "2024-07-14": 0.4317886977808115, + "2024-07-11": 0.3941053261899817, + "2024-07-19": 0.4258043503379379, + "2024-07-12": 0.4018237805378646, + "2024-07-24": 0.4125526156370177, + "2024-07-08": 0.36506809906789006, + "2024-07-07": 0.3640270256717183, + "2024-07-13": 0.42520503116387764, + "2024-07-09": 0.372893703260361, + "2024-07-02": 0.41227268130780165, + "2024-07-20": 0.43627124530077177, + "2024-06-29": 0.3936633400700163, + "2024-07-21": 0.43227165092992453, + "2024-07-23": 0.4195298914954284, + "2024-07-10": 0.3838095515427311, + "2024-07-01": 0.40010783418616697, + "2024-06-26": 0.38939190919476974, + "2024-07-17": 0.44558813484103554, + "2024-07-22": 0.4331111284178898, + "2024-07-04": 0.3893565062441616, + "2024-06-25": 0.3908776178250976, + "2024-07-26": 0.413091477170967, + "2024-07-03": 0.40810212719548916, + "2024-07-05": 0.34414648056471336, + "2024-07-25": 0.3941894434089657, + "2024-07-16": 0.4403338062063021, + "2024-07-06": 0.3565185572497045, + "2024-06-27": 0.3842518057267518, + "2024-07-22T13": 0.43594202334000004, + "2024-07-25T10": 0.3941352904564342, + "2024-07-26T06": 0.41281742, + "2024-07-24T14": 0.41846276000000004, + "2024-07-21T20": 0.43412152000000004, + "2024-07-21T07": 0.430324758, + "2024-07-21T14": 0.43011318878, + "2024-07-22T23": 0.4264538978, + "2024-07-24T07": 0.415187544, + "2024-07-20T11": 0.43411261100000004, + "2024-07-26T08": 0.41302490544, + "2024-07-25T20": 0.38426307194023757, + "2024-07-21T02": 0.43752247200000005, + "2024-07-20T04": 0.439806612, + "2024-07-20T03": 0.43746276970000003, + "2024-07-25T13": 0.392074496, + "2024-07-21T06": 0.43178518139999994, + "2024-07-20T12": 0.432607552, + "2024-07-24T02": 0.407504075, + "2024-07-24T17": 0.41419585800000003, + "2024-07-25T06": 0.39613897707999995, + "2024-07-25T22": 0.392801775, + "2024-07-22T07": 0.4324374983365515, + "2024-07-22T22": 0.427441009, + "2024-07-26T03": 0.40693487999999994, + "2024-07-23T01": 0.42816921897220156, + "2024-07-24T03": 0.41012485273389043, + "2024-07-23T21": 0.410561575, + "2024-07-19T20": 0.43958710913039284, + "2024-07-23T22": 0.40972273682, + "2024-07-21T23": 0.44683574400000003, + "2024-07-19T16": 0.43548708, + "2024-07-22T20": 0.43197208704000006, + "2024-07-23T10": 0.4259377389300655, + "2024-07-19T17": 0.43645273147999997, + "2024-07-22T09": 0.434813, + "2024-07-24T04": 0.40940028164, + "2024-07-22T06": 0.431825908, + "2024-07-24T21": 0.41095889999999996, + "2024-07-20T21": 0.43583939393999993, + "2024-07-21T15": 0.431442329, + "2024-07-20T09": 0.437540515, + "2024-07-25T14": 0.39085924, + "2024-07-19T11": 0.420311716, + "2024-07-23T20": 0.41044461305441504, + "2024-07-25T03": 0.394025121, + "2024-07-20T01": 0.43611795, + "2024-07-25T23": 0.39333209130284685, + "2024-07-20T16": 0.43455638399999996, + "2024-07-22T15": 0.43057674841999993, + "2024-07-23T16": 0.41047333447053275, + "2024-07-22T02": 0.4402, + "2024-07-21T04": 0.4354371869604922, + "2024-07-23T09": 0.4258, + "2024-07-20T10": 0.43650069799999996, + "2024-07-22T19": 0.429916046, + "2024-07-20T00": 0.4369026789252918, + "2024-07-20T19": 0.43657673295999994, + "2024-07-26T05": 0.40830540723, + "2024-07-19T14": 0.4293, + "2024-07-21T00": 0.43752684599999997, + "2024-07-22T12": 0.43717307215545104, + "2024-07-24T06": 0.4100041, + "2024-07-25T01": 0.395552528, + "2024-07-20T22": 0.43751304975, + "2024-07-19T15": 0.43000859999999996, + "2024-07-21T13": 0.42913299, + "2024-07-25T07": 0.39617393175, + "2024-07-21T08": 0.4312270195799999, + "2024-07-23T06": 0.41986297000000006, + "2024-07-22T16": 0.42986447000000005, + "2024-07-24T11": 0.4187, + "2024-07-24T01": 0.408108162, + "2024-07-23T00": 0.42672797999999995, + "2024-07-19T12": 0.420503262, + "2024-07-25T17": 0.39481707099999996, + "2024-07-25T19": 0.38678779900000004, + "2024-07-19T21": 0.44062460400000003, + "2024-07-23T08": 0.42310669282, + "2024-07-21T21": 0.435418011141489, + "2024-07-21T11": 0.43054121475, + "2024-07-22T14": 0.43099066370061245, + "2024-07-20T23": 0.4371134921092463, + "2024-07-20T08": 0.43891934999999993, + "2024-07-20T02": 0.43539584, + "2024-07-24T05": 0.408232656, + "2024-07-24T16": 0.411637044, + "2024-07-21T01": 0.437361764, + "2024-07-24T13": 0.4189, + "2024-07-25T04": 0.3953353343265069, + "2024-07-19T13": 0.42221554, + "2024-07-25T12": 0.3949282683226306, + "2024-07-19T22": 0.4393084284788892, + "2024-07-26T07": 0.414621207, + "2024-07-25T02": 0.3948924307485001, + "2024-07-21T12": 0.43075418749999994, + "2024-07-23T18": 0.40958404929000003, + "2024-07-23T11": 0.42400847999999997, + "2024-07-19T10": 0.41891650669691827, + "2024-07-19T19": 0.43907556, + "2024-07-25T11": 0.39512109253062694, + "2024-07-22T08": 0.43433474400000005, + "2024-07-23T19": 0.410335366, + "2024-07-22T21": 0.42922443899999996, + "2024-07-21T09": 0.43222098800000003, + "2024-07-21T22": 0.44244424, + "2024-07-22T04": 0.438735096, + "2024-07-25T16": 0.39381234222, + "2024-07-19T23": 0.4386802305, + "2024-07-20T06": 0.4398938872, + "2024-07-23T02": 0.42803424, + "2024-07-23T14": 0.4204103921442899, + "2024-07-23T03": 0.4270250289476808, + "2024-07-25T08": 0.39588516, + "2024-07-24T15": 0.414778793, + "2024-07-19T09": 0.41981602, + "2024-07-20T15": 0.43321625542000003, + "2024-07-23T23": 0.41023691799999995, + "2024-07-23T12": 0.42177590600000003, + "2024-07-22T10": 0.43640436400000004, + "2024-07-21T10": 0.43219366079, + "2024-07-22T00": 0.4477305260391084, + "2024-07-24T22": 0.40865042968, + "2024-07-24T19": 0.41182695301583766, + "2024-07-24T09": 0.4172484452749473, + "2024-07-23T04": 0.42454244999999996, + "2024-07-23T05": 0.41982518799999996, + "2024-07-25T18": 0.389298756, + "2024-07-25T15": 0.39430523376000004, + "2024-07-26T01": 0.39872024, + "2024-07-22T01": 0.44305315999999995, + "2024-07-26T02": 0.4033808325438788, + "2024-07-24T18": 0.41093329304885085, + "2024-07-21T19": 0.424365438, + "2024-07-25T05": 0.396704768, + "2024-07-22T18": 0.42997097700000003, + "2024-07-24T00": 0.40818273314, + "2024-07-24T08": 0.41899581, + "2024-07-24T20": 0.41299587, + "2024-07-24T23": 0.40594491676, + "2024-07-22T17": 0.42896004600000004, + "2024-07-21T17": 0.429786362642236, + "2024-07-24T12": 0.418812564, + "2024-07-23T13": 0.41856695999999993, + "2024-07-21T05": 0.43362138, + "2024-07-20T05": 0.43889805496761897, + "2024-07-21T03": 0.43740343868, + "2024-07-26T00": 0.39574974824350534, + "2024-07-20T20": 0.43727684079999996, + "2024-07-22T03": 0.43951758, + "2024-07-25T21": 0.39091007000000005, + "2024-07-21T16": 0.430559248, + "2024-07-20T17": 0.43597432, + "2024-07-22T11": 0.436813104, + "2024-07-25T00": 0.40651281452000004, + "2024-07-20T13": 0.42988047400000007, + "2024-07-23T07": 0.41944194, + "2024-07-22T05": 0.43452607, + "2024-07-20T07": 0.44059818000000006, + "2024-07-21T18": 0.422581632, + "2024-07-23T17": 0.40654064999999995, + "2024-07-20T14": 0.431263818, + "2024-07-26T04": 0.40739195714, + "2024-07-24T10": 0.4175, + "2024-07-20T18": 0.43631804999999996, + "2024-07-23T15": 0.4173209325, + "2024-07-19T18": 0.4356326759053305, + "2024-07-25T09": 0.39693505191999995, + "latest": 0.333912, + "2024-07-26T09": 0.41402546200000007, + "2024-07-26T10": 0.4130384671494649, + "2024-07-26T11": 0.412101072, + "2024-07-26T12": 0.4122769783949476, + "2024-07-26T13": 0.411734112, + "2024-07-26T14": 0.41218490001999997, + "2024-07-26T17": 0.41443171119999994, + "2024-07-26T16": 0.41477926, + "2024-07-26T15": 0.41442584328000004, + "2024-07-26T18": 0.415068, + "2024-07-27": 0.42033382966108074, + "2024-07-28": 0.4109410961522807, + "2024-07-28T05": 0.41056477483713627, + "2024-07-26T21": 0.416521, + "2024-07-27T02": 0.414812444, + "2024-07-28T01": 0.419370642, + "2024-07-27T10": 0.41723337600000004, + "2024-07-28T02": 0.41837908, + "2024-07-27T19": 0.42070515, + "2024-07-27T09": 0.41753757499999994, + "2024-07-27T06": 0.41554792971112214, + "2024-07-27T18": 0.42306345, + "2024-07-26T22": 0.4175167, + "2024-07-27T13": 0.42355505499999996, + "2024-07-27T12": 0.42015541428000003, + "2024-07-27T16": 0.42557326307066057, + "2024-07-27T05": 0.41619432372, + "2024-07-26T23": 0.41781671200000003, + "2024-07-26T20": 0.4167, + "2024-07-27T08": 0.41692084500000004, + "2024-07-28T03": 0.41635267278, + "2024-07-27T01": 0.4148495942452176, + "2024-07-28T09": 0.41099178, + "2024-07-28T10": 0.41130966034000005, + "2024-07-27T00": 0.41611664400000004, + "2024-07-28T00": 0.41619583800000004, + "2024-07-27T04": 0.41532130625999997, + "2024-07-27T14": 0.42376955290267787, + "2024-07-27T07": 0.4174, + "2024-07-27T11": 0.41717090700000004, + "2024-07-27T22": 0.42056214599999997, + "2024-07-27T03": 0.41566316552225646, + "2024-07-27T20": 0.4172208600000001, + "2024-07-27T23": 0.419370642, + "2024-07-28T08": 0.41038884756358995, + "2024-07-27T21": 0.422487325, + "2024-07-28T07": 0.410891782, + "2024-07-27T15": 0.42234223, + "2024-07-26T19": 0.418001, + "2024-07-28T04": 0.4135761172197914, + "2024-07-28T06": 0.412191756, + "2024-07-27T17": 0.42505099999999996, + "2024-07-29": 0.41538544491312696, + "2024-07-28T20": 0.40796098726866165, + "2024-07-28T16": 0.40831891677, + "2024-07-29T07": 0.421724076, + "2024-07-28T23": 0.4069331155282264, + "2024-07-28T15": 0.4078359216, + "2024-07-28T18": 0.410554834, + "2024-07-29T04": 0.42296523807999997, + "2024-07-29T06": 0.4239460640240448, + "2024-07-28T21": 0.4068073152, + "2024-07-29T03": 0.42495324999999995, + "2024-07-28T12": 0.411487655, + "2024-07-29T05": 0.422249324, + "2024-07-28T17": 0.40847706258, + "2024-07-29T00": 0.4122, + "2024-07-29T01": 0.4135, + "2024-07-28T22": 0.40607327528494674, + "2024-07-28T19": 0.41059582948999995, + "2024-07-28T14": 0.40795406433890347, + "2024-07-29T02": 0.41767693788000004, + "2024-07-29T08": 0.4219156, + "2024-07-28T11": 0.41228350799999997, + "2024-07-28T13": 0.411391772, + "2024-07-29T09": 0.42033050694, + "2024-07-29T10": 0.419211947, + "2024-07-29T11": 0.419011989, + "2024-07-29T12": 0.4180437388688923, + "2024-07-29T13": 0.41768640483999997, + "2024-07-30": 0.402321709099549, + "2024-07-29T23": 0.40466157728305935, + "2024-07-29T18": 0.4109178, + "2024-07-29T21": 0.40620950064, + "2024-07-29T22": 0.406847103, + "2024-07-29T17": 0.41090958, + "2024-07-29T15": 0.40824482874, + "2024-07-30T01": 0.4049109, + "2024-07-29T19": 0.409334496, + "2024-07-30T04": 0.4038622114, + "2024-07-29T14": 0.4131760143, + "2024-07-29T20": 0.407655153, + "2024-07-30T03": 0.404143412, + "2024-07-30T00": 0.4027103215830777, + "2024-07-29T16": 0.407569536, + "2024-07-30T02": 0.40251948000000004, + "2024-07-30T09": 0.401811582, + "2024-07-30T08": 0.4030171236, + "2024-07-30T06": 0.403165735295902, + "2024-07-30T05": 0.402423525, + "2024-07-30T07": 0.40379498599999997, + "2024-07-30T10": 0.402031643, + "2024-07-30T11": 0.40407938624543716, + "2024-07-30T12": 0.404734037, + "2024-07-30T13": 0.40441910000000003, + "2024-07-31": 0.4014444502497502, + "2024-07-31T00": 0.4012576605, + "2024-07-31T05": 0.401011758, + "2024-07-30T23": 0.401383565, + "2024-07-30T19": 0.3977332696794328, + "2024-07-30T16": 0.404570496, + "2024-07-30T17": 0.40184938806, + "2024-07-30T18": 0.399772032, + "2024-07-30T20": 0.39868036, + "2024-07-30T15": 0.401331966583918, + "2024-07-31T03": 0.4057188213281752, + "2024-07-30T21": 0.39941712454, + "2024-07-31T01": 0.40400705700000006, + "2024-07-31T07": 0.40240621539, + "2024-07-31T06": 0.403782869, + "2024-07-31T02": 0.40531891999999997, + "2024-07-30T22": 0.40136057166999994, + "2024-07-30T14": 0.40131972, + "2024-07-31T04": 0.403015349, + "2024-07-31T08": 0.4007217179241506, + "2024-07-31T11": 0.40097933999999996, + "2024-07-31T09": 0.40084361, + "2024-07-31T10": 0.40030975904, + "2024-07-31T12": 0.404073592, + "2024-08-01": 0.38536729326423935, + "2024-07-31T14": 0.401919055, + "2024-07-31T23": 0.3889186116719078, + "2024-07-31T13": 0.404609744, + "2024-07-31T21": 0.38935199, + "2024-08-01T01": 0.38806413, + "2024-07-31T18": 0.4018473466, + "2024-07-31T19": 0.39711245704061404, + "2024-07-31T16": 0.402442986, + "2024-08-01T02": 0.386498916, + "2024-07-31T22": 0.38939624973, + "2024-07-31T20": 0.39123804180868094, + "2024-07-31T17": 0.40284283000000004, + "2024-08-01T00": 0.389471432, + "2024-07-31T15": 0.40288474950000003, + "2024-08-01T07": 0.385126615, + "2024-08-01T06": 0.384911301, + "2024-08-01T05": 0.3829061831196122, + "2024-08-01T04": 0.38346949212, + "2024-08-01T03": 0.386894837, + "2024-08-01T08": 0.385599384, + "2024-08-01T09": 0.3861459054, + "2024-08-01T10": 0.38719967535, + "2024-08-01T11": 0.389293565, + "2024-08-01T12": 0.39400201236, + "2024-08-01T13": 0.39211169599999995, + "2024-08-01T14": 0.387037376, + "2024-08-01T15": 0.3790104, + "2024-08-02": 0.3941789689948132, + "2024-08-02T00": 0.3926463, + "2024-08-01T20": 0.37841741200000006, + "2024-08-01T21": 0.38533116887999996, + "2024-08-02T04": 0.38439787931999997, + "2024-08-01T19": 0.37648541, + "2024-08-01T16": 0.3749727481819228, + "2024-08-02T02": 0.38396565899999996, + "2024-08-01T17": 0.375095926, + "2024-08-01T23": 0.39163544, + "2024-08-02T01": 0.38925325600000005, + "2024-08-01T22": 0.3892602838929098, + "2024-08-01T18": 0.370858496, + "2024-08-02T03": 0.38491673576612806, + "2024-08-02T05": 0.38166765999999996, + "2024-08-02T06": 0.378512112, + "2024-08-02T07": 0.380791309, + "2024-08-02T08": 0.38408094800000003, + "2024-08-02T09": 0.3864773434, + "2024-08-02T10": 0.38390800799999997, + "2024-08-02T11": 0.38467660000000004, + "2024-08-02T12": 0.38263197, + "2024-08-02T13": 0.38220165, + "2024-08-02T14": 0.38332101495461807, + "2024-08-02T15": 0.36174514199999996, + "2024-08-03": 0.36237776852709075, + "2024-08-02T16": 0.365988645, + "2024-08-02T22": 0.36365196361999996, + "2024-08-02T23": 0.36393356800000004, + "2024-08-03T00": 0.36252447, + "2024-08-03T01": 0.35726002900000003, + "2024-08-03T03": 0.364765412, + "2024-08-02T19": 0.36420258599999994, + "2024-08-02T18": 0.3651345, + "2024-08-02T21": 0.3654342, + "2024-08-02T17": 0.3675118311968879, + "2024-08-02T20": 0.366899643, + "2024-08-03T02": 0.36339668236, + "2024-08-03T06": 0.37029593699999996, + "2024-08-03T19": 0.353424114, + "2024-08-03T10": 0.36847545600000003, + "2024-08-03T09": 0.36808910887, + "2024-08-03T15": 0.3644617831744257, + "2024-08-03T22": 0.360094629, + "2024-08-03T05": 0.367491631, + "2024-08-03T08": 0.367543137, + "2024-08-03T14": 0.36951266055, + "2024-08-03T18": 0.35109194981646435, + "2024-08-03T17": 0.3520577698944765, + "2024-08-03T21": 0.35674249104776923, + "2024-08-03T12": 0.370118496, + "2024-08-03T20": 0.3540792791505522, + "2024-08-03T04": 0.3663617901638823, + "2024-08-03T16": 0.35746095262020583, + "2024-08-03T11": 0.36903774768000003, + "2024-08-03T07": 0.3708702274242548, + "2024-08-03T13": 0.36894894399999995, + "2024-08-04": 0.35134709376210393, + "2024-08-03T23": 0.36259683200000004, + "2024-08-04T17": 0.3397178, + "2024-08-04T13": 0.3582208, + "2024-08-04T06": 0.36022951914000007, + "2024-08-04T12": 0.3582208, + "2024-08-04T10": 0.358213632, + "2024-08-04T16": 0.34605066399999995, + "2024-08-04T15": 0.34756697400000003, + "2024-08-04T00": 0.36339450890494246, + "2024-08-04T11": 0.35812226445, + "2024-08-04T01": 0.36232710081, + "2024-08-04T03": 0.36377432, + "2024-08-04T04": 0.36201603543, + "2024-08-04T07": 0.35839042482, + "2024-08-04T08": 0.357381864, + "2024-08-04T18": 0.3402427164359977, + "2024-08-04T09": 0.35883834549, + "2024-08-04T02": 0.36498088, + "2024-08-04T05": 0.361179546, + "2024-08-04T14": 0.3498495, + "2024-08-05": 0.30837955360297997, + "2024-08-05T01": 0.3290069261294706, + "2024-08-04T19": 0.34509899314058673, + "2024-08-04T22": 0.34729645602703907, + "2024-08-05T03": 0.3130418967725778, + "2024-08-05T02": 0.3109780235632238, + "2024-08-04T23": 0.3493437212109797, + "2024-08-05T00": 0.3445594720385976, + "2024-08-05T04": 0.30852859923228504, + "2024-08-05T06": 0.3038871712995864, + "2024-08-04T20": 0.3509883227854526, + "2024-08-05T05": 0.3101214072386706, + "2024-08-04T21": 0.3491309698187078, + "2024-08-05T07": 0.2904852501001601, + "2024-08-05T08": 0.3074597789632515, + "2024-08-05T09": 0.3012920271083992, + "2024-08-05T10": 0.30184884591293, + "2024-08-05T11": 0.290637778, + "2024-08-05T12": 0.29073197700000003, + "2024-08-05T13": 0.2872465421969615, + "2024-08-05T14": 0.30581803059637086, + "2024-08-05T15": 0.31823858714754155, + "2024-08-06": 0.3263178732586456, + "2024-08-05T19": 0.309717648, + "2024-08-05T20": 0.313031710969036, + "2024-08-05T21": 0.315156718, + "2024-08-06T02": 0.32716027368, + "2024-08-05T18": 0.31416645012, + "2024-08-05T23": 0.3149139119312432, + "2024-08-05T16": 0.32042413999999997, + "2024-08-06T05": 0.32859375600000007, + "2024-08-05T17": 0.318888033, + "2024-08-06T00": 0.32326464, + "2024-08-06T04": 0.326246745, + "2024-08-06T03": 0.326227179, + "2024-08-05T22": 0.316653822, + "2024-08-06T01": 0.32729816, + "2024-08-06T06": 0.3316419219999999, + "2024-08-06T07": 0.33162203799999995, + "2024-08-06T08": 0.328590472, + "2024-08-06T09": 0.32439728999999995, + "2024-08-06T10": 0.324303744, + "2024-08-06T11": 0.32318077500000003, + "2024-08-06T12": 0.323619695, + "2024-08-06T13": 0.322690328, + "2024-08-06T14": 0.322693554 + }, + "USD celo": { + "2024-06-28": 0.6163219078436715, + "2024-06-30": 0.5854437690675239, + "2024-07-15": 0.5562726701672194, + "2024-07-18": 0.5854894820895813, + "2024-07-14": 0.5396834311156911, + "2024-07-11": 0.5264038826124758, + "2024-07-19": 0.5771996424883298, + "2024-07-12": 0.5221705569212496, + "2024-07-24": 0.5728231454940653, + "2024-07-08": 0.5020526710403824, + "2024-07-07": 0.4975976253107996, + "2024-07-13": 0.5322113831902195, + "2024-07-09": 0.5071879911466705, + "2024-07-02": 0.5870343431742607, + "2024-07-20": 0.5985871680379145, + "2024-06-29": 0.5917632706691285, + "2024-07-21": 0.5968962385300421, + "2024-07-23": 0.5832907583477788, + "2024-07-10": 0.5248438515170861, + "2024-07-01": 0.5956939672629483, + "2024-06-26": 0.5985201346393777, + "2024-07-17": 0.5834389602115895, + "2024-07-22": 0.5912889734440504, + "2024-07-04": 0.5337043034141061, + "2024-06-25": 0.5959152428977295, + "2024-07-26": 0.5578544044527564, + "2024-07-03": 0.57113855335925, + "2024-07-05": 0.4547450192490327, + "2024-07-25": 0.5379765261420987, + "2024-07-16": 0.573111614047305, + "2024-07-06": 0.48258744147113797, + "2024-06-27": 0.6048939122133292, + "2024-07-22T13": 0.5916210076616717, + "2024-07-25T10": 0.534607472, + "2024-07-26T06": 0.5558888000000001, + "2024-07-24T14": 0.5853241492854127, + "2024-07-21T20": 0.602268588, + "2024-07-21T07": 0.5957727239999999, + "2024-07-21T14": 0.5952023, + "2024-07-22T23": 0.58347499, + "2024-07-24T07": 0.57298281, + "2024-07-20T11": 0.59429106, + "2024-07-26T08": 0.55841064, + "2024-07-25T20": 0.5233743599999999, + "2024-07-21T02": 0.6069699040000001, + "2024-07-20T04": 0.600482094, + "2024-07-20T03": 0.60006991, + "2024-07-25T13": 0.5380277760000001, + "2024-07-21T06": 0.5963728979999999, + "2024-07-20T12": 0.594385168, + "2024-07-24T02": 0.5709419662981527, + "2024-07-24T17": 0.579794202, + "2024-07-25T06": 0.5412592359999999, + "2024-07-25T22": 0.5374656, + "2024-07-22T07": 0.5875881250000001, + "2024-07-22T22": 0.58619338, + "2024-07-26T03": 0.548512224, + "2024-07-23T01": 0.59435943, + "2024-07-24T03": 0.57303438, + "2024-07-23T21": 0.57908685, + "2024-07-19T20": 0.5957679750000001, + "2024-07-23T22": 0.572703068, + "2024-07-21T23": 0.6085486800000001, + "2024-07-19T16": 0.58931784, + "2024-07-22T20": 0.6019286460000001, + "2024-07-23T10": 0.591594084, + "2024-07-19T17": 0.588876544, + "2024-07-22T09": 0.5897, + "2024-07-24T04": 0.5699170969999999, + "2024-07-22T06": 0.587335238, + "2024-07-24T21": 0.55914408, + "2024-07-20T21": 0.6025770579999999, + "2024-07-21T15": 0.597096977, + "2024-07-20T09": 0.5983289, + "2024-07-25T14": 0.542004808, + "2024-07-19T11": 0.5778786199999999, + "2024-07-23T20": 0.5811162, + "2024-07-25T03": 0.5398974, + "2024-07-20T01": 0.59559765, + "2024-07-25T23": 0.5371334369999999, + "2024-07-20T16": 0.6044175119999999, + "2024-07-22T15": 0.586352767, + "2024-07-23T16": 0.576998073, + "2024-07-22T02": 0.5995, + "2024-07-21T04": 0.604069092, + "2024-07-23T09": 0.592431101214882, + "2024-07-20T10": 0.595673884, + "2024-07-22T19": 0.5954607310000001, + "2024-07-20T00": 0.5932964999999999, + "2024-07-20T19": 0.605678484, + "2024-07-26T05": 0.552994911, + "2024-07-19T14": 0.5827365296874932, + "2024-07-21T00": 0.604875363, + "2024-07-22T12": 0.5967477360000001, + "2024-07-24T06": 0.5674056740000001, + "2024-07-25T01": 0.53893532, + "2024-07-20T22": 0.602859118, + "2024-07-19T15": 0.5827116539999999, + "2024-07-21T13": 0.592383582, + "2024-07-25T07": 0.5402649, + "2024-07-21T08": 0.597573246, + "2024-07-23T06": 0.5757863550000001, + "2024-07-22T16": 0.5872880800000001, + "2024-07-24T11": 0.5798, + "2024-07-24T01": 0.569211384, + "2024-07-23T00": 0.58757622, + "2024-07-19T12": 0.5779090568897827, + "2024-07-25T17": 0.5383869149999999, + "2024-07-25T19": 0.526147373, + "2024-07-19T21": 0.597204419, + "2024-07-23T08": 0.5884176520000001, + "2024-07-21T21": 0.6051149499999999, + "2024-07-21T11": 0.593460191, + "2024-07-22T14": 0.5868880200000001, + "2024-07-20T23": 0.604675305, + "2024-07-20T08": 0.5971984499999999, + "2024-07-20T02": 0.596968515, + "2024-07-24T05": 0.567145368, + "2024-07-24T16": 0.5779520109999999, + "2024-07-21T01": 0.606024146, + "2024-07-24T13": 0.5829, + "2024-07-25T04": 0.541324204, + "2024-07-19T13": 0.5802839200000001, + "2024-07-25T12": 0.5373011249999999, + "2024-07-19T22": 0.596992383, + "2024-07-26T07": 0.558693828, + "2024-07-25T02": 0.5384922799999999, + "2024-07-21T12": 0.5943782599999999, + "2024-07-23T18": 0.576863448, + "2024-07-23T11": 0.58851177, + "2024-07-19T10": 0.577078788, + "2024-07-19T19": 0.59263696, + "2024-07-25T11": 0.535491077, + "2024-07-22T08": 0.5884470720000001, + "2024-07-23T19": 0.5841220136830202, + "2024-07-22T21": 0.5921716799999999, + "2024-07-21T09": 0.597567272, + "2024-07-21T22": 0.6091609099999999, + "2024-07-22T04": 0.5954476320000001, + "2024-07-25T16": 0.540781002, + "2024-07-19T23": 0.59679825, + "2024-07-20T06": 0.59753892, + "2024-07-23T02": 0.5914473120000001, + "2024-07-23T14": 0.5889942239999999, + "2024-07-23T03": 0.588464510547986, + "2024-07-25T08": 0.538443806, + "2024-07-24T15": 0.5820105609999999, + "2024-07-19T09": 0.57558486, + "2024-07-20T15": 0.601786496, + "2024-07-23T23": 0.572751543, + "2024-07-23T12": 0.58710566, + "2024-07-22T10": 0.591805918, + "2024-07-21T10": 0.596060893, + "2024-07-22T00": 0.608930445, + "2024-07-24T22": 0.556499812, + "2024-07-24T19": 0.567694323, + "2024-07-24T09": 0.577, + "2024-07-23T04": 0.5823582300000001, + "2024-07-23T05": 0.574634476, + "2024-07-25T18": 0.530961914, + "2024-07-25T15": 0.542680584, + "2024-07-26T01": 0.5405918599999999, + "2024-07-22T01": 0.6032723839999999, + "2024-07-26T02": 0.54379122, + "2024-07-24T18": 0.57075707, + "2024-07-21T19": 0.5901300609999999, + "2024-07-25T05": 0.5414762643517935, + "2024-07-22T18": 0.5935186800000001, + "2024-07-24T00": 0.571251408, + "2024-07-24T08": 0.578594214, + "2024-07-24T20": 0.5690943090000001, + "2024-07-24T23": 0.5552000460000001, + "2024-07-22T17": 0.58908246, + "2024-07-21T17": 0.592754775, + "2024-07-24T12": 0.578817364, + "2024-07-23T13": 0.584293472, + "2024-07-21T05": 0.599067692, + "2024-07-20T05": 0.596686272, + "2024-07-21T03": 0.6055695120000001, + "2024-07-26T00": 0.5375870829999999, + "2024-07-20T20": 0.6054420799999999, + "2024-07-22T03": 0.596623864, + "2024-07-25T21": 0.5328774100000001, + "2024-07-21T16": 0.5962205199999999, + "2024-07-20T17": 0.60514196, + "2024-07-22T11": 0.5927177809999999, + "2024-07-25T00": 0.557699596, + "2024-07-20T13": 0.5935491860000001, + "2024-07-23T07": 0.57615761, + "2024-07-22T05": 0.5920355199999999, + "2024-07-20T07": 0.598769325, + "2024-07-21T18": 0.585651722, + "2024-07-23T17": 0.5701570100000001, + "2024-07-20T14": 0.59722686, + "2024-07-26T04": 0.549823014, + "2024-07-24T10": 0.5788, + "2024-07-20T18": 0.6043019999999999, + "2024-07-23T15": 0.587599875, + "2024-07-19T18": 0.590253426, + "2024-07-25T09": 0.539148558692668, + "latest": 0.428205, + "2024-07-26T09": 0.55839947, + "2024-07-26T10": 0.558349205, + "2024-07-26T11": 0.5577661039999999, + "2024-07-26T12": 0.55790514, + "2024-07-26T13": 0.557810736, + "2024-07-26T14": 0.5578497889999999, + "2024-07-26T17": 0.56248875, + "2024-07-26T16": 0.56357182, + "2024-07-26T15": 0.5607551359999999, + "2024-07-26T18": 0.5617, + "2024-07-27": 0.5754548592147158, + "2024-07-28": 0.571588568, + "2024-07-28T05": 0.566494335, + "2024-07-26T21": 0.5612, + "2024-07-27T02": 0.565416962, + "2024-07-28T01": 0.576559638, + "2024-07-27T10": 0.57204576, + "2024-07-28T02": 0.575871205, + "2024-07-27T19": 0.57474365, + "2024-07-27T09": 0.573151579, + "2024-07-27T06": 0.5699113979999999, + "2024-07-27T18": 0.57648646, + "2024-07-26T22": 0.565422616, + "2024-07-27T13": 0.583575855, + "2024-07-27T12": 0.577798209, + "2024-07-27T16": 0.5772577200000001, + "2024-07-27T05": 0.5676113519999999, + "2024-07-26T23": 0.5674226960000001, + "2024-07-26T20": 0.5605, + "2024-07-27T08": 0.5731286550000001, + "2024-07-28T03": 0.57298854, + "2024-07-27T01": 0.564822592, + "2024-07-28T09": 0.571688566, + "2024-07-28T10": 0.5782826510000001, + "2024-07-27T00": 0.566622664, + "2024-07-28T00": 0.5768331467299596, + "2024-07-27T04": 0.5646112919999999, + "2024-07-27T14": 0.58175817, + "2024-07-27T07": 0.5729, + "2024-07-27T11": 0.571997223, + "2024-07-27T22": 0.581347674, + "2024-07-27T03": 0.563605636, + "2024-07-27T20": 0.573928695, + "2024-07-27T23": 0.5813771872434799, + "2024-07-28T08": 0.5698886019999999, + "2024-07-27T21": 0.580182594, + "2024-07-28T07": 0.568588628, + "2024-07-27T15": 0.5767602366265149, + "2024-07-26T19": 0.5647, + "2024-07-28T04": 0.5711885760000001, + "2024-07-28T06": 0.569588608, + "2024-07-27T17": 0.577469288, + "2024-07-29": 0.5733270338070372, + "2024-07-28T20": 0.568637443, + "2024-07-28T16": 0.570694293, + "2024-07-29T07": 0.5849946819999999, + "2024-07-28T23": 0.5659886799999999, + "2024-07-28T15": 0.5686943130000001, + "2024-07-28T18": 0.572537014, + "2024-07-29T04": 0.584529848, + "2024-07-29T06": 0.5859254564105902, + "2024-07-28T21": 0.56544345, + "2024-07-29T03": 0.584235727, + "2024-07-28T12": 0.57598272, + "2024-07-29T05": 0.585129776, + "2024-07-28T17": 0.570337256, + "2024-07-29T00": 0.5742, + "2024-07-29T01": 0.5728, + "2024-07-28T22": 0.564583062, + "2024-07-28T19": 0.572137058, + "2024-07-28T14": 0.5706, + "2024-07-29T02": 0.5791652480000001, + "2024-07-29T08": 0.58458306, + "2024-07-28T11": 0.5769769199999999, + "2024-07-28T13": 0.575888482, + "2024-07-29T09": 0.5830716960000001, + "2024-07-29T10": 0.584477234, + "2024-07-29T11": 0.5820777380000001, + "2024-07-29T12": 0.579547836, + "2024-07-29T13": 0.578847899, + "2024-07-30": 0.5523811755474579, + "2024-07-29T23": 0.558627369, + "2024-07-29T18": 0.5613877, + "2024-07-29T21": 0.5601551840000001, + "2024-07-29T22": 0.562726836, + "2024-07-29T17": 0.562276272, + "2024-07-29T15": 0.564053308, + "2024-07-30T01": 0.55837713, + "2024-07-29T19": 0.561710112, + "2024-07-30T04": 0.5595880599999999, + "2024-07-29T14": 0.573613945, + "2024-07-29T20": 0.562038169, + "2024-07-30T03": 0.55792188, + "2024-07-30T00": 0.554605701, + "2024-07-29T16": 0.562120064, + "2024-07-30T02": 0.554702369653554, + "2024-07-30T09": 0.5576772839999999, + "2024-07-30T08": 0.5592433680000001, + "2024-07-30T06": 0.558903997143317, + "2024-07-30T05": 0.556294284, + "2024-07-30T07": 0.5605542179999999, + "2024-07-30T10": 0.556011024, + "2024-07-30T11": 0.5536837019999999, + "2024-07-30T12": 0.55318934, + "2024-07-30T13": 0.5549889800000001, + "2024-07-31": 0.5391846728653881, + "2024-07-31T00": 0.5386653, + "2024-07-31T05": 0.54537999, + "2024-07-30T23": 0.53884369, + "2024-07-30T19": 0.538400718, + "2024-07-30T16": 0.550023936, + "2024-07-30T17": 0.5445311429999999, + "2024-07-30T18": 0.5414266879999999, + "2024-07-30T20": 0.53713881, + "2024-07-30T15": 0.5506403136850642, + "2024-07-31T03": 0.5437857810000001, + "2024-07-30T21": 0.5335646364772617, + "2024-07-31T01": 0.542775133, + "2024-07-31T07": 0.5555277329999999, + "2024-07-31T06": 0.5574382959999999, + "2024-07-31T02": 0.54409116, + "2024-07-30T22": 0.535444676, + "2024-07-30T14": 0.55108976, + "2024-07-31T04": 0.5436858019999999, + "2024-07-31T08": 0.550452185, + "2024-07-31T11": 0.548398215, + "2024-07-31T09": 0.549885461, + "2024-07-31T10": 0.548136768, + "2024-07-31T12": 0.549791944, + "2024-08-01": 0.5242217837007337, + "2024-07-31T14": 0.5502522750000001, + "2024-07-31T23": 0.5359284480000001, + "2024-07-31T13": 0.551240795, + "2024-07-31T21": 0.5370958259999999, + "2024-08-01T01": 0.538911315, + "2024-07-31T18": 0.5505182689999999, + "2024-07-31T19": 0.5467140540000001, + "2024-07-31T16": 0.550285305, + "2024-08-01T02": 0.5366208120000001, + "2024-07-31T22": 0.537433344, + "2024-07-31T20": 0.5381900239999999, + "2024-07-31T17": 0.550185344, + "2024-08-01T00": 0.537022724, + "2024-07-31T15": 0.549574582, + "2024-08-01T07": 0.52636303, + "2024-08-01T06": 0.526941672, + "2024-08-01T05": 0.52767792, + "2024-08-01T04": 0.528025284, + "2024-08-01T03": 0.535116238, + "2024-08-01T08": 0.527825388, + "2024-08-01T09": 0.5309918459999999, + "2024-08-01T10": 0.5293193119999999, + "2024-08-01T11": 0.529918994, + "2024-08-01T12": 0.5334224759999999, + "2024-08-01T13": 0.5321444479999999, + "2024-08-01T14": 0.526078954, + "2024-08-01T15": 0.5154640629131428, + "2024-08-02": 0.5154561436835156, + "2024-08-02T00": 0.5291233599999999, + "2024-08-01T20": 0.508001186829152, + "2024-08-01T21": 0.5180278729509138, + "2024-08-02T04": 0.522024525, + "2024-08-01T19": 0.5059428499999999, + "2024-08-01T16": 0.50644524, + "2024-08-02T02": 0.517948992, + "2024-08-01T17": 0.503391922, + "2024-08-01T23": 0.530006635, + "2024-08-02T01": 0.524033195, + "2024-08-01T22": 0.5295601, + "2024-08-01T18": 0.49824119599999994, + "2024-08-02T03": 0.5210202199999999, + "2024-08-02T05": 0.519147948, + "2024-08-02T06": 0.514708524, + "2024-08-02T07": 0.516281473, + "2024-08-02T08": 0.5155717200000001, + "2024-08-02T09": 0.518154004, + "2024-08-02T10": 0.517506396, + "2024-08-02T11": 0.51906362, + "2024-08-02T12": 0.5156388, + "2024-08-02T13": 0.5205266795139354, + "2024-08-02T14": 0.5231775570132078, + "2024-08-02T15": 0.497112352, + "2024-08-03": 0.4788265173417076, + "2024-08-02T16": 0.501873045, + "2024-08-02T22": 0.495834104, + "2024-08-02T23": 0.49536512000000005, + "2024-08-03T00": 0.491655087, + "2024-08-03T01": 0.484503327, + "2024-08-03T03": 0.492912735, + "2024-08-02T19": 0.49955489099999995, + "2024-08-02T18": 0.5018975999999999, + "2024-08-02T21": 0.4950045, + "2024-08-02T17": 0.5051196800000001, + "2024-08-02T20": 0.5010532560000001, + "2024-08-03T02": 0.49135056, + "2024-08-03T06": 0.49645827, + "2024-08-03T19": 0.46203932799999997, + "2024-08-03T10": 0.493465368, + "2024-08-03T09": 0.493160696, + "2024-08-03T15": 0.48497484900000004, + "2024-08-03T22": 0.466633867, + "2024-08-03T05": 0.494949995, + "2024-08-03T08": 0.49352081999999997, + "2024-08-03T14": 0.494778185, + "2024-08-03T18": 0.46697289, + "2024-08-03T17": 0.470860736, + "2024-08-03T21": 0.4604387373708136, + "2024-08-03T12": 0.496322508, + "2024-08-03T20": 0.45919213500000006, + "2024-08-03T04": 0.494200353, + "2024-08-03T16": 0.47814112499999994, + "2024-08-03T11": 0.49398470400000005, + "2024-08-03T07": 0.497267354, + "2024-08-03T13": 0.49416373999999996, + "2024-08-04": 0.46956240828044943, + "2024-08-03T23": 0.46743808800000003, + "2024-08-04T17": 0.432940361, + "2024-08-04T13": 0.46896540000000003, + "2024-08-04T06": 0.476104632, + "2024-08-04T12": 0.46846565, + "2024-08-04T10": 0.468656172, + "2024-08-04T16": 0.439083632, + "2024-08-04T15": 0.44809957200000006, + "2024-08-04T00": 0.470322346, + "2024-08-04T11": 0.4702023639667022, + "2024-08-04T01": 0.470022523, + "2024-08-04T03": 0.476104632, + "2024-08-04T04": 0.47580957900000004, + "2024-08-04T07": 0.470322346, + "2024-08-04T08": 0.468114276, + "2024-08-04T18": 0.4339796818433801, + "2024-08-04T09": 0.47033175800000004, + "2024-08-04T02": 0.47531464, + "2024-08-04T05": 0.47520994499999997, + "2024-08-04T14": 0.45580392, + "2024-08-05": 0.39354630214606157, + "2024-08-05T01": 0.4217815284968922, + "2024-08-04T19": 0.43791004292846303, + "2024-08-04T22": 0.44466826963256634, + "2024-08-05T03": 0.39782656951358397, + "2024-08-05T02": 0.39719947701644737, + "2024-08-04T23": 0.44814440236857056, + "2024-08-05T00": 0.4406013738413695, + "2024-08-05T04": 0.39168879413577906, + "2024-08-05T06": 0.38711484527045364, + "2024-08-04T20": 0.44919626410229896, + "2024-08-05T05": 0.3940774150609959, + "2024-08-04T21": 0.44691119567515614, + "2024-08-05T07": 0.37740666098407016, + "2024-08-05T08": 0.39163619433034036, + "2024-08-05T09": 0.38362495996628776, + "2024-08-05T10": 0.38308869477939705, + "2024-08-05T11": 0.367247736, + "2024-08-05T12": 0.3703708447057451, + "2024-08-05T13": 0.36723333718264345, + "2024-08-05T14": 0.38585212201822755, + "2024-08-05T15": 0.40245338599999997, + "2024-08-06": 0.42210520625589265, + "2024-08-05T19": 0.398951544, + "2024-08-05T20": 0.40374037, + "2024-08-05T21": 0.40527293600000003, + "2024-08-06T02": 0.422260398, + "2024-08-05T18": 0.40358556399999995, + "2024-08-05T23": 0.40648128, + "2024-08-05T16": 0.40698469, + "2024-08-06T05": 0.423749865, + "2024-08-05T17": 0.4075675465127235, + "2024-08-06T00": 0.42118421999999994, + "2024-08-06T04": 0.42088931500000004, + "2024-08-06T03": 0.42086407299999995, + "2024-08-05T22": 0.40739642614917043, + "2024-08-06T01": 0.42682801000000004, + "2024-08-06T06": 0.427211637, + "2024-08-06T07": 0.425484884, + "2024-08-06T08": 0.418642672, + "2024-08-06T09": 0.41632486, + "2024-08-06T10": 0.414532608, + "2024-08-06T11": 0.4141035, + "2024-08-06T12": 0.414253217, + "2024-08-06T13": 0.41281555600000003, + "2024-08-06T14": 0.412819683 + }, + "USD cosmos": { + "2024-06-28": 6.921262066693637, + "2024-06-30": 6.635924592760371, + "2024-07-15": 6.3152267640252315, + "2024-07-18": 6.438789730012257, + "2024-07-14": 6.1784897591244565, + "2024-07-11": 6.074354615172453, + "2024-07-19": 6.336338516841229, + "2024-07-12": 5.980065162227088, + "2024-07-24": 6.223129952176763, + "2024-07-08": 5.869515284454324, + "2024-07-07": 6.000062525763628, + "2024-07-13": 6.208455523781979, + "2024-07-09": 5.86866250489695, + "2024-07-02": 6.881025220263112, + "2024-07-20": 6.522445989006485, + "2024-06-29": 6.766485934121564, + "2024-07-21": 6.444132020971223, + "2024-07-23": 6.228597125848731, + "2024-07-10": 6.002992907518935, + "2024-07-01": 6.771969794179513, + "2024-06-26": 6.838040518147024, + "2024-07-17": 6.6359892328275, + "2024-07-22": 6.377054100757235, + "2024-07-04": 6.188513555433249, + "2024-06-25": 6.962375568172373, + "2024-07-26": 6.12076902008204, + "2024-07-03": 6.52653667632072, + "2024-07-05": 5.528629527282242, + "2024-07-25": 5.852348855779187, + "2024-07-16": 6.5212687317753035, + "2024-07-06": 5.849371073304179, + "2024-06-27": 6.849222756384331, + "2024-07-22T13": 6.39689544, + "2024-07-25T10": 5.86988608, + "2024-07-26T06": 6.105778600000001, + "2024-07-24T14": 6.261639105, + "2024-07-21T20": 6.48961352898291, + "2024-07-21T07": 6.408858029999999, + "2024-07-21T14": 6.43818824, + "2024-07-22T23": 6.271881, + "2024-07-24T07": 6.263112101, + "2024-07-20T11": 6.495981472, + "2024-07-26T08": 6.108822431999999, + "2024-07-25T20": 5.74312132, + "2024-07-21T02": 6.52782728, + "2024-07-20T04": 6.538471638, + "2024-07-20T03": 6.499928155149598, + "2024-07-25T13": 5.816051430822534, + "2024-07-21T06": 6.4248626699999996, + "2024-07-20T12": 6.4890132320000005, + "2024-07-24T02": 6.19706197, + "2024-07-24T17": 6.23093769, + "2024-07-25T06": 5.8684738, + "2024-07-25T22": 5.88632805, + "2024-07-22T07": 6.3489522, + "2024-07-22T22": 6.288074379999999, + "2024-07-26T03": 6.010462566170511, + "2024-07-23T01": 6.3086307999999995, + "2024-07-24T03": 6.236280155960037, + "2024-07-23T21": 6.20793105, + "2024-07-19T20": 6.535939850000001, + "2024-07-23T22": 6.17311096, + "2024-07-21T23": 6.53652288, + "2024-07-19T16": 6.438487439999999, + "2024-07-22T20": 6.384464097485311, + "2024-07-23T10": 6.2955370440000005, + "2024-07-19T17": 6.45483902, + "2024-07-22T09": 6.382, + "2024-07-24T04": 6.252187559999999, + "2024-07-22T06": 6.331088583377559, + "2024-07-24T21": 6.05529441, + "2024-07-20T21": 6.517596715999999, + "2024-07-21T15": 6.450031761335638, + "2024-07-20T09": 6.5395948, + "2024-07-25T14": 5.82990048, + "2024-07-19T11": 6.21919625993048, + "2024-07-23T20": 6.2202438, + "2024-07-25T03": 5.81389515, + "2024-07-20T01": 6.457227, + "2024-07-25T23": 5.909167589999999, + "2024-07-20T16": 6.51934612, + "2024-07-22T15": 6.3352712579823995, + "2024-07-23T16": 6.158976796737892, + "2024-07-22T02": 6.536, + "2024-07-21T04": 6.496766261313401, + "2024-07-23T09": 6.2857, + "2024-07-20T10": 6.523999659999999, + "2024-07-22T19": 6.3617172, + "2024-07-20T00": 6.480185963594886, + "2024-07-20T19": 6.54901116, + "2024-07-26T05": 6.01446023836101, + "2024-07-19T14": 6.3854, + "2024-07-21T00": 6.522891089999999, + "2024-07-22T12": 6.40454349025813, + "2024-07-24T06": 6.2292622920000005, + "2024-07-25T01": 5.8642962, + "2024-07-20T22": 6.524504330999999, + "2024-07-19T15": 6.381427625999999, + "2024-07-21T13": 6.4063713619309794, + "2024-07-25T07": 5.86353375, + "2024-07-21T08": 6.40985832, + "2024-07-23T06": 6.151222545, + "2024-07-22T16": 6.3429513, + "2024-07-24T11": 6.28601200916503, + "2024-07-24T01": 6.173029726653305, + "2024-07-23T00": 6.2782299381085105, + "2024-07-19T12": 6.25256158, + "2024-07-25T17": 5.86076898, + "2024-07-25T19": 5.754946905886066, + "2024-07-19T21": 6.54596514275298, + "2024-07-23T08": 6.23918717, + "2024-07-21T21": 6.492633365999999, + "2024-07-21T11": 6.42573448, + "2024-07-22T14": 6.329949350000001, + "2024-07-20T23": 6.529208822990091, + "2024-07-20T08": 6.555275999999999, + "2024-07-20T02": 6.467308980000001, + "2024-07-24T05": 6.219597528, + "2024-07-24T16": 6.20255818, + "2024-07-21T01": 6.51841092, + "2024-07-24T13": 6.2620000000000005, + "2024-07-25T04": 5.84225847143701, + "2024-07-19T13": 6.2967404, + "2024-07-25T12": 5.84383698, + "2024-07-19T22": 6.512089361, + "2024-07-26T07": 6.125535927, + "2024-07-25T02": 5.8433311, + "2024-07-21T12": 6.42682747, + "2024-07-23T18": 6.1619777430000005, + "2024-07-23T11": 6.271625429999999, + "2024-07-19T10": 6.21669422, + "2024-07-19T19": 6.4955972, + "2024-07-25T11": 5.881205435, + "2024-07-22T08": 6.3955116, + "2024-07-23T19": 6.2003454389999995, + "2024-07-22T21": 6.339838019999999, + "2024-07-21T09": 6.42079732, + "2024-07-21T22": 6.5186518, + "2024-07-22T04": 6.448515840000001, + "2024-07-25T16": 5.834816058, + "2024-07-19T23": 6.512473468615786, + "2024-07-20T06": 6.562242585318812, + "2024-07-23T02": 6.3055044, + "2024-07-23T14": 6.289106095999999, + "2024-07-23T03": 6.303352956987252, + "2024-07-25T08": 5.8682977, + "2024-07-24T15": 6.22718294, + "2024-07-19T09": 6.230753600000001, + "2024-07-20T15": 6.514018720000001, + "2024-07-23T23": 6.17455566, + "2024-07-23T12": 6.256225918, + "2024-07-22T10": 6.404064040000001, + "2024-07-21T10": 6.437237585, + "2024-07-22T00": 6.552254222474297, + "2024-07-24T22": 6.031114204, + "2024-07-24T19": 6.15193848, + "2024-07-24T09": 6.267, + "2024-07-23T04": 6.264564302329954, + "2024-07-23T05": 6.170570212, + "2024-07-25T18": 5.803843644921715, + "2024-07-25T15": 5.84171454, + "2024-07-26T01": 5.956008560000001, + "2024-07-22T01": 6.54178492, + "2024-07-26T02": 5.979812879852463, + "2024-07-24T18": 6.17691763, + "2024-07-21T19": 6.365481569999999, + "2024-07-25T05": 5.87209036, + "2024-07-22T18": 6.3492695999999995, + "2024-07-24T00": 6.165679726651383, + "2024-07-24T08": 6.276337236, + "2024-07-24T20": 6.133040363249931, + "2024-07-24T23": 6.006818578000001, + "2024-07-22T17": 6.344888160000001, + "2024-07-21T17": 6.40075114, + "2024-07-24T12": 6.271088127, + "2024-07-23T13": 6.219796368800201, + "2024-07-21T05": 6.46480964, + "2024-07-20T05": 6.550542752, + "2024-07-21T03": 6.50882196, + "2024-07-26T00": 5.936253667552711, + "2024-07-20T20": 6.5486184, + "2024-07-22T03": 6.528961148, + "2024-07-25T21": 5.851007699481121, + "2024-07-21T16": 6.450291223301538, + "2024-07-20T17": 6.531711639999999, + "2024-07-22T11": 6.3991919699999995, + "2024-07-25T00": 6.0289146, + "2024-07-20T13": 6.463113368, + "2024-07-23T07": 6.1526152000000005, + "2024-07-22T05": 6.389023415599261, + "2024-07-20T07": 6.574957400000001, + "2024-07-21T18": 6.31171287, + "2024-07-23T17": 6.111611099999999, + "2024-07-20T14": 6.493176994659042, + "2024-07-26T04": 6.01515776, + "2024-07-24T10": 6.2878, + "2024-07-20T18": 6.531264, + "2024-07-23T15": 6.265064880000001, + "2024-07-19T18": 6.476683499999999, + "2024-07-25T09": 5.890278736, + "latest": 4.91, + "2024-07-26T09": 6.1518419141356295, + "2024-07-26T10": 6.132443793, + "2024-07-26T11": 6.1215304800000006, + "2024-07-26T12": 6.08296572, + "2024-07-26T13": 6.089025599999999, + "2024-07-26T14": 6.107450279999999, + "2024-07-26T17": 6.149877, + "2024-07-26T16": 6.151392415, + "2024-07-26T15": 6.131509439999999, + "2024-07-26T18": 6.1568, + "2024-07-27": 6.2868635768261845, + "2024-07-28": 6.297687478227745, + "2024-07-28T05": 6.221937780000001, + "2024-07-26T21": 6.153, + "2024-07-27T02": 6.15518465, + "2024-07-28T01": 6.362554589999999, + "2024-07-27T10": 6.261500880000001, + "2024-07-28T02": 6.35668215, + "2024-07-27T19": 6.288612122723601, + "2024-07-27T09": 6.266675206866187, + "2024-07-27T06": 6.24312486, + "2024-07-27T18": 6.312786186768831, + "2024-07-26T22": 6.17324692, + "2024-07-27T13": 6.332823159999999, + "2024-07-27T12": 6.27606675, + "2024-07-27T16": 6.3196319, + "2024-07-27T05": 6.20812416, + "2024-07-26T23": 6.172146876, + "2024-07-26T20": 6.154, + "2024-07-27T08": 6.271823002367693, + "2024-07-28T03": 6.311673764, + "2024-07-27T01": 6.159346364, + "2024-07-28T09": 6.29904783413786, + "2024-07-28T10": 6.325721874648215, + "2024-07-27T00": 6.175247, + "2024-07-28T00": 6.324936750000001, + "2024-07-27T04": 6.201124019999999, + "2024-07-27T14": 6.33866248090662, + "2024-07-27T07": 6.2704, + "2024-07-27T11": 6.258963843, + "2024-07-27T22": 6.37242643, + "2024-07-27T03": 6.17506175, + "2024-07-27T20": 6.294114690000001, + "2024-07-27T23": 6.355955052, + "2024-07-28T08": 6.26587468, + "2024-07-27T21": 6.360409182, + "2024-07-28T07": 6.272874539999999, + "2024-07-27T15": 6.3119311300000005, + "2024-07-26T19": 6.1759, + "2024-07-28T04": 6.2638747200000005, + "2024-07-28T06": 6.265474688, + "2024-07-27T17": 6.3207584, + "2024-07-29": 6.27414215135665, + "2024-07-28T20": 6.272309969999999, + "2024-07-28T16": 6.276837231000001, + "2024-07-29T07": 6.33186006, + "2024-07-28T23": 6.2198756, + "2024-07-28T15": 6.286737132000001, + "2024-07-28T18": 6.3193048, + "2024-07-29T04": 6.276378742034525, + "2024-07-29T06": 6.337193758925462, + "2024-07-28T21": 6.2253774, + "2024-07-29T03": 6.31130568, + "2024-07-28T12": 6.3678089600000005, + "2024-07-29T05": 6.29224484, + "2024-07-28T17": 6.292607737, + "2024-07-29T00": 6.259, + "2024-07-29T01": 6.221640989961916, + "2024-07-28T22": 6.202813910000001, + "2024-07-28T19": 6.29130788, + "2024-07-28T14": 6.328918336594347, + "2024-07-29T02": 6.27056103, + "2024-07-29T08": 6.352277226159687, + "2024-07-28T11": 6.37074516, + "2024-07-28T13": 6.37587248, + "2024-07-29T09": 6.3536019, + "2024-07-29T10": 6.345667129999999, + "2024-07-29T11": 6.33466944, + "2024-07-29T12": 6.3124318299999995, + "2024-07-29T13": 6.3214310199999995, + "2024-07-30": 6.140420760140405, + "2024-07-29T23": 6.11620479, + "2024-07-29T18": 6.2507496, + "2024-07-29T21": 6.151507840000001, + "2024-07-29T22": 6.14320128, + "2024-07-29T17": 6.236627639999999, + "2024-07-29T15": 6.21438384, + "2024-07-30T01": 6.14664744, + "2024-07-29T19": 6.21500544, + "2024-07-30T04": 6.1797638, + "2024-07-29T14": 6.28405725, + "2024-07-29T20": 6.199318, + "2024-07-30T03": 6.150848844159485, + "2024-07-30T00": 6.10396215, + "2024-07-29T16": 6.1867196159999995, + "2024-07-30T02": 6.1257746, + "2024-07-30T09": 6.1646434800000005, + "2024-07-30T08": 6.168972204, + "2024-07-30T06": 6.175577435565228, + "2024-07-30T05": 6.1628288399999995, + "2024-07-30T07": 6.169595488, + "2024-07-30T10": 6.156250887803572, + "2024-07-30T11": 6.162005707, + "2024-07-30T12": 6.156868380000001, + "2024-07-30T13": 6.1602677, + "2024-07-31": 5.991387068677004, + "2024-07-31T00": 5.99750025, + "2024-07-31T05": 5.994680880000001, + "2024-07-30T23": 6.008557013, + "2024-07-30T19": 6.02077149, + "2024-07-30T16": 6.1382351360000005, + "2024-07-30T17": 6.071217339, + "2024-07-30T18": 6.0561614079999995, + "2024-07-30T20": 5.9992495130896675, + "2024-07-30T15": 6.13491342, + "2024-07-31T03": 6.03373265, + "2024-07-30T21": 5.976445719999999, + "2024-07-31T01": 6.036611260000001, + "2024-07-31T07": 6.0631198500000005, + "2024-07-31T06": 6.05624318, + "2024-07-31T02": 6.0415914399999995, + "2024-07-30T22": 5.9992597100000005, + "2024-07-30T14": 6.132773200000001, + "2024-07-31T04": 6.011328490079504, + "2024-07-31T08": 6.023522221053431, + "2024-07-31T11": 5.985805995, + "2024-07-31T09": 6.001558479, + "2024-07-31T10": 5.983326624, + "2024-07-31T12": 5.98864448, + "2024-08-01": 5.764166744846545, + "2024-07-31T14": 5.983852988505116, + "2024-07-31T23": 5.81713792, + "2024-07-31T13": 6.0071753, + "2024-07-31T21": 5.80079486, + "2024-08-01T01": 5.8219616, + "2024-07-31T18": 5.918946103, + "2024-07-31T19": 5.88599808, + "2024-07-31T16": 5.94268145, + "2024-08-01T02": 5.808019706259398, + "2024-07-31T22": 5.83419084, + "2024-07-31T20": 5.82172864, + "2024-07-31T17": 5.93468457, + "2024-08-01T00": 5.83107511, + "2024-07-31T15": 5.9429623860000005, + "2024-08-01T07": 5.754109485000001, + "2024-08-01T06": 5.767272651, + "2024-08-01T05": 5.753688108, + "2024-08-01T04": 5.7520074, + "2024-08-01T03": 5.81091858, + "2024-08-01T08": 5.7712973640000005, + "2024-08-01T09": 5.783588554963502, + "2024-08-01T10": 5.7869313, + "2024-08-01T11": 5.7962263709999995, + "2024-08-01T12": 5.81597412, + "2024-08-01T13": 5.8072112, + "2024-08-01T14": 5.747585, + "2024-08-01T15": 5.661168, + "2024-08-02": 5.787290150532802, + "2024-08-02T00": 5.7837898999999995, + "2024-08-01T20": 5.683354009, + "2024-08-01T21": 5.75569988, + "2024-08-02T04": 5.721614219465007, + "2024-08-01T19": 5.6288015, + "2024-08-01T16": 5.5980786, + "2024-08-02T02": 5.710077043740368, + "2024-08-01T17": 5.5734818200000005, + "2024-08-01T23": 5.797303489, + "2024-08-02T01": 5.772857580000001, + "2024-08-01T22": 5.810173549999999, + "2024-08-01T18": 5.54639262, + "2024-08-02T03": 5.718571660066454, + "2024-08-02T05": 5.670562315, + "2024-08-02T06": 5.621724240000001, + "2024-08-02T07": 5.638129413, + "2024-08-02T08": 5.633620211, + "2024-08-02T09": 5.63115304, + "2024-08-02T10": 5.6037379199999995, + "2024-08-02T11": 5.6040886080000005, + "2024-08-02T12": 5.5471143, + "2024-08-02T13": 5.572759353734711, + "2024-08-02T14": 5.568782355391055, + "2024-08-02T15": 5.2718285400000005, + "2024-08-03": 5.2832014852967655, + "2024-08-02T16": 5.33646015, + "2024-08-02T22": 5.322924939999999, + "2024-08-02T23": 5.348045728, + "2024-08-03T00": 5.3469862599999995, + "2024-08-03T01": 5.2834933, + "2024-08-03T03": 5.35262279, + "2024-08-02T19": 5.356854657, + "2024-08-02T18": 5.358636, + "2024-08-02T21": 5.3221725, + "2024-08-02T17": 5.36789565, + "2024-08-02T20": 5.376133619999999, + "2024-08-03T02": 5.33098055547902, + "2024-08-03T06": 5.39511291, + "2024-08-03T19": 5.04206412, + "2024-08-03T10": 5.372567976, + "2024-08-03T09": 5.362123459, + "2024-08-03T15": 5.2037111760000005, + "2024-08-03T22": 5.12007989, + "2024-08-03T05": 5.379621984, + "2024-08-03T08": 5.363392458, + "2024-08-03T14": 5.339327180000001, + "2024-08-03T18": 5.056457999999999, + "2024-08-03T17": 5.0863352, + "2024-08-03T21": 5.0879454, + "2024-08-03T12": 5.36991576, + "2024-08-03T20": 5.037622530000001, + "2024-08-03T04": 5.367473371, + "2024-08-03T16": 5.1311487499999995, + "2024-08-03T11": 5.365489200000001, + "2024-08-03T07": 5.390549882652673, + "2024-08-03T13": 5.3367685279999995, + "2024-08-04": 5.066057676496645, + "2024-08-03T23": 5.115333808, + "2024-08-04T17": 4.89293549, + "2024-08-04T13": 5.0522726, + "2024-08-04T06": 5.2017729, + "2024-08-04T12": 5.0642666, + "2024-08-04T10": 5.076258972, + "2024-08-04T16": 4.9064648, + "2024-08-04T15": 4.898016129, + "2024-08-04T00": 5.129471825, + "2024-08-04T11": 5.090205795112967, + "2024-08-04T01": 5.137067341000001, + "2024-08-04T03": 5.17279088, + "2024-08-04T04": 5.1848353199999995, + "2024-08-04T07": 5.163440685175095, + "2024-08-04T08": 5.1179761290000005, + "2024-08-04T18": 4.890340357954576, + "2024-08-04T09": 5.10308958, + "2024-08-04T02": 5.17552103081654, + "2024-08-04T05": 5.18383593, + "2024-08-04T14": 4.95986634, + "2024-08-05": 4.4662529519793255, + "2024-08-05T01": 4.88188694769085, + "2024-08-04T19": 4.9839853496988615, + "2024-08-04T22": 5.098361472828151, + "2024-08-05T03": 4.495499076600712, + "2024-08-05T02": 4.508645291789769, + "2024-08-04T23": 5.112354610315034, + "2024-08-05T00": 5.048112198337368, + "2024-08-05T04": 4.447223464626593, + "2024-08-05T06": 4.400719342513028, + "2024-08-04T20": 5.049156054990865, + "2024-08-05T05": 4.436434299658615, + "2024-08-04T21": 5.115557660690338, + "2024-08-05T07": 4.286449947191782, + "2024-08-05T08": 4.519764184630113, + "2024-08-05T09": 4.443155878571053, + "2024-08-05T10": 4.471089251036526, + "2024-08-05T11": 4.28155653, + "2024-08-05T12": 4.321754171310571, + "2024-08-05T13": 4.265450036805016, + "2024-08-05T14": 4.472416159357063, + "2024-08-05T15": 4.6919540699999995, + "2024-08-06": 4.833232214820489, + "2024-08-05T19": 4.60975104, + "2024-08-05T20": 4.6654665, + "2024-08-05T21": 4.690944218, + "2024-08-06T02": 4.83283578, + "2024-08-05T18": 4.6801518799999995, + "2024-08-05T23": 4.690937999999999, + "2024-08-05T16": 4.724123093015205, + "2024-08-06T05": 4.86186681, + "2024-08-05T17": 4.7463987240000005, + "2024-08-06T00": 4.8049608, + "2024-08-06T04": 4.841477685, + "2024-08-06T03": 4.83488487, + "2024-08-05T22": 4.710700683, + "2024-08-06T01": 4.8764625, + "2024-08-06T06": 4.914685103, + "2024-08-06T07": 4.9132897, + "2024-08-06T08": 4.85681532, + "2024-08-06T09": 4.8144439, + "2024-08-06T10": 4.792952143702145, + "2024-08-06T11": 4.77472320959621, + "2024-08-06T12": 4.78577008, + "2024-08-06T13": 4.763450705763918, + "2024-08-06T14": 4.7634810089999995 + }, + "USD cronos": { + "2024-06-28": 0.09154348853499888, + "2024-06-30": 0.08999547398245178, + "2024-07-15": 0.09195248466278892, + "2024-07-18": 0.09290522496779026, + "2024-07-14": 0.0913450765907743, + "2024-07-11": 0.08468148684006772, + "2024-07-19": 0.09332992956951691, + "2024-07-12": 0.0863475077017308, + "2024-07-24": 0.09198498913517598, + "2024-07-08": 0.08192895763787966, + "2024-07-07": 0.0876644247406729, + "2024-07-13": 0.08800888932592967, + "2024-07-09": 0.08383256684599644, + "2024-07-02": 0.09183308150410135, + "2024-07-20": 0.09446443011631082, + "2024-06-29": 0.09006418225378363, + "2024-07-21": 0.09404265374223157, + "2024-07-23": 0.09286080827384838, + "2024-07-10": 0.08565785705464461, + "2024-07-01": 0.09161810673117625, + "2024-06-26": 0.09059457823107783, + "2024-07-17": 0.09508040743840482, + "2024-07-22": 0.09516288562245825, + "2024-07-04": 0.08877275639934262, + "2024-06-25": 0.08859042273468717, + "2024-07-26": 0.08927841224096689, + "2024-07-03": 0.09032000213337171, + "2024-07-05": 0.08360225306137073, + "2024-07-25": 0.0917522993629981, + "2024-07-16": 0.09535614275536396, + "2024-07-06": 0.08411463422386914, + "2024-06-27": 0.0890515083860644, + "2024-07-22T13": 0.09457968502453061, + "2024-07-25T10": 0.08976666307256208, + "2024-07-26T06": 0.09089324333001218, + "2024-07-24T14": 0.09265182748861765, + "2024-07-21T20": 0.09493693614022336, + "2024-07-21T07": 0.09351699075260234, + "2024-07-21T14": 0.09343150775571808, + "2024-07-22T23": 0.09300380817890734, + "2024-07-24T07": 0.09269996118753313, + "2024-07-20T11": 0.09453489790175275, + "2024-07-26T08": 0.09146010135054866, + "2024-07-25T20": 0.08838087418396015, + "2024-07-21T02": 0.09424616783368765, + "2024-07-20T04": 0.09469736848467394, + "2024-07-20T03": 0.09440430848356153, + "2024-07-25T13": 0.08959948826044031, + "2024-07-21T06": 0.09396714435954323, + "2024-07-20T12": 0.09451892990889062, + "2024-07-24T02": 0.09209355114320249, + "2024-07-24T17": 0.09310353961105003, + "2024-07-25T06": 0.08946189313740205, + "2024-07-25T22": 0.08908745948377397, + "2024-07-22T07": 0.09413101308410816, + "2024-07-22T22": 0.09335914427049138, + "2024-07-26T03": 0.09002932456517113, + "2024-07-23T01": 0.09275542341548396, + "2024-07-24T03": 0.09272980935725804, + "2024-07-23T21": 0.09197384881313075, + "2024-07-19T20": 0.09441354487394489, + "2024-07-23T22": 0.0918301738882943, + "2024-07-21T23": 0.09537012252836334, + "2024-07-19T16": 0.09477018163357305, + "2024-07-22T20": 0.09429297732192715, + "2024-07-23T10": 0.09289430597890128, + "2024-07-19T17": 0.0946956707207757, + "2024-07-22T09": 0.0939456046256855, + "2024-07-24T04": 0.09273722742626414, + "2024-07-22T06": 0.0944330262025826, + "2024-07-24T21": 0.09267864291287257, + "2024-07-20T21": 0.0942670688163456, + "2024-07-21T15": 0.09381840791831214, + "2024-07-20T09": 0.09442048622717801, + "2024-07-25T14": 0.08924896707934384, + "2024-07-19T11": 0.09266155815545221, + "2024-07-23T20": 0.09180154471568482, + "2024-07-25T03": 0.09008996910198148, + "2024-07-20T01": 0.09398944642648352, + "2024-07-25T23": 0.089040788519185, + "2024-07-20T16": 0.09500060492337487, + "2024-07-22T15": 0.09340375225655868, + "2024-07-23T16": 0.09231518616111149, + "2024-07-22T02": 0.0947032645202014, + "2024-07-21T04": 0.09450423907558586, + "2024-07-23T09": 0.09287204833114103, + "2024-07-20T10": 0.09440276581226104, + "2024-07-22T19": 0.09357978274589768, + "2024-07-20T00": 0.09462887193622424, + "2024-07-20T19": 0.09459611849043184, + "2024-07-26T05": 0.09079207047743863, + "2024-07-19T14": 0.09311570203368966, + "2024-07-21T00": 0.09404265374223157, + "2024-07-22T12": 0.09433707339853774, + "2024-07-24T06": 0.09254935284604673, + "2024-07-25T01": 0.09181280868200753, + "2024-07-20T22": 0.0936161950748334, + "2024-07-19T15": 0.09404995850955657, + "2024-07-21T13": 0.09337181122309923, + "2024-07-25T07": 0.08972440279270368, + "2024-07-21T08": 0.09382079508457199, + "2024-07-23T06": 0.09209866792609668, + "2024-07-22T16": 0.09396828560567763, + "2024-07-24T11": 0.09287928390781758, + "2024-07-24T01": 0.09265960253490134, + "2024-07-23T00": 0.09286080827384838, + "2024-07-19T12": 0.09288479374375282, + "2024-07-25T17": 0.08936090429980072, + "2024-07-25T19": 0.0888119940978358, + "2024-07-19T21": 0.09443274982706637, + "2024-07-23T08": 0.09219977807796313, + "2024-07-21T21": 0.09476981861146208, + "2024-07-21T11": 0.09355720807800261, + "2024-07-22T14": 0.09368767280438473, + "2024-07-20T23": 0.09371232462170052, + "2024-07-20T08": 0.09437823619337564, + "2024-07-20T02": 0.09425311980507244, + "2024-07-24T05": 0.09259803940963908, + "2024-07-24T16": 0.09270131756806539, + "2024-07-21T01": 0.09377338556156664, + "2024-07-24T13": 0.09257628252157532, + "2024-07-25T04": 0.08985982736268283, + "2024-07-19T13": 0.09289151034039687, + "2024-07-25T12": 0.08979493942909819, + "2024-07-19T22": 0.09465975352576406, + "2024-07-26T07": 0.0912005173576892, + "2024-07-25T02": 0.09020753210919533, + "2024-07-21T12": 0.09345154996256051, + "2024-07-23T18": 0.09187687674141963, + "2024-07-23T11": 0.09243257424507499, + "2024-07-19T10": 0.09258048908607201, + "2024-07-19T19": 0.09444685869998862, + "2024-07-25T11": 0.08972444304191513, + "2024-07-22T08": 0.09408776545422591, + "2024-07-23T19": 0.09187373345039461, + "2024-07-22T21": 0.09389101375000647, + "2024-07-21T09": 0.09364306098855908, + "2024-07-21T22": 0.09545624010657165, + "2024-07-22T04": 0.09451431963513325, + "2024-07-25T16": 0.08932217510201368, + "2024-07-19T23": 0.09468170948223928, + "2024-07-20T06": 0.0945010547348313, + "2024-07-23T02": 0.09354765140891547, + "2024-07-23T14": 0.0917357801722625, + "2024-07-23T03": 0.09356946623457028, + "2024-07-25T08": 0.08877673863077713, + "2024-07-24T15": 0.09291669967542578, + "2024-07-19T09": 0.09291463115364558, + "2024-07-20T15": 0.09480000220420075, + "2024-07-23T23": 0.09172603220239442, + "2024-07-23T12": 0.0925486051704717, + "2024-07-22T10": 0.09460250965219094, + "2024-07-21T10": 0.09364489847795923, + "2024-07-22T00": 0.09516288562245825, + "2024-07-24T22": 0.09206121109671248, + "2024-07-24T19": 0.09267853496654038, + "2024-07-24T09": 0.0931029277557545, + "2024-07-23T04": 0.09323043389401801, + "2024-07-23T05": 0.09285850925881006, + "2024-07-25T18": 0.08948363129455854, + "2024-07-25T15": 0.08965831769935866, + "2024-07-26T01": 0.09009627161468596, + "2024-07-22T01": 0.09520303822207647, + "2024-07-26T02": 0.08948140260448069, + "2024-07-24T18": 0.09296197493281731, + "2024-07-21T19": 0.09374834390301087, + "2024-07-25T05": 0.08943688216816713, + "2024-07-22T18": 0.09397809835990067, + "2024-07-24T00": 0.09198049309511919, + "2024-07-24T08": 0.09289902241985437, + "2024-07-24T20": 0.09225780635226231, + "2024-07-24T23": 0.09178100709045339, + "2024-07-22T17": 0.0937289118202191, + "2024-07-21T17": 0.094560338166477, + "2024-07-24T12": 0.09290853835826345, + "2024-07-23T13": 0.09232812927443823, + "2024-07-21T05": 0.09426422942757669, + "2024-07-20T05": 0.09449096908075234, + "2024-07-21T03": 0.09437157082484215, + "2024-07-26T00": 0.08927841224096689, + "2024-07-20T20": 0.0944353849204584, + "2024-07-22T03": 0.09480771138401596, + "2024-07-25T21": 0.08874702266312906, + "2024-07-21T16": 0.09413106251422927, + "2024-07-20T17": 0.09516957566425517, + "2024-07-22T11": 0.09517916135782581, + "2024-07-25T00": 0.0917522993629981, + "2024-07-20T13": 0.09460025730839629, + "2024-07-23T07": 0.09229183919787218, + "2024-07-22T05": 0.0945332755327361, + "2024-07-20T07": 0.09439724206873852, + "2024-07-21T18": 0.09415177231218377, + "2024-07-23T17": 0.09178078471102241, + "2024-07-20T14": 0.09476220671767663, + "2024-07-26T04": 0.0899681998802663, + "2024-07-24T10": 0.09301848983389893, + "2024-07-20T18": 0.095182715949435, + "2024-07-23T15": 0.09255239514284336, + "2024-07-19T18": 0.0947991183044441, + "2024-07-25T09": 0.08997078011521528, + "latest": 0.079737, + "2024-07-26T09": 0.09113947723796974, + "2024-07-26T10": 0.09123777209955276, + "2024-07-26T11": 0.0911202523999712, + "2024-07-26T12": 0.09086622892226978, + "2024-07-26T13": 0.09070075252775663, + "2024-07-26T14": 0.09117888133659172, + "2024-07-26T17": 0.09101739490858733, + "2024-07-26T16": 0.09084205687431611, + "2024-07-26T15": 0.09083680903511465, + "2024-07-26T18": 0.09098673134778952, + "2024-07-27": 0.09146700808783216, + "2024-07-28": 0.09071209736035935, + "2024-07-28T05": 0.09015146644230584, + "2024-07-26T21": 0.09127059216640716, + "2024-07-27T02": 0.0913343024257478, + "2024-07-28T01": 0.09083245351715767, + "2024-07-27T10": 0.09181741230543253, + "2024-07-28T02": 0.0908818115772818, + "2024-07-27T19": 0.09100591138284911, + "2024-07-27T09": 0.09166876867083983, + "2024-07-27T06": 0.0916484922996136, + "2024-07-27T18": 0.09098767168471489, + "2024-07-26T22": 0.09152405903644462, + "2024-07-27T13": 0.09179687315641998, + "2024-07-27T12": 0.09147927443447201, + "2024-07-27T16": 0.09105281935054009, + "2024-07-27T05": 0.09165521814521656, + "2024-07-26T23": 0.09159695908481912, + "2024-07-26T20": 0.09130782435149859, + "2024-07-27T08": 0.09175710873992779, + "2024-07-28T03": 0.09085306492257257, + "2024-07-27T01": 0.09133217580607654, + "2024-07-28T09": 0.0902646331222096, + "2024-07-28T10": 0.09038368174817352, + "2024-07-27T00": 0.09150046577257175, + "2024-07-28T00": 0.09054463362394002, + "2024-07-27T04": 0.09153166959234742, + "2024-07-27T14": 0.09203791556460282, + "2024-07-27T07": 0.09184866761588008, + "2024-07-27T11": 0.09163336932084373, + "2024-07-27T22": 0.09065133180242674, + "2024-07-27T03": 0.09158601706026182, + "2024-07-27T20": 0.09087099669286515, + "2024-07-27T23": 0.09124247738219057, + "2024-07-28T08": 0.08993650662643836, + "2024-07-27T21": 0.09067276108712334, + "2024-07-28T07": 0.0898565362616334, + "2024-07-27T15": 0.09162951685942469, + "2024-07-26T19": 0.09114308304847106, + "2024-07-28T04": 0.0908857890703249, + "2024-07-28T06": 0.0897161157642553, + "2024-07-27T17": 0.0912668881548111, + "2024-07-29": 0.09072199903386957, + "2024-07-28T20": 0.09041516374581487, + "2024-07-28T16": 0.09014195918274429, + "2024-07-29T07": 0.09144469228701153, + "2024-07-28T23": 0.08998130841688005, + "2024-07-28T15": 0.09004925939524193, + "2024-07-28T18": 0.09030881751590228, + "2024-07-29T04": 0.09127418495592568, + "2024-07-29T06": 0.09143249872548524, + "2024-07-28T21": 0.09027358998556627, + "2024-07-29T03": 0.09126884325867388, + "2024-07-28T12": 0.09037449122314865, + "2024-07-29T05": 0.09123485205601851, + "2024-07-28T17": 0.0900851562941628, + "2024-07-29T00": 0.09028587755659227, + "2024-07-29T01": 0.09065235876176375, + "2024-07-28T22": 0.09008140946945879, + "2024-07-28T19": 0.09063212089683126, + "2024-07-28T14": 0.09060105336664007, + "2024-07-29T02": 0.09058960781328963, + "2024-07-29T08": 0.09140627445793058, + "2024-07-28T11": 0.0903862442193749, + "2024-07-28T13": 0.09061127303373068, + "2024-07-29T09": 0.09140267740652346, + "2024-07-29T10": 0.09153263727145268, + "2024-07-29T11": 0.09130663787203842, + "2024-07-29T12": 0.09142279197729984, + "2024-07-29T13": 0.09145951842627208, + "2024-07-30": 0.08991681869517011, + "2024-07-29T23": 0.09003671421993337, + "2024-07-29T18": 0.0902142090193139, + "2024-07-29T21": 0.09025455472317323, + "2024-07-29T22": 0.09017496661563285, + "2024-07-29T17": 0.08971036898460184, + "2024-07-29T15": 0.0905053282369788, + "2024-07-30T01": 0.0900507315643026, + "2024-07-29T19": 0.09028540429204743, + "2024-07-30T04": 0.08998548719873985, + "2024-07-29T14": 0.09110908685011593, + "2024-07-29T20": 0.09033217347868985, + "2024-07-30T03": 0.08985407641038111, + "2024-07-30T00": 0.08973380142671288, + "2024-07-29T16": 0.09042140393940808, + "2024-07-30T02": 0.08966041928126117, + "2024-07-30T09": 0.09007676793613376, + "2024-07-30T08": 0.09027199877891569, + "2024-07-30T06": 0.08975474598804357, + "2024-07-30T05": 0.0897118933184764, + "2024-07-30T07": 0.08990778870579674, + "2024-07-30T10": 0.09034473895031706, + "2024-07-30T11": 0.08960320652351898, + "2024-07-30T12": 0.0895632953792577, + "2024-07-30T13": 0.08954168465071118, + "2024-07-31": 0.0887761114759266, + "2024-07-31T00": 0.08904624286422105, + "2024-07-31T05": 0.08877286002357533, + "2024-07-30T23": 0.0890655023912347, + "2024-07-30T19": 0.08908908054666304, + "2024-07-30T16": 0.08898612032919416, + "2024-07-30T17": 0.08922001274084752, + "2024-07-30T18": 0.0891872602582903, + "2024-07-30T20": 0.0891125355860633, + "2024-07-30T15": 0.08883430344056852, + "2024-07-31T03": 0.08873819719920105, + "2024-07-30T21": 0.08879349034947694, + "2024-07-31T01": 0.08873618598254153, + "2024-07-31T07": 0.08920089407057556, + "2024-07-31T06": 0.08917793018427758, + "2024-07-31T02": 0.08870502706805275, + "2024-07-30T22": 0.08893456693981287, + "2024-07-30T14": 0.08922435812136774, + "2024-07-31T04": 0.08878931926758013, + "2024-07-31T08": 0.08847417336856844, + "2024-07-31T11": 0.08881801387205526, + "2024-07-31T09": 0.0886325631677552, + "2024-07-31T10": 0.08902929652132778, + "2024-07-31T12": 0.08877548979725991, + "2024-08-01": 0.08645689446298901, + "2024-07-31T14": 0.08923234005583243, + "2024-07-31T23": 0.08666549124929578, + "2024-07-31T13": 0.08887738840932316, + "2024-07-31T21": 0.08656397315319773, + "2024-08-01T01": 0.08704079910966507, + "2024-07-31T18": 0.08875590892935752, + "2024-07-31T19": 0.08864843127230956, + "2024-07-31T16": 0.08892770314241227, + "2024-08-01T02": 0.08721893244859119, + "2024-07-31T22": 0.08639482764583283, + "2024-07-31T20": 0.08790311728495465, + "2024-07-31T17": 0.08840874670124857, + "2024-08-01T00": 0.08627148468002109, + "2024-07-31T15": 0.08918700416136752, + "2024-08-01T07": 0.08637015684852523, + "2024-08-01T06": 0.08680481248233007, + "2024-08-01T05": 0.08655642011157823, + "2024-08-01T04": 0.08720140602270203, + "2024-08-01T03": 0.08721885299948172, + "2024-08-01T08": 0.08598933662415244, + "2024-08-01T09": 0.08628723830883744, + "2024-08-01T10": 0.08635038005591437, + "2024-08-01T11": 0.08636639883048008, + "2024-08-01T12": 0.08617867876217387, + "2024-08-01T13": 0.08646931380729354, + "2024-08-01T14": 0.0861447791474528, + "2024-08-01T15": 0.08594774239125522, + "2024-08-02": 0.08733646804221767, + "2024-08-02T00": 0.08733646804221767, + "2024-08-01T20": 0.08555798187255002, + "2024-08-01T21": 0.08631262063469697, + "2024-08-02T04": 0.08609208770489, + "2024-08-01T19": 0.08498239517264741, + "2024-08-01T16": 0.08477159236962403, + "2024-08-02T02": 0.0868477355177947, + "2024-08-01T17": 0.08434410621765848, + "2024-08-01T23": 0.0871345310958936, + "2024-08-02T01": 0.08763773699940633, + "2024-08-01T22": 0.08668248412236464, + "2024-08-01T18": 0.08468508305831345, + "2024-08-02T03": 0.0861782094081778, + "2024-08-02T05": 0.08570349820668409, + "2024-08-02T06": 0.08542627353972683, + "2024-08-02T07": 0.08539082189528793, + "2024-08-02T08": 0.08558507181978728, + "2024-08-02T09": 0.08509790346668382, + "2024-08-02T10": 0.08506690755384455, + "2024-08-02T11": 0.08528614518795279, + "2024-08-02T12": 0.08492046723200415, + "2024-08-02T13": 0.08531925475687936, + "2024-08-02T14": 0.08555861203401185, + "2024-08-02T15": 0.08392474256728172, + "2024-08-03": 0.08316045853196379, + "2024-08-02T16": 0.08403407608646908, + "2024-08-02T22": 0.0831228936945229, + "2024-08-02T23": 0.08327927021611042, + "2024-08-03T00": 0.08317585892023624, + "2024-08-03T01": 0.08296626368063502, + "2024-08-03T03": 0.08283729394111738, + "2024-08-02T19": 0.08386021847241797, + "2024-08-02T18": 0.08384849286752943, + "2024-08-02T21": 0.08367630350325403, + "2024-08-02T17": 0.08371532743795475, + "2024-08-02T20": 0.08365272066256571, + "2024-08-03T02": 0.08273746993817177, + "2024-08-03T06": 0.08334823160151407, + "2024-08-03T19": 0.08190486166861648, + "2024-08-03T10": 0.0834572836374174, + "2024-08-03T09": 0.08336031949189335, + "2024-08-03T15": 0.0840659757381136, + "2024-08-03T22": 0.08223817386696528, + "2024-08-03T05": 0.08306080056739165, + "2024-08-03T08": 0.08372872125683248, + "2024-08-03T14": 0.08407748545434805, + "2024-08-03T18": 0.08209222355067151, + "2024-08-03T17": 0.08243388765231567, + "2024-08-03T21": 0.08156260618613127, + "2024-08-03T12": 0.08458110198816732, + "2024-08-03T20": 0.08172780527836002, + "2024-08-03T04": 0.08297343962123631, + "2024-08-03T16": 0.08303207827035788, + "2024-08-03T11": 0.08462977293770187, + "2024-08-03T07": 0.0835134323165676, + "2024-08-03T13": 0.08433725340424658, + "2024-08-04": 0.08209956385548638, + "2024-08-03T23": 0.08177212941807581, + "2024-08-04T17": 0.07898626610736952, + "2024-08-04T13": 0.08150278356725686, + "2024-08-04T06": 0.08183257312007104, + "2024-08-04T12": 0.0811952023594211, + "2024-08-04T10": 0.08198597541032329, + "2024-08-04T16": 0.07914993230143495, + "2024-08-04T15": 0.07984049818764809, + "2024-08-04T00": 0.08209929964268388, + "2024-08-04T11": 0.08113313321973198, + "2024-08-04T01": 0.0822171168542995, + "2024-08-04T03": 0.08211590172815167, + "2024-08-04T04": 0.08209071371163539, + "2024-08-04T07": 0.08204282771802297, + "2024-08-04T08": 0.08212772564714556, + "2024-08-04T18": 0.07843370268998846, + "2024-08-04T09": 0.08193798550134951, + "2024-08-04T02": 0.08205087127004729, + "2024-08-04T05": 0.08156581523075916, + "2024-08-04T14": 0.08122150769759387, + "2024-08-05": 0.07791924261585952, + "2024-08-05T01": 0.075804167338474, + "2024-08-04T19": 0.0791407000307521, + "2024-08-04T22": 0.07854386938674689, + "2024-08-05T03": 0.07266202374401023, + "2024-08-05T02": 0.07423738186091229, + "2024-08-04T23": 0.07835999039350748, + "2024-08-05T00": 0.07773673747654138, + "2024-08-05T04": 0.07225494283656662, + "2024-08-05T06": 0.07072111219486649, + "2024-08-04T20": 0.07902245602349764, + "2024-08-05T05": 0.07177817235825815, + "2024-08-04T21": 0.07848686102254011, + "2024-08-05T07": 0.06826273468640146, + "2024-08-05T08": 0.0727109640969736, + "2024-08-05T09": 0.0727451031529518, + "2024-08-05T10": 0.07170105957539767, + "2024-08-05T11": 0.0704299057747943, + "2024-08-05T12": 0.06922759332086852, + "2024-08-05T13": 0.06879870601887517, + "2024-08-05T14": 0.07086589058609166, + "2024-08-05T15": 0.07276670157421074, + "2024-08-06": 0.07525893752732614, + "2024-08-05T19": 0.07358839115775782, + "2024-08-05T20": 0.07386759274130536, + "2024-08-05T21": 0.07467116862545282, + "2024-08-06T02": 0.07715487518952044, + "2024-08-05T18": 0.07509777445241882, + "2024-08-05T23": 0.07546057335883011, + "2024-08-05T16": 0.07442455060493253, + "2024-08-06T05": 0.0777897636971054, + "2024-08-05T17": 0.07497347270946637, + "2024-08-06T00": 0.07525893752732614, + "2024-08-06T04": 0.07736120035899635, + "2024-08-06T03": 0.07777724558794911, + "2024-08-05T22": 0.0751107709952005, + "2024-08-06T01": 0.07754829992422901, + "2024-08-06T06": 0.07888935813756333, + "2024-08-06T07": 0.0792594453963692, + "2024-08-06T08": 0.08031134754032493, + "2024-08-06T09": 0.07878462441822741, + "2024-08-06T10": 0.078619431854343, + "2024-08-06T11": 0.07825690670077987, + "2024-08-06T12": 0.07809147656855134, + "2024-08-06T13": 0.07795863887445557, + "2024-08-06T14": 0.07831742019370729 + }, + "USD crypto_org": { + "2024-06-28": 0.09154348853499888, + "2024-06-30": 0.08999547398245178, + "2024-07-15": 0.09195248466278892, + "2024-07-18": 0.09290522496779026, + "2024-07-14": 0.0913450765907743, + "2024-07-11": 0.08468148684006772, + "2024-07-19": 0.09332992956951691, + "2024-07-12": 0.0863475077017308, + "2024-07-24": 0.09198498913517598, + "2024-07-08": 0.08192895763787966, + "2024-07-07": 0.0876644247406729, + "2024-07-13": 0.08800888932592967, + "2024-07-09": 0.08383256684599644, + "2024-07-02": 0.09183308150410135, + "2024-07-20": 0.09446443011631082, + "2024-06-29": 0.09006418225378363, + "2024-07-21": 0.09404265374223157, + "2024-07-23": 0.09286080827384838, + "2024-07-10": 0.08565785705464461, + "2024-07-01": 0.09161810673117625, + "2024-06-26": 0.09059457823107783, + "2024-07-17": 0.09508040743840482, + "2024-07-22": 0.09516288562245825, + "2024-07-04": 0.08877275639934262, + "2024-06-25": 0.08859042273468717, + "2024-07-26": 0.0909, + "2024-07-03": 0.09032000213337171, + "2024-07-05": 0.08360225306137073, + "2024-07-25": 0.0917522993629981, + "2024-07-16": 0.09535614275536396, + "2024-07-06": 0.08411463422386914, + "2024-06-27": 0.0890515083860644, + "2024-07-22T13": 0.09457968502453061, + "2024-07-25T10": 0.08976666307256208, + "2024-07-26T06": 0.09089324333001218, + "2024-07-24T14": 0.09265182748861765, + "2024-07-21T20": 0.09493693614022336, + "2024-07-21T07": 0.09351699075260234, + "2024-07-21T14": 0.09343150775571808, + "2024-07-22T23": 0.09300380817890734, + "2024-07-24T07": 0.09269996118753313, + "2024-07-20T11": 0.09453489790175275, + "2024-07-26T08": 0.0912, + "2024-07-25T20": 0.08838087418396015, + "2024-07-21T02": 0.09424616783368765, + "2024-07-20T04": 0.09469736848467394, + "2024-07-20T03": 0.09440430848356153, + "2024-07-25T13": 0.08959948826044031, + "2024-07-21T06": 0.09396714435954323, + "2024-07-20T12": 0.09451892990889062, + "2024-07-24T02": 0.09209355114320249, + "2024-07-24T17": 0.09310353961105003, + "2024-07-25T06": 0.08946189313740205, + "2024-07-25T22": 0.08908745948377397, + "2024-07-22T07": 0.09413101308410816, + "2024-07-22T22": 0.09335914427049138, + "2024-07-26T03": 0.09002932456517113, + "2024-07-23T01": 0.09275542341548396, + "2024-07-24T03": 0.09272980935725804, + "2024-07-23T21": 0.09197384881313075, + "2024-07-19T20": 0.09441354487394489, + "2024-07-23T22": 0.0918301738882943, + "2024-07-21T23": 0.09537012252836334, + "2024-07-19T16": 0.09477018163357305, + "2024-07-22T20": 0.09429297732192715, + "2024-07-23T10": 0.09289430597890128, + "2024-07-19T17": 0.0946956707207757, + "2024-07-22T09": 0.0939456046256855, + "2024-07-24T04": 0.09273722742626414, + "2024-07-22T06": 0.0944330262025826, + "2024-07-24T21": 0.09267864291287257, + "2024-07-20T21": 0.0942670688163456, + "2024-07-21T15": 0.09381840791831214, + "2024-07-20T09": 0.09442048622717801, + "2024-07-25T14": 0.08924896707934384, + "2024-07-19T11": 0.09266155815545221, + "2024-07-23T20": 0.09180154471568482, + "2024-07-25T03": 0.09008996910198148, + "2024-07-20T01": 0.09398944642648352, + "2024-07-25T23": 0.089040788519185, + "2024-07-20T16": 0.09500060492337487, + "2024-07-22T15": 0.09340375225655868, + "2024-07-23T16": 0.09231518616111149, + "2024-07-22T02": 0.0947032645202014, + "2024-07-21T04": 0.09450423907558586, + "2024-07-23T09": 0.09287204833114103, + "2024-07-20T10": 0.09440276581226104, + "2024-07-22T19": 0.09357978274589768, + "2024-07-20T00": 0.09462887193622424, + "2024-07-20T19": 0.09459611849043184, + "2024-07-26T05": 0.09079207047743863, + "2024-07-19T14": 0.09311570203368966, + "2024-07-21T00": 0.09404265374223157, + "2024-07-22T12": 0.09433707339853774, + "2024-07-24T06": 0.09254935284604673, + "2024-07-25T01": 0.09181280868200753, + "2024-07-20T22": 0.0936161950748334, + "2024-07-19T15": 0.09404995850955657, + "2024-07-21T13": 0.09337181122309923, + "2024-07-25T07": 0.08972440279270368, + "2024-07-21T08": 0.09382079508457199, + "2024-07-23T06": 0.09209866792609668, + "2024-07-22T16": 0.09396828560567763, + "2024-07-24T11": 0.09287928390781758, + "2024-07-24T01": 0.09265960253490134, + "2024-07-23T00": 0.09286080827384838, + "2024-07-19T12": 0.09288479374375282, + "2024-07-25T17": 0.08936090429980072, + "2024-07-25T19": 0.0888119940978358, + "2024-07-19T21": 0.09443274982706637, + "2024-07-23T08": 0.09219977807796313, + "2024-07-21T21": 0.09476981861146208, + "2024-07-21T11": 0.09355720807800261, + "2024-07-22T14": 0.09368767280438473, + "2024-07-20T23": 0.09371232462170052, + "2024-07-20T08": 0.09437823619337564, + "2024-07-20T02": 0.09425311980507244, + "2024-07-24T05": 0.09259803940963908, + "2024-07-24T16": 0.09270131756806539, + "2024-07-21T01": 0.09377338556156664, + "2024-07-24T13": 0.09257628252157532, + "2024-07-25T04": 0.08985982736268283, + "2024-07-19T13": 0.09289151034039687, + "2024-07-25T12": 0.08979493942909819, + "2024-07-19T22": 0.09465975352576406, + "2024-07-26T07": 0.0912005173576892, + "2024-07-25T02": 0.09020753210919533, + "2024-07-21T12": 0.09345154996256051, + "2024-07-23T18": 0.09187687674141963, + "2024-07-23T11": 0.09243257424507499, + "2024-07-19T10": 0.09258048908607201, + "2024-07-19T19": 0.09444685869998862, + "2024-07-25T11": 0.08972444304191513, + "2024-07-22T08": 0.09408776545422591, + "2024-07-23T19": 0.09187373345039461, + "2024-07-22T21": 0.09389101375000647, + "2024-07-21T09": 0.09364306098855908, + "2024-07-21T22": 0.09545624010657165, + "2024-07-22T04": 0.09451431963513325, + "2024-07-25T16": 0.08932217510201368, + "2024-07-19T23": 0.09468170948223928, + "2024-07-20T06": 0.0945010547348313, + "2024-07-23T02": 0.09354765140891547, + "2024-07-23T14": 0.0917357801722625, + "2024-07-23T03": 0.09356946623457028, + "2024-07-25T08": 0.08877673863077713, + "2024-07-24T15": 0.09291669967542578, + "2024-07-19T09": 0.09291463115364558, + "2024-07-20T15": 0.09480000220420075, + "2024-07-23T23": 0.09172603220239442, + "2024-07-23T12": 0.0925486051704717, + "2024-07-22T10": 0.09460250965219094, + "2024-07-21T10": 0.09364489847795923, + "2024-07-22T00": 0.09516288562245825, + "2024-07-24T22": 0.09206121109671248, + "2024-07-24T19": 0.09267853496654038, + "2024-07-24T09": 0.0931029277557545, + "2024-07-23T04": 0.09323043389401801, + "2024-07-23T05": 0.09285850925881006, + "2024-07-25T18": 0.08948363129455854, + "2024-07-25T15": 0.08965831769935866, + "2024-07-26T01": 0.09009627161468596, + "2024-07-22T01": 0.09520303822207647, + "2024-07-26T02": 0.08948140260448069, + "2024-07-24T18": 0.09296197493281731, + "2024-07-21T19": 0.09374834390301087, + "2024-07-25T05": 0.08943688216816713, + "2024-07-22T18": 0.09397809835990067, + "2024-07-24T00": 0.09198049309511919, + "2024-07-24T08": 0.09289902241985437, + "2024-07-24T20": 0.09225780635226231, + "2024-07-24T23": 0.09178100709045339, + "2024-07-22T17": 0.0937289118202191, + "2024-07-21T17": 0.094560338166477, + "2024-07-24T12": 0.09290853835826345, + "2024-07-23T13": 0.09232812927443823, + "2024-07-21T05": 0.09426422942757669, + "2024-07-20T05": 0.09449096908075234, + "2024-07-21T03": 0.09437157082484215, + "2024-07-26T00": 0.08927841224096689, + "2024-07-20T20": 0.0944353849204584, + "2024-07-22T03": 0.09480771138401596, + "2024-07-25T21": 0.08874702266312906, + "2024-07-21T16": 0.09413106251422927, + "2024-07-20T17": 0.09516957566425517, + "2024-07-22T11": 0.09517916135782581, + "2024-07-25T00": 0.0917522993629981, + "2024-07-20T13": 0.09460025730839629, + "2024-07-23T07": 0.09229183919787218, + "2024-07-22T05": 0.0945332755327361, + "2024-07-20T07": 0.09439724206873852, + "2024-07-21T18": 0.09415177231218377, + "2024-07-23T17": 0.09178078471102241, + "2024-07-20T14": 0.09476220671767663, + "2024-07-26T04": 0.0899681998802663, + "2024-07-24T10": 0.09301848983389893, + "2024-07-20T18": 0.095182715949435, + "2024-07-23T15": 0.09255239514284336, + "2024-07-19T18": 0.0947991183044441, + "2024-07-25T09": 0.08997078011521528, + "latest": 0.079737, + "2024-07-26T09": 0.0913, + "2024-07-26T10": 0.09123777209955276, + "2024-07-26T11": 0.0911202523999712, + "2024-07-26T12": 0.09086622892226978, + "2024-07-26T13": 0.0907, + "2024-07-26T14": 0.0906, + "2024-07-26T17": 0.0909, + "2024-07-26T16": 0.0908, + "2024-07-26T15": 0.0907, + "2024-07-26T18": 0.091, + "2024-07-27": 0.0912, + "2024-07-28": 0.0902, + "2024-07-28T05": 0.09046663595020774, + "2024-07-26T21": 0.0913, + "2024-07-27T02": 0.0912, + "2024-07-28T01": 0.0908, + "2024-07-27T10": 0.0918, + "2024-07-28T02": 0.0908, + "2024-07-27T19": 0.0908, + "2024-07-27T09": 0.0918, + "2024-07-27T06": 0.0918, + "2024-07-27T18": 0.0911, + "2024-07-26T22": 0.0914, + "2024-07-27T13": 0.092, + "2024-07-27T12": 0.09154414649284358, + "2024-07-27T16": 0.0913, + "2024-07-27T05": 0.0918, + "2024-07-26T23": 0.0915, + "2024-07-26T20": 0.0913, + "2024-07-27T08": 0.0918, + "2024-07-28T03": 0.0908, + "2024-07-27T01": 0.0912, + "2024-07-28T09": 0.0898, + "2024-07-28T10": 0.0902, + "2024-07-27T00": 0.0914, + "2024-07-28T00": 0.0908, + "2024-07-27T04": 0.0912, + "2024-07-27T14": 0.0921, + "2024-07-27T07": 0.0918, + "2024-07-27T11": 0.0916, + "2024-07-27T22": 0.0909, + "2024-07-27T03": 0.0912, + "2024-07-27T20": 0.0905, + "2024-07-27T23": 0.0909, + "2024-07-28T08": 0.0898, + "2024-07-27T21": 0.0907, + "2024-07-28T07": 0.0898, + "2024-07-27T15": 0.0913, + "2024-07-26T19": 0.0911, + "2024-07-28T04": 0.0908, + "2024-07-28T06": 0.0898, + "2024-07-27T17": 0.0913, + "2024-07-29": 0.0907, + "2024-07-28T20": 0.0904, + "2024-07-28T16": 0.0901, + "2024-07-29T07": 0.0915, + "2024-07-28T23": 0.09, + "2024-07-28T15": 0.0901, + "2024-07-28T18": 0.0903, + "2024-07-29T04": 0.0914, + "2024-07-29T06": 0.0916, + "2024-07-28T21": 0.09014793074384408, + "2024-07-29T03": 0.0914, + "2024-07-28T12": 0.09033598962500158, + "2024-07-29T05": 0.0914, + "2024-07-28T17": 0.09, + "2024-07-29T00": 0.0907, + "2024-07-29T01": 0.0907, + "2024-07-28T22": 0.0901, + "2024-07-28T19": 0.0906, + "2024-07-28T14": 0.0903, + "2024-07-29T02": 0.09071699034077582, + "2024-07-29T08": 0.09140627445793058, + "2024-07-28T11": 0.0903, + "2024-07-28T13": 0.0905, + "2024-07-29T09": 0.09140267740652346, + "2024-07-29T10": 0.0916, + "2024-07-29T11": 0.0916, + "2024-07-29T12": 0.0915, + "2024-07-29T13": 0.0915, + "2024-07-30": 0.0895, + "2024-07-29T23": 0.0897, + "2024-07-29T18": 0.0901, + "2024-07-29T21": 0.0902, + "2024-07-29T22": 0.09012342495462292, + "2024-07-29T17": 0.09, + "2024-07-29T15": 0.0907, + "2024-07-30T01": 0.09, + "2024-07-29T19": 0.0903, + "2024-07-30T04": 0.09, + "2024-07-29T14": 0.0908, + "2024-07-29T20": 0.09031966985837928, + "2024-07-30T03": 0.09, + "2024-07-30T00": 0.08993188125782524, + "2024-07-29T16": 0.0898, + "2024-07-30T02": 0.0901, + "2024-07-30T09": 0.0902, + "2024-07-30T08": 0.0899, + "2024-07-30T06": 0.0898, + "2024-07-30T05": 0.0899, + "2024-07-30T07": 0.0899, + "2024-07-30T10": 0.0901, + "2024-07-30T11": 0.08960320652351898, + "2024-07-30T12": 0.0895632953792577, + "2024-07-30T13": 0.0895, + "2024-07-31": 0.0886, + "2024-07-31T00": 0.0889, + "2024-07-31T05": 0.0887, + "2024-07-30T23": 0.0887, + "2024-07-30T19": 0.0889, + "2024-07-30T16": 0.089, + "2024-07-30T17": 0.089, + "2024-07-30T18": 0.0889, + "2024-07-30T20": 0.0887, + "2024-07-30T15": 0.0889, + "2024-07-31T03": 0.0886, + "2024-07-30T21": 0.0886, + "2024-07-31T01": 0.0888, + "2024-07-31T07": 0.0887, + "2024-07-31T06": 0.0889, + "2024-07-31T02": 0.0887, + "2024-07-30T22": 0.0886, + "2024-07-30T14": 0.0889, + "2024-07-31T04": 0.0887, + "2024-07-31T08": 0.0886, + "2024-07-31T11": 0.0889, + "2024-07-31T09": 0.08894774318603338, + "2024-07-31T10": 0.0891, + "2024-07-31T12": 0.0887, + "2024-08-01": 0.08645689446298901, + "2024-07-31T14": 0.089, + "2024-07-31T23": 0.0863, + "2024-07-31T13": 0.0888, + "2024-07-31T21": 0.0864, + "2024-08-01T01": 0.0869, + "2024-07-31T18": 0.0884, + "2024-07-31T19": 0.088, + "2024-07-31T16": 0.0887, + "2024-08-01T02": 0.0871, + "2024-07-31T22": 0.0863, + "2024-07-31T20": 0.0866, + "2024-07-31T17": 0.0885, + "2024-08-01T00": 0.0865, + "2024-07-31T15": 0.08903891324016688, + "2024-08-01T07": 0.08620551693688858, + "2024-08-01T06": 0.0866, + "2024-08-01T05": 0.08661002042210958, + "2024-08-01T04": 0.0868, + "2024-08-01T03": 0.0871, + "2024-08-01T08": 0.0861, + "2024-08-01T09": 0.0861, + "2024-08-01T10": 0.0861, + "2024-08-01T11": 0.0861, + "2024-08-01T12": 0.0863, + "2024-08-01T13": 0.0863, + "2024-08-01T14": 0.0862, + "2024-08-01T15": 0.0847, + "2024-08-02": 0.08733646804221767, + "2024-08-02T00": 0.087491187, + "2024-08-01T20": 0.0853, + "2024-08-01T21": 0.0862, + "2024-08-02T04": 0.08609208770489, + "2024-08-01T19": 0.0851, + "2024-08-01T16": 0.0842, + "2024-08-02T02": 0.08645501838325517, + "2024-08-01T17": 0.0837, + "2024-08-01T23": 0.0872, + "2024-08-02T01": 0.0872822496, + "2024-08-01T22": 0.0869, + "2024-08-01T18": 0.0846, + "2024-08-02T03": 0.085820972, + "2024-08-02T05": 0.08570349820668409, + "2024-08-02T06": 0.08542627353972683, + "2024-08-02T07": 0.08537270538636639, + "2024-08-02T08": 0.0851492674, + "2024-08-02T09": 0.08499686324510103, + "2024-08-02T10": 0.08506690755384455, + "2024-08-02T11": 0.0850984572, + "2024-08-02T12": 0.085090395, + "2024-08-02T13": 0.0854932632, + "2024-08-02T14": 0.08555861203401185, + "2024-08-02T15": 0.08369789559999999, + "2024-08-03": 0.08275606730050296, + "2024-08-02T16": 0.083788719, + "2024-08-02T22": 0.0832350038, + "2024-08-02T23": 0.08316961501495036, + "2024-08-03T00": 0.08294270530566157, + "2024-08-03T01": 0.0827081437, + "2024-08-03T03": 0.0827913609, + "2024-08-02T19": 0.08360892294667804, + "2024-08-02T18": 0.08377614, + "2024-08-02T21": 0.08311706620175151, + "2024-08-02T17": 0.08384027599999999, + "2024-08-02T20": 0.0834789087, + "2024-08-03T02": 0.082590836, + "2024-08-03T06": 0.0834789087, + "2024-08-03T19": 0.08181457649847612, + "2024-08-03T10": 0.0837562296, + "2024-08-03T09": 0.08340562625435397, + "2024-08-03T15": 0.08358396120000001, + "2024-08-03T22": 0.08180635539399386, + "2024-08-03T05": 0.08314960138, + "2024-08-03T08": 0.0834289953, + "2024-08-03T14": 0.0840353415, + "2024-08-03T18": 0.08204253, + "2024-08-03T17": 0.08209085199999999, + "2024-08-03T21": 0.081820878, + "2024-08-03T12": 0.0843458484, + "2024-08-03T20": 0.0816752409, + "2024-08-03T04": 0.08314516856313325, + "2024-08-03T16": 0.0827678775, + "2024-08-03T11": 0.08471877640000001, + "2024-08-03T07": 0.08368779552258228, + "2024-08-03T13": 0.08420155659495407, + "2024-08-04": 0.0791, + "2024-08-03T23": 0.08199669064237251, + "2024-08-04T17": 0.0783, + "2024-08-04T13": 0.0812, + "2024-08-04T06": 0.0818, + "2024-08-04T12": 0.0811, + "2024-08-04T10": 0.0811, + "2024-08-04T16": 0.079, + "2024-08-04T15": 0.0795, + "2024-08-04T00": 0.08174654932525094, + "2024-08-04T11": 0.0811, + "2024-08-04T01": 0.0819, + "2024-08-04T03": 0.0821, + "2024-08-04T04": 0.082, + "2024-08-04T07": 0.0819, + "2024-08-04T08": 0.08183424413909768, + "2024-08-04T18": 0.07843370268998846, + "2024-08-04T09": 0.0818, + "2024-08-04T02": 0.082, + "2024-08-04T05": 0.0817, + "2024-08-04T14": 0.0801, + "2024-08-05": 0.0721, + "2024-08-05T01": 0.075804167338474, + "2024-08-04T19": 0.0791407000307521, + "2024-08-04T22": 0.07854386938674689, + "2024-08-05T03": 0.07266202374401023, + "2024-08-05T02": 0.07423738186091229, + "2024-08-04T23": 0.07835999039350748, + "2024-08-05T00": 0.07773673747654138, + "2024-08-05T04": 0.07225494283656662, + "2024-08-05T06": 0.07072111219486649, + "2024-08-04T20": 0.07902245602349764, + "2024-08-05T05": 0.07177817235825815, + "2024-08-04T21": 0.07848686102254011, + "2024-08-05T07": 0.06826273468640146, + "2024-08-05T08": 0.0727109640969736, + "2024-08-05T09": 0.0727451031529518, + "2024-08-05T10": 0.07170105957539767, + "2024-08-05T11": 0.0692, + "2024-08-05T12": 0.06922759332086852, + "2024-08-05T13": 0.06879870601887517, + "2024-08-05T14": 0.07086589058609166, + "2024-08-05T15": 0.07364306594800896, + "2024-08-06": 0.0772, + "2024-08-05T19": 0.0736, + "2024-08-05T20": 0.07424864515597755, + "2024-08-05T21": 0.0748, + "2024-08-06T02": 0.0774, + "2024-08-05T18": 0.0744, + "2024-08-05T23": 0.0754, + "2024-08-05T16": 0.0752, + "2024-08-06T05": 0.0782, + "2024-08-05T17": 0.075, + "2024-08-06T00": 0.0769, + "2024-08-06T04": 0.0777, + "2024-08-06T03": 0.0774, + "2024-08-05T22": 0.0753, + "2024-08-06T01": 0.0774, + "2024-08-06T06": 0.0792, + "2024-08-06T07": 0.0793, + "2024-08-06T08": 0.0793, + "2024-08-06T09": 0.07873131295194954, + "2024-08-06T10": 0.0787, + "2024-08-06T11": 0.07812794361855457, + "2024-08-06T12": 0.0781, + "2024-08-06T13": 0.0779, + "2024-08-06T14": 0.0779 + }, + "USD dash": { + "2024-06-28": 24.76873005108257, + "2024-06-30": 24.38792469060287, + "2024-07-15": 27.153309835140888, + "2024-07-18": 27.639503475586725, + "2024-07-14": 26.26099296573511, + "2024-07-11": 23.96365226828571, + "2024-07-19": 27.03998325170554, + "2024-07-12": 24.1138572286122, + "2024-07-24": 26.90228372669829, + "2024-07-08": 22.75409935216314, + "2024-07-07": 23.23024207891485, + "2024-07-13": 25.44532529291334, + "2024-07-09": 23.683853698365898, + "2024-07-02": 24.288301977221543, + "2024-07-20": 27.89150631883806, + "2024-06-29": 24.839644121315537, + "2024-07-21": 28.268313374013776, + "2024-07-23": 26.75416287003272, + "2024-07-10": 23.80000009272105, + "2024-07-01": 24.579267432279348, + "2024-06-26": 23.932807788987308, + "2024-07-17": 28.136701441371525, + "2024-07-22": 27.41170091562234, + "2024-07-04": 22.939550060137176, + "2024-06-25": 23.732414389536636, + "2024-07-26": 26.442772484680578, + "2024-07-03": 24.325135059565937, + "2024-07-05": 20.9666448, + "2024-07-25": 25.393169114239384, + "2024-07-16": 27.350098670018017, + "2024-07-06": 22.882288, + "2024-06-27": 24.237613495353575, + "2024-07-22T13": 27.557867679578635, + "2024-07-25T10": 25.20674954570455, + "2024-07-26T06": 26.363537559466614, + "2024-07-24T14": 27.1741260668924, + "2024-07-21T20": 28.239130575223168, + "2024-07-21T07": 27.691677262471227, + "2024-07-21T14": 28.51132705252336, + "2024-07-22T23": 26.81747904713502, + "2024-07-24T07": 26.853594356530298, + "2024-07-20T11": 27.973095328721122, + "2024-07-26T08": 26.299684039221397, + "2024-07-25T20": 25.094425288011834, + "2024-07-21T02": 28.129428085863506, + "2024-07-20T04": 27.603047974720408, + "2024-07-20T03": 27.545275089152124, + "2024-07-25T13": 25.170916322866685, + "2024-07-21T06": 27.898192117477556, + "2024-07-20T12": 27.80383825515325, + "2024-07-24T02": 26.555432042013376, + "2024-07-24T17": 27.05551664497904, + "2024-07-25T06": 25.74247338675906, + "2024-07-25T22": 25.600971554937978, + "2024-07-22T07": 27.39844235282032, + "2024-07-22T22": 27.10843310432496, + "2024-07-26T03": 26.032419780372816, + "2024-07-23T01": 26.971126229485296, + "2024-07-24T03": 26.736622458080287, + "2024-07-23T21": 26.67569127485065, + "2024-07-19T20": 27.81429107899184, + "2024-07-23T22": 26.610207858533556, + "2024-07-21T23": 28.570971756719036, + "2024-07-19T16": 27.117910120878236, + "2024-07-22T20": 27.425968473578507, + "2024-07-23T10": 27.00436079179946, + "2024-07-19T17": 27.374855493091527, + "2024-07-22T09": 27.226692687631388, + "2024-07-24T04": 26.7052796048438, + "2024-07-22T06": 27.563135525702585, + "2024-07-24T21": 26.955441501972174, + "2024-07-20T21": 28.053193661813303, + "2024-07-21T15": 28.758719961937057, + "2024-07-20T09": 28.025784744107977, + "2024-07-25T14": 25.254588705822183, + "2024-07-19T11": 26.877157056331807, + "2024-07-23T20": 26.715448641288578, + "2024-07-25T03": 25.847273945474537, + "2024-07-20T01": 27.598201995035215, + "2024-07-25T23": 25.721911614152482, + "2024-07-20T16": 28.15304764294665, + "2024-07-22T15": 27.134380444590178, + "2024-07-23T16": 26.91208318741086, + "2024-07-22T02": 28.355212182877644, + "2024-07-21T04": 27.895794312786983, + "2024-07-23T09": 27.03289602342264, + "2024-07-20T10": 27.91259230768152, + "2024-07-22T19": 27.3192482203587, + "2024-07-20T00": 27.516358231927214, + "2024-07-20T19": 28.259098816222878, + "2024-07-26T05": 26.363219980578673, + "2024-07-19T14": 26.766957799515566, + "2024-07-21T00": 28.015798132022034, + "2024-07-22T12": 27.459305640376012, + "2024-07-24T06": 26.707126496109282, + "2024-07-25T01": 26.62955185923909, + "2024-07-20T22": 27.8858728809535, + "2024-07-19T15": 27.111934755252484, + "2024-07-21T13": 28.335558516576693, + "2024-07-25T07": 25.81183705993733, + "2024-07-21T08": 27.70056830787548, + "2024-07-23T06": 26.723999429305398, + "2024-07-22T16": 27.2353944017239, + "2024-07-24T11": 27.297755661500357, + "2024-07-24T01": 26.40930553592351, + "2024-07-23T00": 26.818670506789065, + "2024-07-19T12": 26.433710619329535, + "2024-07-25T17": 25.44349347908334, + "2024-07-25T19": 25.273813014472083, + "2024-07-19T21": 27.920622318363367, + "2024-07-23T08": 26.68333839659216, + "2024-07-21T21": 28.403453061653718, + "2024-07-21T11": 27.89775062442083, + "2024-07-22T14": 27.086313466237378, + "2024-07-20T23": 27.910305609141833, + "2024-07-20T08": 28.00742483295522, + "2024-07-20T02": 27.544130580503953, + "2024-07-24T05": 26.689694768263934, + "2024-07-24T16": 26.864985449876247, + "2024-07-21T01": 28.304217953874986, + "2024-07-24T13": 27.18596831229369, + "2024-07-25T04": 25.73229005125481, + "2024-07-19T13": 26.602932356077957, + "2024-07-25T12": 25.18924126860659, + "2024-07-19T22": 27.817022638149236, + "2024-07-26T07": 26.5204593958896, + "2024-07-25T02": 25.87497497687932, + "2024-07-21T12": 28.506318721072745, + "2024-07-23T18": 26.594737812509695, + "2024-07-23T11": 26.984696624932795, + "2024-07-19T10": 26.75906845656317, + "2024-07-19T19": 27.77673473608175, + "2024-07-25T11": 25.235943678449424, + "2024-07-22T08": 27.11897629674034, + "2024-07-23T19": 26.84369486350675, + "2024-07-22T21": 27.38774092276531, + "2024-07-21T09": 28.00466416576315, + "2024-07-21T22": 28.76725155344527, + "2024-07-22T04": 28.084465502508657, + "2024-07-25T16": 25.45331363112437, + "2024-07-19T23": 27.5061766844301, + "2024-07-26T09": 26.37345059650827, + "2024-07-20T06": 27.756055811162728, + "2024-07-23T02": 27.24299255895375, + "2024-07-23T14": 26.7214921922416, + "2024-07-23T03": 27.260228270407346, + "2024-07-25T08": 25.61546061492638, + "2024-07-24T15": 27.27578227180265, + "2024-07-19T09": 27.069075804034746, + "2024-07-20T15": 27.905765250238836, + "2024-07-23T23": 26.580462581016377, + "2024-07-23T12": 26.96640231448042, + "2024-07-22T10": 27.329358773039505, + "2024-07-21T10": 27.952802271319726, + "2024-07-22T00": 28.357195670867696, + "2024-07-24T22": 26.817355960473833, + "2024-07-24T19": 26.802130226316518, + "2024-07-24T09": 27.266917258469583, + "2024-07-23T04": 26.962876650634882, + "2024-07-23T05": 26.677568228957618, + "2024-07-25T18": 25.4855619012487, + "2024-07-25T15": 25.457923750558, + "2024-07-26T01": 25.934908280697904, + "2024-07-22T01": 28.46391441457685, + "2024-07-26T02": 25.894324097402347, + "2024-07-24T18": 27.003426989421488, + "2024-07-21T19": 28.05049070752726, + "2024-07-25T05": 25.930355084232357, + "2024-07-22T18": 27.289327297979376, + "2024-07-24T00": 26.555981654638934, + "2024-07-24T08": 27.084135313598086, + "2024-07-24T20": 26.765085977198126, + "2024-07-24T23": 26.735013306472972, + "2024-07-22T17": 27.151447921777464, + "2024-07-21T17": 28.75669724434822, + "2024-07-24T12": 27.247466895684433, + "2024-07-23T13": 26.86805723357481, + "2024-07-21T05": 27.916102917566917, + "2024-07-20T05": 27.758934043225004, + "2024-07-21T03": 28.015989544105814, + "2024-07-26T00": 25.7489950511282, + "2024-07-20T20": 28.102453959955746, + "2024-07-22T03": 28.381273623499297, + "2024-07-25T21": 25.457413582714292, + "2024-07-21T16": 28.331987957054075, + "2024-07-20T17": 28.04979338496109, + "2024-07-22T11": 27.431114149847343, + "2024-07-25T00": 26.74320421890113, + "2024-07-20T13": 27.92128185894408, + "2024-07-23T07": 26.58755819612354, + "2024-07-22T05": 27.879133690881574, + "2024-07-20T07": 27.71991577966496, + "2024-07-21T18": 28.25272245932957, + "2024-07-23T17": 26.444905683005185, + "2024-07-20T14": 27.73901356821559, + "2024-07-26T04": 26.28096799788995, + "2024-07-24T10": 27.28394828301713, + "2024-07-20T18": 28.273078869160255, + "2024-07-23T15": 27.168371187541698, + "2024-07-19T18": 27.296741447068978, + "2024-07-25T09": 25.473952487759096, + "latest": 22.61, + "2024-07-26T10": 26.274333029928762, + "2024-07-26T11": 26.254783409577506, + "2024-07-26T12": 26.343247836067007, + "2024-07-26T13": 26.339714556985836, + "2024-07-26T14": 26.21134462308303, + "2024-07-26T17": 26.536217291934154, + "2024-07-26T16": 26.377021301255667, + "2024-07-26T15": 26.311651850167127, + "2024-07-26T18": 26.621873066823785, + "2024-07-27": 26.85255990600473, + "2024-07-28": 26.790324893560395, + "2024-07-28T05": 26.65177175067166, + "2024-07-26T21": 26.839252905077874, + "2024-07-27T02": 26.7808034, + "2024-07-28T01": 26.899201541085436, + "2024-07-27T10": 26.782142400000005, + "2024-07-28T02": 26.858414258583466, + "2024-07-27T19": 26.84671, + "2024-07-27T09": 26.772409299999996, + "2024-07-27T06": 26.720534399999995, + "2024-07-27T18": 26.974045500000003, + "2024-07-26T22": 26.987234671301756, + "2024-07-27T13": 26.944464636151352, + "2024-07-27T12": 26.7845526, + "2024-07-27T16": 26.942694, + "2024-07-27T05": 26.761266375437764, + "2024-07-26T23": 27.050698921774472, + "2024-07-26T20": 26.762605787305883, + "2024-07-27T08": 26.861343, + "2024-07-28T03": 26.94659259854778, + "2024-07-27T01": 26.8110724, + "2024-07-28T09": 26.70726535061577, + "2024-07-28T10": 26.75052691535216, + "2024-07-27T00": 26.901076, + "2024-07-28T00": 26.859086811957358, + "2024-07-27T04": 26.7805356, + "2024-07-27T14": 26.942694, + "2024-07-27T07": 26.84, + "2024-07-27T11": 26.734583502011876, + "2024-07-27T22": 27.147556499999997, + "2024-07-27T03": 26.760267600000002, + "2024-07-27T20": 26.871343500000005, + "2024-07-27T23": 26.988110699999996, + "2024-07-28T08": 26.701313096418577, + "2024-07-27T21": 27.1591852, + "2024-07-28T07": 26.678687145335584, + "2024-07-27T15": 26.812680999999998, + "2024-07-26T19": 26.778171660705084, + "2024-07-28T04": 26.74221392924854, + "2024-07-28T06": 26.737224121298162, + "2024-07-27T17": 26.913229199999996, + "2024-07-29": 27.54399346747456, + "2024-07-28T20": 26.775967497864603, + "2024-07-28T16": 26.79650447619947, + "2024-07-29T07": 27.61451988368108, + "2024-07-28T23": 26.568625330071438, + "2024-07-28T15": 26.654161083225638, + "2024-07-28T18": 26.907397473800284, + "2024-07-29T04": 27.586202195993867, + "2024-07-29T06": 27.663718291683086, + "2024-07-28T21": 26.834117813549053, + "2024-07-29T03": 27.637793115703765, + "2024-07-28T12": 26.724544671586834, + "2024-07-29T05": 27.703992546878293, + "2024-07-28T17": 26.87521222307213, + "2024-07-29T00": 26.868081464611382, + "2024-07-29T01": 26.976766954878705, + "2024-07-28T22": 26.816324510471652, + "2024-07-28T19": 26.80054843523596, + "2024-07-28T14": 26.659187869942123, + "2024-07-29T02": 27.373040298516266, + "2024-07-29T08": 27.66657690916967, + "2024-07-28T11": 26.788553463302677, + "2024-07-28T13": 26.73444743858945, + "2024-07-29T09": 27.52058894148441, + "2024-07-29T10": 27.563483001295435, + "2024-07-29T11": 27.53676689142334, + "2024-07-29T12": 27.56025415134074, + "2024-07-29T13": 27.664376187723295, + "2024-07-30": 26.80019996802434, + "2024-07-29T23": 26.80400268962148, + "2024-07-29T18": 27.331408067206183, + "2024-07-29T21": 26.97464395125829, + "2024-07-29T22": 26.97348524116605, + "2024-07-29T17": 27.10414626124856, + "2024-07-29T15": 27.131103174152955, + "2024-07-30T01": 26.730317768680433, + "2024-07-29T19": 27.385601138598684, + "2024-07-30T04": 27.04861542096587, + "2024-07-29T14": 27.465174146328295, + "2024-07-29T20": 27.171364527095044, + "2024-07-30T03": 26.83735677055486, + "2024-07-30T00": 26.510646232939457, + "2024-07-29T16": 27.053381557892116, + "2024-07-30T02": 26.64851577227437, + "2024-07-30T09": 26.902311555406882, + "2024-07-30T08": 26.964127245456133, + "2024-07-30T06": 27.00356183779902, + "2024-07-30T05": 26.990311058880394, + "2024-07-30T07": 27.014051018922284, + "2024-07-30T10": 26.7930331376818, + "2024-07-30T11": 26.79215071202313, + "2024-07-30T12": 26.88752888519686, + "2024-07-30T13": 26.986578939827556, + "2024-07-31": 26.234804663224853, + "2024-07-31T00": 26.22786629866652, + "2024-07-31T05": 26.28458953174713, + "2024-07-30T23": 26.284801184191974, + "2024-07-30T19": 26.43888658701439, + "2024-07-30T16": 26.99574515323586, + "2024-07-30T17": 26.648075911059923, + "2024-07-30T18": 26.52878591502235, + "2024-07-30T20": 26.36820747475293, + "2024-07-30T15": 26.93133805632701, + "2024-07-31T03": 26.469652376369087, + "2024-07-30T21": 26.230230474908602, + "2024-07-31T01": 26.415040409175152, + "2024-07-31T07": 26.661126214000774, + "2024-07-31T06": 26.6738421898237, + "2024-07-31T02": 26.465586757621303, + "2024-07-30T22": 26.278848406555795, + "2024-07-30T14": 26.914785574455994, + "2024-07-31T04": 26.351852022792514, + "2024-07-31T08": 26.53941180704321, + "2024-07-31T11": 26.44806837371512, + "2024-07-31T09": 26.378650611378607, + "2024-07-31T10": 26.373779000811687, + "2024-07-31T12": 26.568716664965326, + "2024-08-01": 25.769864264277654, + "2024-07-31T14": 26.763180331173128, + "2024-07-31T23": 26.659337310465535, + "2024-07-31T13": 26.852213817079914, + "2024-07-31T21": 26.56612505303998, + "2024-08-01T01": 26.823791471106794, + "2024-07-31T18": 27.038111627795818, + "2024-07-31T19": 26.932995716479557, + "2024-07-31T16": 26.807290934017516, + "2024-08-01T02": 26.89995446837664, + "2024-07-31T22": 26.641522686646123, + "2024-07-31T20": 26.59236232174733, + "2024-07-31T17": 26.869941266979453, + "2024-08-01T00": 26.51499541697417, + "2024-07-31T15": 26.82535079399244, + "2024-08-01T06": 25.804980619479693, + "2024-08-01T05": 25.769534107909585, + "2024-08-01T04": 26.02455456097937, + "2024-08-01T03": 26.674797290114444, + "2024-08-01T07": 25.874673695057442, + "2024-08-01T08": 25.889410737227916, + "2024-08-01T09": 25.952058104062456, + "2024-08-01T10": 25.88325359959743, + "2024-08-01T11": 25.957330536812126, + "2024-08-01T12": 25.98378257951432, + "2024-08-01T13": 26.08509954625418, + "2024-08-01T14": 25.881532033487503, + "2024-08-01T15": 25.080768095014616, + "2024-08-02": 25.824980171202565, + "2024-08-02T00": 25.727510054937355, + "2024-08-01T20": 24.89223813776595, + "2024-08-01T21": 25.40415121278797, + "2024-08-02T04": 25.595946773314477, + "2024-08-01T19": 24.58636123594948, + "2024-08-01T16": 24.779621318478082, + "2024-08-02T02": 25.32417405441514, + "2024-08-01T17": 24.488320967603663, + "2024-08-01T23": 25.70167591513066, + "2024-08-02T01": 25.613067966173368, + "2024-08-01T22": 25.53737477429941, + "2024-08-01T18": 24.37172692428067, + "2024-08-02T03": 25.449141142468985, + "2024-08-02T05": 25.449118509665674, + "2024-08-02T06": 25.103463425542998, + "2024-08-02T07": 25.155058360363814, + "2024-08-02T08": 25.17287876603742, + "2024-08-02T09": 25.17640873441151, + "2024-08-02T10": 25.273440701199952, + "2024-08-02T11": 25.51373062165214, + "2024-08-02T12": 25.485275389937286, + "2024-08-02T13": 25.592462882413614, + "2024-08-02T14": 25.830626961911637, + "2024-08-02T15": 24.85952014264111, + "2024-08-03": 24.508442724930013, + "2024-08-02T16": 24.862271360670462, + "2024-08-02T22": 24.55449741087334, + "2024-08-02T23": 24.25069131663547, + "2024-08-03T00": 24.33966098950008, + "2024-08-03T01": 24.350003570939887, + "2024-08-03T03": 24.652501217941793, + "2024-08-02T19": 24.587024328881725, + "2024-08-02T18": 24.681983134590368, + "2024-08-02T21": 24.666477861083617, + "2024-08-02T17": 24.759411664694184, + "2024-08-02T20": 24.498755734542193, + "2024-08-03T02": 24.40646611333588, + "2024-08-03T06": 24.701573516549832, + "2024-08-03T19": 23.05532766194304, + "2024-08-03T10": 24.692387911546227, + "2024-08-03T09": 24.676590665615016, + "2024-08-03T15": 24.255980968035246, + "2024-08-03T22": 23.341326867155757, + "2024-08-03T05": 24.557477226802956, + "2024-08-03T08": 24.75019593823007, + "2024-08-03T14": 24.77120937009383, + "2024-08-03T18": 23.011558704125402, + "2024-08-03T17": 23.125669856525285, + "2024-08-03T21": 23.224001249422553, + "2024-08-03T12": 24.694221938016742, + "2024-08-03T20": 23.150769379774335, + "2024-08-03T04": 24.60471847433643, + "2024-08-03T16": 23.598353757847466, + "2024-08-03T11": 24.68604521058543, + "2024-08-03T07": 24.860812760286233, + "2024-08-03T13": 24.720278102310566, + "2024-08-04": 22.82940769276544, + "2024-08-03T23": 23.307571596359494, + "2024-08-04T17": 21.9120225081212, + "2024-08-04T13": 23.28556129724905, + "2024-08-04T06": 23.452881740824488, + "2024-08-04T12": 23.2996250063423, + "2024-08-04T10": 23.369467336451997, + "2024-08-04T16": 22.20992319349852, + "2024-08-04T15": 22.47259795621578, + "2024-08-04T00": 23.410212680697487, + "2024-08-04T11": 23.308014504494096, + "2024-08-04T01": 23.33039690498161, + "2024-08-04T03": 23.5054105436858, + "2024-08-04T04": 23.5194798965274, + "2024-08-04T07": 23.323453723003464, + "2024-08-04T08": 23.30796446572842, + "2024-08-04T18": 21.94463738038993, + "2024-08-04T09": 23.398141058176247, + "2024-08-04T02": 23.48160050870774, + "2024-08-04T05": 23.502740121737073, + "2024-08-04T14": 22.648182334613903, + "2024-08-05": 20.50364982831348, + "2024-08-05T01": 21.425302684390566, + "2024-08-04T19": 22.329225972285485, + "2024-08-04T22": 22.520469768502952, + "2024-08-05T03": 20.586896939018725, + "2024-08-05T02": 20.481383469885536, + "2024-08-04T23": 22.585789814644755, + "2024-08-05T00": 22.255649341873685, + "2024-08-05T04": 20.321253692281736, + "2024-08-05T06": 20.39744819733511, + "2024-08-04T20": 22.637839733453706, + "2024-08-05T05": 20.522867543612804, + "2024-08-04T21": 22.557150089791453, + "2024-08-05T07": 20.017104649499508, + "2024-08-05T08": 20.933737680433698, + "2024-08-05T09": 20.68488962264049, + "2024-08-05T10": 20.897517141957834, + "2024-08-05T11": 20.45224082935145, + "2024-08-05T12": 20.432619714424362, + "2024-08-05T13": 20.07018277267128, + "2024-08-05T14": 21.3465769739124, + "2024-08-05T15": 22.3340616, + "2024-08-06": 22.597654667771433, + "2024-08-05T19": 21.8883144, + "2024-08-05T20": 22.012201, + "2024-08-05T21": 22.103978, + "2024-08-06T02": 22.470970811215892, + "2024-08-05T18": 22.230221199999995, + "2024-08-05T23": 22.124424, + "2024-08-05T16": 22.675862, + "2024-08-06T05": 22.35515679915293, + "2024-08-05T17": 22.713393, + "2024-08-06T00": 22.707043977126148, + "2024-08-06T04": 22.219940498690494, + "2024-08-06T03": 22.36865632473481, + "2024-08-05T22": 22.2537825, + "2024-08-06T01": 22.565920915919463, + "2024-08-06T06": 22.59491783685584, + "2024-08-06T07": 22.66557047860519, + "2024-08-06T08": 22.72489329244552, + "2024-08-06T09": 22.305282769368432, + "2024-08-06T10": 22.238376309048142, + "2024-08-06T11": 22.300721805065585, + "2024-08-06T12": 22.246103491317683, + "2024-08-06T13": 22.17026072164395, + "2024-08-06T14": 22.165662724016855 + }, + "USD dogecoin": { + "2024-06-28": 0.1254691177284342, + "2024-06-30": 0.12235253050593287, + "2024-07-15": 0.11855718914861056, + "2024-07-18": 0.12121225345793822, + "2024-07-14": 0.11325568626596415, + "2024-07-11": 0.1081778325856798, + "2024-07-19": 0.12084138676918117, + "2024-07-12": 0.10664228788058969, + "2024-07-24": 0.13145603831206254, + "2024-07-08": 0.10660949726678125, + "2024-07-07": 0.10946903337606277, + "2024-07-13": 0.1099502692048102, + "2024-07-09": 0.10784550233721958, + "2024-07-02": 0.12346300297530055, + "2024-07-20": 0.1292902426940222, + "2024-06-29": 0.12338937480793652, + "2024-07-21": 0.1321387773928469, + "2024-07-23": 0.13357182593983072, + "2024-07-10": 0.10888037942419591, + "2024-07-01": 0.12509002428389357, + "2024-06-26": 0.12455518036192716, + "2024-07-17": 0.12495729123767864, + "2024-07-22": 0.13903780116884903, + "2024-07-04": 0.10975651469828747, + "2024-06-25": 0.12352252827555621, + "2024-07-26": 0.12972735085049866, + "2024-07-03": 0.11922080145921939, + "2024-07-05": 0.09989250783000514, + "2024-07-25": 0.12389098083961017, + "2024-07-16": 0.12438456399635171, + "2024-07-06": 0.10865162734191858, + "2024-06-27": 0.12345997985759201, + "2024-07-22T13": 0.13954653378, + "2024-07-25T10": 0.12377542479999999, + "2024-07-26T06": 0.129264142, + "2024-07-24T14": 0.13399009550000002, + "2024-07-21T20": 0.13995111313883193, + "2024-07-21T07": 0.130737903, + "2024-07-21T14": 0.1322249412, + "2024-07-22T23": 0.13777131899999998, + "2024-07-24T07": 0.1320160394, + "2024-07-20T11": 0.12623782624000002, + "2024-07-26T08": 0.1292885566579953, + "2024-07-25T20": 0.12122889808000001, + "2024-07-21T02": 0.13342734920000002, + "2024-07-20T04": 0.12587713446, + "2024-07-20T03": 0.12540640749999998, + "2024-07-25T13": 0.1237104, + "2024-07-21T06": 0.1307779146, + "2024-07-20T12": 0.12639864224, + "2024-07-24T02": 0.1298612986, + "2024-07-24T17": 0.13226367735, + "2024-07-25T06": 0.1238877808, + "2024-07-25T22": 0.12488777025, + "2024-07-22T07": 0.137460616, + "2024-07-22T22": 0.13814657333, + "2024-07-26T03": 0.12881978102844108, + "2024-07-23T01": 0.13799779839999998, + "2024-07-24T03": 0.13119587128, + "2024-07-23T21": 0.1309096335, + "2024-07-19T20": 0.12504124325000002, + "2024-07-23T22": 0.13019343060000002, + "2024-07-21T23": 0.1405245108912938, + "2024-07-19T16": 0.12447489, + "2024-07-22T20": 0.14145643023421345, + "2024-07-23T10": 0.13509083909982592, + "2024-07-19T17": 0.12449618239999999, + "2024-07-22T09": 0.13722703109431833, + "2024-07-24T04": 0.1311139333, + "2024-07-22T06": 0.1381182866, + "2024-07-24T21": 0.12892523696780908, + "2024-07-20T21": 0.13384381044376337, + "2024-07-21T15": 0.13200354679999998, + "2024-07-20T09": 0.126989806, + "2024-07-25T14": 0.12391837332, + "2024-07-19T11": 0.11902399971, + "2024-07-23T20": 0.13096886316995646, + "2024-07-25T03": 0.12267961516897331, + "2024-07-20T01": 0.125206572, + "2024-07-25T23": 0.1251012066, + "2024-07-20T16": 0.13433138020188143, + "2024-07-22T15": 0.13933421797546294, + "2024-07-23T16": 0.13065889311817405, + "2024-07-22T02": 0.14029315027459688, + "2024-07-21T04": 0.13202595692, + "2024-07-23T09": 0.13596, + "2024-07-20T10": 0.12701039792, + "2024-07-22T19": 0.14086405367970106, + "2024-07-20T00": 0.12522258, + "2024-07-20T19": 0.13425629522592997, + "2024-07-26T05": 0.129075471, + "2024-07-19T14": 0.12259, + "2024-07-21T00": 0.1337587788, + "2024-07-22T12": 0.1385910864, + "2024-07-24T06": 0.13126531264, + "2024-07-25T01": 0.1237083923409846, + "2024-07-20T22": 0.134160177533788, + "2024-07-19T15": 0.12293245859999999, + "2024-07-21T13": 0.1317079654748243, + "2024-07-25T07": 0.12406897500000001, + "2024-07-21T08": 0.13115802479999997, + "2024-07-23T06": 0.13399609640000001, + "2024-07-22T16": 0.13922164670408085, + "2024-07-24T11": 0.13349, + "2024-07-24T01": 0.13031360622, + "2024-07-23T00": 0.13868159200000002, + "2024-07-19T12": 0.11945251960000002, + "2024-07-25T17": 0.12453084302999999, + "2024-07-25T19": 0.12238049935999999, + "2024-07-19T21": 0.1253338877, + "2024-07-23T08": 0.1358340749, + "2024-07-21T21": 0.13971150233604743, + "2024-07-21T11": 0.13144448043, + "2024-07-22T14": 0.13701054850000002, + "2024-07-20T23": 0.134338947, + "2024-07-20T08": 0.1268804085, + "2024-07-20T02": 0.1248461555, + "2024-07-24T05": 0.1305504432, + "2024-07-24T16": 0.1314318278, + "2024-07-21T01": 0.13304921, + "2024-07-24T13": 0.133864, + "2024-07-25T04": 0.12331273379999999, + "2024-07-19T13": 0.120255944, + "2024-07-25T12": 0.1238141718, + "2024-07-19T22": 0.12541158983315467, + "2024-07-26T07": 0.12938541209999999, + "2024-07-25T02": 0.12288643899699521, + "2024-07-21T12": 0.13180653009999999, + "2024-07-23T18": 0.13059847437228572, + "2024-07-23T11": 0.13443468864, + "2024-07-19T10": 0.11888102973999999, + "2024-07-19T19": 0.1253001, + "2024-07-25T11": 0.1241915464, + "2024-07-22T08": 0.137060964, + "2024-07-23T19": 0.13082824618140015, + "2024-07-22T21": 0.1389494830467218, + "2024-07-21T09": 0.13167185780000001, + "2024-07-21T22": 0.14054973339600405, + "2024-07-22T04": 0.1413213048, + "2024-07-25T16": 0.124222665, + "2024-07-19T23": 0.125694816, + "2024-07-20T06": 0.12748097199999997, + "2024-07-23T02": 0.13781302416000002, + "2024-07-23T14": 0.1324411872, + "2024-07-23T03": 0.13790365257999998, + "2024-07-25T08": 0.12395204348, + "2024-07-24T15": 0.1321551047, + "2024-07-19T09": 0.11881623200000001, + "2024-07-20T15": 0.1327814893300721, + "2024-07-23T23": 0.1303817333, + "2024-07-23T12": 0.13383408580000003, + "2024-07-22T10": 0.1377913779, + "2024-07-21T10": 0.13156651337, + "2024-07-22T00": 0.14035492971694266, + "2024-07-24T22": 0.12889679440000001, + "2024-07-24T19": 0.1302286977, + "2024-07-24T09": 0.13331, + "2024-07-23T04": 0.13574357299999998, + "2024-07-23T05": 0.13404704233999998, + "2024-07-25T18": 0.1226880928, + "2024-07-25T15": 0.12425265840000001, + "2024-07-26T01": 0.127234548, + "2024-07-22T01": 0.13924066884187225, + "2024-07-26T02": 0.12876363060758125, + "2024-07-24T18": 0.130353034, + "2024-07-21T19": 0.13132119529999997, + "2024-07-25T05": 0.12389925704, + "2024-07-22T18": 0.14087494592133498, + "2024-07-24T00": 0.1301217099, + "2024-07-24T08": 0.13283667162, + "2024-07-24T20": 0.1302686973, + "2024-07-24T23": 0.1275670338, + "2024-07-22T17": 0.13951774690210986, + "2024-07-21T17": 0.13025637791127978, + "2024-07-24T12": 0.13310299297, + "2024-07-23T13": 0.1325111984, + "2024-07-21T05": 0.13103768028, + "2024-07-20T05": 0.12610950352, + "2024-07-21T03": 0.1327755262758003, + "2024-07-26T00": 0.1266633951, + "2024-07-20T20": 0.13481723938161347, + "2024-07-22T03": 0.140855634, + "2024-07-25T21": 0.12436739524529072, + "2024-07-21T16": 0.13104847, + "2024-07-20T17": 0.13424461058344853, + "2024-07-22T11": 0.13798413939999998, + "2024-07-25T00": 0.12783798502000002, + "2024-07-20T13": 0.1269933148, + "2024-07-23T07": 0.133983397, + "2024-07-22T05": 0.1401284072, + "2024-07-20T07": 0.128577834, + "2024-07-21T18": 0.1281750916, + "2024-07-23T17": 0.1291379457023357, + "2024-07-20T14": 0.12904902000000001, + "2024-07-26T04": 0.1290419316, + "2024-07-24T10": 0.1336654962433082, + "2024-07-20T18": 0.1345544345322835, + "2024-07-23T15": 0.13205344527, + "2024-07-19T18": 0.12427530317999999, + "2024-07-25T09": 0.124905018, + "latest": 0.098447, + "2024-07-26T09": 0.12980463096, + "2024-07-26T10": 0.12929108198, + "2024-07-26T11": 0.12959588951999998, + "2024-07-26T12": 0.129677951, + "2024-07-26T13": 0.12965431727777949, + "2024-07-26T14": 0.13000429855999998, + "2024-07-26T17": 0.13165436685999998, + "2024-07-26T16": 0.13098940711760917, + "2024-07-26T15": 0.1301295888, + "2024-07-26T18": 0.131421, + "2024-07-27": 0.13423257394393528, + "2024-07-28": 0.13008344213962725, + "2024-07-28T05": 0.12875871240000003, + "2024-07-26T21": 0.13395, + "2024-07-27T02": 0.1338940167, + "2024-07-28T01": 0.13094975084945057, + "2024-07-27T10": 0.13543083360000002, + "2024-07-28T02": 0.13030959694740263, + "2024-07-27T19": 0.1342641179274405, + "2024-07-27T09": 0.135312177, + "2024-07-27T06": 0.13387295810621608, + "2024-07-27T18": 0.1329899455, + "2024-07-26T22": 0.1345753828, + "2024-07-27T13": 0.1362210086591646, + "2024-07-27T12": 0.13528899521999999, + "2024-07-27T16": 0.134233422, + "2024-07-27T05": 0.13437868751999998, + "2024-07-26T23": 0.13458938336, + "2024-07-26T20": 0.13317, + "2024-07-27T08": 0.1343367165, + "2024-07-28T03": 0.1299774004, + "2024-07-27T01": 0.13340533599999999, + "2024-07-28T09": 0.13059738799999998, + "2024-07-28T10": 0.13134305959, + "2024-07-27T00": 0.13366934656, + "2024-07-28T00": 0.13083605303095783, + "2024-07-27T04": 0.13450669008, + "2024-07-27T14": 0.1364806467, + "2024-07-27T07": 0.134469, + "2024-07-27T11": 0.13499894592, + "2024-07-27T22": 0.13365530975114448, + "2024-07-27T03": 0.13438734386, + "2024-07-27T20": 0.1334748194171685, + "2024-07-27T23": 0.13210362115513788, + "2024-07-28T08": 0.1302673946, + "2024-07-27T21": 0.133755213277616, + "2024-07-28T07": 0.12993140132, + "2024-07-27T15": 0.13475347399999998, + "2024-07-26T19": 0.13338, + "2024-07-28T04": 0.12928141432, + "2024-07-28T06": 0.12997540044, + "2024-07-27T17": 0.13285294043999998, + "2024-07-29": 0.13204739882454736, + "2024-07-28T20": 0.1295757451, + "2024-07-28T16": 0.12968370315, + "2024-07-29T07": 0.13421583680000002, + "2024-07-28T23": 0.12959940796, + "2024-07-28T15": 0.1295187048, + "2024-07-28T18": 0.130385656, + "2024-07-29T04": 0.13352397519999998, + "2024-07-29T06": 0.13431291221780647, + "2024-07-28T21": 0.12902709599999998, + "2024-07-29T03": 0.1337665481732976, + "2024-07-28T12": 0.1306860793, + "2024-07-29T05": 0.13403591376000001, + "2024-07-28T17": 0.129785722, + "2024-07-29T00": 0.13082, + "2024-07-29T01": 0.13098, + "2024-07-28T22": 0.1291361258, + "2024-07-28T19": 0.1303756571, + "2024-07-28T14": 0.12988, + "2024-07-29T02": 0.13297069139999998, + "2024-07-29T08": 0.134313132, + "2024-07-28T11": 0.13141474320000002, + "2024-07-28T13": 0.130797384, + "2024-07-29T09": 0.134520399, + "2024-07-29T10": 0.1344917508, + "2024-07-29T11": 0.13396981364686894, + "2024-07-29T12": 0.13354897951, + "2024-07-29T13": 0.13316801379999998, + "2024-07-30": 0.12828395051739683, + "2024-07-29T23": 0.1284932937, + "2024-07-29T18": 0.12928913700000003, + "2024-07-29T21": 0.12849971920000003, + "2024-07-29T22": 0.12888324299999998, + "2024-07-29T17": 0.1290815958, + "2024-07-29T15": 0.129666278, + "2024-07-30T01": 0.12957148799999998, + "2024-07-29T19": 0.12929730911999998, + "2024-07-30T04": 0.12927414, + "2024-07-29T14": 0.1316082558, + "2024-07-29T20": 0.1295157517, + "2024-07-30T03": 0.12943887601999998, + "2024-07-30T00": 0.1286406734346712, + "2024-07-29T16": 0.1288487552, + "2024-07-30T02": 0.128154364, + "2024-07-30T09": 0.12956149020000002, + "2024-07-30T08": 0.129813642, + "2024-07-30T06": 0.12892762968, + "2024-07-30T05": 0.12897249057, + "2024-07-30T07": 0.12956730374, + "2024-07-30T10": 0.1295279765, + "2024-07-30T11": 0.12923785435, + "2024-07-30T12": 0.12887421999999998, + "2024-07-30T13": 0.128594276, + "2024-07-31": 0.12532866434874296, + "2024-07-31T00": 0.12539864250000002, + "2024-07-31T05": 0.12435281491404186, + "2024-07-30T23": 0.12555157948, + "2024-07-30T19": 0.12512268747, + "2024-07-30T16": 0.12750718464, + "2024-07-30T17": 0.1258709679, + "2024-07-30T18": 0.1258397184, + "2024-07-30T20": 0.124652593, + "2024-07-30T15": 0.127256718, + "2024-07-31T03": 0.1254636471, + "2024-07-30T21": 0.12520478680929573, + "2024-07-31T01": 0.1257153588351742, + "2024-07-31T07": 0.12648177849, + "2024-07-31T06": 0.126163402, + "2024-07-31T02": 0.125544886, + "2024-07-30T22": 0.12573452641, + "2024-07-30T14": 0.1275484852, + "2024-07-31T04": 0.1244338634, + "2024-07-31T08": 0.1260132685, + "2024-07-31T11": 0.1253650113, + "2024-07-31T09": 0.1260608171, + "2024-07-31T10": 0.1255297168, + "2024-07-31T12": 0.12562261192, + "2024-08-01": 0.11937728407138144, + "2024-07-31T14": 0.1265130435, + "2024-07-31T23": 0.122110912, + "2024-07-31T13": 0.1266204604, + "2024-07-31T21": 0.12198162936, + "2024-08-01T01": 0.12233716700000001, + "2024-07-31T18": 0.1257884761, + "2024-07-31T19": 0.1239278502, + "2024-07-31T16": 0.12593186741, + "2024-08-01T02": 0.12127490424000001, + "2024-07-31T22": 0.12235531526974847, + "2024-07-31T20": 0.12204338451, + "2024-07-31T17": 0.12605082099999998, + "2024-08-01T00": 0.12245457665, + "2024-07-31T15": 0.12662006448000002, + "2024-08-01T07": 0.12039479795000001, + "2024-08-01T06": 0.12041896578, + "2024-08-01T05": 0.119726922, + "2024-08-01T04": 0.11981766240000001, + "2024-08-01T03": 0.1210757958, + "2024-08-01T08": 0.1209070956, + "2024-08-01T09": 0.1210497504, + "2024-08-01T10": 0.12061304119, + "2024-08-01T11": 0.12039315779, + "2024-08-01T12": 0.1208395987976975, + "2024-08-01T13": 0.12015229919999999, + "2024-08-01T14": 0.1183302804, + "2024-08-01T15": 0.116111915, + "2024-08-02": 0.11931984474414968, + "2024-08-02T00": 0.1188249612, + "2024-08-01T20": 0.11515879353153083, + "2024-08-01T21": 0.11770729788525106, + "2024-08-02T04": 0.11750297490000002, + "2024-08-01T19": 0.1144203495265132, + "2024-08-01T16": 0.11500943699999999, + "2024-08-02T02": 0.11671651216578068, + "2024-08-01T17": 0.11464306384, + "2024-08-01T23": 0.11922701566, + "2024-08-02T01": 0.11789098356000001, + "2024-08-01T22": 0.1194707569, + "2024-08-01T18": 0.1134255524, + "2024-08-02T03": 0.1173619276, + "2024-08-02T05": 0.1167683231, + "2024-08-02T06": 0.115462182, + "2024-08-02T07": 0.11616151956811502, + "2024-08-02T08": 0.1165232054, + "2024-08-02T09": 0.11707621267885565, + "2024-08-02T10": 0.11693027753467472, + "2024-08-02T11": 0.11732936048, + "2024-08-02T12": 0.116948079, + "2024-08-02T13": 0.1179679132, + "2024-08-02T14": 0.11837224318177104, + "2024-08-02T15": 0.11189226464129386, + "2024-08-03": 0.11115071291435782, + "2024-08-02T16": 0.112664154, + "2024-08-02T22": 0.111223061, + "2024-08-02T23": 0.11135005343394674, + "2024-08-03T00": 0.11112623367999999, + "2024-08-03T01": 0.10959403332999999, + "2024-08-03T03": 0.11234215356, + "2024-08-02T19": 0.11219657229, + "2024-08-02T18": 0.11299689, + "2024-08-02T21": 0.11139849, + "2024-08-02T17": 0.1132782833, + "2024-08-02T20": 0.11277094553999999, + "2024-08-03T02": 0.1113228596, + "2024-08-03T06": 0.1134861651, + "2024-08-03T19": 0.106516852, + "2024-08-03T10": 0.1127057316, + "2024-08-03T09": 0.11276122946381074, + "2024-08-03T15": 0.1116951141, + "2024-08-03T22": 0.1077685369, + "2024-08-03T05": 0.11273992743550316, + "2024-08-03T08": 0.11272055489999999, + "2024-08-03T14": 0.1136980482, + "2024-08-03T18": 0.10707499499999999, + "2024-08-03T17": 0.10754251359999999, + "2024-08-03T21": 0.10678589, + "2024-08-03T12": 0.11319390720000001, + "2024-08-03T20": 0.10591898670000001, + "2024-08-03T04": 0.1123364255, + "2024-08-03T16": 0.10972664325, + "2024-08-03T11": 0.11272423204000001, + "2024-08-03T07": 0.11404584024, + "2024-08-03T13": 0.1131130308, + "2024-08-04": 0.10805130707070112, + "2024-08-03T23": 0.10804546064, + "2024-08-04T17": 0.100932696537384, + "2024-08-04T13": 0.10728633000000001, + "2024-08-04T06": 0.10792538721483033, + "2024-08-04T12": 0.1074732365, + "2024-08-04T10": 0.10695335532000001, + "2024-08-04T16": 0.10225032671999999, + "2024-08-04T15": 0.103430655, + "2024-08-04T00": 0.10814915433000001, + "2024-08-04T11": 0.10756511379999999, + "2024-08-04T01": 0.10776138325000001, + "2024-08-04T03": 0.1085626494, + "2024-08-04T04": 0.10791413220000001, + "2024-08-04T07": 0.10720471188, + "2024-08-04T08": 0.10659301561612083, + "2024-08-04T18": 0.10112015477693506, + "2024-08-04T09": 0.10695699974, + "2024-08-04T02": 0.108594804, + "2024-08-04T05": 0.10780451631079005, + "2024-08-04T14": 0.10410835192258239, + "2024-08-05": 0.09155234517030987, + "2024-08-05T01": 0.09387357169839568, + "2024-08-04T19": 0.10469762218054696, + "2024-08-04T20": 0.10504041759252605, + "2024-08-04T22": 0.10527593717364227, + "2024-08-05T03": 0.09167625341246889, + "2024-08-05T02": 0.0916732854808878, + "2024-08-04T23": 0.10418933116396398, + "2024-08-05T00": 0.10082686128986344, + "2024-08-05T04": 0.09184002921499362, + "2024-08-05T05": 0.09183684203860479, + "2024-08-04T21": 0.10470149952629251, + "2024-08-05T06": 0.08975554382751093, + "2024-08-05T07": 0.08588652540661937, + "2024-08-05T08": 0.08912201098245874, + "2024-08-05T09": 0.08737195273936786, + "2024-08-05T10": 0.08666721201453272, + "2024-08-05T11": 0.08224482898870665, + "2024-08-05T12": 0.08414032490802659, + "2024-08-05T13": 0.08257810705388764, + "2024-08-05T14": 0.08956456330693761, + "2024-08-05T15": 0.09444680903833272, + "2024-08-06": 0.09887009427028737, + "2024-08-05T19": 0.0935852224690008, + "2024-08-05T20": 0.09462356506397634, + "2024-08-05T21": 0.09515553491660769, + "2024-08-06T02": 0.09880453146, + "2024-08-05T18": 0.0948187198056466, + "2024-08-05T23": 0.095149026, + "2024-08-05T16": 0.09651665687052158, + "2024-08-06T05": 0.09888031734, + "2024-08-05T17": 0.09617483460848479, + "2024-08-06T00": 0.0982936548, + "2024-08-06T04": 0.09814414500000002, + "2024-08-06T03": 0.09869857412939693, + "2024-08-05T22": 0.0957662775, + "2024-08-06T01": 0.09990436295831838, + "2024-08-06T06": 0.09968271529999999, + "2024-08-06T07": 0.0991263702, + "2024-08-06T08": 0.09704625420000002, + "2024-08-06T09": 0.096558959, + "2024-08-06T10": 0.09633181632000001, + "2024-08-06T11": 0.09593997900000001, + "2024-08-06T12": 0.09577342306, + "2024-08-06T13": 0.0951866448, + "2024-08-06T14": 0.09518759639999999 + }, + "USD elrond": { + "2024-06-28": 29.752438234747974, + "2024-06-30": 28.583313622788552, + "2024-07-15": 35.72751268286223, + "2024-07-18": 37.419327787860176, + "2024-07-14": 35.58073767011118, + "2024-07-11": 36.16493281994954, + "2024-07-19": 35.75997785062833, + "2024-07-12": 35.66858425086628, + "2024-07-24": 34.271384769695565, + "2024-07-08": 33.860445234735124, + "2024-07-07": 33.824591929085614, + "2024-07-13": 35.467758267385435, + "2024-07-09": 36.768105560257425, + "2024-07-02": 32.00825229454756, + "2024-07-20": 36.26739903288383, + "2024-06-29": 29.183803613394005, + "2024-07-21": 35.87179338643759, + "2024-07-23": 35.08545919554197, + "2024-07-10": 36.76736690826082, + "2024-07-01": 30.99326593589753, + "2024-06-26": 29.641092353528556, + "2024-07-17": 37.01881693370637, + "2024-07-22": 37.125586424633205, + "2024-07-04": 30.026076379834503, + "2024-06-25": 30.005661844665948, + "2024-07-26": 33.24728257403504, + "2024-07-03": 31.338219626531327, + "2024-07-05": 30.76826469942018, + "2024-07-25": 32.352574588289, + "2024-07-16": 36.10333068767192, + "2024-07-06": 33.65832322009126, + "2024-06-27": 29.730211110600624, + "2024-07-22T13": 37.2952206, + "2024-07-25T10": 32.2583828, + "2024-07-26T06": 33.24335, + "2024-07-24T14": 34.855227500000005, + "2024-07-21T20": 36.3401724, + "2024-07-21T07": 35.5718467381081, + "2024-07-21T14": 35.662144060184566, + "2024-07-22T23": 35.81155115361212, + "2024-07-24T07": 34.3189704, + "2024-07-20T11": 35.757512600000005, + "2024-07-26T08": 33.2346816, + "2024-07-25T20": 31.59363978750389, + "2024-07-21T02": 36.3401724, + "2024-07-20T04": 36.6372114, + "2024-07-20T03": 36.5264295, + "2024-07-25T13": 31.9997568, + "2024-07-21T06": 35.710353, + "2024-07-20T12": 35.7971744, + "2024-07-24T02": 33.8203382, + "2024-07-24T17": 34.73965260000001, + "2024-07-25T06": 32.651656023324705, + "2024-07-25T22": 32.5418625, + "2024-07-22T07": 36.645496, + "2024-07-22T22": 35.9718668, + "2024-07-26T03": 32.9847216, + "2024-07-23T01": 36.263674658156525, + "2024-07-24T03": 33.991269689563055, + "2024-07-23T21": 34.265139, + "2024-07-19T20": 36.196281, + "2024-07-23T22": 34.1661488, + "2024-07-21T23": 36.9429552, + "2024-07-19T16": 35.917182, + "2024-07-22T20": 36.83442175002737, + "2024-07-23T10": 35.648175463168826, + "2024-07-19T17": 36.0646878, + "2024-07-22T09": 37.97061268053492, + "2024-07-24T04": 33.92103657688266, + "2024-07-22T06": 36.56237611227723, + "2024-07-24T21": 33.706629, + "2024-07-20T21": 36.216651999999996, + "2024-07-21T15": 35.861830499999996, + "2024-07-20T09": 35.9297505, + "2024-07-25T14": 32.2683792, + "2024-07-19T11": 35.1144591333524, + "2024-07-23T20": 34.16683199999999, + "2024-07-25T03": 32.313859199999996, + "2024-07-20T01": 36.43821, + "2024-07-25T23": 32.5998909, + "2024-07-20T16": 36.2930608, + "2024-07-22T15": 37.103339, + "2024-07-23T16": 34.46669097799114, + "2024-07-22T02": 37.16, + "2024-07-21T04": 36.2301416, + "2024-07-23T09": 35.79, + "2024-07-20T10": 35.936523199999996, + "2024-07-22T19": 36.7499198, + "2024-07-20T00": 36.52283211041562, + "2024-07-20T19": 36.4067394, + "2024-07-26T05": 33.0737148, + "2024-07-19T14": 35.7, + "2024-07-21T00": 36.210498, + "2024-07-22T12": 37.2229776, + "2024-07-24T06": 34.00034, + "2024-07-25T01": 32.4561048, + "2024-07-20T22": 36.2855961, + "2024-07-19T15": 35.500776455384575, + "2024-07-21T13": 35.5510174, + "2024-07-25T07": 32.6818275, + "2024-07-21T08": 35.9404197, + "2024-07-23T06": 35.125268, + "2024-07-22T16": 36.8155215, + "2024-07-24T11": 34.48, + "2024-07-24T01": 33.780675599999995, + "2024-07-23T00": 36.010799999999996, + "2024-07-19T12": 35.121920100000004, + "2024-07-25T17": 32.3831981, + "2024-07-25T19": 31.730795399999998, + "2024-07-19T21": 36.3485283, + "2024-07-23T08": 35.5610668, + "2024-07-21T21": 36.506935, + "2024-07-21T11": 35.7396471, + "2024-07-22T14": 37.045556000000005, + "2024-07-20T23": 36.24050669999999, + "2024-07-20T08": 36.088035, + "2024-07-20T02": 36.456398, + "2024-07-24T05": 33.752700000000004, + "2024-07-24T16": 34.433098699999995, + "2024-07-21T01": 36.11569559722315, + "2024-07-24T13": 34.65, + "2024-07-25T04": 32.40570806730397, + "2024-07-19T13": 35.292939999999994, + "2024-07-25T12": 32.1281082, + "2024-07-19T22": 36.3778164, + "2024-07-26T07": 33.29823319660175, + "2024-07-25T02": 32.29354, + "2024-07-21T12": 35.800737, + "2024-07-23T18": 34.093749900000006, + "2024-07-23T11": 35.430708599999996, + "2024-07-19T10": 35.092629, + "2024-07-19T19": 36.11444, + "2024-07-25T11": 32.3073952, + "2024-07-22T08": 37.0429632, + "2024-07-23T19": 34.211286, + "2024-07-22T21": 36.522027920686604, + "2024-07-21T09": 35.9700688, + "2024-07-21T22": 36.853685, + "2024-07-22T04": 37.2229776, + "2024-07-25T16": 32.392872, + "2024-07-19T23": 36.56827499999999, + "2024-07-20T06": 36.224484, + "2024-07-23T02": 36.2128968, + "2024-07-23T14": 35.08561279999999, + "2024-07-23T03": 36.132529100000006, + "2024-07-25T08": 32.5305634, + "2024-07-24T15": 34.5965721, + "2024-07-19T09": 35.182961999999996, + "2024-07-20T15": 36.21122200000001, + "2024-07-23T23": 34.283085199999995, + "2024-07-23T12": 35.216337800000005, + "2024-07-22T10": 37.1203712, + "2024-07-21T10": 35.849676800000005, + "2024-07-22T00": 37.0118505, + "2024-07-24T22": 33.693934000000006, + "2024-07-24T19": 34.279668739577936, + "2024-07-24T09": 34.44, + "2024-07-23T04": 35.553554999999996, + "2024-07-23T05": 35.1721102, + "2024-07-25T18": 32.03174866567506, + "2024-07-25T15": 32.5228434, + "2024-07-26T01": 32.613476, + "2024-07-22T01": 37.0944508, + "2024-07-26T02": 32.823434, + "2024-07-24T18": 34.523452000000006, + "2024-07-21T19": 35.5938762, + "2024-07-25T05": 32.7521376, + "2024-07-22T18": 36.817362, + "2024-07-24T00": 33.973057299999994, + "2024-07-24T08": 34.519654800000005, + "2024-07-24T20": 34.37999450673723, + "2024-07-24T23": 33.52956111623612, + "2024-07-22T17": 36.585121199999996, + "2024-07-21T17": 35.7553682, + "2024-07-24T12": 34.521035600000005, + "2024-07-23T13": 34.865577599999995, + "2024-07-21T05": 35.920054799999996, + "2024-07-20T05": 36.2674, + "2024-07-21T03": 36.2401444, + "2024-07-26T00": 32.5531624, + "2024-07-20T20": 36.36133415944426, + "2024-07-22T03": 37.521500800000005, + "2024-07-25T21": 32.3125664, + "2024-07-21T16": 35.9032793, + "2024-07-20T17": 36.524604, + "2024-07-22T11": 37.072397646578445, + "2024-07-25T00": 33.3539952, + "2024-07-20T13": 35.714994000000004, + "2024-07-23T07": 35.113511, + "2024-07-22T05": 36.73220379999999, + "2024-07-20T07": 36.266312500000005, + "2024-07-21T18": 35.215136, + "2024-07-23T17": 34.053405, + "2024-07-20T14": 35.913642, + "2024-07-26T04": 32.96019112131814, + "2024-07-24T10": 34.53, + "2024-07-20T18": 36.468225000000004, + "2024-07-23T15": 35.055958499999996, + "2024-07-19T18": 36.0393678, + "2024-07-25T09": 32.5182892, + "latest": 27.18, + "2024-07-26T09": 33.2640114, + "2024-07-26T10": 33.191036000000004, + "2024-07-26T11": 33.1820344, + "2024-07-26T12": 33.3043373, + "2024-07-26T13": 33.19519426200541, + "2024-07-26T14": 33.30894095302689, + "2024-07-26T17": 33.4693306, + "2024-07-26T16": 33.458327000000004, + "2024-07-26T15": 33.34752839319755, + "2024-07-26T18": 33.48, + "2024-07-27": 33.353179622542186, + "2024-07-28": 32.489391751328725, + "2024-07-28T05": 32.3696763, + "2024-07-26T21": 33.41, + "2024-07-27T02": 33.290998699999996, + "2024-07-28T01": 33.04633420360876, + "2024-07-27T10": 33.472677600000004, + "2024-07-28T02": 32.915202358927, + "2024-07-27T19": 32.868215, + "2024-07-27T09": 33.5330177, + "2024-07-27T06": 33.4706694, + "2024-07-27T18": 33.13009804529636, + "2024-07-26T22": 33.5113404, + "2024-07-27T13": 33.734384899999995, + "2024-07-27T12": 33.545701799999996, + "2024-07-27T16": 33.233323, + "2024-07-27T05": 33.4406688, + "2024-07-26T23": 33.601432583721056, + "2024-07-26T20": 33.43, + "2024-07-27T08": 33.57176089855644, + "2024-07-28T03": 32.8393432, + "2024-07-27T01": 33.301331999999995, + "2024-07-28T09": 32.6293474, + "2024-07-28T10": 32.639020800000004, + "2024-07-27T00": 33.4813392, + "2024-07-28T00": 32.909670899999995, + "2024-07-27T04": 33.330666599999994, + "2024-07-27T14": 33.60336, + "2024-07-27T07": 33.52, + "2024-07-27T11": 33.3856746, + "2024-07-27T22": 33.4469895, + "2024-07-27T03": 33.280332800000004, + "2024-07-27T20": 32.741637000000004, + "2024-07-27T23": 33.3276669, + "2024-07-28T08": 32.56171948263681, + "2024-07-27T21": 33.309000700000006, + "2024-07-28T07": 32.5293494, + "2024-07-27T15": 33.373337, + "2024-07-26T19": 33.6, + "2024-07-28T04": 32.599348, + "2024-07-28T06": 32.5793484, + "2024-07-27T17": 33.153977999999995, + "2024-07-29": 32.88581468767606, + "2024-07-28T20": 32.3564404, + "2024-07-28T16": 32.339676600000004, + "2024-07-29T07": 33.20993929491486, + "2024-07-28T23": 32.179356399999996, + "2024-07-28T15": 32.2796772, + "2024-07-28T18": 32.4664283, + "2024-07-29T04": 32.9260484, + "2024-07-29T06": 33.20577543924181, + "2024-07-28T21": 32.206779000000004, + "2024-07-29T03": 33.1063579, + "2024-07-28T12": 32.679019600000004, + "2024-07-29T05": 32.9260484, + "2024-07-28T17": 32.286448099999994, + "2024-07-29T00": 32.46, + "2024-07-29T01": 32.59, + "2024-07-28T22": 32.0690379, + "2024-07-28T19": 32.4564294, + "2024-07-28T14": 32.36120690672446, + "2024-07-29T02": 32.918024800000005, + "2024-07-29T08": 33.32152540855029, + "2024-07-28T11": 32.648694, + "2024-07-28T13": 32.6093478, + "2024-07-29T09": 33.2226894, + "2024-07-29T10": 33.2030259, + "2024-07-29T11": 33.0530574, + "2024-07-29T12": 33.0170282, + "2024-07-29T13": 33.0270273, + "2024-07-30": 32.053104955749326, + "2024-07-29T23": 32.1358218, + "2024-07-29T18": 32.24372041342246, + "2024-07-29T21": 32.127429600000006, + "2024-07-29T22": 32.195814000000006, + "2024-07-29T17": 32.13293327506639, + "2024-07-29T15": 32.2116228, + "2024-07-30T01": 32.2129116, + "2024-07-29T19": 32.29483199999999, + "2024-07-30T04": 32.21689777536818, + "2024-07-29T14": 32.755086, + "2024-07-29T20": 32.2464525, + "2024-07-30T03": 32.2054906, + "2024-07-30T00": 32.094543, + "2024-07-29T16": 32.089728, + "2024-07-30T02": 32.043589999999995, + "2024-07-30T09": 32.2529028, + "2024-07-30T08": 32.3509392, + "2024-07-30T06": 32.242905, + "2024-07-30T05": 32.1238953, + "2024-07-30T07": 32.351586399999995, + "2024-07-30T10": 32.104862399999995, + "2024-07-30T11": 32.093259, + "2024-07-30T12": 32.173564, + "2024-07-30T13": 32.213556, + "2024-07-31": 31.228089825567473, + "2024-07-31T00": 31.3221675, + "2024-07-31T05": 31.3131096, + "2024-07-30T23": 31.2709288, + "2024-07-30T19": 31.408374600000002, + "2024-07-30T16": 32.189696000000005, + "2024-07-30T17": 31.9700862, + "2024-07-30T18": 31.689856, + "2024-07-30T20": 31.19074008322738, + "2024-07-30T15": 32.239035, + "2024-07-31T03": 31.5633703, + "2024-07-30T21": 31.1618958, + "2024-07-31T01": 31.5327458, + "2024-07-31T07": 31.8701172, + "2024-07-31T06": 31.9007461, + "2024-07-31T02": 31.604272428225737, + "2024-07-30T22": 31.2209433, + "2024-07-30T14": 32.043589999999995, + "2024-07-31T04": 31.393406, + "2024-07-31T08": 31.755703500000003, + "2024-07-31T11": 30.932977499999996, + "2024-07-31T09": 31.667644799999998, + "2024-07-31T10": 31.1050624, + "2024-07-31T12": 31.1625392, + "2024-08-01": 30.78366241750734, + "2024-07-31T14": 31.665744, + "2024-07-31T23": 31.0300672, + "2024-07-31T13": 31.745072800000003, + "2024-07-31T21": 31.0781858, + "2024-08-01T01": 31.029136, + "2024-07-31T18": 31.6695456, + "2024-07-31T19": 31.49408735740901, + "2024-07-31T16": 31.5077072, + "2024-08-01T02": 30.903921600000004, + "2024-07-31T22": 31.1203497, + "2024-07-31T20": 31.1078632, + "2024-07-31T17": 31.568113243047993, + "2024-08-01T00": 31.489604999999997, + "2024-07-31T15": 31.608623846094204, + "2024-08-01T07": 30.236387500000003, + "2024-08-01T06": 30.4550697, + "2024-08-01T05": 30.3214926, + "2024-08-01T04": 30.5940828, + "2024-08-01T03": 30.871084467651176, + "2024-08-01T08": 30.3142284, + "2024-08-01T09": 30.502298399999997, + "2024-08-01T10": 30.4538509, + "2024-08-01T11": 30.5138191, + "2024-08-01T12": 30.683529249937326, + "2024-08-01T13": 30.717186470817737, + "2024-08-01T14": 30.2572866, + "2024-08-01T15": 29.755115, + "2024-08-02": 30.886428080840638, + "2024-08-02T00": 30.902162999999998, + "2024-08-01T20": 30.1295384, + "2024-08-01T21": 30.711719199999997, + "2024-08-02T04": 30.5321904, + "2024-08-01T19": 29.86711, + "2024-08-01T16": 29.439378, + "2024-08-02T02": 30.3935346, + "2024-08-01T17": 29.406161700000002, + "2024-08-01T23": 30.9012351, + "2024-08-02T01": 30.882490100000002, + "2024-08-01T22": 30.947659627855764, + "2024-08-01T18": 29.3929336, + "2024-08-02T03": 30.501912400000002, + "2024-08-02T05": 30.233673800000002, + "2024-08-02T06": 29.8972608, + "2024-08-02T07": 30.1655461, + "2024-08-02T08": 30.234884200000003, + "2024-08-02T09": 30.2639506, + "2024-08-02T10": 30.1470708, + "2024-08-02T11": 30.1946152, + "2024-08-02T12": 30.038957999999997, + "2024-08-02T13": 30.236397200000003, + "2024-08-02T14": 29.81941785547407, + "2024-08-02T15": 29.0015506, + "2024-08-03": 28.03813037689548, + "2024-08-02T16": 29.195162999999997, + "2024-08-02T22": 28.5773846, + "2024-08-02T23": 28.513456, + "2024-08-03T00": 28.3727829, + "2024-08-03T01": 27.8057568, + "2024-08-03T03": 28.6258946, + "2024-08-02T19": 28.858509899999998, + "2024-08-02T18": 29.26071, + "2024-08-02T21": 28.71126, + "2024-08-02T17": 29.451994, + "2024-08-02T20": 28.96839, + "2024-08-03T02": 28.4424064, + "2024-08-03T06": 29.0483028, + "2024-08-03T19": 27.4985344, + "2024-08-03T10": 28.864576800000002, + "2024-08-03T09": 28.7144214, + "2024-08-03T15": 28.4609184, + "2024-08-03T22": 27.994034300000003, + "2024-08-03T05": 28.8878988, + "2024-08-03T08": 28.7920446, + "2024-08-03T14": 28.861227999999997, + "2024-08-03T18": 27.400806, + "2024-08-03T17": 27.470207199999997, + "2024-08-03T21": 27.663391999999998, + "2024-08-03T12": 29.0878764, + "2024-08-03T20": 27.531541500000003, + "2024-08-03T04": 28.760922100000002, + "2024-08-03T16": 27.949022499999998, + "2024-08-03T11": 28.825873639705307, + "2024-08-03T07": 29.081638114370126, + "2024-08-03T13": 28.970286799999997, + "2024-08-04": 28.16700977146977, + "2024-08-03T23": 28.1242416, + "2024-08-04T17": 26.0083951, + "2024-08-04T13": 27.8362748447457, + "2024-08-04T06": 28.352410600000002, + "2024-08-04T12": 27.746120000000005, + "2024-08-04T10": 27.6955908, + "2024-08-04T16": 26.291056799999996, + "2024-08-04T15": 26.6721177, + "2024-08-04T00": 28.083421, + "2024-08-04T11": 27.775827099999997, + "2024-08-04T01": 28.0734269, + "2024-08-04T03": 28.252522093811212, + "2024-08-04T04": 28.3327065, + "2024-08-04T07": 28.1034092, + "2024-08-04T08": 27.882980999999997, + "2024-08-04T18": 26.247042218400335, + "2024-08-04T09": 27.854114100000004, + "2024-08-04T02": 28.292417301952394, + "2024-08-04T05": 28.402663800000003, + "2024-08-04T14": 27.148321199999998, + "2024-08-05": 24.430027820386012, + "2024-08-05T01": 25.488966738114797, + "2024-08-04T19": 26.684259691188263, + "2024-08-04T22": 27.216473422042984, + "2024-08-05T03": 24.06798923468211, + "2024-08-05T02": 24.053554626557723, + "2024-08-04T23": 27.214473179735222, + "2024-08-05T00": 26.795056839254112, + "2024-08-05T04": 24.043750329723977, + "2024-08-05T06": 23.8448801970066, + "2024-08-04T20": 27.048135993339717, + "2024-08-05T05": 24.255255896912484, + "2024-08-04T21": 27.295784551785882, + "2024-08-05T07": 23.41272975927522, + "2024-08-05T08": 24.960614616355823, + "2024-08-05T09": 24.585981412259915, + "2024-08-05T10": 24.59358048859808, + "2024-08-05T11": 23.493053699999997, + "2024-08-05T12": 23.82443801702486, + "2024-08-05T13": 23.391199370367616, + "2024-08-05T14": 24.958219963129, + "2024-08-05T15": 26.246524899999997, + "2024-08-06": 26.672354689368568, + "2024-08-05T19": 25.709766000000002, + "2024-08-05T20": 25.962596, + "2024-08-05T21": 26.0146818, + "2024-08-06T02": 26.5500852, + "2024-08-05T18": 26.2220566, + "2024-08-05T23": 25.9755145120612, + "2024-08-05T16": 26.688669, + "2024-08-06T05": 27.055953600000002, + "2024-08-05T17": 26.705747100000004, + "2024-08-06T00": 26.595318, + "2024-08-06T04": 26.8820915, + "2024-08-06T03": 26.700409099999998, + "2024-08-05T22": 26.00442, + "2024-08-06T01": 27.0081, + "2024-08-06T06": 27.329936299999996, + "2024-08-06T07": 27.248244099999997, + "2024-08-06T08": 26.8055382, + "2024-08-06T09": 26.557965, + "2024-08-06T10": 26.5684992, + "2024-08-06T11": 26.576642500000002, + "2024-08-06T12": 26.549819799999998, + "2024-08-06T13": 26.427397600000003, + "2024-08-06T14": 26.4276618 + }, + "USD eos": { + "2024-06-28": 0.5901844907610905, + "2024-06-30": 0.5697093371689641, + "2024-07-15": 0.5801616572162792, + "2024-07-18": 0.6007620288862388, + "2024-07-14": 0.5502923825651321, + "2024-07-11": 0.5279234448630916, + "2024-07-19": 0.5894348675472472, + "2024-07-12": 0.5217820466095838, + "2024-07-24": 0.5920607303284923, + "2024-07-08": 0.50575977149531, + "2024-07-07": 0.5125240920006846, + "2024-07-13": 0.539856658448935, + "2024-07-09": 0.5184382739640568, + "2024-07-02": 0.5803314114810026, + "2024-07-20": 0.6086124003350165, + "2024-06-29": 0.5774966777398817, + "2024-07-21": 0.6083855925723918, + "2024-07-23": 0.5831410664422647, + "2024-07-10": 0.5221645106679732, + "2024-07-01": 0.5797129084497237, + "2024-06-26": 0.5753404937343651, + "2024-07-17": 0.6101416004307993, + "2024-07-22": 0.5924126549097222, + "2024-07-04": 0.528243639165612, + "2024-06-25": 0.5751667199926194, + "2024-07-26": 0.5704405742899679, + "2024-07-03": 0.5715963119367171, + "2024-07-05": 0.46716899935663314, + "2024-07-25": 0.5671174086669903, + "2024-07-16": 0.5945930369535982, + "2024-07-06": 0.4963630889691166, + "2024-06-27": 0.5803210937174427, + "2024-07-22T13": 0.592882992, + "2024-07-25T10": 0.5627973199999999, + "2024-07-26T06": 0.57068584, + "2024-07-24T14": 0.6044906600000001, + "2024-07-21T20": 0.610270828, + "2024-07-21T07": 0.6086764649999999, + "2024-07-21T14": 0.6057058700000001, + "2024-07-22T23": 0.58187451, + "2024-07-24T07": 0.5899823, + "2024-07-20T11": 0.605496548, + "2024-07-26T08": 0.5710086240000001, + "2024-07-25T20": 0.540770184, + "2024-07-21T02": 0.614872116, + "2024-07-20T04": 0.6127578609, + "2024-07-20T03": 0.610574635, + "2024-07-25T13": 0.5729166080000001, + "2024-07-21T06": 0.608576436, + "2024-07-20T12": 0.604389968, + "2024-07-24T02": 0.5792057920000001, + "2024-07-24T17": 0.6035939640000001, + "2024-07-25T06": 0.5643532299999999, + "2024-07-25T22": 0.5566608, + "2024-07-22T07": 0.5896884400000001, + "2024-07-22T22": 0.584392786, + "2024-07-26T03": 0.5685090239999999, + "2024-07-23T01": 0.5908024056530855, + "2024-07-24T03": 0.584235052, + "2024-07-23T21": 0.5856878400000001, + "2024-07-19T20": 0.61107486, + "2024-07-23T22": 0.582504832, + "2024-07-21T23": 0.6099487920000001, + "2024-07-19T16": 0.60332064, + "2024-07-22T20": 0.593025264, + "2024-07-23T10": 0.585794142, + "2024-07-19T17": 0.602778351, + "2024-07-22T09": 0.5917, + "2024-07-24T04": 0.584317529, + "2024-07-22T06": 0.590235412, + "2024-07-24T21": 0.59544045, + "2024-07-20T21": 0.6075793579999998, + "2024-07-21T15": 0.607400376, + "2024-07-20T09": 0.6088346750000001, + "2024-07-25T14": 0.575592712, + "2024-07-19T11": 0.586676772, + "2024-07-23T20": 0.58301658, + "2024-07-25T03": 0.5697917189999999, + "2024-07-20T01": 0.6067032, + "2024-07-25T23": 0.557227206, + "2024-07-20T16": 0.6105197079999999, + "2024-07-22T15": 0.589853082, + "2024-07-23T16": 0.577998243, + "2024-07-22T02": 0.6074, + "2024-07-21T04": 0.610270828, + "2024-07-23T09": 0.5865, + "2024-07-20T10": 0.607879496, + "2024-07-22T19": 0.591659705, + "2024-07-20T00": 0.6058027500000001, + "2024-07-20T19": 0.6095802779999999, + "2024-07-26T05": 0.5668722738, + "2024-07-19T14": 0.5974, + "2024-07-21T00": 0.611677335, + "2024-07-22T12": 0.595747656, + "2024-07-24T06": 0.5917059170000001, + "2024-07-25T01": 0.57643082, + "2024-07-20T22": 0.6075811475999999, + "2024-07-19T15": 0.597611952, + "2024-07-21T13": 0.604087209, + "2024-07-25T07": 0.5649587250000001, + "2024-07-21T08": 0.6082763489999999, + "2024-07-23T06": 0.576186415, + "2024-07-22T16": 0.592188815, + "2024-07-24T11": 0.5955, + "2024-07-24T01": 0.575211504, + "2024-07-23T00": 0.5851755, + "2024-07-19T12": 0.5888645299999999, + "2024-07-25T17": 0.5647987975137261, + "2024-07-25T19": 0.5470413120000001, + "2024-07-19T21": 0.6118118650000001, + "2024-07-23T08": 0.58401752, + "2024-07-21T21": 0.611016071, + "2024-07-21T11": 0.6063636739999999, + "2024-07-22T14": 0.587988185, + "2024-07-20T23": 0.6091766099999999, + "2024-07-20T08": 0.6081038999999999, + "2024-07-20T02": 0.6078434065000001, + "2024-07-24T05": 0.58554684, + "2024-07-24T16": 0.6003540269999998, + "2024-07-21T01": 0.615127513, + "2024-07-24T13": 0.599, + "2024-07-25T04": 0.57092006, + "2024-07-19T13": 0.59308136, + "2024-07-25T12": 0.572488101, + "2024-07-19T22": 0.6096986060000001, + "2024-07-26T07": 0.571591377, + "2024-07-25T02": 0.5738852, + "2024-07-21T12": 0.60648189, + "2024-07-23T18": 0.5725629750000001, + "2024-07-23T11": 0.5836619346389134, + "2024-07-19T10": 0.5847771709999999, + "2024-07-19T19": 0.6074428799999999, + "2024-07-25T11": 0.569677739, + "2024-07-22T08": 0.5908972680000001, + "2024-07-23T19": 0.577890641, + "2024-07-22T21": 0.5885615997044572, + "2024-07-21T09": 0.6090504864, + "2024-07-21T22": 0.61186118, + "2024-07-22T04": 0.602348184, + "2024-07-25T16": 0.561226503, + "2024-07-19T23": 0.60840405, + "2024-07-20T06": 0.60894348, + "2024-07-23T02": 0.59054724, + "2024-07-23T14": 0.588694176, + "2024-07-23T03": 0.588941223, + "2024-07-25T08": 0.566635628, + "2024-07-24T15": 0.602614475, + "2024-07-19T09": 0.5843831, + "2024-07-20T15": 0.611089379, + "2024-07-23T23": 0.5820523799999999, + "2024-07-23T12": 0.583505012, + "2024-07-22T10": 0.5933059330000001, + "2024-07-21T10": 0.607764052, + "2024-07-22T00": 0.6099304950000001, + "2024-07-24T22": 0.592793278, + "2024-07-24T19": 0.6014939850000001, + "2024-07-24T09": 0.5889, + "2024-07-23T04": 0.58165816, + "2024-07-23T05": 0.575834548, + "2024-07-25T18": 0.554655752, + "2024-07-25T15": 0.5698745999999999, + "2024-07-26T01": 0.55928812, + "2024-07-22T01": 0.6065727799999999, + "2024-07-26T02": 0.56728652, + "2024-07-24T18": 0.602010195, + "2024-07-21T19": 0.5964325179999999, + "2024-07-25T05": 0.567763704, + "2024-07-22T18": 0.5923718962348735, + "2024-07-24T00": 0.5784520559999999, + "2024-07-24T08": 0.5899941, + "2024-07-24T20": 0.602493975, + "2024-07-24T23": 0.588294088, + "2024-07-22T17": 0.591882852, + "2024-07-21T17": 0.6043597629999999, + "2024-07-24T12": 0.595517865, + "2024-07-23T13": 0.581893088, + "2024-07-21T05": 0.6095706320000001, + "2024-07-20T05": 0.610692992, + "2024-07-21T03": 0.6125714720000001, + "2024-07-26T00": 0.557682862, + "2024-07-20T20": 0.609833836, + "2024-07-22T03": 0.606424256, + "2024-07-25T21": 0.552772833, + "2024-07-21T16": 0.605724035, + "2024-07-20T17": 0.6092436, + "2024-07-22T11": 0.594617838, + "2024-07-25T00": 0.589993782, + "2024-07-20T13": 0.602853092, + "2024-07-23T07": 0.57655765, + "2024-07-22T05": 0.595735742, + "2024-07-20T07": 0.6100744100000001, + "2024-07-21T18": 0.5924546459999999, + "2024-07-23T17": 0.56915691, + "2024-07-20T14": 0.606530394, + "2024-07-26T04": 0.565820774, + "2024-07-24T10": 0.5932592764860718, + "2024-07-20T18": 0.6097047, + "2024-07-23T15": 0.589600215, + "2024-07-19T18": 0.604057014, + "2024-07-25T09": 0.56629606, + "latest": 0.465295, + "2024-07-26T09": 0.570997202, + "2024-07-26T10": 0.5683465050000001, + "2024-07-26T11": 0.5686334952, + "2024-07-26T12": 0.5688032869999999, + "2024-07-26T13": 0.570308736, + "2024-07-26T14": 0.570548646, + "2024-07-26T17": 0.572388552, + "2024-07-26T16": 0.57417129, + "2024-07-26T15": 0.5735541120000001, + "2024-07-26T18": 0.5734, + "2024-07-27": 0.5783148174906856, + "2024-07-28": 0.5721885560000001, + "2024-07-28T05": 0.571694283, + "2024-07-26T21": 0.5758, + "2024-07-27T02": 0.5770173099999999, + "2024-07-28T01": 0.581159316, + "2024-07-27T10": 0.5785062768, + "2024-07-28T02": 0.58077096, + "2024-07-27T19": 0.5764440750000001, + "2024-07-27T09": 0.578352047, + "2024-07-27T06": 0.5781115619999999, + "2024-07-27T18": 0.5767865050000001, + "2024-07-26T22": 0.5766230640000001, + "2024-07-27T13": 0.582175673, + "2024-07-27T12": 0.579498498, + "2024-07-27T16": 0.57865786, + "2024-07-27T05": 0.57851157, + "2024-07-26T23": 0.5784231360000001, + "2024-07-26T20": 0.5735, + "2024-07-27T08": 0.5798689920000001, + "2024-07-28T03": 0.580288394, + "2024-07-27T01": 0.575723028, + "2024-07-28T09": 0.5733885320000001, + "2024-07-28T10": 0.573482795, + "2024-07-27T00": 0.5772230880000001, + "2024-07-28T00": 0.578594214, + "2024-07-27T04": 0.576911538, + "2024-07-27T14": 0.58125812, + "2024-07-27T07": 0.5802, + "2024-07-27T11": 0.577998243, + "2024-07-27T22": 0.58494735, + "2024-07-27T03": 0.5767657064371615, + "2024-07-27T20": 0.574928745, + "2024-07-27T23": 0.5823592320000001, + "2024-07-28T08": 0.571688566, + "2024-07-27T21": 0.581482555, + "2024-07-28T07": 0.5727685443999999, + "2024-07-27T15": 0.57785778, + "2024-07-26T19": 0.5773, + "2024-07-28T04": 0.576188476, + "2024-07-28T06": 0.574188516, + "2024-07-27T17": 0.57856942, + "2024-07-29": 0.5803377369151784, + "2024-07-28T20": 0.5693173682, + "2024-07-28T16": 0.566394336, + "2024-07-29T07": 0.5830350348, + "2024-07-28T23": 0.565688686, + "2024-07-28T15": 0.5679943199999999, + "2024-07-28T18": 0.566337696, + "2024-07-29T04": 0.576830772, + "2024-07-29T06": 0.5816260034027992, + "2024-07-28T21": 0.5664876406240149, + "2024-07-29T03": 0.5795362439999999, + "2024-07-28T12": 0.5730628076000001, + "2024-07-29T05": 0.578530568, + "2024-07-28T17": 0.565237817, + "2024-07-29T00": 0.5716, + "2024-07-29T01": 0.5712516649414827, + "2024-07-28T22": 0.5642830710000001, + "2024-07-28T19": 0.569237377, + "2024-07-28T14": 0.5685, + "2024-07-29T02": 0.5744597850000001, + "2024-07-29T08": 0.584443088, + "2024-07-28T11": 0.574177032, + "2024-07-28T13": 0.572388552, + "2024-07-29T09": 0.5848713, + "2024-07-29T10": 0.584277276, + "2024-07-29T11": 0.581777801, + "2024-07-29T12": 0.585447305, + "2024-07-29T13": 0.585847269, + "2024-07-30": 0.5769975285119734, + "2024-07-29T23": 0.574725276, + "2024-07-29T18": 0.5958808, + "2024-07-29T21": 0.569554432, + "2024-07-29T22": 0.5732254710000001, + "2024-07-29T17": 0.58037229, + "2024-07-29T15": 0.5757502659999999, + "2024-07-30T01": 0.58087218, + "2024-07-29T19": 0.588805776, + "2024-07-30T04": 0.5703859, + "2024-07-29T14": 0.58311252, + "2024-07-29T20": 0.5801361780000001, + "2024-07-30T03": 0.571320004, + "2024-07-30T00": 0.57590208, + "2024-07-29T16": 0.57331648, + "2024-07-30T02": 0.57178562, + "2024-07-30T09": 0.585271212, + "2024-07-30T08": 0.57933774, + "2024-07-30T06": 0.580472268, + "2024-07-30T05": 0.573790959, + "2024-07-30T07": 0.57684998, + "2024-07-30T10": 0.587705952, + "2024-07-30T11": 0.5869767089999999, + "2024-07-30T12": 0.58548288, + "2024-07-30T13": 0.5815836600000001, + "2024-07-31": 0.568475013488369, + "2024-07-31T00": 0.57085725, + "2024-07-31T05": 0.5776728839999999, + "2024-07-30T23": 0.570634468, + "2024-07-30T19": 0.5670900990000001, + "2024-07-30T16": 0.583713152, + "2024-07-30T17": 0.575321595, + "2024-07-30T18": 0.571117184, + "2024-07-30T20": 0.56413071, + "2024-07-30T15": 0.581502222, + "2024-07-31T03": 0.5839073537, + "2024-07-30T21": 0.562253776, + "2024-07-31T01": 0.5761674510000001, + "2024-07-31T07": 0.5885175029999999, + "2024-07-31T06": 0.585930031, + "2024-07-31T02": 0.58318334, + "2024-07-30T22": 0.5688349899999999, + "2024-07-30T14": 0.57858426, + "2024-07-31T04": 0.5819777589999999, + "2024-07-31T08": 0.59213342, + "2024-07-31T11": 0.59267385, + "2024-07-31T09": 0.592368886, + "2024-07-31T10": 0.590416464, + "2024-07-31T12": 0.594866688, + "2024-08-01": 0.5545302716391464, + "2024-07-31T14": 0.5983306300000001, + "2024-07-31T23": 0.5849127679999999, + "2024-07-31T13": 0.599418141, + "2024-07-31T21": 0.58427789, + "2024-08-01T01": 0.5817962999999999, + "2024-07-31T18": 0.5958033199999999, + "2024-07-31T19": 0.589699434, + "2024-07-31T16": 0.593568418, + "2024-08-01T02": 0.5751007920000001, + "2024-07-31T22": 0.587417844, + "2024-07-31T20": 0.584072123, + "2024-07-31T17": 0.595567638, + "2024-08-01T00": 0.584507049, + "2024-07-31T15": 0.596455353, + "2024-08-01T07": 0.5577489000000001, + "2024-08-01T06": 0.556427217, + "2024-08-01T05": 0.559358583, + "2024-08-01T04": 0.561407916, + "2024-08-01T03": 0.569398059, + "2024-08-01T08": 0.556410516, + "2024-08-01T09": 0.556077288, + "2024-08-01T10": 0.555105638, + "2024-08-01T11": 0.556005161, + "2024-08-01T12": 0.5573100480000001, + "2024-08-01T13": 0.556432784, + "2024-08-01T14": 0.549369168, + "2024-08-01T15": 0.54142915, + "2024-08-02": 0.5484571940534435, + "2024-08-02T00": 0.5511035599999999, + "2024-08-01T20": 0.519175103, + "2024-08-01T21": 0.533408812, + "2024-08-02T04": 0.548999955, + "2024-08-01T19": 0.52002734, + "2024-08-01T16": 0.52713075, + "2024-08-02T02": 0.5440262849999999, + "2024-08-01T17": 0.521477261, + "2024-08-01T23": 0.5494885, + "2024-08-02T01": 0.547212547, + "2024-08-01T22": 0.541650057, + "2024-08-01T18": 0.5145267920331842, + "2024-08-02T03": 0.54649676, + "2024-08-02T05": 0.543726546, + "2024-08-02T06": 0.5397894480000001, + "2024-08-02T07": 0.5412347396146644, + "2024-08-02T08": 0.53755346, + "2024-08-02T09": 0.540234998, + "2024-08-02T10": 0.540688764, + "2024-08-02T11": 0.544941864, + "2024-08-02T12": 0.54581766, + "2024-08-02T13": 0.5490713899999999, + "2024-08-02T14": 0.5509331970749392, + "2024-08-02T15": 0.5139006745984981, + "2024-08-03": 0.5150826403175675, + "2024-08-02T16": 0.51236412, + "2024-08-02T22": 0.5123053054, + "2024-08-02T23": 0.518535424, + "2024-08-03T00": 0.520417359, + "2024-08-03T01": 0.5151655660000001, + "2024-08-03T03": 0.5189816759999999, + "2024-08-02T19": 0.507546171, + "2024-08-02T18": 0.5131863000000001, + "2024-08-02T21": 0.5103891, + "2024-08-02T17": 0.51870676, + "2024-08-02T20": 0.519832764, + "2024-08-03T02": 0.5098261399999999, + "2024-08-03T06": 0.517535271, + "2024-08-03T19": 0.48791912600000004, + "2024-08-03T10": 0.5202417840000001, + "2024-08-03T09": 0.518138446, + "2024-08-03T15": 0.509358501, + "2024-08-03T22": 0.495917166, + "2024-08-03T05": 0.5188389879206202, + "2024-08-03T08": 0.517297734, + "2024-08-03T14": 0.5187625849999999, + "2024-08-03T18": 0.48685896, + "2024-08-03T17": 0.489946984, + "2024-08-03T21": 0.49140498, + "2024-08-03T12": 0.520504116, + "2024-08-03T20": 0.48797283900000005, + "2024-08-03T04": 0.519674598, + "2024-08-03T16": 0.49902545, + "2024-08-03T11": 0.5202626120000001, + "2024-08-03T07": 0.518544563, + "2024-08-03T13": 0.518946876, + "2024-08-04": 0.49685802707748006, + "2024-08-03T23": 0.496122016, + "2024-08-04T17": 0.468310979, + "2024-08-04T13": 0.5007495000000001, + "2024-08-04T06": 0.508084792, + "2024-08-04T12": 0.5023487000000001, + "2024-08-04T10": 0.505836828, + "2024-08-04T16": 0.47765583999999994, + "2024-08-04T15": 0.479378601, + "2024-08-04T00": 0.496207065, + "2024-08-04T11": 0.505342144, + "2024-08-04T01": 0.496606829, + "2024-08-04T03": 0.501988574, + "2024-08-04T04": 0.502493292, + "2024-08-04T07": 0.510798451, + "2024-08-04T08": 0.507090486, + "2024-08-04T18": 0.46840191010152155, + "2024-08-04T09": 0.508809813, + "2024-08-04T02": 0.5001996999999999, + "2024-08-04T05": 0.504292194, + "2024-08-04T14": 0.48589097699999995, + "2024-08-05": 0.4324802111026525, + "2024-08-05T01": 0.45248224035784984, + "2024-08-04T19": 0.47163023741646787, + "2024-08-04T22": 0.4781377786972127, + "2024-08-05T03": 0.4307188216241006, + "2024-08-05T02": 0.42823678875219606, + "2024-08-04T23": 0.4790264284837165, + "2024-08-05T00": 0.4717090860478945, + "2024-08-05T04": 0.42770564598173316, + "2024-08-05T06": 0.43250680534750124, + "2024-08-04T20": 0.483929108778063, + "2024-08-05T05": 0.4321347091097598, + "2024-08-04T21": 0.4815745749974048, + "2024-08-05T07": 0.42290762431215423, + "2024-08-05T08": 0.43562091606133846, + "2024-08-05T09": 0.4332950227251515, + "2024-08-05T10": 0.4343301869195449, + "2024-08-05T11": 0.418854444, + "2024-08-05T12": 0.4245754393102216, + "2024-08-05T13": 0.41531502428904604, + "2024-08-05T14": 0.43956175805569186, + "2024-08-05T15": 0.454686272, + "2024-08-06": 0.4593028771355799, + "2024-08-05T19": 0.439767048, + "2024-08-05T20": 0.44354435, + "2024-08-05T21": 0.44397990200000004, + "2024-08-06T02": 0.457973964, + "2024-08-05T18": 0.44660534399999996, + "2024-08-05T23": 0.44718942, + "2024-08-05T16": 0.45601898999999996, + "2024-08-06T05": 0.46237263900000003, + "2024-08-05T17": 0.453467388, + "2024-08-06T00": 0.45839166, + "2024-08-06T04": 0.46060718, + "2024-08-06T03": 0.45927904899999994, + "2024-08-05T22": 0.447176007, + "2024-08-06T01": 0.46203857, + "2024-08-06T06": 0.46704069099999995, + "2024-08-06T07": 0.46571181799999994, + "2024-08-06T08": 0.45876593000000004, + "2024-08-06T09": 0.45573668, + "2024-08-06T10": 0.45364512000000007, + "2024-08-06T11": 0.45211300000000004, + "2024-08-06T12": 0.451767092, + "2024-08-06T13": 0.450426084, + "2024-08-06T14": 0.45043058699999994 + }, + "USD ethereum": { + "2024-06-28": 3432.546246597025, + "2024-06-30": 3389.1861961869904, + "2024-07-15": 3358.7627027551152, + "2024-07-18": 3425.1822620831067, + "2024-07-14": 3194.881628773647, + "2024-07-11": 3122.049647791965, + "2024-07-19": 3438.75533788233, + "2024-07-12": 3098.3262109929324, + "2024-07-24": 3438.744625887542, + "2024-07-08": 2985.067144269928, + "2024-07-07": 3001.1479939037986, + "2024-07-13": 3153.0593396857184, + "2024-07-09": 3066.815164240923, + "2024-07-02": 3436.4275308498154, + "2024-07-20": 3500.958479782853, + "2024-06-29": 3383.1807648078943, + "2024-07-21": 3502.0867955422245, + "2024-07-23": 3474.416113568106, + "2024-07-10": 3101.483437962154, + "2024-07-01": 3471.513401689452, + "2024-06-26": 3381.8123580500587, + "2024-07-17": 3462.3414737770986, + "2024-07-22": 3483.3191762110705, + "2024-07-04": 3147.0574805721967, + "2024-06-25": 3378.681897789209, + "2024-07-26": 3250.924387072937, + "2024-07-03": 3307.497282099869, + "2024-07-05": 2944.6400104742397, + "2024-07-25": 3168.2454067372873, + "2024-07-16": 3439.4586245819264, + "2024-07-06": 3006.5744160021704, + "2024-06-27": 3419.1244390698284, + "2024-07-22T13": 3491.282776901807, + "2024-07-25T10": 3162.846148614601, + "2024-07-26T06": 3266.698578025987, + "2024-07-24T14": 3446.5658443348975, + "2024-07-21T20": 3511.027083688761, + "2024-07-21T07": 3487.0409486999997, + "2024-07-21T14": 3508.4697334870402, + "2024-07-22T23": 3442.4745490179193, + "2024-07-24T07": 3445.259110138873, + "2024-07-20T11": 3488.3284438, + "2024-07-26T08": 3254.600228559298, + "2024-07-25T20": 3114.629423028387, + "2024-07-21T02": 3518.3248552000005, + "2024-07-20T04": 3505.433261685375, + "2024-07-20T03": 3501.0024725274243, + "2024-07-25T13": 3149.283778173391, + "2024-07-21T06": 3490.3519085999997, + "2024-07-20T12": 3492.8057424000003, + "2024-07-24T02": 3437.509096613366, + "2024-07-24T17": 3424.671323147202, + "2024-07-25T06": 3174.720945804737, + "2024-07-25T22": 3171.56425351019, + "2024-07-22T07": 3475.831479380806, + "2024-07-22T22": 3447.56230907599, + "2024-07-26T03": 3244.083930455572, + "2024-07-23T01": 3479.030091383302, + "2024-07-24T03": 3448.3559835977167, + "2024-07-23T21": 3480.3850703008734, + "2024-07-19T20": 3506.8826988981946, + "2024-07-23T22": 3469.4069472425767, + "2024-07-21T23": 3531.935382362206, + "2024-07-19T16": 3490.177971774835, + "2024-07-22T20": 3487.956184169782, + "2024-07-23T10": 3522.3165190469713, + "2024-07-19T17": 3495.351415363089, + "2024-07-22T09": 3483.1926347379685, + "2024-07-24T04": 3439.1670844766118, + "2024-07-22T06": 3486.2337557874657, + "2024-07-24T21": 3338.6142683472463, + "2024-07-20T21": 3513.668732838251, + "2024-07-21T15": 3506.3605835859903, + "2024-07-20T09": 3487.8272505, + "2024-07-25T14": 3153.455315355127, + "2024-07-19T11": 3401.682159328224, + "2024-07-23T20": 3479.397674302882, + "2024-07-25T03": 3169.154130286701, + "2024-07-20T01": 3490.7719129865004, + "2024-07-25T23": 3172.157798108118, + "2024-07-20T16": 3503.1080643274427, + "2024-07-22T15": 3453.628232312476, + "2024-07-23T16": 3447.5941899710438, + "2024-07-22T02": 3532.0240108132957, + "2024-07-21T04": 3510.4626544000002, + "2024-07-23T09": 3527.8529525517297, + "2024-07-20T10": 3486.9432564, + "2024-07-22T19": 3484.36211521491, + "2024-07-20T00": 3494.028473984517, + "2024-07-20T19": 3526.2060810487737, + "2024-07-26T05": 3254.3733059335464, + "2024-07-19T14": 3460.1248287490544, + "2024-07-21T00": 3518.5656561699666, + "2024-07-22T12": 3500.1123490353975, + "2024-07-24T06": 3443.0194955267434, + "2024-07-25T01": 3213.4612475908953, + "2024-07-20T22": 3518.284333053376, + "2024-07-19T15": 3461.7773966541554, + "2024-07-21T13": 3493.2325665000003, + "2024-07-25T07": 3172.829895187536, + "2024-07-21T08": 3490.2618824999995, + "2024-07-23T06": 3448.5675554613126, + "2024-07-22T16": 3457.432154113312, + "2024-07-24T11": 3464.3780599829443, + "2024-07-24T01": 3466.1276654444805, + "2024-07-23T00": 3454.9735470582923, + "2024-07-19T12": 3407.3835208584983, + "2024-07-25T17": 3164.730460714253, + "2024-07-25T19": 3119.420578698865, + "2024-07-19T21": 3516.3955932655404, + "2024-07-23T08": 3511.6393856589116, + "2024-07-21T21": 3506.9683882077534, + "2024-07-21T11": 3496.6639989777796, + "2024-07-22T14": 3457.283612468352, + "2024-07-20T23": 3519.6485258175076, + "2024-07-20T08": 3487.7630099999997, + "2024-07-20T02": 3493.1024346246163, + "2024-07-24T05": 3438.367027094575, + "2024-07-24T16": 3418.6737296301894, + "2024-07-21T01": 3516.1404908, + "2024-07-24T13": 3460.170626489794, + "2024-07-25T04": 3166.2219203520453, + "2024-07-19T13": 3418.4211926258445, + "2024-07-25T12": 3162.565679028177, + "2024-07-19T22": 3517.3173156313164, + "2024-07-26T07": 3261.6535363302432, + "2024-07-25T02": 3179.632407968418, + "2024-07-21T12": 3500.689892, + "2024-07-23T18": 3437.2095423374226, + "2024-07-23T11": 3505.5969928613954, + "2024-07-19T10": 3401.160021943358, + "2024-07-19T19": 3523.4978046522865, + "2024-07-25T11": 3175.132917216671, + "2024-07-22T08": 3481.307904641401, + "2024-07-23T19": 3476.018008483491, + "2024-07-22T21": 3463.8485438878756, + "2024-07-21T09": 3497.2089444000003, + "2024-07-21T22": 3531.072229271718, + "2024-07-22T04": 3517.369571026303, + "2024-07-25T16": 3156.0872291049427, + "2024-07-19T23": 3508.8622105685076, + "2024-07-20T06": 3503.5908759999998, + "2024-07-23T02": 3482.9450848309643, + "2024-07-23T14": 3474.7433649429404, + "2024-07-23T03": 3477.1908597405168, + "2024-07-25T08": 3166.9746838727688, + "2024-07-24T15": 3421.0683909702816, + "2024-07-19T09": 3395.8000990092323, + "2024-07-20T15": 3501.1612426375664, + "2024-07-23T23": 3484.9019552556924, + "2024-07-23T12": 3505.6402976516843, + "2024-07-22T10": 3492.999959645418, + "2024-07-21T10": 3499.9547327, + "2024-07-22T00": 3542.22722351673, + "2024-07-24T22": 3329.7732212424835, + "2024-07-24T19": 3387.546313096894, + "2024-07-24T09": 3457.639088528208, + "2024-07-23T04": 3464.5034304755586, + "2024-07-23T05": 3437.6028316568886, + "2024-07-25T18": 3138.1283867619677, + "2024-07-25T15": 3145.5171976334973, + "2024-07-26T01": 3184.3850996471956, + "2024-07-22T01": 3534.053209608608, + "2024-07-26T02": 3226.2297702498454, + "2024-07-24T18": 3395.7709743265314, + "2024-07-21T19": 3484.066611543055, + "2024-07-25T05": 3184.526003539954, + "2024-07-22T18": 3473.0175937369004, + "2024-07-24T00": 3477.9081612730447, + "2024-07-24T08": 3457.675850445308, + "2024-07-24T20": 3372.6162850978053, + "2024-07-24T23": 3328.8932603793683, + "2024-07-22T17": 3463.366735792669, + "2024-07-21T17": 3507.0291926394616, + "2024-07-24T12": 3459.196847269321, + "2024-07-23T13": 3478.0149995244515, + "2024-07-21T05": 3502.9705572, + "2024-07-20T05": 3503.539154487263, + "2024-07-21T03": 3515.0139284000006, + "2024-07-26T00": 3185.3255006466356, + "2024-07-20T20": 3524.664646940582, + "2024-07-22T03": 3524.030649985564, + "2024-07-25T21": 3172.423506135966, + "2024-07-21T16": 3499.7969588569304, + "2024-07-20T17": 3516.52773705982, + "2024-07-22T11": 3494.2463161375363, + "2024-07-25T00": 3334.4597524082637, + "2024-07-20T13": 3489.361265983007, + "2024-07-23T07": 3450.670939349243, + "2024-07-22T05": 3503.0886283086024, + "2024-07-20T07": 3497.0029435, + "2024-07-21T18": 3461.0692206830754, + "2024-07-23T17": 3414.2747129734184, + "2024-07-20T14": 3496.9771327141907, + "2024-07-26T04": 3247.6226639160827, + "2024-07-24T10": 3465.9218379061176, + "2024-07-20T18": 3528.9025940900747, + "2024-07-23T15": 3453.3067412075247, + "2024-07-19T18": 3500.7346342239885, + "2024-07-25T09": 3177.045040124167, + "latest": 2525.14, + "2024-07-26T09": 3257.2904303986043, + "2023-07-10": 1866.0360578521072, + "2022-07-10": 1180.9052284255263, + "2023-08-20": 1671.2576000814242, + "2024-02-23": 2941.9404144517216, + "2023-12-19": 2217.8985157110114, + "2023-08-06": 1830.6881807210773, + "2022-07-11": 1143.5204551351464, + "2022-09-30": 1337.290370845045, + "2023-10-31": 1802.2390433065395, + "2023-08-29": 1710.8912841814258, + "2023-09-09": 1634.0453244747537, + "2022-12-13": 1294.945494254071, + "2022-04-14": 3081.0167608373604, + "2022-10-22": 1307.7486480020264, + "2023-04-13": 1992.1019483365474, + "2023-07-30": 1875.2779543043034, + "2023-05-03": 1866.5114585538834, + "2023-10-23": 1686.499262221828, + "2023-07-27": 1872.088593089721, + "2021-06-28": 2040.5456507079778, + "2024-04-05": 3294.9210601271734, + "2021-12-12": 4052.503387623177, + "2023-10-01": 1680.4357216898898, + "2024-03-07": 3809.534653835918, + "2022-04-24": 2941.936200402984, + "2021-08-16": 3269.8040138221913, + "2024-05-17": 3050.368537640859, + "2022-03-18": 2811.381493298983, + "2023-12-02": 2103.732381694795, + "2023-02-03": 1647.7508978932865, + "2024-06-11": 3527.985369085746, + "2022-03-10": 2601.1090371550176, + "2022-11-20": 1174.8364882450294, + "2024-04-22": 3197.878397981945, + "2023-10-12": 1546.311147980805, + "2022-03-21": 2906.0649371758727, + "2023-07-05": 1912.5025743439844, + "2023-07-29": 1873.9712988368888, + "2024-04-26": 3139.223724464589, + "2024-01-08": 2260.422334037217, + "2023-05-29": 1900.1871467554079, + "2022-02-05": 3015.3678198161697, + "2023-01-22": 1628.3447677064564, + "2023-06-20": 1737.9678616546266, + "2022-04-19": 3064.1939422591913, + "2022-10-05": 1350.0523374129268, + "2021-09-24": 2905.8543861054527, + "2023-06-26": 1878.6422027397552, + "2021-06-19": 2231.3332624357336, + "2022-04-05": 3483.0357718277064, + "2023-01-10": 1329.8756105331888, + "2023-08-24": 1662.8822118714863, + "2023-12-05": 2229.5982270850436, + "2023-05-10": 1847.733539444138, + "2022-03-24": 3054.5209587438294, + "2022-10-08": 1327.6691904316094, + "2021-12-17": 3877.797983028264, + "2024-04-28": 3308.1346572578764, + "2023-02-18": 1694.690025255948, + "2022-09-06": 1648.0898612691012, + "2023-10-07": 1640.1186588134608, + "2023-03-08": 1554.5378238084725, + "2024-06-24": 3321.4411778068215, + "2022-04-28": 2917.0219166920183, + "2022-03-20": 2886.378090869341, + "2023-09-26": 1588.3146790811957, + "2022-11-18": 1212.4918228006163, + "2022-09-09": 1707.6689639458941, + "2021-08-01": 2595.3055468299367, + "2021-10-28": 4156.770898745324, + "2021-06-07": 2765.1023723271446, + "2022-06-09": 1795.881809612001, + "2022-08-20": 1627.2350532569785, + "2021-12-04": 3999.6137814016442, + "2024-02-19": 2912.9134569309467, + "2022-07-25": 1521.860641805831, + "2022-07-30": 1711.0122588121922, + "2022-08-25": 1701.2965168292224, + "2022-10-31": 1578.2025043233627, + "2021-10-07": 3571.6122411243514, + "2022-04-15": 3028.367567181409, + "2024-01-07": 2242.92882749182, + "2022-01-23": 2444.6343725157585, + "2022-05-29": 1793.2650492677196, + "2024-05-19": 3087.6507799600254, + "2024-05-12": 2926.915946090738, + "2023-04-25": 1828.5895452328991, + "2023-07-31": 1863.9280431272898, + "2023-10-18": 1572.011544858536, + "2022-04-04": 3485.6918890821694, + "2023-02-17": 1666.1953593756107, + "2021-07-29": 2310.5408625580335, + "2022-02-01": 2763.009453350812, + "2023-04-11": 1916.2783038957311, + "2022-12-18": 1183.9618832766491, + "2023-07-12": 1885.527876153974, + "2023-09-05": 1630.3240293903898, + "2022-01-09": 3129.0051791683063, + "2022-11-22": 1107.5487442202805, + "2023-01-18": 1573.8199559688935, + "2021-10-08": 3606.2588176250547, + "2022-12-06": 1256.7856892249706, + "2024-04-29": 3178.824872768968, + "2022-10-17": 1319.7260894984809, + "2022-03-03": 2895.184209025821, + "2022-10-21": 1286.2772792008996, + "2023-05-23": 1853.1858541693848, + "2023-06-07": 1858.92046990718, + "2023-09-16": 1636.6611825109562, + "2023-01-30": 1585.4744036591255, + "2022-02-12": 2925.5206813470345, + "2023-08-25": 1651.9817571605513, + "2022-11-17": 1203.4029056647435, + "2022-01-29": 2559.8033649298327, + "2021-06-17": 2396.3765229410374, + "2024-03-09": 3917.432948907231, + "2022-06-25": 1216.5285381099832, + "2021-12-19": 3941.122291430097, + "2022-10-11": 1281.3259066498197, + "2021-07-08": 2169.7953152663094, + "2021-09-28": 2901.1591386977516, + "2021-06-16": 2451.683672330099, + "2021-10-03": 3410.736447767573, + "2023-01-29": 1611.3471899228794, + "2023-03-24": 1768.7841231245052, + "2023-08-12": 1848.5237874789213, + "2023-03-11": 1456.238327539589, + "2022-11-09": 1209.349807229604, + "2022-08-31": 1580.3166800698577, + "2023-01-15": 1533.460041266084, + "2023-07-13": 1939.0497113130407, + "2021-09-04": 3912.58655252865, + "2023-03-10": 1412.3126844466215, + "2022-01-24": 2351.032425551774, + "2022-12-04": 1259.589702840689, + "2024-04-25": 3148.156683884522, + "2023-05-09": 1844.7979768479804, + "2023-02-05": 1651.0058133703212, + "2023-04-30": 1903.8886501686022, + "2022-09-22": 1284.7586542911733, + "2023-06-06": 1832.060624047269, + "2022-07-19": 1543.4002698707993, + "2021-10-18": 3779.8965691906164, + "2024-06-12": 3549.1023198137414, + "2021-11-30": 4602.365900066097, + "2021-12-07": 4352.898962399212, + "2022-06-06": 1873.9062770384755, + "2021-06-02": 2698.563271596204, + "2023-09-01": 1638.457230622314, + "2024-05-30": 3763.9743362008467, + "2022-12-12": 1252.433427522306, + "2023-02-26": 1603.7660460551435, + "2024-06-05": 3812.1502583365036, + "2022-09-11": 1764.421813287455, + "2023-09-08": 1634.8619729540403, + "2022-05-30": 1903.2605949571614, + "2024-03-22": 3405.48183404067, + "2023-08-10": 1850.6871387211859, + "2022-10-25": 1398.8185850764228, + "2022-06-05": 1795.2495784666878, + "2022-04-12": 3018.2593368017297, + "2023-12-07": 2264.1757762203033, + "2021-06-08": 2496.9197727397545, + "2021-12-24": 4094.4468237683386, + "2021-07-15": 1924.6500195737965, + "2023-11-18": 1945.7789175206647, + "2023-09-13": 1598.9140487235034, + "2021-09-09": 3485.5681799501017, + "2023-06-17": 1730.3925451723496, + "2021-10-11": 3546.1679501993276, + "2021-08-18": 3042.8170848310424, + "2021-07-12": 2103.006593253795, + "2022-08-07": 1692.0965147387012, + "2024-06-20": 3550.625824780388, + "2023-07-07": 1861.3614260856123, + "2022-01-18": 3159.931612846261, + "2021-12-15": 3858.497187074221, + "2023-09-07": 1634.3060051177995, + "2022-07-09": 1216.9239477868598, + "2024-05-14": 2904.5335614794594, + "2023-02-06": 1632.3092871424255, + "2022-05-17": 2070.724710284293, + "2021-11-05": 4502.5617224819025, + "2024-06-16": 3571.6671019457453, + "2021-08-12": 3103.786961826005, + "2023-04-09": 1842.5708236301903, + "2022-12-15": 1284.4092290176604, + "2023-04-06": 1875.5397714913206, + "2024-04-15": 3145.5972353127, + "2022-02-04": 2838.1147133427944, + "2023-07-17": 1912.4937750006243, + "2022-10-04": 1349.02620973278, + "2023-02-24": 1635.299628641454, + "2023-01-11": 1334.9430910567646, + "2024-03-26": 3610.887374058141, + "2023-04-27": 1901.9808215410308, + "2022-12-20": 1210.1588330724512, + "2023-03-18": 1810.6386448789228, + "2021-06-22": 1892.459710632996, + "2022-11-28": 1170.3732384004686, + "2024-04-17": 3032.1970616471344, + "2024-02-12": 2528.2241926247025, + "2022-06-08": 1802.0308704030228, + "2021-09-15": 3430.5010758633484, + "2023-10-26": 1804.5536753415352, + "2024-01-03": 2230.118502923756, + "2024-02-22": 2977.4033833672484, + "2021-08-02": 2597.1293691062474, + "2021-09-27": 3079.02859354222, + "2021-09-17": 3458.462909341735, + "2021-05-27": 2772.107847555447, + "2023-12-30": 2299.27431411389, + "2022-01-05": 3783.402910012867, + "2021-07-25": 2158.9533011517133, + "2023-09-17": 1628.4732780267682, + "2023-03-09": 1531.2078168564128, + "2021-09-29": 2870.525396548534, + "2021-11-22": 4192.781194455785, + "2023-04-20": 1948.2921095195038, + "2022-01-28": 2436.188019461971, + "2021-12-05": 4157.988683396778, + "2023-02-01": 1582.7567849333388, + "2022-12-02": 1279.2068790526762, + "2023-06-12": 1739.7421274995495, + "2022-07-16": 1235.9272441505068, + "2024-04-30": 3013.6947855206436, + "2021-10-06": 3512.853353236444, + "2022-07-14": 1112.2391390227021, + "2024-05-07": 3069.0544917080815, + "2022-06-02": 1820.6200141151578, + "2022-07-28": 1647.0804172238797, + "2021-10-02": 3314.862148643721, + "2021-07-05": 2242.928855558163, + "2023-02-22": 1636.9979059901239, + "2022-07-24": 1602.0697434689703, + "2022-10-19": 1298.5420670959134, + "2023-06-01": 1862.9767057449844, + "2023-06-19": 1724.693450891206, + "2023-07-09": 1867.8047908388119, + "2022-10-15": 1285.832214279585, + "2021-11-12": 4652.1652926325905, + "2021-07-10": 2116.288753672823, + "2023-03-21": 1792.1588704576686, + "2022-03-31": 3383.565481692785, + "2022-09-27": 1374.9402108207908, + "2022-09-16": 1457.1561994478159, + "2022-04-11": 3048.502401903647, + "2024-01-22": 2377.4657415809816, + "2022-11-19": 1207.584004033383, + "2022-05-18": 1996.97932298416, + "2022-04-22": 2990.875103776484, + "2022-11-15": 1258.8429745742956, + "2022-03-13": 2575.483900803469, + "2021-07-04": 2324.687138892103, + "2023-12-24": 2292.603414419228, + "2023-09-24": 1592.171925952727, + "2021-11-19": 4150.475383337274, + "2022-01-20": 3143.6620348714987, + "2023-10-03": 1657.02789476554, + "2022-11-21": 1120.179350000734, + "2022-04-26": 2940.5659269974635, + "2024-05-26": 3807.364815743826, + "2022-08-18": 1857.7440980694012, + "2024-01-16": 2537.8461865504237, + "2023-10-17": 1579.340490503536, + "2024-04-24": 3231.487870210601, + "2024-02-17": 2779.7504824427433, + "2021-09-18": 3468.295641828826, + "2023-09-03": 1635.0030725620195, + "2024-02-24": 2958.3252100329546, + "2021-09-23": 3115.743850753869, + "2022-11-02": 1562.076715868877, + "2022-01-12": 3304.6003874069797, + "2024-03-18": 3570.0680786728644, + "2022-01-21": 2806.789421949071, + "2021-09-08": 3430.051761138777, + "2023-12-27": 2296.2182411536915, + "2023-03-15": 1675.754854542205, + "2021-08-09": 3099.239861634818, + "2021-06-04": 2668.771167955526, + "2022-09-14": 1600.1233832695482, + "2023-07-23": 1875.5289098645308, + "2022-04-08": 3258.8255581206818, + "2022-07-05": 1138.1337287583756, + "2022-12-17": 1178.0197921364213, + "2022-01-10": 3075.0289041645265, + "2022-03-12": 2586.3229587670444, + "2022-11-13": 1233.109031091659, + "2024-01-06": 2241.8182078650243, + "2022-09-19": 1326.860673186145, + "2022-10-12": 1296.3730107701083, + "2021-10-21": 4170.170624070695, + "2022-10-24": 1345.3096005688783, + "2022-12-28": 1194.8303314188693, + "2023-11-21": 1997.5299587398706, + "2023-12-25": 2278.2531401717224, + "2022-12-07": 1232.012504877655, + "2023-03-20": 1767.8964814261278, + "2021-08-27": 3155.000691936744, + "2021-06-26": 1780.5041954423195, + "2022-02-25": 2676.177502547911, + "2021-12-31": 3729.935045115046, + "2024-03-20": 3260.4225543635093, + "2023-04-28": 1904.530095008067, + "2022-11-03": 1543.2156195711082, + "2021-12-22": 4015.399014007807, + "2022-12-26": 1218.9405910219039, + "2023-08-30": 1715.9447351886356, + "2021-06-01": 2603.0601097565227, + "2023-04-24": 1844.3487654889652, + "2023-10-13": 1545.0007049052335, + "2023-06-28": 1858.6409198111653, + "2024-02-05": 2298.5858429272675, + "2022-01-04": 3809.15109676207, + "2022-05-31": 1968.7087843718107, + "2023-09-22": 1593.7319756987447, + "2022-11-14": 1234.9769102148598, + "2024-03-01": 3411.4895791211425, + "2023-07-15": 1934.1176715323732, + "2023-06-25": 1902.5250129178116, + "2023-12-10": 2348.936937113697, + "2023-11-23": 2061.7212151047393, + "2021-07-21": 1906.9177377862013, + "2023-10-02": 1720.8638221537046, + "2021-08-26": 3116.3465413101, + "2022-08-14": 1982.8077833378513, + "2021-11-15": 4685.191214604425, + "2022-04-10": 3253.5563721488206, + "2022-07-26": 1410.282327703277, + "2024-03-27": 3567.199641077595, + "2022-09-05": 1578.8378982708623, + "2023-03-03": 1567.1269571991743, + "2023-08-04": 1833.9082432928585, + "2024-05-13": 2951.6633460598855, + "2021-11-13": 4643.80931529871, + "2021-11-03": 4582.663847300195, + "2024-05-06": 3130.2255273417018, + "2022-06-27": 1206.203819479834, + "2024-01-13": 2548.5951539857506, + "2024-03-28": 3564.6484944572676, + "2023-01-01": 1195.404669929516, + "2024-06-19": 3541.376623924257, + "2021-12-21": 4009.444039364485, + "2023-08-05": 1830.3770021418813, + "2024-02-09": 2486.7991595720214, + "2021-07-14": 1944.1181817961208, + "2021-07-01": 2128.316215999943, + "2021-08-17": 3172.3778655321353, + "2023-04-01": 1824.1218169997112, + "2023-10-06": 1634.2683083056747, + "2024-01-09": 2298.012239503609, + "2023-01-23": 1632.037367768141, + "2022-02-09": 3170.908981818028, + "2021-10-14": 3736.3805517429146, + "2021-07-24": 2150.341474359826, + "2024-05-10": 3008.4276688561504, + "2021-06-10": 2536.188045884654, + "2023-08-18": 1676.305407110091, + "2022-02-27": 2737.564681857301, + "2021-09-14": 3339.3889816018195, + "2023-10-22": 1634.4144043699887, + "2021-09-13": 3244.0097532966433, + "2022-01-16": 3331.0452386396996, + "2021-06-18": 2279.0256553337467, + "2023-11-01": 1809.9347293122614, + "2023-05-07": 1910.8585028061232, + "2023-10-09": 1591.7822453390916, + "2022-12-08": 1240.939418032866, + "2022-08-01": 1667.2364652539109, + "2023-05-24": 1814.771033987277, + "2024-05-20": 3125.448999464766, + "2023-12-08": 2359.5635330524424, + "2022-06-28": 1185.9505993690468, + "2022-02-23": 2666.524675703385, + "2023-01-24": 1621.0882507217218, + "2023-05-27": 1828.223975276911, + "2021-11-11": 4707.2165821534245, + "2022-09-08": 1630.6866200195545, + "2021-12-02": 4532.226714744946, + "2023-11-05": 1885.1891781421405, + "2022-08-30": 1546.8176636062442, + "2024-04-18": 3028.8294874968446, + "2023-02-10": 1539.8039679830756, + "2023-01-04": 1250.92823927022, + "2022-05-07": 2678.3842303684937, + "2023-01-05": 1251.1310283252656, + "2024-03-12": 3999.3272099039905, + "2022-10-20": 1289.8105035175472, + "2022-12-10": 1266.4448131935226, + "2021-07-13": 1991.9047361626438, + "2024-02-04": 2299.4265724684906, + "2021-07-17": 1885.1338000739281, + "2024-04-12": 3448.7375602336842, + "2023-04-18": 2095.158015146061, + "2023-07-06": 1903.6558554546464, + "2022-07-07": 1194.8348183176754, + "2021-10-17": 3845.82296607701, + "2022-08-11": 1890.0210978173097, + "2021-09-10": 3344.0422568501313, + "2022-06-17": 1086.9474533916596, + "2023-09-11": 1584.1528990458285, + "2021-08-06": 2792.4221248147255, + "2022-01-13": 3337.1571629519526, + "2024-03-03": 3428.7819410221714, + "2024-01-28": 2277.9574300035815, + "2022-04-01": 3305.6489836626997, + "2021-10-04": 3364.5691084818804, + "2022-08-23": 1627.6338191954603, + "2021-12-08": 4368.081283103724, + "2023-03-25": 1748.589350907497, + "2023-05-18": 1817.907227325931, + "2023-11-07": 1886.025271039351, + "2023-11-25": 2081.4506856208604, + "2022-12-09": 1278.9982925947709, + "2021-11-26": 4086.878025364607, + "2022-06-21": 1146.5884335384421, + "2022-02-22": 2590.4789796532323, + "2024-01-26": 2247.718533416445, + "2023-08-03": 1837.840312549095, + "2021-12-18": 3937.0187277053105, + "2021-12-16": 4036.2806682176306, + "2023-07-01": 1921.9209818183406, + "2021-10-15": 3815.7963747814943, + "2022-01-30": 2604.873437839288, + "2023-01-19": 1528.9498463674422, + "2022-04-07": 3217.517284168215, + "2021-06-15": 2583.530850445182, + "2021-09-06": 3934.490102423756, + "2022-10-07": 1339.7740657903348, + "2023-06-04": 1902.3607300961073, + "2024-02-28": 3314.8494159030956, + "2023-09-15": 1627.1087062566464, + "2021-12-09": 4284.993569265389, + "2021-10-26": 4206.433766497894, + "2022-06-20": 1111.3918793672935, + "2022-11-08": 1468.8998442661216, + "2023-03-26": 1767.5682200560377, + "2022-03-08": 2566.3099712928706, + "2021-11-16": 4300.202411867791, + "2024-02-25": 3038.6117233554296, + "2023-02-19": 1695.284543308068, + "2022-04-20": 3088.829343464505, + "2023-12-01": 2090.8666623401623, + "2022-09-17": 1441.11515705886, + "2023-07-14": 1994.8464440572468, + "2021-09-02": 3772.617517300094, + "2021-08-07": 3062.5734781029755, + "2022-04-25": 2870.1261054986535, + "2023-04-21": 1910.147242056298, + "2023-12-21": 2227.436877288254, + "2022-09-26": 1313.2237291266, + "2023-01-06": 1251.2612465310178, + "2022-02-06": 3008.0852189359703, + "2024-03-06": 3809.6152546376575, + "2022-01-17": 3255.050956229533, + "2022-09-07": 1535.8661521739318, + "2022-08-27": 1495.0211008790523, + "2023-07-18": 1899.000185837377, + "2021-10-05": 3435.2995407061485, + "2021-10-12": 3489.642584585467, + "2022-03-01": 2931.2242546538755, + "2022-07-13": 1064.354372737524, + "2023-01-17": 1570.3153754562572, + "2023-01-03": 1213.9849997822475, + "2022-11-29": 1209.6046148921491, + "2022-12-23": 1219.769077170176, + "2023-03-07": 1563.4561279593397, + "2022-07-03": 1059.9927967935598, + "2022-08-29": 1488.4187305261923, + "2023-07-20": 1896.098634329933, + "2021-06-24": 1963.4920424570685, + "2022-05-09": 2388.9433925310072, + "2021-12-28": 3904.0496279363388, + "2024-06-01": 3791.7060066113604, + "2022-08-09": 1709.2613783906038, + "2021-06-27": 1851.4302095944452, + "2022-06-29": 1115.6062939018484, + "2022-11-11": 1266.0727618100063, + "2022-08-12": 1893.2929572785063, + "2021-12-13": 3911.036170384318, + "2023-09-20": 1629.9825637295735, + "2022-11-23": 1162.8720633066082, + "2023-09-12": 1592.5300911426323, + "2022-11-01": 1583.591396359768, + "2023-09-30": 1675.708053330938, + "2021-10-31": 4268.04273030604, + "2022-03-09": 2722.564577030529, + "2023-03-27": 1746.233615804243, + "2023-12-12": 2218.382456514459, + "2023-06-13": 1742.792806814403, + "2023-10-04": 1642.6956137954494, + "2022-06-30": 1030.4648943385087, + "2022-03-30": 3391.025532307677, + "2022-05-27": 1760.2025169272392, + "2024-02-13": 2646.4629050667127, + "2023-05-19": 1809.928493258163, + "2021-07-30": 2394.4043197003016, + "2022-09-12": 1734.2115870535229, + "2023-02-23": 1655.5904415281357, + "2023-07-08": 1861.2134675211812, + "2024-04-16": 3070.375186030533, + "2022-08-02": 1602.5389368981587, + "2022-05-21": 1968.8862542280133, + "2023-09-19": 1643.491792260601, + "2023-02-13": 1488.9480510949832, + "2022-04-02": 3478.914277248095, + "2023-09-29": 1666.908593366313, + "2021-08-29": 3204.220139866779, + "2022-06-18": 993.2743463732144, + "2022-11-24": 1199.244195128128, + "2022-03-27": 3156.069994434169, + "2021-09-05": 3920.875610364272, + "2021-12-10": 4066.4031981822673, + "2023-01-27": 1582.4917002618545, + "2022-06-10": 1732.7186462573611, + "2024-03-02": 3422.5787366731174, + "2022-10-02": 1299.3656132858005, + "2024-06-02": 3791.293168920246, + "2023-12-20": 2211.0648807022985, + "2023-02-07": 1638.6261068827207, + "2023-03-14": 1704.7747909431537, + "2023-08-22": 1654.2307705895992, + "2021-11-01": 4316.121597881977, + "2022-03-05": 2645.0979370952136, + "2022-01-02": 3763.186230907958, + "2021-06-12": 2375.4623952590255, + "2022-07-29": 1719.7103037301156, + "2023-06-27": 1879.4335845840787, + "2022-02-14": 2882.437641936652, + "2023-04-14": 2106.1986089109555, + "2022-05-26": 1842.3757873425814, + "2021-10-23": 4032.582986790928, + "2022-05-25": 1967.753221907405, + "2023-10-08": 1632.5610521456554, + "2023-11-20": 2023.6273713319138, + "2022-01-01": 3727.7059053735466, + "2022-01-08": 3160.9475562463967, + "2022-03-14": 2571.7280510954247, + "2022-06-16": 1120.081499793414, + "2023-12-31": 2295.466028963214, + "2022-11-10": 1208.4201266122295, + "2023-11-06": 1894.531094921208, + "2023-01-25": 1551.009434034596, + "2022-09-28": 1307.8854362625812, + "2022-02-18": 2879.2056940088314, + "2024-05-29": 3798.142320765543, + "2021-08-15": 3190.529768907926, + "2021-10-30": 4320.022567832306, + "2023-06-09": 1840.6077508569822, + "2024-03-17": 3567.0046423018125, + "2022-08-17": 1870.6049547336947, + "2023-01-20": 1563.5012981097418, + "2021-11-28": 4075.7822773228563, + "2021-07-06": 2304.7845439100925, + "2021-12-20": 3847.7272163977987, + "2023-03-30": 1793.9448799282159, + "2021-12-01": 4706.402627177107, + "2023-03-13": 1611.2026135691756, + "2023-09-18": 1639.32625399374, + "2023-02-20": 1698.667056881657, + "2024-05-21": 3730.150143298192, + "2023-03-02": 1643.946747106056, + "2021-07-19": 1860.5584892980662, + "2022-04-09": 3215.9777645178015, + "2022-06-15": 1120.9605016121166, + "2022-12-29": 1196.4733515709659, + "2023-05-14": 1803.443043041881, + "2023-05-13": 1802.630230291909, + "2021-11-07": 4594.760904136889, + "2022-06-01": 1926.0608736182667, + "2024-04-01": 3535.3872581903934, + "2022-01-19": 3118.259160865101, + "2022-06-13": 1240.7721818633925, + "2024-01-19": 2468.694670431303, + "2022-05-14": 2020.378878189955, + "2021-08-22": 3232.3371047102787, + "2023-11-11": 2059.691463780839, + "2021-09-19": 3364.4661330282534, + "2022-08-05": 1669.6177425261742, + "2021-08-10": 3134.6230117983846, + "2022-08-28": 1485.360278683356, + "2022-02-28": 2657.0542669746055, + "2021-11-02": 4445.367899759081, + "2021-07-27": 2235.935228554846, + "2022-06-22": 1085.4859854751696, + "2022-04-17": 3046.6655829007877, + "2022-11-12": 1262.4193115526489, + "2021-06-20": 2165.347462320152, + "2021-08-13": 3227.394409427828, + "2022-03-22": 3006.5039373875993, + "2021-10-19": 3806.7610495911667, + "2023-05-06": 1929.698217357505, + "2021-08-14": 3264.557290368188, + "2023-01-07": 1264.0838200561243, + "2023-04-16": 2097.5850165937322, + "2023-05-16": 1818.4011117780262, + "2023-09-23": 1592.9439393752575, + "2022-10-18": 1324.3667118987237, + "2022-02-17": 3026.3218521151434, + "2022-01-11": 3122.8373006012284, + "2023-07-02": 1917.694729562872, + "2023-08-15": 1839.4733469554126, + "2023-11-19": 1962.1984407552197, + "2022-02-08": 3111.113284560025, + "2021-08-25": 3189.828042486852, + "2023-04-15": 2097.262745146973, + "2024-01-25": 2215.0656363265157, + "2024-03-13": 4008.4805236146312, + "2021-06-09": 2525.0512545187007, + "2022-02-07": 3092.782940341818, + "2022-06-04": 1771.176082547071, + "2024-01-21": 2472.0160592695374, + "2024-02-01": 2273.1432864862945, + "2022-10-06": 1364.5427089403388, + "2022-07-01": 1064.3653283896151, + "2022-07-23": 1538.0328369826211, + "2023-03-04": 1568.1421193188223, + "2023-01-12": 1400.5796196104964, + "2022-04-16": 3039.7321664031233, + "2024-03-16": 3675.3969459884647, + "2021-12-27": 4075.9882306071727, + "2022-07-31": 1702.776005358529, + "2023-11-27": 2024.7559427086544, + "2024-01-10": 2411.611547455281, + "2023-03-19": 1797.2921628202243, + "2022-06-26": 1233.9972281557352, + "2022-07-06": 1138.1501685697513, + "2024-03-15": 3697.5756690784724, + "2023-06-21": 1829.7824262817874, + "2023-06-15": 1645.460278534929, + "2021-12-25": 4065.0117064794917, + "2021-07-11": 2124.414590333147, + "2024-06-23": 3493.4261105621144, + "2022-07-21": 1509.830918050827, + "2022-07-02": 1051.8786549004953, + "2022-09-02": 1590.4715748204233, + "2023-07-11": 1875.0541049632097, + "2022-01-14": 3272.376876337825, + "2024-01-01": 2302.770349848175, + "2022-03-11": 2577.34227307611, + "2024-02-14": 2745.099291044224, + "2023-09-06": 1630.553627874499, + "2024-04-03": 3314.2879535300726, + "2021-06-13": 2371.145012381773, + "2024-06-15": 3543.996298560991, + "2022-05-19": 1958.5288229793593, + "2024-06-03": 3800.800395042959, + "2022-10-13": 1275.5834252860814, + "2022-03-17": 2792.5094729304183, + "2024-01-02": 2380.7222627716787, + "2023-04-26": 1877.193574314775, + "2021-07-03": 2209.563480519705, + "2022-01-06": 3423.718602979043, + "2022-01-25": 2425.3742984837527, + "2023-10-25": 1788.692674247013, + "2022-04-27": 2869.0929039928037, + "2023-04-03": 1800.2589592594343, + "2021-08-21": 3270.936372174491, + "2022-08-15": 1906.5035107282367, + "2022-10-27": 1553.014858621327, + "2023-09-04": 1632.4443734796612, + "2023-02-14": 1515.4027526831374, + "2021-11-17": 4198.738423685249, + "2021-07-09": 2127.9345381041235, + "2022-07-17": 1353.715206292819, + "2021-09-16": 3596.327192219008, + "2022-06-03": 1770.12116283705, + "2022-06-14": 1199.2260910290272, + "2022-01-07": 3203.834604681614, + "2022-03-29": 3408.5606313701214, + "2023-12-03": 2162.037001064913, + "2023-08-02": 1853.7038878416924, + "2023-08-27": 1651.1841537694993, + "2023-10-20": 1606.5432848705484, + "2022-11-04": 1610.8405573429973, + "2023-05-25": 1794.7177773689598, + "2024-05-03": 3029.944346821867, + "2024-03-08": 3929.2306788103338, + "2022-02-20": 2642.3735172182255, + "2023-11-28": 2031.415143354589, + "2024-04-11": 3535.8368606748554, + "2023-06-22": 1898.438840818786, + "2023-01-26": 1607.3752762556985, + "2022-12-19": 1180.198351861966, + "2024-01-14": 2538.8736196547684, + "2023-12-15": 2263.882257171251, + "2021-10-27": 4013.1865434141596, + "2023-10-10": 1578.5558058095608, + "2022-09-20": 1353.548574880012, + "2024-02-08": 2426.4523429986957, + "2021-08-04": 2603.8729001242045, + "2023-11-12": 2051.289923748857, + "2024-06-21": 3503.4086322375006, + "2023-05-31": 1867.7931716143923, + "2024-03-23": 3362.48793481736, + "2021-08-31": 3375.3018146746554, + "2022-04-21": 3090.829482645254, + "2024-03-04": 3522.624224920206, + "2023-09-10": 1622.8878733469708, + "2024-04-13": 3222.499860621223, + "2024-02-29": 3448.50143974521, + "2022-11-06": 1618.6984170287258, + "2022-07-18": 1474.7535847725223, + "2023-10-19": 1556.514618700774, + "2023-07-21": 1892.4827562223588, + "2023-06-30": 1888.4182029621636, + "2023-11-08": 1887.1852795037541, + "2023-02-11": 1519.8527989347858, + "2021-12-26": 4058.552555755541, + "2023-12-22": 2308.306944466685, + "2022-10-16": 1284.8623999920414, + "2021-11-24": 4263.573459818612, + "2023-05-20": 1814.9528329092082, + "2023-12-29": 2343.8291710796184, + "2023-12-04": 2228.718584367442, + "2024-04-10": 3510.3727506127843, + "2021-05-30": 2402.532283210343, + "2024-05-08": 3004.220940383108, + "2022-08-04": 1618.6219349637277, + "2023-09-27": 1596.3807228815979, + "2023-09-21": 1593.3856646450424, + "2021-12-06": 4132.741579669844, + "2023-06-02": 1890.6337234381083, + "2022-03-15": 2562.7677410315846, + "2024-04-21": 3160.0744500944834, + "2023-07-22": 1888.487057490296, + "2022-12-25": 1217.5828836323851, + "2022-09-01": 1556.655624836371, + "2021-07-02": 2078.173638508155, + "2022-09-03": 1555.245772912392, + "2022-10-28": 1519.4082583932802, + "2021-09-12": 3405.2463761816684, + "2022-05-03": 2831.1945985836196, + "2021-07-16": 1908.5012912472107, + "2024-03-21": 3516.237639992645, + "2022-10-01": 1324.6543203428132, + "2023-01-09": 1319.4138370545031, + "2021-08-24": 3287.183814524279, + "2023-10-11": 1562.8549057814826, + "2021-06-21": 1977.6204846114406, + "2023-07-19": 1907.629970898301, + "2024-05-05": 3135.3330927964575, + "2021-08-23": 3331.3416914674945, + "2022-09-21": 1335.9870367812255, + "2022-02-16": 3135.8537116244775, + "2023-05-05": 1928.0523666098816, + "2022-11-30": 1270.1058325398428, + "2023-04-29": 1901.9099264564393, + "2024-05-18": 3113.68870791231, + "2024-06-10": 3676.1390638746598, + "2023-06-14": 1739.274381554306, + "2023-03-23": 1759.483660202299, + "2023-10-16": 1583.0219938427456, + "2021-09-25": 2914.1129845110872, + "2024-05-22": 3747.0418368053024, + "2024-02-10": 2495.3644253912607, + "2021-11-14": 4598.22377755786, + "2022-01-22": 2446.0039720760146, + "2022-05-15": 2063.547924473854, + "2024-04-07": 3391.934131364736, + "2023-01-31": 1575.7111942520337, + "2021-10-29": 4360.953521658037, + "2022-05-11": 2303.4623548192103, + "2024-05-23": 3793.7398128160985, + "2024-04-08": 3629.472537231993, + "2022-01-27": 2416.2122723520506, + "2023-10-05": 1635.8071668018285, + "2022-08-22": 1574.6474071823397, + "2024-02-20": 2930.558692672859, + "2023-03-16": 1659.9639767753413, + "2023-11-17": 1961.6382846915578, + "2023-12-11": 2233.4536016954585, + "2023-05-21": 1813.1541191684007, + "2022-03-25": 3129.0150718425857, + "2021-09-30": 2990.353714642005, + "2023-09-14": 1625.8528080021156, + "2024-01-27": 2268.124824707984, + "2023-02-16": 1688.5749795818915, + "2023-05-04": 1898.3802681455918, + "2022-04-03": 3493.33165910845, + "2021-07-31": 2458.4278032971893, + "2021-06-25": 1861.1511636164262, + "2022-10-26": 1535.8183716844092, + "2023-11-26": 2075.4218333783856, + "2021-07-07": 2363.8504040867483, + "2021-12-29": 3776.0777125927198, + "2024-06-04": 3775.1330579601354, + "2023-11-16": 2040.4606507238966, + "2021-10-10": 3542.964878371342, + "2023-06-29": 1852.0863720787243, + "2023-10-27": 1782.5209736384847, + "2023-05-01": 1843.2762122440988, + "2023-04-12": 1894.9639777423665, + "2023-01-08": 1264.369301630872, + "2022-12-24": 1218.8616037963616, + "2023-06-11": 1752.2352942997672, + "2022-09-24": 1327.1083893920272, + "2021-07-18": 1956.2534791714058, + "2022-04-13": 3058.1185799456152, + "2022-09-10": 1728.6157957703467, + "2024-02-02": 2305.1128776101946, + "2021-10-13": 3499.8991041161557, + "2024-03-30": 3512.9501512018664, + "2022-02-10": 3191.2290734649278, + "2023-05-15": 1827.196029723383, + "2023-11-22": 2022.2359702805072, + "2022-08-19": 1707.703270432275, + "2023-09-28": 1627.8947971238524, + "2022-11-07": 1579.9091739466717, + "2023-06-03": 1901.7504842812689, + "2024-01-18": 2515.8051722859677, + "2021-09-22": 2935.7352429226657, + "2021-06-05": 2649.2716334281663, + "2021-06-03": 2811.4050516142383, + "2022-08-08": 1770.5986779529464, + "2024-02-15": 2805.2145033779693, + "2021-06-29": 2174.665621113668, + "2023-04-02": 1813.3688425723199, + "2022-08-21": 1615.0011034106951, + "2022-03-06": 2630.6317729622483, + "2022-03-04": 2717.637846723978, + "2024-03-24": 3374.3778903277753, + "2022-04-18": 2938.2049781241294, + "2022-05-02": 2834.8091060705647, + "2023-08-26": 1649.285330192964, + "2021-09-21": 2976.409933229385, + "2022-08-13": 1985.9104218081811, + "2022-07-15": 1218.934761698633, + "2022-06-12": 1467.9556923931018, + "2023-03-22": 1793.6243400837027, + "2021-11-08": 4732.695069702386, + "2022-12-21": 1211.4769187193608, + "2022-03-26": 3122.7734731649125, + "2022-10-03": 1299.9181258800825, + "2023-10-28": 1786.7779765000002, + "2022-05-24": 1967.198213177794, + "2021-07-26": 2328.802992705553, + "2023-03-28": 1735.4762375525036, + "2021-08-03": 2495.460202995261, + "2023-02-28": 1629.6262097644783, + "2023-03-06": 1565.2129648984017, + "2021-12-14": 3792.316854218432, + "2023-04-10": 1862.0461039798975, + "2022-07-20": 1558.8389501689626, + "2024-04-27": 3136.055848545026, + "2023-12-06": 2266.2584334605513, + "2021-12-03": 4499.465273409397, + "2021-08-11": 3221.8804309754396, + "2023-08-09": 1855.9314628077407, + "2022-12-16": 1210.0195209926, + "2021-10-24": 4074.7471923940807, + "2024-06-06": 3843.7452064045483, + "2023-04-22": 1859.2739705968852, + "2022-09-23": 1309.4532532433243, + "2021-09-07": 3657.3959509640185, + "2021-07-22": 1996.4276910752635, + "2021-05-31": 2536.7302562956797, + "2022-10-10": 1311.5226639747223, + "2022-12-30": 1194.3036975108619, + "2024-05-15": 2947.4008735314424, + "2023-11-10": 2098.007559052888, + "2022-04-29": 2861.2504245426867, + "2024-01-30": 2316.354552355012, + "2022-12-05": 1289.2893906489692, + "2022-05-28": 1770.8917717576737, + "2023-05-02": 1836.8974367795015, + "2023-11-14": 2041.7978598922618, + "2021-10-09": 3589.7687541116825, + "2021-11-20": 4307.118298117229, + "2022-10-23": 1313.0870491136723, + "2024-01-23": 2221.502060888, + "2024-01-31": 2324.8627731319557, + "2023-02-08": 1671.0526020877185, + "2024-01-11": 2609.008959188797, + "2023-06-16": 1670.5461735376664, + "2023-10-30": 1807.7457141222906, + "2021-09-11": 3277.8276367106287, + "2023-12-17": 2215.3903323415457, + "2024-02-26": 3107.5455618426317, + "2022-02-19": 2763.030716009821, + "2024-01-05": 2245.422589130324, + "2023-08-23": 1647.0333552641366, + "2022-08-26": 1646.6152530200618, + "2022-06-24": 1194.4729393171078, + "2022-06-11": 1561.5214801066907, + "2021-08-20": 3233.2468455698336, + "2024-05-11": 2916.2954645949453, + "2021-07-28": 2295.6464490514095, + "2024-02-18": 2805.2015219288805, + "2021-06-14": 2518.8094202835914, + "2024-03-11": 4027.7623335224225, + "2022-09-13": 1626.3459527887082, + "2023-08-01": 1833.2733667014345, + "2021-08-30": 3208.3542329490137, + "2021-08-19": 3018.6632708399934, + "2022-05-22": 2009.1522531869853, + "2023-07-16": 1931.32209668583, + "2024-06-17": 3534.693937325542, + "2022-05-20": 2013.5521118277886, + "2022-06-07": 1765.5911007323753, + "2024-06-14": 3484.8567080128055, + "2022-10-09": 1318.5069386186613, + "2022-12-11": 1272.4464061235074, + "2021-05-28": 2534.8106819446984, + "2024-03-14": 3919.753888578037, + "2024-02-21": 2920.9307937642025, + "2022-04-23": 2959.0393142929543, + "2024-06-13": 3495.310128436806, + "2023-08-28": 1648.499874372775, + "2023-07-04": 1954.2822557562383, + "2023-08-13": 1848.6781665903065, + "2022-01-31": 2562.7714001328445, + "2022-03-07": 2533.519311217601, + "2024-03-31": 3619.860033867718, + "2023-12-09": 2358.1513105130784, + "2024-04-20": 3064.139645567434, + "2024-01-15": 2516.7430294778214, + "2023-12-13": 2187.359727574453, + "2022-08-16": 1882.076996955217, + "2023-04-23": 1863.2254241977303, + "2023-04-17": 2084.3581733240044, + "2023-05-08": 1857.9855529935062, + "2024-02-27": 3241.8718324083225, + "2024-04-02": 3308.0816238498596, + "2021-08-28": 3245.2095029284815, + "2021-10-25": 4142.4519244576895, + "2021-10-20": 3999.660682078486, + "2024-02-06": 2333.8509773090886, + "2022-07-22": 1584.4955292610098, + "2024-05-31": 3763.999239968519, + "2023-02-09": 1625.20799603634, + "2024-04-09": 3620.5532915283566, + "2022-05-12": 1930.497148533076, + "2023-05-30": 1903.7469322287618, + "2024-05-25": 3746.1617285885654, + "2023-11-04": 1837.2556369608346, + "2022-05-01": 2773.299715216919, + "2021-11-06": 4469.185886335968, + "2024-06-09": 3689.903661827545, + "2024-02-07": 2375.5035757867963, + "2023-09-25": 1578.4425589096595, + "2023-07-03": 1960.1290005025942, + "2022-03-16": 2684.8124402385374, + "2024-03-19": 3300.3576156892395, + "2024-03-10": 3928.588844479554, + "2021-11-18": 4130.374156295713, + "2022-09-15": 1588.7746822329982, + "2021-11-29": 4340.733745043279, + "2023-12-28": 2383.326084047728, + "2021-11-04": 4527.060308785304, + "2024-05-02": 2977.679973598208, + "2021-11-10": 4722.730623103984, + "2023-09-02": 1633.5154446535207, + "2022-02-02": 2715.8971092580105, + "2022-11-05": 1641.6111001243569, + "2024-04-19": 3078.762155705607, + "2024-05-28": 3851.4960658873383, + "2021-11-25": 4416.817482417848, + "2024-01-24": 2229.5761271233982, + "2022-02-15": 3099.1421980582572, + "2022-05-13": 2075.5084585534682, + "2022-10-29": 1622.8327771048844, + "2021-09-20": 3077.409906557433, + "2024-01-12": 2604.1839946723853, + "2023-08-11": 1846.4334362617592, + "2022-07-04": 1095.2662141914407, + "2024-02-11": 2514.2240204384098, + "2024-06-08": 3685.037187207125, + "2023-01-16": 1565.3399535537367, + "2023-11-29": 2048.4794618957053, + "2023-10-15": 1555.6069132682233, + "2022-09-29": 1332.0427209022307, + "2022-12-27": 1217.3083539097825, + "2021-05-29": 2392.88374567085, + "2023-11-30": 2035.5856128150128, + "2021-10-16": 3863.1591284890596, + "2023-03-17": 1726.408591795439, + "2023-06-08": 1843.960422350612, + "2023-12-16": 2243.6231784401084, + "2022-06-19": 1036.7953378718025, + "2023-01-13": 1412.924404759168, + "2024-04-04": 3331.9586108704134, + "2022-05-08": 2548.4587548386935, + "2023-04-07": 1858.7004700155765, + "2021-07-20": 1760.548457440572, + "2022-09-25": 1316.5184925168905, + "2021-06-11": 2435.951979923259, + "2023-02-02": 1672.5867942879236, + "2023-06-10": 1744.7677698595223, + "2024-01-20": 2469.6469880842915, + "2023-10-21": 1611.0161735378147, + "2023-08-16": 1821.8319790596506, + "2024-05-24": 3719.2025991200912, + "2022-03-28": 3349.0890068324275, + "2023-11-15": 2010.6243510382453, + "2021-09-03": 3934.1548094841, + "2023-04-05": 1909.8146202912947, + "2024-03-29": 3540.054396186204, + "2023-11-03": 1799.7320912800644, + "2023-08-31": 1699.0924346535755, + "2023-02-25": 1598.4005123677048, + "2023-02-15": 1579.0909480597008, + "2022-12-03": 1271.2233398411042, + "2023-02-04": 1665.1901129252276, + "2022-02-26": 2788.682911774693, + "2023-01-02": 1215.6905212868414, + "2023-07-28": 1868.5288494149404, + "2022-03-23": 2967.0691964770253, + "2023-03-29": 1803.425394936233, + "2023-03-31": 1813.381833583892, + "2023-05-12": 1770.166984052352, + "2024-05-27": 3911.4958000180764, + "2024-01-04": 2239.449004040109, + "2021-11-21": 4352.84875717085, + "2022-07-08": 1233.0033871146006, + "2023-07-26": 1858.7975824909481, + "2023-11-13": 2058.926291897119, + "2023-03-01": 1652.7642957145993, + "2023-03-12": 1479.5672519760694, + "2022-12-22": 1213.3348893097505, + "2024-01-29": 2270.720413251889, + "2024-05-04": 3121.114418683782, + "2022-01-03": 3795.053923214271, + "2022-10-30": 1597.9543214199305, + "2023-05-22": 1815.2221561164233, + "2022-08-24": 1649.7473526667513, + "2021-12-11": 4022.1837819530356, + "2022-08-03": 1645.2807376845217, + "2021-08-08": 3102.7411544514366, + "2023-05-17": 1817.623210420559, + "2023-10-24": 1810.5978038432124, + "2023-06-05": 1864.780384936013, + "2023-11-02": 1832.9253555569676, + "2023-12-18": 2168.634993815699, + "2023-04-04": 1863.2549753435464, + "2022-02-13": 2917.4893679530646, + "2023-11-24": 2089.6268200219065, + "2023-08-21": 1671.7101325508556, + "2023-02-27": 1637.2750071908815, + "2024-03-25": 3490.6157713892703, + "2023-08-07": 1827.7778931325702, + "2021-11-23": 4178.910334399232, + "2023-10-29": 1791.3292765096062, + "2023-07-25": 1855.4145533948076, + "2024-05-16": 2992.142027099908, + "2023-01-28": 1582.0059290471597, + "2024-06-07": 3800.5875633517303, + "2024-06-18": 3427.3268789370245, + "2022-02-03": 2640.7129484728785, + "2022-07-27": 1484.273500078183, + "2022-05-10": 2359.6743523288083, + "2021-11-27": 4124.396974727399, + "2024-03-05": 3682.621744949228, + "2024-04-06": 3337.250477175273, + "2022-08-06": 1715.1626163958206, + "2021-11-09": 4790.673804465731, + "2022-11-27": 1213.9401883120252, + "2021-12-30": 3711.1492744532466, + "2023-08-14": 1845.471727544141, + "2022-05-05": 2815.2750735538816, + "2023-05-26": 1817.1770601337453, + "2024-05-01": 2920.6713086264863, + "2022-12-31": 1197.5659545452365, + "2022-07-12": 1070.2364334493966, + "2022-02-21": 2681.703159291462, + "2024-02-16": 2819.8693147377617, + "2023-05-28": 1849.2120312376787, + "2021-06-06": 2690.7476977824695, + "2024-06-22": 3498.600744950452, + "2022-11-26": 1216.0034492919733, + "2021-08-05": 2711.0553956146523, + "2022-03-19": 2951.116429249254, + "2023-02-21": 1677.825206489892, + "2022-05-23": 2047.8462960067757, + "2022-12-14": 1322.716568647638, + "2022-04-30": 2817.486865511175, + "2023-12-23": 2292.445414040708, + "2021-12-23": 3960.890311214166, + "2023-12-14": 2282.347515370628, + "2023-06-24": 1887.9823898859822, + "2021-05-26": 2801.584004842633, + "2022-02-11": 3072.4901794440802, + "2024-02-03": 2307.63822350803, + "2021-09-01": 3541.729266164891, + "2021-07-23": 2058.788034685797, + "2022-06-23": 1101.5648645436552, + "2023-03-05": 1569.4070336727357, + "2022-05-04": 2845.971649066277, + "2022-03-02": 2969.4378943511624, + "2024-05-09": 2996.4332682297763, + "2021-10-22": 4095.497207202847, + "2023-06-23": 1884.8746515841876, + "2022-11-16": 1220.3366119182106, + "2022-10-14": 1321.5908280946162, + "2023-04-08": 1867.4413311586866, + "2022-11-25": 1188.5711431251955, + "2021-10-01": 3213.8295624033854, + "2023-08-17": 1757.2955451414255, + "2024-04-14": 3053.206029700923, + "2023-01-14": 1539.0246051174406, + "2023-12-26": 2235.6352659808026, + "2023-11-09": 1943.613431942541, + "2022-09-18": 1420.048965799842, + "2022-08-10": 1774.735887416237, + "2022-09-04": 1557.5861472086995, + "2023-05-11": 1816.6016914091085, + "2023-07-24": 1850.5363635927517, + "2021-09-26": 2969.9406993951575, + "2023-10-14": 1552.9106074786898, + "2023-08-19": 1663.2305554855504, + "2022-04-06": 3299.5874541426883, + "2021-06-30": 2147.6556124710664, + "2022-05-16": 2024.985243036137, + "2024-01-17": 2544.651699826289, + "2023-04-19": 1984.2401486573895, + "2022-01-26": 2522.379143911153, + "2023-06-18": 1730.4372666734064, + "2022-02-24": 2433.2263709813164, + "2022-05-06": 2699.6401957871426, + "2022-12-01": 1281.283070813686, + "2024-04-23": 3205.6089684957246, + "2021-06-23": 1991.9173798044321, + "2023-02-12": 1533.5705873282648, + "2022-01-15": 3320.1087655379883, + "2023-01-21": 1653.2116495632572, + "2023-08-08": 1840.3356250275526, + "2024-07-26T10": 3246.2405832634176, + "2024-07-26T11": 3241.844959662654, + "2024-07-26T12": 3243.8937879020486, + "2024-07-26T13": 3239.8798183651315, + "2024-07-26T14": 3242.9208803869988, + "2024-07-26T15": 3251.21197064078, + "2024-07-26T16": 3254.6292015011845, + "2024-07-26T17": 3244.745628086502, + "2024-07-27": 3269.378920964582, + "2024-07-28": 3254.4088150831517, + "2024-07-28T05": 3228.238361051321, + "2024-07-26T21": 3253.626103233505, + "2024-07-27T02": 3252.112312268505, + "2024-07-28T01": 3245.1305415643465, + "2024-07-27T10": 3277.9329123381626, + "2024-07-28T02": 3246.488354603029, + "2024-07-27T19": 3241.682316493383, + "2024-07-27T09": 3269.3464206644717, + "2024-07-27T06": 3254.542520347473, + "2024-07-27T18": 3259.66452859165, + "2024-07-26T22": 3264.780767175188, + "2024-07-27T13": 3289.505745405785, + "2024-07-27T12": 3279.8948585070198, + "2024-07-27T16": 3282.2614813160303, + "2024-07-27T05": 3254.9469466094706, + "2024-07-26T23": 3279.3354441461393, + "2024-07-26T20": 3274.4726789184606, + "2024-07-27T08": 3271.117346186576, + "2024-07-28T03": 3251.885636604714, + "2024-07-27T01": 3260.3617438998226, + "2024-07-28T09": 3228.218956276388, + "2024-07-28T10": 3249.100238886586, + "2024-07-27T00": 3276.3422962021987, + "2024-07-28T00": 3243.8335892374257, + "2024-07-27T04": 3245.6786024047524, + "2024-07-27T14": 3320.303138433197, + "2024-07-26T18": 3247.8320359949766, + "2024-07-27T07": 3269.8538857965455, + "2024-07-27T11": 3273.2501960318154, + "2024-07-27T22": 3284.581914670619, + "2024-07-27T03": 3259.7604823739835, + "2024-07-27T20": 3256.307056348675, + "2024-07-27T23": 3274.140583220686, + "2024-07-28T08": 3227.004162046218, + "2024-07-27T21": 3233.3537214441235, + "2024-07-28T07": 3221.9590998183116, + "2024-07-27T15": 3311.307334513312, + "2024-07-26T19": 3261.8980802740184, + "2024-07-28T04": 3239.498685826572, + "2024-07-28T06": 3215.4779131546916, + "2024-07-27T17": 3273.1312421203625, + "2024-07-29": 3332.379008680967, + "2024-07-28T20": 3265.852175245736, + "2024-07-28T16": 3270.6007086535183, + "2024-07-29T07": 3369.6626861810064, + "2024-07-28T23": 3269.234614, + "2024-07-28T15": 3265.885739142273, + "2024-07-28T18": 3274.616956386999, + "2024-07-29T04": 3346.0183259275905, + "2024-07-29T02": 3313.2437237088197, + "2024-07-29T06": 3375.663517840292, + "2024-07-28T21": 3257.954172, + "2024-07-29T03": 3345.7377347424276, + "2024-07-28T12": 3266.269744384704, + "2024-07-29T05": 3347.968574361138, + "2024-07-28T17": 3267.8824691969417, + "2024-07-29T00": 3290.8316385553508, + "2024-07-29T01": 3284.4387495357487, + "2024-07-28T22": 3259.4322141000002, + "2024-07-28T19": 3272.975972788213, + "2024-07-28T14": 3265.618181271268, + "2024-07-28T11": 3259.120806702818, + "2024-07-28T13": 3271.1591289406183, + "2024-07-29T08": 3372.1095807077095, + "2024-07-29T09": 3383.184576842082, + "2024-07-29T10": 3391.0066284024265, + "2024-07-29T11": 3382.8139792284924, + "2024-07-29T12": 3375.55621542076, + "2024-07-29T13": 3360.1335675079995, + "2024-07-30": 3315.867677645932, + "2024-07-29T23": 3326.121335412743, + "2024-07-29T18": 3313.4861259033983, + "2024-07-29T21": 3321.9194986753546, + "2024-07-29T22": 3342.9683608418136, + "2024-07-29T17": 3300.0432728011456, + "2024-07-29T15": 3307.561030930569, + "2024-07-30T01": 3325.8768938851126, + "2024-07-29T19": 3309.9258966683965, + "2024-07-30T04": 3314.8456184065894, + "2024-07-29T14": 3329.3114834066864, + "2024-07-29T20": 3320.6579978931222, + "2024-07-30T03": 3316.6527947311884, + "2024-07-30T00": 3314.2205028372878, + "2024-07-29T16": 3275.995631642029, + "2024-07-30T02": 3304.9667017228617, + "2024-07-30T08": 3344.173815964993, + "2024-07-30T06": 3319.8367293836686, + "2024-07-30T05": 3308.415661058948, + "2024-07-30T07": 3339.556134584945, + "2024-07-30T09": 3336.2444621192117, + "2024-07-30T10": 3335.3349154671782, + "2024-07-30T11": 3336.0131218990787, + "2024-07-30T12": 3332.0329900152983, + "2024-07-30T13": 3348.415144240603, + "2024-07-31": 3301.242187479457, + "2024-07-31T00": 3275.1425668970605, + "2024-07-31T05": 3278.5081686600356, + "2024-07-30T23": 3276.1233192018694, + "2024-07-30T19": 3270.9090199253756, + "2024-07-30T16": 3319.1838288188032, + "2024-07-30T17": 3294.492674625726, + "2024-07-30T18": 3285.8033530546813, + "2024-07-30T20": 3263.196629209654, + "2024-07-30T15": 3314.695991382133, + "2024-07-31T03": 3293.0926254773817, + "2024-07-30T21": 3274.341119216456, + "2024-07-31T01": 3278.9002460240513, + "2024-07-31T07": 3323.5483017341894, + "2024-07-31T06": 3315.9997988009186, + "2024-07-31T02": 3289.1994180888096, + "2024-07-30T22": 3277.1717214862488, + "2024-07-30T14": 3322.035104458687, + "2024-07-31T04": 3277.433923771512, + "2024-07-31T08": 3319.808890200836, + "2024-07-31T09": 3318.3188079778165, + "2024-07-31T10": 3313.221752332976, + "2024-07-31T11": 3315.4018031957135, + "2024-08-01": 3172.1108948690935, + "2024-07-31T14": 3319.461186787208, + "2024-07-31T23": 3232.460483373134, + "2024-07-31T13": 3330.245494805577, + "2024-07-31T21": 3229.564989507734, + "2024-08-01T01": 3215.2468882325215, + "2024-07-31T12": 3318.6938708818057, + "2024-07-31T18": 3304.6494052583225, + "2024-07-31T19": 3275.65924376031, + "2024-07-31T16": 3298.8287651101887, + "2024-08-01T02": 3193.8633268135395, + "2024-07-31T22": 3233.1258094453997, + "2024-07-31T20": 3234.6392546549814, + "2024-07-31T17": 3306.8069752229803, + "2024-08-01T00": 3232.8170290336766, + "2024-07-31T15": 3309.0326399681035, + "2024-08-01T06": 3172.649019369437, + "2024-08-01T05": 3166.9622837387847, + "2024-08-01T04": 3163.2942285696276, + "2024-08-01T03": 3183.4436289472515, + "2024-08-01T07": 3170.856429538238, + "2024-08-01T08": 3176.136678552874, + "2024-08-01T09": 3184.7247221786415, + "2024-08-01T10": 3184.6030377971965, + "2024-08-01T11": 3187.8936987462844, + "2024-08-01T12": 3188.391784151163, + "2024-08-01T13": 3196.850563167647, + "2024-08-01T14": 3183.5145800498494, + "2024-08-01T15": 3119.020523811139, + "2024-08-02": 3132.18973912412, + "2024-08-02T00": 3202.4508671867616, + "2024-08-01T20": 3133.5012855455834, + "2024-08-01T21": 3166.5128450904326, + "2024-08-02T04": 3165.6569341240215, + "2024-08-01T19": 3117.391157079486, + "2024-08-01T16": 3104.6183509258817, + "2024-08-02T02": 3154.5927408688517, + "2024-08-01T17": 3096.896105897972, + "2024-08-01T23": 3204.1200195139468, + "2024-08-02T01": 3176.1041641892425, + "2024-08-01T22": 3199.5878398440027, + "2024-08-01T18": 3097.3039147963514, + "2024-08-02T03": 3161.6643422245847, + "2024-08-02T05": 3155.609674176225, + "2024-08-02T06": 3141.1082447682484, + "2024-08-02T07": 3152.9944182777544, + "2024-08-02T08": 3144.380205605592, + "2024-08-02T09": 3159.1990392922376, + "2024-08-02T10": 3150.7603564967803, + "2024-08-02T11": 3156.0276076718224, + "2024-08-02T12": 3146.0924017843417, + "2024-08-02T13": 3150.6047943469434, + "2024-08-02T14": 3112.732271714797, + "2024-08-02T15": 3016.6780610907135, + "2024-08-03": 2959.508110294467, + "2024-08-02T16": 3032.22859282549, + "2024-08-02T22": 2991.7326124565775, + "2024-08-02T23": 2984.6328792161503, + "2024-08-03T00": 2981.2747325635323, + "2024-08-03T01": 2937.150740974736, + "2024-08-02T19": 3009.8684824281927, + "2024-08-02T18": 3019.28232499224, + "2024-08-02T21": 2994.905825791376, + "2024-08-02T17": 3029.1910051021114, + "2024-08-02T20": 3010.281580253381, + "2024-08-03T02": 2959.4554383318386, + "2024-08-03T06": 2978.7837395846645, + "2024-08-03T19": 2902.132603842404, + "2024-08-03T10": 2989.003845794143, + "2024-08-03T09": 2980.4512270586106, + "2024-08-03T15": 2970.5078574088234, + "2024-08-03T22": 2910.5078791115266, + "2024-08-03T05": 2964.1694920770647, + "2024-08-03T08": 2977.6978988167943, + "2024-08-03T14": 3007.340539065321, + "2024-08-03T18": 2905.455298366033, + "2024-08-03T17": 2910.353455443218, + "2024-08-03T12": 3005.319202631516, + "2024-08-03T20": 2901.238427233495, + "2024-08-03T04": 2974.4519101745245, + "2024-08-03T16": 2930.232445730243, + "2024-08-03T11": 2993.1544944804346, + "2024-08-03T03": 2971.690228376648, + "2024-08-03T21": 2891.485107651313, + "2024-08-03T07": 2986.44031442835, + "2024-08-03T13": 3002.7656414749454, + "2024-08-04": 2838.8292435099947, + "2024-08-03T23": 2905.078985103651, + "2024-08-04T17": 2732.4576601987796, + "2024-08-04T13": 2914.971719228542, + "2024-08-04T06": 2914.436085749824, + "2024-08-04T12": 2916.2892338818174, + "2024-08-04T10": 2909.182036444694, + "2024-08-04T16": 2823.214866263843, + "2024-08-04T15": 2840.2592970525484, + "2024-08-04T00": 2907.9805652547225, + "2024-08-04T11": 2913.9554672246545, + "2024-08-04T01": 2897.7700375651566, + "2024-08-04T03": 2911.9802350257296, + "2024-08-04T04": 2912.5866621457994, + "2024-08-04T07": 2898.6103768981534, + "2024-08-04T08": 2895.951342507091, + "2024-08-04T18": 2699.1902587508403, + "2024-08-04T09": 2909.3855639438466, + "2024-08-04T02": 2916.107448912298, + "2024-08-04T05": 2907.3410704824955, + "2024-08-04T14": 2870.6119040070166, + "2024-08-05": 2335.980916680292, + "2024-08-05T01": 2541.827199194524, + "2024-08-04T19": 2729.992648256349, + "2024-08-04T22": 2728.666839590709, + "2024-08-05T03": 2317.331905068599, + "2024-08-05T02": 2326.8116306466154, + "2024-08-04T23": 2720.697174215421, + "2024-08-05T00": 2690.6498649713913, + "2024-08-05T04": 2311.9730211000747, + "2024-08-05T06": 2311.3828516471394, + "2024-08-04T20": 2753.8027293452096, + "2024-08-05T05": 2335.4396588653312, + "2024-08-04T21": 2752.8181246335384, + "2024-08-05T07": 2263.657387553605, + "2024-08-05T08": 2355.991624224204, + "2024-08-05T09": 2328.0130096315306, + "2024-08-05T10": 2317.648272449822, + "2024-08-05T11": 2257.599241416022, + "2024-08-05T12": 2288.155070933319, + "2024-08-05T13": 2222.0144325808665, + "2024-08-05T14": 2341.306715427065, + "2024-08-05T15": 2426.4401130332812, + "2024-08-06": 2443.5806038896117, + "2024-08-05T19": 2390.926771101388, + "2024-08-05T20": 2423.5366877971464, + "2024-08-05T21": 2443.180417171059, + "2024-08-06T02": 2510.7515290551737, + "2024-08-05T18": 2419.805752951516, + "2024-08-05T23": 2443.4194550006805, + "2024-08-05T16": 2475.994142597416, + "2024-08-06T05": 2502.2492498791394, + "2024-08-05T17": 2462.9867565030954, + "2024-08-06T00": 2511.3490365480643, + "2024-08-06T04": 2494.6962517592583, + "2024-08-06T03": 2497.8844148838625, + "2024-08-05T22": 2446.896970986999, + "2024-08-06T01": 2528.920122558688, + "2024-08-06T06": 2521.82497562834, + "2024-08-06T07": 2511.5211066224733, + "2024-08-06T08": 2522.1163465389054, + "2024-08-06T09": 2454.563850004987, + "2024-08-06T10": 2458.657317188292, + "2024-08-06T11": 2457.372925847319, + "2024-08-06T12": 2461.6082362752204, + "2024-08-06T13": 2441.14561785588, + "2024-08-06T14": 2451.4320010338474 + }, + "USD ethereum_classic": { + "2024-06-28": 23.918328334780004, + "2024-06-30": 23.265551192774254, + "2024-07-15": 23.023909859470187, + "2024-07-18": 23.157351507003877, + "2024-07-14": 22.41788778045527, + "2024-07-11": 21.09773749847807, + "2024-07-19": 23.029985735457792, + "2024-07-12": 20.957046598969658, + "2024-07-24": 23.608824645154648, + "2024-07-08": 20.17829374800562, + "2024-07-07": 20.548681699599115, + "2024-07-13": 21.96442739127849, + "2024-07-09": 20.732296826108982, + "2024-07-02": 23.190333654173802, + "2024-07-20": 23.651906125456932, + "2024-06-29": 23.432906972506235, + "2024-07-21": 23.704244762350697, + "2024-07-23": 24.249368232802563, + "2024-07-10": 20.95587110284127, + "2024-07-01": 23.690567540568026, + "2024-06-26": 23.533681678799354, + "2024-07-17": 23.6190667478151, + "2024-07-22": 23.533263924979533, + "2024-07-04": 21.584790062610075, + "2024-06-25": 23.418809361110036, + "2024-07-26": 22.584987063636103, + "2024-07-03": 22.589897537550243, + "2024-07-05": 19.249833487406843, + "2024-07-25": 22.011164634251227, + "2024-07-16": 23.5926738992917, + "2024-07-06": 20.660210077230317, + "2024-06-27": 23.696218975448172, + "2024-07-22T13": 23.52729336, + "2024-07-25T10": 21.901112759999997, + "2024-07-26T06": 22.635472, + "2024-07-24T14": 23.693553500000004, + "2024-07-21T20": 23.956706, + "2024-07-21T07": 23.6168469, + "2024-07-21T14": 23.62102842, + "2024-07-22T23": 23.327025100635172, + "2024-07-24T07": 23.627291160000002, + "2024-07-20T11": 23.561539500000002, + "2024-07-26T08": 22.596384, + "2024-07-25T20": 21.4548496, + "2024-07-21T02": 23.966708800000003, + "2024-07-20T04": 23.61509388, + "2024-07-20T03": 23.572602900000003, + "2024-07-25T13": 21.8030208, + "2024-07-21T06": 23.636852699999995, + "2024-07-20T12": 23.611328000000004, + "2024-07-24T02": 23.670236700000004, + "2024-07-24T17": 23.37076629, + "2024-07-25T06": 22.1042514, + "2024-07-25T22": 22.094475000000003, + "2024-07-22T07": 23.503525000000003, + "2024-07-22T22": 23.277679099999997, + "2024-07-26T03": 22.4514072, + "2024-07-23T01": 24.562455999999997, + "2024-07-24T03": 23.791427399999996, + "2024-07-23T21": 24.033604500000003, + "2024-07-19T20": 23.5826074, + "2024-07-23T22": 23.8442912, + "2024-07-21T23": 24.2319384, + "2024-07-19T16": 23.40468, + "2024-07-22T20": 23.6489832, + "2024-07-23T10": 24.6197538, + "2024-07-19T17": 23.4630498, + "2024-07-22T09": 23.47, + "2024-07-24T04": 23.6307089, + "2024-07-22T06": 23.523411319999997, + "2024-07-24T21": 22.79772, + "2024-07-20T21": 23.991030799999997, + "2024-07-21T15": 23.67981176, + "2024-07-20T09": 23.53593765, + "2024-07-25T14": 21.7821556, + "2024-07-19T11": 22.741223339999998, + "2024-07-23T20": 24.114822, + "2024-07-25T03": 22.035812399999998, + "2024-07-20T01": 23.49174, + "2024-07-25T23": 22.08415179, + "2024-07-20T16": 24.0186436, + "2024-07-22T15": 23.36510267, + "2024-07-23T16": 23.994078299999998, + "2024-07-22T02": 24.024, + "2024-07-21T04": 23.86224827450213, + "2024-07-23T09": 24.63, + "2024-07-20T10": 23.600851399999996, + "2024-07-22T19": 23.5963693, + "2024-07-20T00": 23.515752, + "2024-07-20T19": 24.117088759999998, + "2024-07-26T05": 22.525719300000002, + "2024-07-19T14": 23.276, + "2024-07-21T00": 23.9269368, + "2024-07-22T12": 23.551884, + "2024-07-24T06": 23.5902359, + "2024-07-25T01": 22.178338280000002, + "2024-07-20T22": 23.965300649999996, + "2024-07-19T15": 23.180569303158876, + "2024-07-21T13": 23.5673036, + "2024-07-25T07": 22.1044725, + "2024-07-21T08": 23.6668614, + "2024-07-23T06": 23.933589500000004, + "2024-07-22T16": 23.466519450000003, + "2024-07-24T11": 23.699, + "2024-07-24T01": 23.750474999999998, + "2024-07-23T00": 23.547061999999997, + "2024-07-19T12": 22.794756000000003, + "2024-07-25T17": 22.015375799999997, + "2024-07-25T19": 21.573741799999997, + "2024-07-19T21": 23.6320462, + "2024-07-23T08": 24.500735, + "2024-07-21T21": 24.162626800701798, + "2024-07-21T11": 23.633379289999997, + "2024-07-22T14": 23.331520161481187, + "2024-07-20T23": 23.92593651, + "2024-07-20T08": 23.605797, + "2024-07-20T02": 23.4985696, + "2024-07-24T05": 23.563884960000003, + "2024-07-24T16": 23.3421006, + "2024-07-21T01": 23.91484522, + "2024-07-24T13": 23.66, + "2024-07-25T04": 22.0269158, + "2024-07-19T13": 22.94541, + "2024-07-25T12": 21.8519118, + "2024-07-19T22": 23.601559100000003, + "2024-07-26T07": 22.6556946, + "2024-07-25T02": 22.090581, + "2024-07-21T12": 23.667098, + "2024-07-23T18": 23.962635600000002, + "2024-07-23T11": 24.53649072, + "2024-07-19T10": 22.7152288, + "2024-07-19T19": 23.60944, + "2024-07-25T11": 21.941439499999998, + "2024-07-22T08": 23.461876800000002, + "2024-07-23T19": 24.1279596, + "2024-07-22T21": 23.49413134337851, + "2024-07-21T09": 23.716638800000002, + "2024-07-21T22": 24.149414699999998, + "2024-07-22T04": 23.911912800000003, + "2024-07-25T16": 21.915177600000003, + "2024-07-19T23": 23.6118, + "2024-07-20T06": 23.649456, + "2024-07-23T02": 24.6819744, + "2024-07-23T14": 24.3238912, + "2024-07-23T03": 24.441710800000003, + "2024-07-25T08": 22.0635997, + "2024-07-24T15": 23.44445900203356, + "2024-07-19T09": 22.705458, + "2024-07-20T15": 23.807378, + "2024-07-23T23": 24.062165399999998, + "2024-07-23T12": 24.524413600000003, + "2024-07-22T10": 23.521235210000004, + "2024-07-21T10": 23.72454656072417, + "2024-07-22T00": 24.177208800000002, + "2024-07-24T22": 22.845887, + "2024-07-24T19": 23.0597694, + "2024-07-24T09": 23.709, + "2024-07-23T04": 24.092409, + "2024-07-23T05": 23.771426199999997, + "2024-07-25T18": 21.644370999999996, + "2024-07-25T15": 21.9551688, + "2024-07-26T01": 22.190671383417435, + "2024-07-22T01": 24.027882999999996, + "2024-07-26T02": 22.335532, + "2024-07-24T18": 23.143207494076677, + "2024-07-21T19": 23.4691494, + "2024-07-25T05": 22.1546816, + "2024-07-22T18": 23.534706, + "2024-07-24T00": 23.7621384, + "2024-07-24T08": 23.7097629, + "2024-07-24T20": 23.0497695, + "2024-07-24T23": 22.8058942, + "2024-07-22T17": 23.4732858, + "2024-07-21T17": 23.470087799999998, + "2024-07-24T12": 23.6707101, + "2024-07-23T13": 24.2838848, + "2024-07-21T05": 23.746647199999998, + "2024-07-20T05": 23.61332896, + "2024-07-21T03": 23.8966892, + "2024-07-26T00": 22.1553464, + "2024-07-20T20": 24.14037893906093, + "2024-07-22T03": 24.01196044, + "2024-07-25T21": 21.894963, + "2024-07-21T16": 23.6487468, + "2024-07-20T17": 24.1476552, + "2024-07-22T11": 23.5707071, + "2024-07-25T00": 22.8558852, + "2024-07-20T13": 23.590586127432946, + "2024-07-23T07": 23.922392000000002, + "2024-07-22T05": 23.69042134, + "2024-07-20T07": 23.650638, + "2024-07-21T18": 23.148949769999998, + "2024-07-23T17": 23.612361, + "2024-07-20T14": 23.7990402, + "2024-07-26T04": 22.46585434, + "2024-07-24T10": 23.72, + "2024-07-20T18": 24.120054, + "2024-07-23T15": 24.33913695, + "2024-07-19T18": 23.436091799999996, + "2024-07-25T09": 22.072051199999997, + "latest": 18.46, + "2024-07-26T09": 22.596931820000002, + "2024-07-26T10": 22.503922300000003, + "2024-07-26T11": 22.5545856, + "2024-07-26T12": 22.570162420000003, + "2024-07-26T13": 22.576387199999996, + "2024-07-26T14": 22.553009961442548, + "2024-07-26T17": 22.6695466, + "2024-07-26T16": 22.663091779065248, + "2024-07-26T15": 22.615230797213396, + "2024-07-26T18": 22.691, + "2024-07-27": 22.942255947769734, + "2024-07-28": 22.639870819216952, + "2024-07-28T05": 22.479775200000002, + "2024-07-26T21": 22.787, + "2024-07-27T02": 22.82368469, + "2024-07-28T01": 22.8683991, + "2024-07-27T10": 22.948635744, + "2024-07-28T02": 22.818859, + "2024-07-27T19": 22.905725, + "2024-07-27T09": 22.928250421212866, + "2024-07-27T06": 22.899457979999998, + "2024-07-27T18": 22.9534425, + "2024-07-26T22": 22.920916800000004, + "2024-07-27T13": 23.1930147, + "2024-07-27T12": 23.0339151, + "2024-07-27T16": 22.962296000000002, + "2024-07-27T05": 22.9204584, + "2024-07-26T23": 22.951918040000002, + "2024-07-26T20": 22.74, + "2024-07-27T08": 22.901145, + "2024-07-28T03": 22.799544, + "2024-07-27T01": 22.90491616, + "2024-07-28T09": 22.5695486, + "2024-07-28T10": 22.649320499999998, + "2024-07-27T00": 22.9109164, + "2024-07-28T00": 22.749772500000002, + "2024-07-27T04": 22.8704574, + "2024-07-27T14": 23.160474560526424, + "2024-07-27T07": 22.9359, + "2024-07-27T11": 22.9138947, + "2024-07-27T22": 23.1179192, + "2024-07-27T03": 22.8402284, + "2024-07-27T20": 22.881144000000003, + "2024-07-27T23": 22.9083963, + "2024-07-28T08": 22.5695486, + "2024-07-27T21": 23.159305200000002, + "2024-07-28T07": 22.5695486, + "2024-07-27T15": 23.052305, + "2024-07-26T19": 22.76604871637663, + "2024-07-28T04": 22.6195476, + "2024-07-28T06": 22.5895482, + "2024-07-27T17": 22.902747999999995, + "2024-07-29": 23.050825704755066, + "2024-07-28T20": 22.6575074, + "2024-07-28T16": 22.62677373, + "2024-07-29T07": 23.252813740000004, + "2024-07-28T23": 22.6195476, + "2024-07-28T15": 22.60677393, + "2024-07-28T18": 22.747497499999998, + "2024-07-29T04": 22.99724, + "2024-07-29T06": 23.2370436979217, + "2024-07-28T21": 22.5527445, + "2024-07-29T03": 23.10645801, + "2024-07-28T12": 22.682393890881833, + "2024-07-29T05": 23.077230399999998, + "2024-07-28T17": 22.6575074, + "2024-07-29T00": 22.83502197144835, + "2024-07-29T01": 22.822020097846, + "2024-07-28T22": 22.5293241, + "2024-07-28T19": 22.7374986, + "2024-07-28T14": 22.597, + "2024-07-29T02": 23.029836561144904, + "2024-07-29T08": 23.29534, + "2024-07-28T11": 22.686392215447963, + "2024-07-28T13": 22.70836328218068, + "2024-07-29T09": 23.4148476, + "2024-07-29T10": 23.495065, + "2024-07-29T11": 23.4350776, + "2024-07-29T12": 23.327900299999996, + "2024-07-29T13": 23.317901199999998, + "2024-07-30": 22.73224710705492, + "2024-07-29T23": 22.8770256, + "2024-07-29T18": 22.875424, + "2024-07-29T21": 22.8581712, + "2024-07-29T22": 22.9670139, + "2024-07-29T17": 22.76690408346006, + "2024-07-29T15": 22.894046, + "2024-07-30T01": 22.9149576, + "2024-07-29T19": 22.9263312, + "2024-07-30T04": 22.835432, + "2024-07-29T14": 23.146527499999998, + "2024-07-29T20": 22.9374766, + "2024-07-30T03": 22.8567996, + "2024-07-30T00": 22.7561308, + "2024-07-29T16": 22.692736, + "2024-07-30T02": 22.681462800000002, + "2024-07-30T09": 22.8349752, + "2024-07-30T08": 22.8835908, + "2024-07-30T06": 22.794984, + "2024-07-30T05": 22.7356794, + "2024-07-30T07": 22.8640538, + "2024-07-30T10": 22.8161206, + "2024-07-30T11": 22.775229900162437, + "2024-07-30T12": 22.815436000000002, + "2024-07-30T13": 22.8674256, + "2024-07-31": 22.188218615252563, + "2024-07-31T00": 22.2444375, + "2024-07-31T05": 22.2051138, + "2024-07-30T23": 22.2435475, + "2024-07-30T19": 22.191786, + "2024-07-30T16": 22.7027328, + "2024-07-30T17": 22.432064251475058, + "2024-07-30T18": 22.322854399999997, + "2024-07-30T20": 22.13530005154696, + "2024-07-30T15": 22.6522956, + "2024-07-31T03": 22.355304399999998, + "2024-07-30T21": 22.1742332, + "2024-07-31T01": 22.32586387, + "2024-07-31T07": 22.4030529, + "2024-07-31T06": 22.433492400000002, + "2024-07-31T02": 22.331532799999998, + "2024-07-30T22": 22.27057677974382, + "2024-07-30T14": 22.675464, + "2024-07-31T04": 22.21544466187146, + "2024-07-31T08": 22.339942500000003, + "2024-07-31T11": 22.3497009, + "2024-07-31T09": 22.351279599999998, + "2024-07-31T10": 22.349289118852898, + "2024-07-31T12": 22.3674672, + "2024-08-01": 21.617207715101372, + "2024-07-31T14": 22.3599335, + "2024-07-31T23": 21.813017600000002, + "2024-07-31T13": 22.478461866654875, + "2024-07-31T21": 21.751731200000002, + "2024-08-01T01": 22.012293, + "2024-07-31T18": 22.3126344, + "2024-07-31T19": 22.058504941060143, + "2024-07-31T16": 22.301299099999998, + "2024-08-01T02": 21.918596400000002, + "2024-07-31T22": 21.853223399999997, + "2024-07-31T20": 21.8314824, + "2024-07-31T17": 22.336345452296193, + "2024-08-01T00": 21.8827763, + "2024-07-31T15": 22.370824199999998, + "2024-08-01T07": 21.680239500000003, + "2024-08-01T06": 21.789318, + "2024-08-01T05": 21.701754535965335, + "2024-08-01T04": 21.6687264, + "2024-08-01T03": 21.92537339, + "2024-08-01T08": 21.658731600000003, + "2024-08-01T09": 21.7673676, + "2024-08-01T10": 21.708488399999997, + "2024-08-01T11": 21.778451299999997, + "2024-08-01T12": 21.8486328, + "2024-08-01T13": 21.7595504, + "2024-08-01T14": 21.596925480000003, + "2024-08-01T15": 21.298345500000003, + "2024-08-02": 21.528580397355217, + "2024-08-02T00": 21.488642799999997, + "2024-08-01T20": 20.9088607, + "2024-08-01T21": 21.290394799999998, + "2024-08-02T04": 21.240653400000003, + "2024-08-01T19": 20.77712, + "2024-08-01T16": 20.855391, + "2024-08-02T02": 21.131599499999997, + "2024-08-01T17": 20.7232006, + "2024-08-01T23": 21.599893400000003, + "2024-08-02T01": 21.3110163, + "2024-08-01T22": 21.6020554, + "2024-08-01T18": 20.541084799999997, + "2024-08-02T03": 21.2104684, + "2024-08-02T05": 21.13659515, + "2024-08-02T06": 20.994032400000002, + "2024-08-02T07": 21.121857777523413, + "2024-08-02T08": 21.0425202, + "2024-08-02T09": 21.223731880000003, + "2024-08-02T10": 21.2038728, + "2024-08-02T11": 21.2371458, + "2024-08-02T12": 21.1841607, + "2024-08-02T13": 21.3733158, + "2024-08-02T14": 21.34438280193177, + "2024-08-02T15": 20.32400797444099, + "2024-08-03": 20.095694181740466, + "2024-08-02T16": 20.39764725, + "2024-08-02T22": 20.326801, + "2024-08-02T23": 20.204105600000002, + "2024-08-03T00": 20.073669000000002, + "2024-08-03T01": 19.8255845, + "2024-08-03T03": 20.2958192, + "2024-08-02T19": 20.3977422, + "2024-08-02T18": 20.425554, + "2024-08-02T21": 20.35962, + "2024-08-02T17": 20.426720014939416, + "2024-08-02T20": 20.5276005, + "2024-08-03T02": 20.17354357895594, + "2024-08-03T06": 20.477655, + "2024-08-03T19": 19.3748758, + "2024-08-03T10": 20.48196, + "2024-08-03T09": 20.401826200000002, + "2024-08-03T15": 20.186466, + "2024-08-03T22": 19.588828000000003, + "2024-08-03T05": 20.397333800000002, + "2024-08-03T08": 20.4001926, + "2024-08-03T14": 20.468025106380868, + "2024-08-03T18": 19.576287, + "2024-08-03T17": 19.5958808, + "2024-08-03T21": 19.3736915510275, + "2024-08-03T12": 20.4744276, + "2024-08-03T20": 19.3170489, + "2024-08-03T04": 20.3893859, + "2024-08-03T16": 19.885074999999997, + "2024-08-03T11": 20.4528052, + "2024-08-03T07": 20.514026480000002, + "2024-08-03T13": 20.43309604, + "2024-08-04": 19.21901150157346, + "2024-08-03T23": 19.655155655259886, + "2024-08-04T17": 18.6445122, + "2024-08-04T13": 19.640175, + "2024-08-04T06": 19.80371408, + "2024-08-04T12": 19.59024491918918, + "2024-08-04T10": 19.4798652, + "2024-08-04T16": 18.9063776, + "2024-08-04T15": 19.017249900000003, + "2024-08-04T00": 19.648400600000002, + "2024-08-04T11": 19.56601624, + "2024-08-04T01": 19.6084242, + "2024-08-04T03": 19.737755, + "2024-08-04T04": 19.7479464, + "2024-08-04T07": 19.598430099999998, + "2024-08-04T08": 19.488105, + "2024-08-04T18": 18.75326889545454, + "2024-08-04T09": 19.558845100000003, + "2024-08-04T02": 19.748144, + "2024-08-04T05": 19.771931759999998, + "2024-08-04T14": 19.1317698, + "2024-08-05": 17.028924646653046, + "2024-08-05T01": 17.959073605392465, + "2024-08-04T19": 18.993366249322477, + "2024-08-04T22": 19.197276876361105, + "2024-08-05T03": 17.087911590883074, + "2024-08-05T02": 17.108631853043004, + "2024-08-04T23": 19.16273502508793, + "2024-08-05T00": 18.93808865873185, + "2024-08-05T04": 16.82672498986754, + "2024-08-05T06": 16.927509715787895, + "2024-08-04T20": 19.218345867163762, + "2024-08-05T05": 17.193004867533556, + "2024-08-04T21": 19.252998676977068, + "2024-08-05T07": 16.51327612435467, + "2024-08-05T08": 17.072065273157666, + "2024-08-05T09": 16.840417874527432, + "2024-08-05T10": 16.73282438583382, + "2024-08-05T11": 16.294806595202388, + "2024-08-05T12": 16.31126245486588, + "2024-08-05T13": 16.015997563686657, + "2024-08-05T14": 17.04538670548912, + "2024-08-05T15": 17.642107529999997, + "2024-08-06": 18.131883565960408, + "2024-08-05T19": 17.436623400000002, + "2024-08-05T20": 17.621762, + "2024-08-05T21": 17.7932022, + "2024-08-06T02": 18.096874200000002, + "2024-08-05T18": 17.6381098, + "2024-08-05T23": 17.793557999999997, + "2024-08-05T16": 17.782438999999997, + "2024-08-06T05": 18.174716760000003, + "2024-08-05T17": 17.810502000000003, + "2024-08-06T00": 18.173058795267224, + "2024-08-06T04": 18.1381585, + "2024-08-06T03": 18.087051199999998, + "2024-08-05T22": 17.81902872, + "2024-08-06T01": 18.245472, + "2024-08-06T06": 18.343380899999996, + "2024-08-06T07": 18.335307713362564, + "2024-08-06T08": 18.060469, + "2024-08-06T09": 17.885364, + "2024-08-06T10": 17.905728, + "2024-08-06T11": 17.8744675, + "2024-08-06T12": 17.906623, + "2024-08-06T13": 17.92201676, + "2024-08-06T14": 17.92219593 + }, + "USD fantom": { + "2024-06-28": 0.561976489512318, + "2024-06-30": 0.5541728421872693, + "2024-07-15": 0.495869382606702, + "2024-07-18": 0.4962263789077636, + "2024-07-14": 0.48625577672329434, + "2024-07-11": 0.471031526966163, + "2024-07-19": 0.48758511690836326, + "2024-07-12": 0.4658463843005151, + "2024-07-24": 0.4881726066551621, + "2024-07-08": 0.43093095017110616, + "2024-07-07": 0.432303066287366, + "2024-07-13": 0.47920340694901237, + "2024-07-09": 0.4433481124951998, + "2024-07-02": 0.5846086303364931, + "2024-07-20": 0.5213556075168528, + "2024-06-29": 0.5434251641049006, + "2024-07-21": 0.5206005841418861, + "2024-07-23": 0.49745986416452725, + "2024-07-10": 0.47089477135695995, + "2024-07-01": 0.5910065567445266, + "2024-06-26": 0.5751627300716735, + "2024-07-17": 0.5221239213850473, + "2024-07-22": 0.5216142959820759, + "2024-07-04": 0.4718422193742269, + "2024-06-25": 0.6018303459790348, + "2024-07-26": 0.45132050400680473, + "2024-07-03": 0.5309973475836555, + "2024-07-05": 0.4176823152452904, + "2024-07-25": 0.4384383088296017, + "2024-07-16": 0.5203017936178627, + "2024-07-06": 0.43548387931075344, + "2024-06-27": 0.5712108780628294, + "2024-07-22T13": 0.522373122, + "2024-07-25T10": 0.4439001384, + "2024-07-26T06": 0.45050988000000003, + "2024-07-24T14": 0.49867479000000003, + "2024-07-21T20": 0.534549632, + "2024-07-21T07": 0.5156494949999999, + "2024-07-21T14": 0.5205669326, + "2024-07-22T23": 0.50865255, + "2024-07-24T07": 0.48919498790976174, + "2024-07-20T11": 0.5145119874000001, + "2024-07-26T08": 0.45245754686935913, + "2024-07-25T20": 0.41929934399999996, + "2024-07-21T02": 0.5236498274906591, + "2024-07-20T04": 0.526547361, + "2024-07-20T03": 0.5220866723139468, + "2024-07-25T13": 0.435510592, + "2024-07-21T06": 0.5185503359999999, + "2024-07-20T12": 0.513846528, + "2024-07-24T02": 0.4877669841436191, + "2024-07-24T17": 0.4895773444388269, + "2024-07-25T06": 0.4504128622, + "2024-07-25T22": 0.43489125, + "2024-07-22T07": 0.52167824, + "2024-07-22T22": 0.509968234, + "2024-07-26T03": 0.44762836799999994, + "2024-07-23T01": 0.5134513399999999, + "2024-07-24T03": 0.49040157327228995, + "2024-07-23T21": 0.4934740100000001, + "2024-07-19T20": 0.523535485, + "2024-07-23T22": 0.48958811, + "2024-07-21T23": 0.540643248, + "2024-07-19T16": 0.50220042, + "2024-07-22T20": 0.5223184056000001, + "2024-07-23T10": 0.5017949820000001, + "2024-07-19T17": 0.503465442, + "2024-07-22T09": 0.5187, + "2024-07-24T04": 0.488814664, + "2024-07-22T06": 0.5224313439999999, + "2024-07-24T21": 0.46335366, + "2024-07-20T21": 0.519438832, + "2024-07-21T15": 0.5237727879999999, + "2024-07-20T09": 0.5218868799999999, + "2024-07-25T14": 0.435243256, + "2024-07-19T11": 0.48069903199999997, + "2024-07-23T20": 0.49199838, + "2024-07-25T03": 0.441816039, + "2024-07-20T01": 0.518259, + "2024-07-25T23": 0.4352412015851697, + "2024-07-20T16": 0.5215576932, + "2024-07-22T15": 0.5186989908899984, + "2024-07-23T16": 0.484482348, + "2024-07-22T02": 0.536690137812523, + "2024-07-21T04": 0.520045572, + "2024-07-23T09": 0.5053, + "2024-07-20T10": 0.518938602, + "2024-07-22T19": 0.521340724, + "2024-07-20T00": 0.5184591, + "2024-07-20T19": 0.5217398899999999, + "2024-07-26T05": 0.445715298, + "2024-07-19T14": 0.487, + "2024-07-21T00": 0.5209048644035511, + "2024-07-22T12": 0.5235818832000001, + "2024-07-24T06": 0.48725487250000005, + "2024-07-25T01": 0.444046708, + "2024-07-20T22": 0.522624632, + "2024-07-19T15": 0.48895977899999993, + "2024-07-21T13": 0.5173093261440125, + "2024-07-25T07": 0.451587075, + "2024-07-21T08": 0.5164497269999999, + "2024-07-23T06": 0.49337399500000007, + "2024-07-22T16": 0.5191679325109623, + "2024-07-24T11": 0.4962, + "2024-07-24T01": 0.48827073797688075, + "2024-07-23T00": 0.5107572662790683, + "2024-07-19T12": 0.48318917915943993, + "2024-07-25T17": 0.431209427, + "2024-07-25T19": 0.4208379216, + "2024-07-19T21": 0.525467852, + "2024-07-23T08": 0.503115093, + "2024-07-21T21": 0.536001821, + "2024-07-21T11": 0.518039833, + "2024-07-22T14": 0.5168775200000001, + "2024-07-20T23": 0.5216382414494457, + "2024-07-20T08": 0.5263630499999999, + "2024-07-20T02": 0.519533685, + "2024-07-24T05": 0.484638768, + "2024-07-24T16": 0.48504364999999994, + "2024-07-21T01": 0.523993806, + "2024-07-24T13": 0.49461006727771684, + "2024-07-25T04": 0.445237658, + "2024-07-19T13": 0.48429363076254156, + "2024-07-25T12": 0.43683831, + "2024-07-19T22": 0.52470805149863, + "2024-07-26T07": 0.45291393, + "2024-07-25T02": 0.441641654, + "2024-07-21T12": 0.52005597, + "2024-07-23T18": 0.48221288432896314, + "2024-07-23T11": 0.5002100039999999, + "2024-07-19T10": 0.483798381, + "2024-07-19T19": 0.5192037819514266, + "2024-07-25T11": 0.443027152, + "2024-07-22T08": 0.5204820550390674, + "2024-07-23T19": 0.49356282199999996, + "2024-07-22T21": 0.514267070509206, + "2024-07-21T09": 0.5163374999167412, + "2024-07-21T22": 0.5408077779439374, + "2024-07-22T04": 0.530642448, + "2024-07-25T16": 0.43241341261318955, + "2024-07-19T23": 0.52156065, + "2024-07-20T06": 0.5278110399999999, + "2024-07-23T02": 0.5140311192, + "2024-07-23T14": 0.5051840592095319, + "2024-07-23T03": 0.511935833, + "2024-07-25T08": 0.451069152, + "2024-07-24T15": 0.4905931949999999, + "2024-07-19T09": 0.4837979417361642, + "2024-07-20T15": 0.5208118983156879, + "2024-07-23T23": 0.49034412699999996, + "2024-07-23T12": 0.5025205365504226, + "2024-07-22T10": 0.5231052310000001, + "2024-07-21T10": 0.518039833, + "2024-07-22T00": 0.5438572357386412, + "2024-07-24T22": 0.461816858, + "2024-07-24T19": 0.4779746310691805, + "2024-07-24T09": 0.49268000002890555, + "2024-07-23T04": 0.50615061, + "2024-07-23T05": 0.4970002377422296, + "2024-07-25T18": 0.42468955199999997, + "2024-07-25T15": 0.43670567038213826, + "2024-07-26T01": 0.43841230000000003, + "2024-07-22T01": 0.540964908, + "2024-07-26T02": 0.44331132, + "2024-07-24T18": 0.480048, + "2024-07-21T19": 0.517601786, + "2024-07-25T05": 0.447492576, + "2024-07-22T18": 0.5208041400000001, + "2024-07-24T00": 0.4865530467679717, + "2024-07-24T08": 0.494095059, + "2024-07-24T20": 0.47726068554664547, + "2024-07-24T23": 0.458217506, + "2024-07-22T17": 0.51707238, + "2024-07-21T17": 0.5156905857534264, + "2024-07-24T12": 0.49451485354305363, + "2024-07-23T13": 0.497379568, + "2024-07-21T05": 0.522946384, + "2024-07-20T05": 0.5251519520000001, + "2024-07-21T03": 0.522746328, + "2024-07-26T00": 0.43673826569999996, + "2024-07-20T20": 0.521798636, + "2024-07-22T03": 0.536721468, + "2024-07-25T21": 0.43390018, + "2024-07-21T16": 0.5162909569999999, + "2024-07-20T17": 0.52135846, + "2024-07-22T11": 0.5233957013999999, + "2024-07-25T00": 0.45764765469343166, + "2024-07-20T13": 0.512615208, + "2024-07-23T07": 0.49254925, + "2024-07-22T05": 0.523931434, + "2024-07-20T07": 0.530738725, + "2024-07-21T18": 0.5083184829999999, + "2024-07-23T17": 0.47804779999999997, + "2024-07-20T14": 0.519497334, + "2024-07-26T04": 0.4460411863303444, + "2024-07-24T10": 0.4967, + "2024-07-20T18": 0.524262, + "2024-07-23T15": 0.502285374, + "2024-07-19T18": 0.507331872, + "2024-07-25T09": 0.45233737876569097, + "latest": 0.31832, + "2024-07-26T09": 0.452818478, + "2024-07-26T10": 0.4496385648, + "2024-07-26T11": 0.4513831386797366, + "2024-07-26T12": 0.45177318549999995, + "2024-07-26T13": 0.45112780799999996, + "2024-07-26T14": 0.44865980711127934, + "2024-07-26T17": 0.45229095399999997, + "2024-07-26T16": 0.45257737, + "2024-07-26T15": 0.44916406400000003, + "2024-07-26T18": 0.45348814366214185, + "2024-07-27": 0.46016575127735687, + "2024-07-28": 0.44518768872532205, + "2024-07-28T05": 0.44005559940000005, + "2024-07-26T21": 0.45752556651008913, + "2024-07-27T02": 0.45971414535504146, + "2024-07-28T01": 0.453768234, + "2024-07-27T10": 0.46353708000000005, + "2024-07-28T02": 0.450677465, + "2024-07-27T19": 0.45115276000000004, + "2024-07-27T09": 0.46304166999999996, + "2024-07-27T06": 0.4605792113999999, + "2024-07-27T18": 0.45546831000000004, + "2024-07-26T22": 0.4603393044104598, + "2024-07-27T13": 0.468760931, + "2024-07-27T12": 0.466379271, + "2024-07-27T16": 0.4580458, + "2024-07-27T05": 0.4595095351721492, + "2024-07-26T23": 0.461918476, + "2024-07-26T20": 0.4549, + "2024-07-27T08": 0.46490324400000005, + "2024-07-28T03": 0.4491310172, + "2024-07-27T01": 0.45863834480000004, + "2024-07-28T09": 0.44509109799999996, + "2024-07-28T10": 0.447586572, + "2024-07-27T00": 0.460918436, + "2024-07-28T00": 0.45299547, + "2024-07-27T04": 0.45789915779999996, + "2024-07-27T14": 0.46744673999999997, + "2024-07-27T07": 0.46557854084741, + "2024-07-27T11": 0.463778829, + "2024-07-27T22": 0.461258483, + "2024-07-27T03": 0.4582081657836668, + "2024-07-27T20": 0.44982249, + "2024-07-27T23": 0.45873821739036763, + "2024-07-28T08": 0.4433817281165523, + "2024-07-27T21": 0.46198614000000005, + "2024-07-28T07": 0.443691126, + "2024-07-27T15": 0.45894588999999997, + "2024-07-26T19": 0.4577, + "2024-07-28T04": 0.444591108, + "2024-07-28T06": 0.4444415565655019, + "2024-07-27T17": 0.45422450039999995, + "2024-07-29": 0.46207786355901037, + "2024-07-28T20": 0.44351135236287087, + "2024-07-28T16": 0.4453920706619476, + "2024-07-29T07": 0.46961545400000004, + "2024-07-28T23": 0.4438262045785758, + "2024-07-28T15": 0.4440555594, + "2024-07-28T18": 0.447832396816803, + "2024-07-29T04": 0.469643636, + "2024-07-29T06": 0.46944027608322886, + "2024-07-28T21": 0.4411559082918129, + "2024-07-29T03": 0.47294796999999994, + "2024-07-28T12": 0.44688659300000005, + "2024-07-29T05": 0.471043468, + "2024-07-28T17": 0.444851061, + "2024-07-29T00": 0.4502, + "2024-07-29T01": 0.45273118403311374, + "2024-07-28T22": 0.4405267838, + "2024-07-28T19": 0.4456280669731148, + "2024-07-28T14": 0.44400029667739466, + "2024-07-29T02": 0.46596738000000004, + "2024-07-29T08": 0.47010596000000004, + "2024-07-28T11": 0.4492687558643354, + "2024-07-28T13": 0.44779104399999997, + "2024-07-29T09": 0.46929733905403276, + "2024-07-29T10": 0.4683916171, + "2024-07-29T11": 0.4689455931146315, + "2024-07-29T12": 0.46654340431489755, + "2024-07-29T13": 0.4654071214098662, + "2024-07-30": 0.45297066331178754, + "2024-07-29T23": 0.444433440032029, + "2024-07-29T18": 0.45255503760305565, + "2024-07-29T21": 0.44636428800000005, + "2024-07-29T22": 0.44635847494530545, + "2024-07-29T17": 0.44980102200000005, + "2024-07-29T15": 0.45538157, + "2024-07-30T01": 0.451000758, + "2024-07-29T19": 0.45125836446387585, + "2024-07-30T04": 0.45100978, + "2024-07-29T14": 0.46153076000000004, + "2024-07-29T20": 0.450450445, + "2024-07-30T03": 0.44946863428461264, + "2024-07-30T00": 0.44582419700000003, + "2024-07-29T16": 0.448556416, + "2024-07-30T02": 0.4471346860059156, + "2024-07-30T09": 0.451500648, + "2024-07-30T08": 0.4533130368, + "2024-07-30T06": 0.4534126348700044, + "2024-07-30T05": 0.451414215, + "2024-07-30T07": 0.455781466, + "2024-07-30T10": 0.4540380976846166, + "2024-07-30T11": 0.45908651462799455, + "2024-07-30T12": 0.4709058, + "2024-07-30T13": 0.4729054, + "2024-07-31": 0.4341427929095359, + "2024-07-31T00": 0.43309169999999997, + "2024-07-31T05": 0.424606566, + "2024-07-30T23": 0.434673908, + "2024-07-30T19": 0.439537311, + "2024-07-30T16": 0.4656212938602877, + "2024-07-30T17": 0.4591015864918418, + "2024-07-30T18": 0.453254912, + "2024-07-30T20": 0.43936815, + "2024-07-30T15": 0.469540302, + "2024-07-31T03": 0.432009259, + "2024-07-30T21": 0.43808606799999994, + "2024-07-31T01": 0.4354547773931659, + "2024-07-31T07": 0.43584484619999997, + "2024-07-31T06": 0.43587356, + "2024-07-31T02": 0.4339132, + "2024-07-30T22": 0.437173183, + "2024-07-30T14": 0.46950608000000005, + "2024-07-31T04": 0.42747933834559, + "2024-07-31T08": 0.4344139691080639, + "2024-07-31T11": 0.43076295, + "2024-07-31T09": 0.435330155, + "2024-07-31T10": 0.431992544, + "2024-07-31T12": 0.4307886232, + "2024-08-01": 0.40809071353214016, + "2024-07-31T14": 0.43340488, + "2024-07-31T23": 0.4115940487612634, + "2024-07-31T13": 0.434095879, + "2024-07-31T21": 0.413442832, + "2024-08-01T01": 0.41495471500000003, + "2024-07-31T18": 0.43147825440149945, + "2024-07-31T19": 0.42466445412087805, + "2024-07-31T16": 0.427233314, + "2024-08-01T02": 0.41540392525047587, + "2024-07-31T22": 0.4123722562267236, + "2024-07-31T20": 0.414738189, + "2024-07-31T17": 0.4294024677, + "2024-08-01T00": 0.413463512, + "2024-07-31T15": 0.42742468399999994, + "2024-08-01T07": 0.4083345846899664, + "2024-08-01T06": 0.412697679, + "2024-08-01T05": 0.41274806999999997, + "2024-08-01T04": 0.4100887873941845, + "2024-08-01T03": 0.41520599591626833, + "2024-08-01T08": 0.41298513600000003, + "2024-08-01T09": 0.414459474, + "2024-08-01T10": 0.41378057999999995, + "2024-08-01T11": 0.414879997, + "2024-08-01T12": 0.4169430828597779, + "2024-08-01T13": 0.410902672, + "2024-08-01T14": 0.40303303469070384, + "2024-08-01T15": 0.3992003, + "2024-08-02": 0.40488278197009514, + "2024-08-02T00": 0.41722416, + "2024-08-01T20": 0.3941710138652548, + "2024-08-01T21": 0.4032800436876523, + "2024-08-02T04": 0.4126242534252692, + "2024-08-01T19": 0.38937121999999996, + "2024-08-01T16": 0.39152573999999996, + "2024-08-02T02": 0.410842256, + "2024-08-01T17": 0.390583371, + "2024-08-01T23": 0.413914701, + "2024-08-02T01": 0.41682869200000006, + "2024-08-01T22": 0.41065886999999995, + "2024-08-01T18": 0.3846458, + "2024-08-02T03": 0.41291976399999997, + "2024-08-02T05": 0.41014311724380526, + "2024-08-02T06": 0.402493872, + "2024-08-02T07": 0.4033634273776536, + "2024-08-02T08": 0.406262522, + "2024-08-02T09": 0.4108663508, + "2024-08-02T10": 0.41168688, + "2024-08-02T11": 0.4121153291379649, + "2024-08-02T12": 0.40971299999999994, + "2024-08-02T13": 0.4196724, + "2024-08-02T14": 0.41886220204146524, + "2024-08-02T15": 0.3933241642, + "2024-08-03": 0.37974770830628396, + "2024-08-02T16": 0.39747829456858963, + "2024-08-02T22": 0.38655882, + "2024-08-02T23": 0.386704384, + "2024-08-03T00": 0.38519473299999996, + "2024-08-03T01": 0.3777048509, + "2024-08-03T03": 0.39153352, + "2024-08-02T19": 0.388476099, + "2024-08-02T18": 0.3927069, + "2024-08-02T21": 0.38391569999999997, + "2024-08-02T17": 0.399320285, + "2024-08-02T20": 0.3897547038, + "2024-08-03T02": 0.385690216, + "2024-08-03T06": 0.38946468930872397, + "2024-08-03T19": 0.356621618, + "2024-08-03T10": 0.39115548, + "2024-08-03T09": 0.39057208120000003, + "2024-08-03T15": 0.38514178200000004, + "2024-08-03T22": 0.358895313, + "2024-08-03T05": 0.389267433, + "2024-08-03T08": 0.38994138959999997, + "2024-08-03T14": 0.394243575, + "2024-08-03T18": 0.3563105177928143, + "2024-08-03T17": 0.36054022399999996, + "2024-08-03T21": 0.359784, + "2024-08-03T12": 0.3953421358133223, + "2024-08-03T20": 0.35536174800000003, + "2024-08-03T04": 0.39177390830000003, + "2024-08-03T16": 0.3675741125, + "2024-08-03T11": 0.391770636, + "2024-08-03T07": 0.393078955, + "2024-08-03T13": 0.39276844417223017, + "2024-08-04": 0.3530093722003155, + "2024-08-03T23": 0.3589088984, + "2024-08-04T17": 0.33372278, + "2024-08-04T13": 0.36609686, + "2024-08-04T06": 0.370570104, + "2024-08-04T12": 0.3663898832742482, + "2024-08-04T10": 0.368108484, + "2024-08-04T16": 0.3397751856, + "2024-08-04T15": 0.348666237, + "2024-08-04T00": 0.35936784780000003, + "2024-08-04T11": 0.36831206499999997, + "2024-08-04T01": 0.358288485, + "2024-08-04T03": 0.36427401, + "2024-08-04T04": 0.36635434484403523, + "2024-08-04T07": 0.366083883, + "2024-08-04T08": 0.3670506133717628, + "2024-08-04T18": 0.33632070656924823, + "2024-08-04T09": 0.36699069600000006, + "2024-08-04T02": 0.3617828301452268, + "2024-08-04T05": 0.36767558100000003, + "2024-08-04T14": 0.35484734999999995, + "2024-08-05": 0.29241834889560975, + "2024-08-05T01": 0.33084233590373224, + "2024-08-04T19": 0.3434069404856741, + "2024-08-04T22": 0.347991111907451, + "2024-08-05T03": 0.2994064935412891, + "2024-08-05T02": 0.30459748975029877, + "2024-08-04T23": 0.3486528082894437, + "2024-08-05T00": 0.3428841709813596, + "2024-08-05T04": 0.2927654313746486, + "2024-08-05T06": 0.29056346694845925, + "2024-08-04T20": 0.3518252879689053, + "2024-08-05T05": 0.2924428860168103, + "2024-08-04T21": 0.35193332110513753, + "2024-08-05T07": 0.27941753572241995, + "2024-08-05T08": 0.2948468885715815, + "2024-08-05T09": 0.28987184765852353, + "2024-08-05T10": 0.2914414820642318, + "2024-08-05T11": 0.28145558470948967, + "2024-08-05T12": 0.28092487988445874, + "2024-08-05T13": 0.2724188726014242, + "2024-08-05T14": 0.2913991270725887, + "2024-08-05T15": 0.29958862199999997, + "2024-08-06": 0.31005757758012464, + "2024-08-05T19": 0.288009402, + "2024-08-05T20": 0.29082908, + "2024-08-05T21": 0.293952902, + "2024-08-06T02": 0.3106279938, + "2024-08-05T18": 0.29103381399999995, + "2024-08-05T23": 0.293218632, + "2024-08-05T16": 0.29810853, + "2024-08-06T05": 0.31318467000000005, + "2024-08-05T17": 0.2959752193117036, + "2024-08-06T00": 0.30516101999999995, + "2024-08-06T04": 0.3101395, + "2024-08-06T03": 0.3099908492999999, + "2024-08-05T22": 0.29404998, + "2024-08-06T01": 0.31269378, + "2024-08-06T06": 0.31567936084006737, + "2024-08-06T07": 0.315311117, + "2024-08-06T08": 0.309279278, + "2024-08-06T09": 0.30569167999999997, + "2024-08-06T10": 0.30460744320000005, + "2024-08-06T11": 0.30637657500000004, + "2024-08-06T12": 0.30675661769923407, + "2024-08-06T13": 0.305185428, + "2024-08-06T14": 0.30518847899999996 + }, + "USD filecoin": { + "2024-06-28": 4.489733326941993, + "2024-06-30": 4.418888479064588, + "2024-07-15": 4.31274762392486, + "2024-07-18": 4.51090466629842, + "2024-07-14": 4.260882074783119, + "2024-07-11": 4.089690772654018, + "2024-07-19": 4.449624605298049, + "2024-07-12": 4.018303268381266, + "2024-07-24": 4.442179508126318, + "2024-07-08": 3.7765629159686447, + "2024-07-07": 3.8367193632861976, + "2024-07-13": 4.23238754082201, + "2024-07-09": 3.8654620889542946, + "2024-07-02": 4.363805712944707, + "2024-07-20": 4.689210322984871, + "2024-06-29": 4.3963411119098765, + "2024-07-21": 4.66466484765461, + "2024-07-23": 4.482756998441715, + "2024-07-10": 3.9126736805279325, + "2024-07-01": 4.468846178389414, + "2024-06-26": 4.406390218460127, + "2024-07-17": 4.594063104871014, + "2024-07-22": 4.6541163739647535, + "2024-07-04": 3.941227654682221, + "2024-06-25": 4.428227463616406, + "2024-07-26": 4.414857703595346, + "2024-07-03": 4.204565439886293, + "2024-07-05": 3.503900704654196, + "2024-07-25": 4.162543395214572, + "2024-07-16": 4.436620061792932, + "2024-07-06": 3.6854743730771964, + "2024-06-27": 4.412228368266804, + "2024-07-22T13": 4.6156461, + "2024-07-25T10": 4.1635006, + "2024-07-26T06": 4.3601278, + "2024-07-24T14": 4.510676500000001, + "2024-07-21T20": 4.746361150451105, + "2024-07-21T07": 4.645746876, + "2024-07-21T14": 4.6465793, + "2024-07-22T23": 4.5073518, + "2024-07-24T07": 4.463866080000001, + "2024-07-20T11": 4.622263800000001, + "2024-07-26T08": 4.381298879999999, + "2024-07-25T20": 4.0840195999999995, + "2024-07-21T02": 4.71431964, + "2024-07-20T04": 4.717216049999999, + "2024-07-20T03": 4.7061168, + "2024-07-25T13": 4.138475264, + "2024-07-21T06": 4.6613514, + "2024-07-20T12": 4.62722, + "2024-07-24T02": 4.42304423, + "2024-07-24T17": 4.42895571, + "2024-07-25T06": 4.16991554, + "2024-07-25T22": 4.198150200000001, + "2024-07-22T07": 4.6246936000000005, + "2024-07-22T22": 4.588313644, + "2024-07-26T03": 4.2793152, + "2024-07-23T01": 4.5734573, + "2024-07-24T03": 4.454267239999999, + "2024-07-23T21": 4.448667200000001, + "2024-07-19T20": 4.678104200000001, + "2024-07-23T22": 4.42879704, + "2024-07-21T23": 4.77638208, + "2024-07-19T16": 4.553531997267923, + "2024-07-22T20": 4.68978144, + "2024-07-23T10": 4.529254707000001, + "2024-07-19T17": 4.60659878, + "2024-07-22T09": 4.646, + "2024-07-24T04": 4.45313359, + "2024-07-22T06": 4.60927654, + "2024-07-24T21": 4.279572, + "2024-07-20T21": 4.69115694, + "2024-07-21T15": 4.6855457199999995, + "2024-07-20T09": 4.6485553, + "2024-07-25T14": 4.1535042, + "2024-07-19T11": 4.3396795302497235, + "2024-07-23T20": 4.4538906, + "2024-07-25T03": 4.1222166300000005, + "2024-07-20T01": 4.6933454999999995, + "2024-07-25T23": 4.202045696298438, + "2024-07-20T16": 4.72870172, + "2024-07-22T15": 4.63641724, + "2024-07-23T16": 4.40574885, + "2024-07-22T02": 4.741, + "2024-07-21T04": 4.701316, + "2024-07-23T09": 4.542, + "2024-07-20T10": 4.629128419999999, + "2024-07-22T19": 4.696467704, + "2024-07-20T00": 4.6273124999999995, + "2024-07-20T19": 4.730374972, + "2024-07-26T05": 4.31118072, + "2024-07-19T14": 4.4573, + "2024-07-21T00": 4.705364159999999, + "2024-07-22T12": 4.648576213580089, + "2024-07-24T06": 4.447644476, + "2024-07-25T01": 4.13650356, + "2024-07-20T22": 4.693017129999999, + "2024-07-19T15": 4.467089339999999, + "2024-07-21T13": 4.614346795474304, + "2024-07-25T07": 4.17880111908416, + "2024-07-21T08": 4.64234589, + "2024-07-23T06": 4.4416661500000005, + "2024-07-22T16": 4.6586987, + "2024-07-24T11": 4.529, + "2024-07-24T01": 4.427088539999999, + "2024-07-23T00": 4.5263575000000005, + "2024-07-19T12": 4.35599789, + "2024-07-25T17": 4.19111968, + "2024-07-25T19": 4.109822214270457, + "2024-07-19T21": 4.673382210000001, + "2024-07-23T08": 4.51113533, + "2024-07-21T21": 4.761904589999999, + "2024-07-21T11": 4.6312501, + "2024-07-22T14": 4.6586987, + "2024-07-20T23": 4.702363289999999, + "2024-07-20T08": 4.66233, + "2024-07-20T02": 4.65109205, + "2024-07-24T05": 4.429554336, + "2024-07-24T16": 4.42839852, + "2024-07-21T01": 4.71774492, + "2024-07-24T13": 4.51, + "2024-07-25T04": 4.14541956, + "2024-07-19T13": 4.385129470002827, + "2024-07-25T12": 4.1574611699999995, + "2024-07-19T22": 4.64627556, + "2024-07-26T07": 4.3721691300000005, + "2024-07-25T02": 4.1311735999999994, + "2024-07-21T12": 4.6293884, + "2024-07-23T18": 4.389482790000001, + "2024-07-23T11": 4.51909038, + "2024-07-19T10": 4.32709112, + "2024-07-19T19": 4.6748692, + "2024-07-25T11": 4.1753709699999995, + "2024-07-22T08": 4.6303704, + "2024-07-23T19": 4.412466310756647, + "2024-07-22T21": 4.6393450199999995, + "2024-07-21T09": 4.65530312, + "2024-07-21T22": 4.781478099999999, + "2024-07-22T04": 4.703376240000001, + "2024-07-25T16": 4.1740815, + "2024-07-19T23": 4.6433205, + "2024-07-20T06": 4.69057548, + "2024-07-23T02": 4.55436432, + "2024-07-23T14": 4.531724959999999, + "2024-07-23T03": 4.53431738, + "2024-07-25T08": 4.174589018, + "2024-07-24T15": 4.4608474, + "2024-07-19T09": 4.3571284, + "2024-07-20T15": 4.686452350000001, + "2024-07-23T23": 4.449400409999999, + "2024-07-23T12": 4.51481252, + "2024-07-22T10": 4.653046530000001, + "2024-07-21T10": 4.65025523, + "2024-07-22T00": 4.79903994, + "2024-07-24T22": 4.27223086, + "2024-07-24T19": 4.321856781, + "2024-07-24T09": 4.508, + "2024-07-23T04": 4.4884488, + "2024-07-23T05": 4.43226592, + "2024-07-25T18": 4.12192802, + "2024-07-25T15": 4.18507908, + "2024-07-26T01": 4.2101578, + "2024-07-22T01": 4.756070659999999, + "2024-07-26T02": 4.2461506, + "2024-07-24T18": 4.3654365, + "2024-07-21T19": 4.609797119999999, + "2024-07-25T05": 4.1640004, + "2024-07-22T18": 4.6829364, + "2024-07-24T00": 4.44540005, + "2024-07-24T08": 4.50295497, + "2024-07-24T20": 4.319656803, + "2024-07-24T23": 4.249334982, + "2024-07-22T17": 4.665979614127329, + "2024-07-21T17": 4.63299133, + "2024-07-24T12": 4.518135539999999, + "2024-07-23T13": 4.49171856, + "2024-07-21T05": 4.680310120000001, + "2024-07-20T05": 4.703256479999999, + "2024-07-21T03": 4.7193210400000005, + "2024-07-26T00": 4.20511674, + "2024-07-20T20": 4.7288908, + "2024-07-22T03": 4.72618904, + "2024-07-25T21": 4.18003837, + "2024-07-21T16": 4.6657256799999995, + "2024-07-20T17": 4.7609036, + "2024-07-22T11": 4.64713941, + "2024-07-25T00": 4.27123104, + "2024-07-20T13": 4.608934940000001, + "2024-07-23T07": 4.44794475, + "2024-07-22T05": 4.675307860660717, + "2024-07-20T07": 4.6861078, + "2024-07-21T18": 4.571056476588509, + "2024-07-23T17": 4.3674367, + "2024-07-20T14": 4.6467651, + "2024-07-26T04": 4.2883995399999995, + "2024-07-24T10": 4.513, + "2024-07-20T18": 4.744371, + "2024-07-23T15": 4.52176857, + "2024-07-19T18": 4.647207959999999, + "2024-07-25T09": 4.18749196, + "latest": 3.54, + "2024-07-26T09": 4.405172526122053, + "2024-07-26T10": 4.39181389, + "2024-07-26T11": 4.393945199999999, + "2024-07-26T12": 4.40425115, + "2024-07-26T13": 4.401367514068381, + "2024-07-26T14": 4.40060391, + "2024-07-26T17": 4.61690766, + "2024-07-26T16": 4.5617719, + "2024-07-26T15": 4.463642880000001, + "2024-07-26T18": 4.667, + "2024-07-27": 4.608157197320969, + "2024-07-28": 4.528886532538974, + "2024-07-28T05": 4.508954910000001, + "2024-07-26T21": 4.643, + "2024-07-27T02": 4.6011380299999995, + "2024-07-28T01": 4.60367772, + "2024-07-27T10": 4.605020686839295, + "2024-07-28T02": 4.626468665, + "2024-07-27T19": 4.5792429326147195, + "2024-07-27T09": 4.61841562, + "2024-07-27T06": 4.608013904056382, + "2024-07-27T18": 4.590688500000001, + "2024-07-26T22": 4.63318532, + "2024-07-27T13": 4.64960437, + "2024-07-27T12": 4.62678642, + "2024-07-27T16": 4.590459, + "2024-07-27T05": 4.61209224, + "2024-07-26T23": 4.640208278458372, + "2024-07-26T20": 4.651006562241123, + "2024-07-27T08": 4.60323015, + "2024-07-28T03": 4.591908159999999, + "2024-07-27T01": 4.63718548, + "2024-07-28T09": 4.54090918, + "2024-07-28T10": 4.54386368, + "2024-07-27T00": 4.64718588, + "2024-07-28T00": 4.556154438000001, + "2024-07-27T04": 4.59809196, + "2024-07-27T14": 4.623810944144744, + "2024-07-27T07": 4.62, + "2024-07-27T11": 4.611949337564487, + "2024-07-27T22": 4.6075852799999995, + "2024-07-27T03": 4.57904579, + "2024-07-27T20": 4.58722935, + "2024-07-27T23": 4.5896786999999994, + "2024-07-28T08": 4.535909279999999, + "2024-07-27T21": 4.62186134, + "2024-07-28T07": 4.54890902, + "2024-07-27T15": 4.6094609, + "2024-07-26T19": 4.688, + "2024-07-28T04": 4.54690906, + "2024-07-28T06": 4.56090878, + "2024-07-27T17": 4.59455128, + "2024-07-29": 4.561656641092287, + "2024-07-28T20": 4.46550874, + "2024-07-28T16": 4.497776538521953, + "2024-07-29T07": 4.60717056, + "2024-07-28T23": 4.434611306, + "2024-07-28T15": 4.49795502, + "2024-07-28T18": 4.498505109999999, + "2024-07-29T04": 4.56845172, + "2024-07-29T06": 4.608144332856392, + "2024-07-28T21": 4.4385561000000004, + "2024-07-29T03": 4.60549334, + "2024-07-28T12": 4.53386398, + "2024-07-29T05": 4.57845052, + "2024-07-28T17": 4.4785073099999995, + "2024-07-29T00": 4.507, + "2024-07-29T01": 4.535, + "2024-07-28T22": 4.4098677, + "2024-07-28T19": 4.47550764, + "2024-07-28T14": 4.503, + "2024-07-29T02": 4.55668101, + "2024-07-29T08": 4.629074, + "2024-07-28T11": 4.542625645394545, + "2024-07-28T13": 4.542809142, + "2024-07-29T09": 4.603993052108865, + "2024-07-29T10": 4.61303106, + "2024-07-29T11": 4.599133979, + "2024-07-29T12": 4.5855872600000005, + "2024-07-29T13": 4.601094123534222, + "2024-07-30": 4.422032996605202, + "2024-07-29T23": 4.43342358, + "2024-07-29T18": 4.4671064000000005, + "2024-07-29T21": 4.45114388, + "2024-07-29T22": 4.463619654, + "2024-07-29T17": 4.466017259999999, + "2024-07-29T15": 4.51182662, + "2024-07-30T01": 4.47301572, + "2024-07-29T19": 4.477283519999999, + "2024-07-30T04": 4.45990784, + "2024-07-29T14": 4.57631345, + "2024-07-29T20": 4.48150698, + "2024-07-30T03": 4.46037546, + "2024-07-30T00": 4.4232479200000006, + "2024-07-29T16": 4.460172288, + "2024-07-30T02": 4.43431296, + "2024-07-30T09": 4.4290254, + "2024-07-30T08": 4.44175596, + "2024-07-30T06": 4.440622848, + "2024-07-30T05": 4.429158299999999, + "2024-07-30T07": 4.454941414, + "2024-07-30T10": 4.41724894, + "2024-07-30T11": 4.41407285, + "2024-07-30T12": 4.4265145200000005, + "2024-07-30T13": 4.4421114, + "2024-07-31": 4.318334206228315, + "2024-07-31T00": 4.32591825, + "2024-07-31T05": 4.3065523500000005, + "2024-07-30T23": 4.3287443, + "2024-07-30T19": 4.302807372, + "2024-07-30T16": 4.4245836800000005, + "2024-07-30T17": 4.35664902, + "2024-07-30T18": 4.33161344, + "2024-07-30T20": 4.2767166, + "2024-07-30T15": 4.423598576642644, + "2024-07-31T03": 4.34208797, + "2024-07-30T21": 4.27688772, + "2024-07-31T01": 4.35499812, + "2024-07-31T07": 4.3386546, + "2024-07-31T06": 4.34773879, + "2024-07-31T02": 4.34913, + "2024-07-30T22": 4.30777793298809, + "2024-07-30T14": 4.415116800000001, + "2024-07-31T04": 4.319792653, + "2024-07-31T08": 4.321054650000001, + "2024-07-31T11": 4.296935384999999, + "2024-07-31T09": 4.31631598, + "2024-07-31T10": 4.299935039999999, + "2024-07-31T12": 4.31058472, + "2024-08-01": 4.150620470990192, + "2024-07-31T14": 4.334048800000001, + "2024-07-31T23": 4.2196492800000005, + "2024-07-31T13": 4.345456675, + "2024-07-31T21": 4.206300998000001, + "2024-08-01T01": 4.21552405, + "2024-07-31T18": 4.357066770283387, + "2024-07-31T19": 4.299884280708563, + "2024-07-31T16": 4.31631598, + "2024-08-01T02": 4.197816, + "2024-07-31T22": 4.240784949, + "2024-07-31T20": 4.21335615, + "2024-07-31T17": 4.32531247, + "2024-08-01T00": 4.2140587390112385, + "2024-07-31T15": 4.33122347, + "2024-08-01T07": 4.15712845, + "2024-08-01T06": 4.16295915, + "2024-08-01T05": 4.160460570000001, + "2024-08-01T04": 4.13984616, + "2024-08-01T03": 4.18378142, + "2024-08-01T08": 4.176826920000001, + "2024-08-01T09": 4.201561679999999, + "2024-08-01T10": 4.21076711, + "2024-08-01T11": 4.2277581, + "2024-08-01T12": 4.273376688, + "2024-08-01T13": 4.2379648, + "2024-08-01T14": 4.1822427200000005, + "2024-08-01T15": 4.1099440000000005, + "2024-08-02": 4.0461527616973925, + "2024-08-02T00": 4.15385816, + "2024-08-01T20": 4.05689839, + "2024-08-01T21": 4.07824456, + "2024-08-02T04": 4.10126445, + "2024-08-01T19": 4.0305615, + "2024-08-01T16": 4.0121895, + "2024-08-02T02": 4.0664591, + "2024-08-01T17": 3.9787745800000005, + "2024-08-01T23": 4.156530828, + "2024-08-02T01": 4.1118372050000005, + "2024-08-01T22": 4.155548029999999, + "2024-08-01T18": 3.9763384, + "2024-08-02T03": 4.08823536, + "2024-08-02T05": 4.0764504, + "2024-08-02T06": 4.03992732, + "2024-08-02T07": 4.05371383, + "2024-08-02T08": 4.04563933, + "2024-08-02T09": 4.062603154, + "2024-08-02T10": 4.07709582620053, + "2024-08-02T11": 4.09455768, + "2024-08-02T12": 4.0821404999999995, + "2024-08-02T13": 4.13876924, + "2024-08-02T14": 4.154285440490139, + "2024-08-02T15": 3.89717702, + "2024-08-03": 3.805332328400535, + "2024-08-02T16": 3.9306561, + "2024-08-02T22": 3.8770523314192773, + "2024-08-02T23": 3.8660451200000003, + "2024-08-03T00": 3.87891196, + "2024-08-03T01": 3.80831001, + "2024-08-03T03": 3.90135186, + "2024-08-02T19": 3.8940508529999995, + "2024-08-02T18": 3.913083, + "2024-08-02T21": 3.8993966999999996, + "2024-08-02T17": 3.958735625, + "2024-08-02T20": 3.92371848, + "2024-08-03T02": 3.8848652, + "2024-08-03T06": 3.9258161909999996, + "2024-08-03T19": 3.64415534, + "2024-08-03T10": 3.89556888, + "2024-08-03T09": 3.91051654, + "2024-08-03T15": 3.8274339000000004, + "2024-08-03T22": 3.6674083850000003, + "2024-08-03T05": 3.92963326, + "2024-08-03T08": 3.90321021, + "2024-08-03T14": 3.90785824, + "2024-08-03T18": 3.6464456999999997, + "2024-08-03T17": 3.6833460799999997, + "2024-08-03T21": 3.6478099999999998, + "2024-08-03T12": 3.91302384, + "2024-08-03T20": 3.62456991, + "2024-08-03T04": 3.9170397900000005, + "2024-08-03T16": 3.7471875, + "2024-08-03T11": 3.89522526, + "2024-08-03T07": 3.935384628, + "2024-08-03T13": 3.897348, + "2024-08-04": 3.5694662116048756, + "2024-08-03T23": 3.68693416, + "2024-08-04T17": 3.437849007442019, + "2024-08-04T13": 3.6927527, + "2024-08-04T06": 3.7249890740000002, + "2024-08-04T12": 3.7061460000000004, + "2024-08-04T10": 3.7020739199999997, + "2024-08-04T16": 3.50447496, + "2024-08-04T15": 3.5356295400000004, + "2024-08-04T00": 3.6968175899999998, + "2024-08-04T11": 3.71610382, + "2024-08-04T01": 3.69381936, + "2024-08-04T03": 3.7372814480000005, + "2024-08-04T04": 3.72572592, + "2024-08-04T07": 3.69881641, + "2024-08-04T08": 3.69574422, + "2024-08-04T18": 3.465471354586916, + "2024-08-04T09": 3.70888473, + "2024-08-04T02": 3.7408541399999997, + "2024-08-04T05": 3.71873019, + "2024-08-04T14": 3.57446232, + "2024-08-05": 3.1518179905958426, + "2024-08-05T01": 3.364654765906127, + "2024-08-04T19": 3.4896977568106164, + "2024-08-04T22": 3.543668632460982, + "2024-08-05T03": 3.1905012280024976, + "2024-08-05T02": 3.1902982798848485, + "2024-08-04T23": 3.571689027117606, + "2024-08-05T00": 3.5316926008109126, + "2024-08-05T04": 3.1213218195454253, + "2024-08-05T06": 3.1262314691863895, + "2024-08-04T20": 3.5451148050155337, + "2024-08-05T05": 3.151930676429695, + "2024-08-04T21": 3.556198936308837, + "2024-08-05T07": 3.012293282086094, + "2024-08-05T08": 3.1207644471863043, + "2024-08-05T09": 3.09455692, + "2024-08-05T10": 3.02942406, + "2024-08-05T11": 2.97938727, + "2024-08-05T12": 3.0305107514093077, + "2024-08-05T13": 2.9808550905175495, + "2024-08-05T14": 3.167095318044547, + "2024-08-05T15": 3.29107207, + "2024-08-06": 3.3773122745336526, + "2024-08-05T19": 3.216521814, + "2024-08-05T20": 3.2408490728419492, + "2024-08-05T21": 3.2485846400000002, + "2024-08-06T02": 3.37228098, + "2024-08-05T18": 3.2555968859999997, + "2024-08-05T23": 3.2583515399999996, + "2024-08-05T16": 3.3053120999999996, + "2024-08-06T05": 3.4240189800000005, + "2024-08-05T17": 3.2999458200000005, + "2024-08-06T00": 3.3446688, + "2024-08-06T04": 3.3855228, + "2024-08-06T03": 3.3783170299999994, + "2024-08-05T22": 3.2645548800000004, + "2024-08-06T01": 3.3950182, + "2024-08-06T06": 3.4602241209999995, + "2024-08-06T07": 3.45531351, + "2024-08-06T08": 3.41397896, + "2024-08-06T09": 3.3950182, + "2024-08-06T10": 3.3950860800000005, + "2024-08-06T11": 3.3988495000000003, + "2024-08-06T12": 3.40625985, + "2024-08-06T13": 3.400952, + "2024-08-06T14": 3.4009859999999996 + }, + "USD flare": { + "2024-06-28": 0.02459894440153886, + "2024-06-30": 0.024180872971499165, + "2024-07-15": 0.02066, + "2024-07-18": 0.02053, + "2024-07-14": 0.01999, + "2024-07-11": 0.01909775843856714, + "2024-07-19": 0.020232637428630545, + "2024-07-12": 0.01894, + "2024-07-24": 0.01949, + "2024-07-08": 0.020310907940231365, + "2024-07-07": 0.02092021800649585, + "2024-07-13": 0.01979, + "2024-07-09": 0.020079920552412863, + "2024-07-02": 0.02356925909988526, + "2024-07-20": 0.02031, + "2024-06-29": 0.024002006119260753, + "2024-07-21": 0.02008, + "2024-07-23": 0.01971, + "2024-07-10": 0.019570000076241635, + "2024-07-01": 0.024121410627839488, + "2024-06-26": 0.02392, + "2024-07-17": 0.02131507670514139, + "2024-07-22": 0.019993008422101773, + "2024-07-04": 0.021744617194894227, + "2024-06-25": 0.023748651746477778, + "2024-07-26": 0.0191, + "2024-07-03": 0.023009323779327018, + "2024-07-05": 0.020296752, + "2024-07-25": 0.01839, + "2024-07-16": 0.02092, + "2024-07-06": 0.02127, + "2024-06-27": 0.02454, + "2024-07-22T13": 0.0199927986, + "2024-07-25T10": 0.01824, + "2024-07-26T06": 0.0191, + "2024-07-24T14": 0.0197, + "2024-07-21T20": 0.02005, + "2024-07-21T07": 0.02027, + "2024-07-21T14": 0.02003, + "2024-07-22T23": 0.019855954999999998, + "2024-07-24T07": 0.019432592359460547, + "2024-07-20T11": 0.02023, + "2024-07-26T08": 0.01906, + "2024-07-25T20": 0.01848, + "2024-07-21T02": 0.020430024456981177, + "2024-07-20T04": 0.020332054028105125, + "2024-07-20T03": 0.0202, + "2024-07-25T13": 0.0183, + "2024-07-21T06": 0.02015052497688831, + "2024-07-20T12": 0.02024, + "2024-07-24T02": 0.01935, + "2024-07-24T17": 0.019561976912000532, + "2024-07-25T06": 0.01834, + "2024-07-25T22": 0.01877, + "2024-07-22T07": 0.020003000000000003, + "2024-07-22T22": 0.019786527399999997, + "2024-07-26T03": 0.01903, + "2024-07-23T01": 0.01997, + "2024-07-24T03": 0.01953, + "2024-07-23T21": 0.01949, + "2024-07-19T20": 0.02073, + "2024-07-23T22": 0.01932, + "2024-07-21T23": 0.02031, + "2024-07-19T16": 0.02044, + "2024-07-22T20": 0.0200876304, + "2024-07-23T10": 0.02014, + "2024-07-19T17": 0.02051, + "2024-07-22T09": 0.01996, + "2024-07-24T04": 0.01949251286014323, + "2024-07-22T06": 0.0200412024, + "2024-07-24T21": 0.01919, + "2024-07-20T21": 0.02017, + "2024-07-21T15": 0.020152253239439446, + "2024-07-20T09": 0.020413259817578383, + "2024-07-25T14": 0.018644929240905234, + "2024-07-19T11": 0.0199, + "2024-07-23T20": 0.01949, + "2024-07-25T03": 0.018070257913429824, + "2024-07-20T01": 0.020271517432117733, + "2024-07-25T23": 0.01877, + "2024-07-20T16": 0.02033, + "2024-07-22T15": 0.019881789199999996, + "2024-07-23T16": 0.01963, + "2024-07-22T02": 0.02046, + "2024-07-21T04": 0.02034, + "2024-07-23T09": 0.0201, + "2024-07-20T10": 0.02039, + "2024-07-22T19": 0.0198453568, + "2024-07-20T00": 0.020252713978249688, + "2024-07-20T19": 0.02027, + "2024-07-26T05": 0.01899, + "2024-07-19T14": 0.02027, + "2024-07-21T00": 0.02012, + "2024-07-22T12": 0.020191615200000002, + "2024-07-24T06": 0.01939, + "2024-07-25T01": 0.01817, + "2024-07-20T22": 0.02011, + "2024-07-19T15": 0.02026, + "2024-07-21T13": 0.01999, + "2024-07-25T07": 0.0183, + "2024-07-21T08": 0.02027, + "2024-07-23T06": 0.01971, + "2024-07-22T16": 0.019812971500000002, + "2024-07-24T11": 0.019703485322544234, + "2024-07-24T01": 0.01937, + "2024-07-23T00": 0.02004, + "2024-07-19T12": 0.020121849967130116, + "2024-07-25T17": 0.01878, + "2024-07-25T19": 0.01848, + "2024-07-19T21": 0.02057, + "2024-07-23T08": 0.019692340937973958, + "2024-07-21T21": 0.02005, + "2024-07-21T11": 0.02007, + "2024-07-22T14": 0.019922988000000003, + "2024-07-20T23": 0.020110689177104495, + "2024-07-20T08": 0.02041, + "2024-07-20T02": 0.020216988534984846, + "2024-07-24T05": 0.01941, + "2024-07-24T16": 0.01955, + "2024-07-21T01": 0.02016, + "2024-07-24T13": 0.01965, + "2024-07-25T04": 0.01821, + "2024-07-19T13": 0.02019, + "2024-07-25T12": 0.01833, + "2024-07-19T22": 0.0203, + "2024-07-26T07": 0.0191, + "2024-07-25T02": 0.018110278809312486, + "2024-07-21T12": 0.02003, + "2024-07-23T18": 0.01947, + "2024-07-23T11": 0.02010175293663595, + "2024-07-19T10": 0.019760324875223775, + "2024-07-19T19": 0.02061, + "2024-07-25T11": 0.01836, + "2024-07-22T08": 0.0199915992, + "2024-07-23T19": 0.01967, + "2024-07-22T21": 0.0199157739, + "2024-07-21T09": 0.020163666160648568, + "2024-07-21T22": 0.02034, + "2024-07-22T04": 0.020211616800000002, + "2024-07-25T16": 0.0188, + "2024-07-19T23": 0.02032, + "2024-07-20T06": 0.02055, + "2024-07-23T02": 0.02011, + "2024-07-23T14": 0.019880115547130622, + "2024-07-23T03": 0.01999, + "2024-07-25T08": 0.01825, + "2024-07-24T15": 0.019603733216045575, + "2024-07-19T09": 0.01987, + "2024-07-20T15": 0.02045, + "2024-07-23T23": 0.019390660899216206, + "2024-07-23T12": 0.02003361748150337, + "2024-07-22T10": 0.0200902009, + "2024-07-21T10": 0.02031, + "2024-07-22T00": 0.020431021500000004, + "2024-07-24T22": 0.0192, + "2024-07-24T19": 0.01934, + "2024-07-24T09": 0.019674558522292697, + "2024-07-23T04": 0.01998, + "2024-07-23T05": 0.01966, + "2024-07-25T18": 0.01847, + "2024-07-25T15": 0.018802714829309473, + "2024-07-26T01": 0.01895193901889983, + "2024-07-22T01": 0.0205124612, + "2024-07-26T02": 0.01899, + "2024-07-24T18": 0.01973, + "2024-07-21T19": 0.01989, + "2024-07-25T05": 0.01821, + "2024-07-22T18": 0.019954093209408906, + "2024-07-24T00": 0.019491530432658933, + "2024-07-24T08": 0.01966, + "2024-07-24T20": 0.0193, + "2024-07-24T23": 0.01897, + "2024-07-22T17": 0.0200971193994916, + "2024-07-21T17": 0.020212147077847353, + "2024-07-24T12": 0.0197, + "2024-07-23T13": 0.0197, + "2024-07-21T05": 0.020247311154946865, + "2024-07-20T05": 0.02047, + "2024-07-21T03": 0.02037515830985779, + "2024-07-26T00": 0.018874081239085058, + "2024-07-20T20": 0.02025, + "2024-07-22T03": 0.0203208128, + "2024-07-25T21": 0.01877, + "2024-07-21T16": 0.020153137561590866, + "2024-07-20T17": 0.02028, + "2024-07-22T11": 0.0203806114, + "2024-07-25T00": 0.01898, + "2024-07-20T13": 0.02013, + "2024-07-23T07": 0.01957, + "2024-07-22T05": 0.020111206599999997, + "2024-07-20T07": 0.020467432087884117, + "2024-07-21T18": 0.0199, + "2024-07-23T17": 0.0193, + "2024-07-20T14": 0.020378745808769038, + "2024-07-26T04": 0.01905, + "2024-07-24T10": 0.01983, + "2024-07-20T18": 0.02033, + "2024-07-23T15": 0.01998, + "2024-07-19T18": 0.020490091575571794, + "2024-07-25T09": 0.01842, + "latest": 0.01646147, + "2024-07-26T09": 0.01913, + "2024-07-26T10": 0.01909, + "2024-07-26T11": 0.01903, + "2024-07-26T12": 0.01904, + "2024-07-26T13": 0.01919, + "2024-07-26T14": 0.01907, + "2024-07-26T17": 0.01903, + "2024-07-26T16": 0.019143446913013694, + "2024-07-26T15": 0.01917, + "2024-07-26T18": 0.019114066162031824, + "2024-07-27": 0.01913, + "2024-07-28": 0.01888, + "2024-07-28T05": 0.01889, + "2024-07-26T21": 0.01911, + "2024-07-27T02": 0.01928, + "2024-07-28T01": 0.01893, + "2024-07-27T10": 0.01907, + "2024-07-28T02": 0.01896, + "2024-07-27T19": 0.01903, + "2024-07-27T09": 0.01913413898569672, + "2024-07-27T06": 0.0192, + "2024-07-27T18": 0.01919, + "2024-07-26T22": 0.01926, + "2024-07-27T13": 0.01921, + "2024-07-27T12": 0.01904, + "2024-07-27T16": 0.0189, + "2024-07-27T05": 0.01924, + "2024-07-26T23": 0.01931, + "2024-07-26T20": 0.019190566516353706, + "2024-07-27T08": 0.019072976386488187, + "2024-07-28T03": 0.01896, + "2024-07-27T01": 0.0193, + "2024-07-28T09": 0.01889, + "2024-07-28T10": 0.01892, + "2024-07-27T00": 0.01931, + "2024-07-28T00": 0.01892, + "2024-07-27T04": 0.01927, + "2024-07-27T14": 0.01917, + "2024-07-27T07": 0.01916, + "2024-07-27T11": 0.01904, + "2024-07-27T22": 0.019176680103762618, + "2024-07-27T03": 0.01927, + "2024-07-27T20": 0.01909, + "2024-07-27T23": 0.01915, + "2024-07-28T08": 0.01888, + "2024-07-27T21": 0.01920117932288809, + "2024-07-28T07": 0.01887, + "2024-07-27T15": 0.01896, + "2024-07-26T19": 0.01928, + "2024-07-28T04": 0.01889, + "2024-07-28T06": 0.01889, + "2024-07-27T17": 0.01895, + "2024-07-29": 0.01874, + "2024-07-28T20": 0.01869, + "2024-07-28T16": 0.01882, + "2024-07-29T07": 0.01896482740548812, + "2024-07-28T23": 0.01863, + "2024-07-28T15": 0.019, + "2024-07-28T18": 0.018753482324453855, + "2024-07-29T04": 0.019073920953229555, + "2024-07-29T06": 0.01911, + "2024-07-28T21": 0.01871, + "2024-07-29T03": 0.01915, + "2024-07-28T12": 0.01906, + "2024-07-29T05": 0.01907, + "2024-07-28T17": 0.0188, + "2024-07-29T00": 0.01879, + "2024-07-29T01": 0.01881, + "2024-07-28T22": 0.01862, + "2024-07-28T19": 0.01879, + "2024-07-28T14": 0.01904, + "2024-07-29T02": 0.01907, + "2024-07-29T08": 0.019, + "2024-07-28T11": 0.01905462818807723, + "2024-07-28T13": 0.01905, + "2024-07-29T09": 0.01885, + "2024-07-29T10": 0.01885, + "2024-07-29T11": 0.01889, + "2024-07-29T12": 0.018844834118649637, + "2024-07-29T13": 0.01879, + "2024-07-30": 0.01821, + "2024-07-29T23": 0.01823, + "2024-07-29T18": 0.01842, + "2024-07-29T21": 0.01847, + "2024-07-29T22": 0.018353031916177223, + "2024-07-29T17": 0.01851, + "2024-07-29T15": 0.01873, + "2024-07-30T01": 0.018288709078593566, + "2024-07-29T19": 0.01856, + "2024-07-30T04": 0.01844, + "2024-07-29T14": 0.01876, + "2024-07-29T20": 0.01845, + "2024-07-30T03": 0.01844, + "2024-07-30T00": 0.018293904248587067, + "2024-07-29T16": 0.01856, + "2024-07-30T02": 0.01823, + "2024-07-30T09": 0.01841, + "2024-07-30T08": 0.01847, + "2024-07-30T06": 0.01842, + "2024-07-30T05": 0.0184, + "2024-07-30T07": 0.01854, + "2024-07-30T10": 0.01836, + "2024-07-30T11": 0.0183, + "2024-07-30T12": 0.01828, + "2024-07-30T13": 0.01821, + "2024-07-31": 0.01763, + "2024-07-31T00": 0.01806, + "2024-07-31T05": 0.0176, + "2024-07-30T23": 0.01799, + "2024-07-30T19": 0.01808543169139331, + "2024-07-30T16": 0.0181, + "2024-07-30T17": 0.01804, + "2024-07-30T18": 0.01804, + "2024-07-30T20": 0.01797, + "2024-07-30T15": 0.01804, + "2024-07-31T03": 0.01795, + "2024-07-30T21": 0.01796, + "2024-07-31T01": 0.01802, + "2024-07-31T07": 0.01764490275317558, + "2024-07-31T06": 0.01786, + "2024-07-31T02": 0.01797, + "2024-07-30T22": 0.01795, + "2024-07-30T14": 0.01802, + "2024-07-31T04": 0.0177, + "2024-07-31T08": 0.017589094768520056, + "2024-07-31T11": 0.01758, + "2024-07-31T09": 0.01757, + "2024-07-31T10": 0.017612586056939362, + "2024-07-31T12": 0.01768, + "2024-08-01": 0.01706, + "2024-07-31T14": 0.01779, + "2024-07-31T23": 0.01727, + "2024-07-31T13": 0.01791, + "2024-07-31T21": 0.01736, + "2024-08-01T01": 0.01743, + "2024-07-31T18": 0.01771, + "2024-07-31T19": 0.01751, + "2024-07-31T16": 0.017671885661802715, + "2024-08-01T02": 0.01725, + "2024-07-31T22": 0.01729, + "2024-07-31T20": 0.01728, + "2024-07-31T17": 0.01769, + "2024-08-01T00": 0.01727, + "2024-07-31T15": 0.017684412428447704, + "2024-08-01T07": 0.01701, + "2024-08-01T06": 0.01702, + "2024-08-01T05": 0.01706, + "2024-08-01T04": 0.017, + "2024-08-01T03": 0.01711, + "2024-08-01T08": 0.01707, + "2024-08-01T09": 0.017074509170843744, + "2024-08-01T10": 0.017064647457867024, + "2024-08-01T11": 0.01718, + "2024-08-01T12": 0.017327887816344437, + "2024-08-01T13": 0.017444012978219493, + "2024-08-01T14": 0.01734, + "2024-08-01T15": 0.01723, + "2024-08-02": 0.01726, + "2024-08-02T00": 0.0172, + "2024-08-01T20": 0.016912698639250212, + "2024-08-01T21": 0.017, + "2024-08-02T04": 0.01673, + "2024-08-01T19": 0.01682, + "2024-08-01T16": 0.01691047722280919, + "2024-08-02T02": 0.01686, + "2024-08-01T17": 0.01683, + "2024-08-01T23": 0.01715001420588033, + "2024-08-02T01": 0.017, + "2024-08-01T22": 0.01713034638530674, + "2024-08-01T18": 0.01671, + "2024-08-02T03": 0.016764506139051682, + "2024-08-02T05": 0.01669, + "2024-08-02T06": 0.01661, + "2024-08-02T07": 0.01679465298657487, + "2024-08-02T08": 0.01734, + "2024-08-02T09": 0.01736, + "2024-08-02T10": 0.01719, + "2024-08-02T11": 0.01743, + "2024-08-02T12": 0.0175, + "2024-08-02T13": 0.01785, + "2024-08-02T14": 0.017880002500877606, + "2024-08-02T15": 0.01693, + "2024-08-03": 0.016794777223921673, + "2024-08-02T16": 0.017067286172754277, + "2024-08-02T22": 0.01672, + "2024-08-02T23": 0.01664, + "2024-08-03T00": 0.01673, + "2024-08-03T01": 0.01654, + "2024-08-03T03": 0.01658, + "2024-08-02T19": 0.01727, + "2024-08-02T18": 0.01737, + "2024-08-02T21": 0.01696, + "2024-08-02T17": 0.01703, + "2024-08-02T20": 0.01715, + "2024-08-03T02": 0.0166, + "2024-08-03T06": 0.01682268588801966, + "2024-08-03T19": 0.01629, + "2024-08-03T10": 0.01684350619284529, + "2024-08-03T09": 0.01677, + "2024-08-03T15": 0.01679, + "2024-08-03T22": 0.01657, + "2024-08-03T05": 0.01667, + "2024-08-03T08": 0.01678, + "2024-08-03T14": 0.01689785242679097, + "2024-08-03T18": 0.01668, + "2024-08-03T17": 0.01686, + "2024-08-03T21": 0.01629, + "2024-08-03T12": 0.01682, + "2024-08-03T20": 0.01633, + "2024-08-03T04": 0.0166, + "2024-08-03T16": 0.01701048850989023, + "2024-08-03T11": 0.01675, + "2024-08-03T07": 0.01675, + "2024-08-03T13": 0.01685, + "2024-08-04": 0.01595, + "2024-08-03T23": 0.0166, + "2024-08-04T17": 0.01539, + "2024-08-04T13": 0.016534766065647327, + "2024-08-04T06": 0.01674, + "2024-08-04T12": 0.01655, + "2024-08-04T10": 0.0166429205126366, + "2024-08-04T16": 0.01556, + "2024-08-04T15": 0.01584, + "2024-08-04T00": 0.01664, + "2024-08-04T11": 0.016630150067467847, + "2024-08-04T01": 0.01666, + "2024-08-04T03": 0.01676, + "2024-08-04T04": 0.016672498651255876, + "2024-08-04T07": 0.01672, + "2024-08-04T08": 0.0166, + "2024-08-04T18": 0.0153782326859013, + "2024-08-04T09": 0.01662, + "2024-08-04T02": 0.01683, + "2024-08-04T05": 0.01682, + "2024-08-04T14": 0.016020836298743485, + "2024-08-05": 0.01446, + "2024-08-05T01": 0.015003425527256567, + "2024-08-04T19": 0.015968303331794564, + "2024-08-04T22": 0.015883778603757847, + "2024-08-05T03": 0.01462653145178205, + "2024-08-05T02": 0.014675917120755463, + "2024-08-04T23": 0.015865994810534072, + "2024-08-05T00": 0.015624171062014303, + "2024-08-05T04": 0.014312231955780403, + "2024-08-05T06": 0.014191205664380695, + "2024-08-04T20": 0.01598597209595617, + "2024-08-05T05": 0.014659212514682548, + "2024-08-04T21": 0.01588051461136842, + "2024-08-05T07": 0.013919408338612238, + "2024-08-05T08": 0.01451022041356698, + "2024-08-05T09": 0.014380940992287263, + "2024-08-05T10": 0.014711203175267255, + "2024-08-05T11": 0.01393, + "2024-08-05T12": 0.014214585400318643, + "2024-08-05T13": 0.013895971155002854, + "2024-08-05T14": 0.014194233415727129, + "2024-08-05T15": 0.01474, + "2024-08-06": 0.01565, + "2024-08-05T19": 0.014700901817552414, + "2024-08-05T20": 0.014983075197110859, + "2024-08-05T21": 0.01525, + "2024-08-06T02": 0.0156, + "2024-08-05T18": 0.014793198781728073, + "2024-08-05T23": 0.01528, + "2024-08-05T16": 0.01523, + "2024-08-06T05": 0.01565568777156753, + "2024-08-05T17": 0.01507, + "2024-08-06T00": 0.0155, + "2024-08-06T04": 0.01561, + "2024-08-06T03": 0.015622396218467059, + "2024-08-05T22": 0.01522, + "2024-08-06T01": 0.01585, + "2024-08-06T06": 0.01586, + "2024-08-06T07": 0.01609, + "2024-08-06T08": 0.0161, + "2024-08-06T09": 0.01575, + "2024-08-06T10": 0.01580341014822182, + "2024-08-06T11": 0.015894811012500867, + "2024-08-06T12": 0.015793971940985675, + "2024-08-06T13": 0.01568038360556545, + "2024-08-06T14": 0.01568038360556545 + }, + "USD flow": { + "2024-06-28": 0.6243715081565161, + "2024-06-30": 0.6038479735657633, + "2024-07-15": 0.5848197417831521, + "2024-07-18": 0.6165627838531885, + "2024-07-14": 0.5743235597625703, + "2024-07-11": 0.5526651377350303, + "2024-07-19": 0.6080584013315211, + "2024-07-12": 0.5449317266561473, + "2024-07-24": 0.602352317367184, + "2024-07-08": 0.5049242843834498, + "2024-07-07": 0.541176033973014, + "2024-07-13": 0.5565001251141938, + "2024-07-09": 0.5227089538016407, + "2024-07-02": 0.6182974317616154, + "2024-07-20": 0.6421397916312632, + "2024-06-29": 0.6128572666187153, + "2024-07-21": 0.6510973223462865, + "2024-07-23": 0.6299378323984198, + "2024-07-10": 0.5442383427165549, + "2024-07-01": 0.6276314598933262, + "2024-06-26": 0.6392677444544631, + "2024-07-17": 0.6176562993333411, + "2024-07-22": 0.6539698705373936, + "2024-07-04": 0.5998438347848687, + "2024-06-25": 0.6222877000890423, + "2024-07-26": 0.6315664896781336, + "2024-07-03": 0.6245968349626038, + "2024-07-05": 0.5242194292875292, + "2024-07-25": 0.6658594573225695, + "2024-07-16": 0.6267229527124681, + "2024-07-06": 0.5083696501950137, + "2024-06-27": 0.6150509750899152, + "2024-07-22T13": 0.6392812553927029, + "2024-07-25T10": 0.6319798195385888, + "2024-07-26T06": 0.6755809897664826, + "2024-07-24T14": 0.6740002669740289, + "2024-07-21T20": 0.636652326493347, + "2024-07-21T07": 0.642038645141313, + "2024-07-21T14": 0.6333158611422712, + "2024-07-22T23": 0.6278477899091852, + "2024-07-24T07": 0.6062557657758731, + "2024-07-20T11": 0.6411828223657843, + "2024-07-26T08": 0.6784952598958557, + "2024-07-25T20": 0.6095599897353754, + "2024-07-21T02": 0.6541818333797775, + "2024-07-20T04": 0.6419636678372078, + "2024-07-20T03": 0.6406727523077862, + "2024-07-25T13": 0.6213704491948664, + "2024-07-21T06": 0.648302104936698, + "2024-07-20T12": 0.6374172962546389, + "2024-07-24T02": 0.5993814259006033, + "2024-07-24T17": 0.6870578926922325, + "2024-07-25T06": 0.6313911250636514, + "2024-07-25T22": 0.627667204411556, + "2024-07-22T07": 0.6318663064621028, + "2024-07-22T22": 0.6326613596012585, + "2024-07-26T03": 0.6909976615058481, + "2024-07-23T01": 0.6295833791383393, + "2024-07-24T03": 0.6049689181532969, + "2024-07-23T21": 0.6034289181569988, + "2024-07-19T20": 0.6407428091437569, + "2024-07-23T22": 0.6008035119636642, + "2024-07-21T23": 0.6546823196246738, + "2024-07-19T16": 0.6255305942218061, + "2024-07-22T20": 0.6400473218837217, + "2024-07-23T10": 0.6225905995341388, + "2024-07-19T17": 0.6282424024663256, + "2024-07-22T09": 0.6284840154233637, + "2024-07-24T04": 0.6041095161429549, + "2024-07-22T06": 0.6365036706095167, + "2024-07-24T21": 0.6779865041628758, + "2024-07-20T21": 0.6433112791365301, + "2024-07-21T15": 0.6421540956168456, + "2024-07-20T09": 0.6408759295012666, + "2024-07-25T14": 0.6216684710345259, + "2024-07-19T11": 0.6033794013694634, + "2024-07-23T20": 0.6051842542043075, + "2024-07-25T03": 0.6338425639842004, + "2024-07-20T01": 0.6352791976537656, + "2024-07-25T23": 0.6285200921779491, + "2024-07-20T16": 0.6414695973092112, + "2024-07-22T15": 0.6291962615595775, + "2024-07-23T16": 0.6130409230398122, + "2024-07-22T02": 0.6471241865904047, + "2024-07-21T04": 0.6556323997365433, + "2024-07-23T09": 0.6234542807316718, + "2024-07-20T10": 0.639297657340709, + "2024-07-22T19": 0.6363800303362114, + "2024-07-20T00": 0.642548150723692, + "2024-07-20T19": 0.6423547364975216, + "2024-07-26T05": 0.6748828938489386, + "2024-07-19T14": 0.6174594960501423, + "2024-07-21T00": 0.6476997621431658, + "2024-07-22T12": 0.6369376830553706, + "2024-07-24T06": 0.6016531086835702, + "2024-07-25T01": 0.6501317444652739, + "2024-07-20T22": 0.6422341502948795, + "2024-07-19T15": 0.6218751801635116, + "2024-07-21T13": 0.6396130432896536, + "2024-07-25T07": 0.637248804384927, + "2024-07-21T08": 0.6435762827394373, + "2024-07-23T06": 0.6108328820073861, + "2024-07-22T16": 0.6319142586756825, + "2024-07-24T11": 0.6359582534433053, + "2024-07-24T01": 0.5966177508754926, + "2024-07-23T00": 0.6268699893499512, + "2024-07-19T12": 0.6066462395313302, + "2024-07-25T17": 0.6260685173096202, + "2024-07-25T19": 0.6112847860753882, + "2024-07-19T21": 0.641503129391442, + "2024-07-23T08": 0.6103866634614512, + "2024-07-21T21": 0.6476110984024894, + "2024-07-21T11": 0.6441572788236478, + "2024-07-22T14": 0.6301896509457258, + "2024-07-20T23": 0.6432945630787832, + "2024-07-20T08": 0.6419179431932679, + "2024-07-20T02": 0.6375977489537663, + "2024-07-24T05": 0.6023412044981311, + "2024-07-24T16": 0.6846080917712677, + "2024-07-21T01": 0.6491500657718731, + "2024-07-24T13": 0.6439329705540966, + "2024-07-25T04": 0.636833095764527, + "2024-07-19T13": 0.609324797913291, + "2024-07-25T12": 0.6300023034596027, + "2024-07-19T22": 0.6418005057195321, + "2024-07-26T07": 0.6892902496650934, + "2024-07-25T02": 0.6373530704515715, + "2024-07-21T12": 0.6415811318118756, + "2024-07-23T18": 0.5984898005084708, + "2024-07-23T11": 0.6168563963683213, + "2024-07-19T10": 0.599415516551539, + "2024-07-19T19": 0.6357392356782766, + "2024-07-25T11": 0.6283070985075289, + "2024-07-22T08": 0.6319002257317254, + "2024-07-23T19": 0.601440343053557, + "2024-07-22T21": 0.6397251363160443, + "2024-07-21T09": 0.6450499737944131, + "2024-07-21T22": 0.6557103875216047, + "2024-07-22T04": 0.6453350132206114, + "2024-07-25T16": 0.6260659628063961, + "2024-07-19T23": 0.6399233413699331, + "2024-07-26T09": 0.6816772759999999, + "2024-07-20T06": 0.6403382723413661, + "2024-07-23T02": 0.6314938087717874, + "2024-07-23T14": 0.6097554336092028, + "2024-07-23T03": 0.6308543255220326, + "2024-07-25T08": 0.6304234348965909, + "2024-07-24T15": 0.6857239080778963, + "2024-07-19T09": 0.6044693136100572, + "2024-07-20T15": 0.638840234662492, + "2024-07-23T23": 0.6020748271948355, + "2024-07-23T12": 0.6193552898976711, + "2024-07-22T10": 0.6329544575212513, + "2024-07-21T10": 0.646867724682535, + "2024-07-22T00": 0.6534623122086539, + "2024-07-24T22": 0.6728501900338506, + "2024-07-24T19": 0.6773627593153133, + "2024-07-24T09": 0.6416299965022543, + "2024-07-23T04": 0.6252724208640955, + "2024-07-23T05": 0.6154012080059669, + "2024-07-25T18": 0.6269991961672485, + "2024-07-25T15": 0.6273842327372721, + "2024-07-26T01": 0.6363537844129901, + "2024-07-22T01": 0.6540426302406825, + "2024-07-26T02": 0.6402213722699559, + "2024-07-24T18": 0.686403135410322, + "2024-07-21T19": 0.6284978637608023, + "2024-07-25T05": 0.6430412706271293, + "2024-07-22T18": 0.6336020985261959, + "2024-07-24T00": 0.6002381395912388, + "2024-07-24T08": 0.6242865040869638, + "2024-07-24T20": 0.6759017509825781, + "2024-07-24T23": 0.6684477203858484, + "2024-07-22T17": 0.6316493677431915, + "2024-07-21T17": 0.6466451540963918, + "2024-07-24T12": 0.6391438660440193, + "2024-07-23T13": 0.6176123107668288, + "2024-07-21T05": 0.6518633488385355, + "2024-07-20T05": 0.6406703014549971, + "2024-07-21T03": 0.6552856577568921, + "2024-07-26T00": 0.6347931010677474, + "2024-07-20T20": 0.640423664207, + "2024-07-22T03": 0.6522822249388074, + "2024-07-25T21": 0.6145034774038403, + "2024-07-21T16": 0.6405059045516588, + "2024-07-20T17": 0.6396161296756058, + "2024-07-22T11": 0.6357848261549325, + "2024-07-25T00": 0.669441070089776, + "2024-07-20T13": 0.6368052255227422, + "2024-07-23T07": 0.6103452262664811, + "2024-07-22T05": 0.644583829150365, + "2024-07-20T07": 0.6416140795924608, + "2024-07-21T18": 0.6342182274201289, + "2024-07-23T17": 0.5985844326801899, + "2024-07-20T14": 0.6342201188878478, + "2024-07-26T04": 0.6819692769067048, + "2024-07-24T10": 0.6389517077406947, + "2024-07-20T18": 0.6451149843305176, + "2024-07-23T15": 0.6206087457092332, + "2024-07-19T18": 0.632194222956557, + "2024-07-25T09": 0.633031454962683, + "latest": 0.529, + "2024-07-26T10": 0.681315995, + "2024-07-26T11": 0.687135048, + "2024-07-26T12": 0.690182649, + "2024-07-26T13": 0.6843892954095917, + "2024-07-26T14": 0.670039691, + "2024-07-26T17": 0.6718865620000001, + "2024-07-26T16": 0.6719664000000001, + "2024-07-26T15": 0.669646424, + "2024-07-26T18": 0.6732, + "2024-07-27": 0.6753989734204061, + "2024-07-28": 0.6799094559415592, + "2024-07-28T05": 0.6699933000000001, + "2024-07-26T21": 0.6686034974568483, + "2024-07-27T02": 0.664519935, + "2024-07-28T01": 0.6899517, + "2024-07-27T10": 0.66705336, + "2024-07-28T02": 0.6819659, + "2024-07-27T19": 0.66956735, + "2024-07-27T09": 0.67206048, + "2024-07-27T06": 0.6700134, + "2024-07-27T18": 0.6743011300000001, + "2024-07-26T22": 0.6730269200000001, + "2024-07-27T13": 0.6757878409999999, + "2024-07-27T12": 0.669513798, + "2024-07-27T16": 0.6687668699999999, + "2024-07-27T05": 0.6677133539999999, + "2024-07-26T23": 0.674626984, + "2024-07-26T20": 0.672, + "2024-07-27T08": 0.67623381, + "2024-07-28T03": 0.6793864119999999, + "2024-07-27T01": 0.665326612, + "2024-07-28T09": 0.67298654, + "2024-07-28T10": 0.6740797770000001, + "2024-07-27T00": 0.6730269200000001, + "2024-07-28T00": 0.674493255, + "2024-07-27T04": 0.66701334, + "2024-07-27T14": 0.6736673599999999, + "2024-07-27T07": 0.675, + "2024-07-27T11": 0.6669133559999999, + "2024-07-27T22": 0.679538836, + "2024-07-27T03": 0.66500665, + "2024-07-27T20": 0.6700335000000001, + "2024-07-27T23": 0.67795254, + "2024-07-28T08": 0.67298654, + "2024-07-27T21": 0.680879573, + "2024-07-28T07": 0.674086518, + "2024-07-27T15": 0.6670667, + "2024-07-26T19": 0.676, + "2024-07-28T04": 0.6757155347907402, + "2024-07-28T06": 0.676086478, + "2024-07-27T17": 0.6731807719999999, + "2024-07-29": 0.6556033708922862, + "2024-07-28T20": 0.656727752, + "2024-07-28T16": 0.658693413, + "2024-07-29T07": 0.676478212, + "2024-07-28T23": 0.6549869, + "2024-07-28T15": 0.65799342, + "2024-07-28T18": 0.661527224, + "2024-07-29T04": 0.6769187600000001, + "2024-07-29T06": 0.6798133903041289, + "2024-07-28T21": 0.6549345000000001, + "2024-07-29T03": 0.6818249909999999, + "2024-07-28T12": 0.6676799689999999, + "2024-07-29T05": 0.677218724, + "2024-07-28T17": 0.658827521, + "2024-07-29T00": 0.6646, + "2024-07-29T01": 0.663, + "2024-07-28T22": 0.6521293353863853, + "2024-07-28T19": 0.658027609, + "2024-07-28T14": 0.661, + "2024-07-29T02": 0.671153016, + "2024-07-29T08": 0.6788642, + "2024-07-28T11": 0.67197312, + "2024-07-28T13": 0.666286674, + "2024-07-29T09": 0.67735095, + "2024-07-29T10": 0.6787560726853598, + "2024-07-29T11": 0.67785762, + "2024-07-29T12": 0.6803387639999999, + "2024-07-29T13": 0.68393844, + "2024-07-30": 0.6625130252288813, + "2024-07-29T23": 0.6649135500000001, + "2024-07-29T18": 0.6708658000000001, + "2024-07-29T21": 0.66694664, + "2024-07-29T22": 0.6669132900000001, + "2024-07-29T17": 0.667453128, + "2024-07-29T15": 0.6698258, + "2024-07-30T01": 0.6768510600000001, + "2024-07-29T19": 0.674092128, + "2024-07-30T04": 0.6856903048004048, + "2024-07-29T14": 0.68049791, + "2024-07-29T20": 0.673325926, + "2024-07-30T03": 0.6847041279999999, + "2024-07-30T00": 0.6648869500000001, + "2024-07-29T16": 0.6637966281036061, + "2024-07-30T02": 0.6748913650534824, + "2024-07-30T09": 0.6853479705166143, + "2024-07-30T08": 0.6942298307606473, + "2024-07-30T06": 0.6897456420851986, + "2024-07-30T05": 0.6859941126235519, + "2024-07-30T07": 0.702287842752807, + "2024-07-30T10": 0.6934709110808264, + "2024-07-30T11": 0.684756171, + "2024-07-30T12": 0.6788642, + "2024-07-30T13": 0.6787642199999999, + "2024-07-31": 0.6895855236856112, + "2024-07-31T00": 0.6778305000000001, + "2024-07-31T05": 0.676651104, + "2024-07-30T23": 0.681702249, + "2024-07-30T19": 0.679448511, + "2024-07-30T16": 0.699776, + "2024-07-30T17": 0.6913856039999999, + "2024-07-30T18": 0.684680832, + "2024-07-30T20": 0.6777966000000001, + "2024-07-30T15": 0.68576676, + "2024-07-31T03": 0.673158607, + "2024-07-30T21": 0.6768204592048198, + "2024-07-31T01": 0.693740403, + "2024-07-31T07": 0.698383434, + "2024-07-31T06": 0.6957981599999999, + "2024-07-31T02": 0.6778644, + "2024-07-30T22": 0.68180222, + "2024-07-30T14": 0.6778644, + "2024-07-31T04": 0.6746582919999999, + "2024-07-31T08": 0.6936877, + "2024-07-31T11": 0.68722182, + "2024-07-31T09": 0.6927297299999999, + "2024-07-31T10": 0.6866973047775734, + "2024-07-31T12": 0.6939111920000001, + "2024-08-01": 0.6746419523317356, + "2024-07-31T14": 0.70668185, + "2024-07-31T23": 0.6717849600000001, + "2024-07-31T13": 0.70666771, + "2024-07-31T21": 0.66674654, + "2024-08-01T01": 0.6847602500000001, + "2024-07-31T18": 0.687073191, + "2024-07-31T19": 0.67577016, + "2024-07-31T16": 0.6957285599999999, + "2024-08-01T02": 0.682045152, + "2024-07-31T22": 0.669692331, + "2024-07-31T20": 0.66673987, + "2024-07-31T17": 0.689830861, + "2024-08-01T00": 0.672877877, + "2024-07-31T15": 0.70271177, + "2024-08-01T07": 0.6647007500000001, + "2024-08-01T06": 0.6596766000000001, + "2024-08-01T05": 0.66059679, + "2024-08-01T04": 0.6606562800000001, + "2024-08-01T03": 0.6796396, + "2024-08-01T08": 0.66815238, + "2024-08-01T09": 0.683903106, + "2024-08-01T10": 0.68563642, + "2024-08-01T11": 0.6926327099999999, + "2024-08-01T12": 0.692539692, + "2024-08-01T13": 0.6796736, + "2024-08-01T14": 0.67571608, + "2024-08-02": 0.661760200986664, + "2024-08-02T00": 0.6983708999999999, + "2024-08-01T20": 0.6461467320000001, + "2024-08-01T21": 0.66538728, + "2024-08-02T04": 0.6947438355055976, + "2024-08-01T19": 0.6420929200000001, + "2024-08-01T16": 0.6515436, + "2024-08-02T02": 0.6903988299999999, + "2024-08-01T23": 0.6954526270000001, + "2024-08-02T01": 0.69538056, + "2024-08-01T22": 0.690026802, + "2024-08-01T15": 0.6646675000000001, + "2024-08-01T18": 0.63841212, + "2024-08-02T03": 0.6903642799999999, + "2024-08-01T17": 0.648174553, + "2024-08-02T05": 0.6912820338072019, + "2024-08-02T06": 0.6801246321725046, + "2024-08-02T07": 0.675752197, + "2024-08-02T08": 0.681452314712657, + "2024-08-02T09": 0.67491907, + "2024-08-02T10": 0.66549384, + "2024-08-02T11": 0.6619435, + "2024-08-02T12": 0.658931826, + "2024-08-02T13": 0.6613695565151858, + "2024-08-02T14": 0.6698140760527113, + "2024-08-02T15": 0.638273878, + "2024-08-03": 0.591500377480221, + "2024-08-02T16": 0.6411545550000001, + "2024-08-02T22": 0.61529776, + "2024-08-02T23": 0.60522432, + "2024-08-03T00": 0.5919235629999999, + "2024-08-03T01": 0.5844802040000001, + "2024-08-03T03": 0.60128362, + "2024-08-02T19": 0.62631657, + "2024-08-02T18": 0.632367, + "2024-08-02T21": 0.621378, + "2024-08-02T17": 0.64079067, + "2024-08-02T20": 0.6273154799999999, + "2024-08-03T02": 0.59321592, + "2024-08-03T06": 0.5948951573645234, + "2024-08-03T19": 0.5445749000000001, + "2024-08-03T10": 0.5909924775461514, + "2024-08-03T09": 0.59546956, + "2024-08-03T15": 0.57461475, + "2024-08-03T22": 0.555391747471766, + "2024-08-03T05": 0.5943395499999999, + "2024-08-03T08": 0.594822462, + "2024-08-03T14": 0.58701819, + "2024-08-03T18": 0.5476164, + "2024-08-03T17": 0.5536011200000001, + "2024-08-03T21": 0.5495700600000001, + "2024-08-03T12": 0.5935666606264537, + "2024-08-03T20": 0.54663351, + "2024-08-03T04": 0.59539804, + "2024-08-03T16": 0.5645762499999999, + "2024-08-03T11": 0.5911172095889186, + "2024-08-03T07": 0.59835907, + "2024-08-03T13": 0.58809982, + "2024-08-04": 0.5593248012196703, + "2024-08-03T23": 0.5597543797027148, + "2024-08-04T17": 0.5228615373105729, + "2024-08-04T13": 0.5622089593102482, + "2024-08-04T06": 0.5608532376466856, + "2024-08-04T12": 0.5600438106839878, + "2024-08-04T10": 0.5548428063958275, + "2024-08-04T16": 0.5294887579121295, + "2024-08-04T15": 0.5393338987303322, + "2024-08-04T00": 0.5593248012196703, + "2024-08-04T11": 0.5579238764182458, + "2024-08-04T01": 0.5592237028113174, + "2024-08-04T03": 0.5616992788658662, + "2024-08-04T04": 0.5588811820306565, + "2024-08-04T07": 0.5620758463423748, + "2024-08-04T08": 0.555855690516445, + "2024-08-04T18": 0.5248132708654163, + "2024-08-04T09": 0.5540461516794178, + "2024-08-04T02": 0.5570090053442938, + "2024-08-04T05": 0.557068558652826, + "2024-08-04T14": 0.5592331420420611, + "2024-08-05": 0.5296999631546392, + "2024-08-05T01": 0.5097074639883987, + "2024-08-04T19": 0.5299806546412529, + "2024-08-04T22": 0.5342513728905833, + "2024-08-05T03": 0.48275973128277494, + "2024-08-05T02": 0.4826685502502716, + "2024-08-04T23": 0.5389143711457007, + "2024-08-05T00": 0.5307733682779668, + "2024-08-05T04": 0.4758654213406017, + "2024-08-05T06": 0.475387384604379, + "2024-08-04T20": 0.5391872625961529, + "2024-08-05T05": 0.4831227386249818, + "2024-08-04T21": 0.5361590545682832, + "2024-08-05T07": 0.46363077940623576, + "2024-08-05T08": 0.48426136367977995, + "2024-08-05T09": 0.4755165441485589, + "2024-08-05T10": 0.47629041581384385, + "2024-08-05T11": 0.4618060375241765, + "2024-08-05T12": 0.46373688261632734, + "2024-08-05T13": 0.4524302126054111, + "2024-08-05T14": 0.4938386643189975, + "2024-08-05T15": 0.511822245, + "2024-08-06": 0.5074338030349546, + "2024-08-05T19": 0.505391976, + "2024-08-05T20": 0.50885088, + "2024-08-05T21": 0.51109198, + "2024-08-06T02": 0.525399576, + "2024-08-05T18": 0.5113371806249482, + "2024-08-05T23": 0.51080214, + "2024-08-05T16": 0.52006379, + "2024-08-06T05": 0.5253767188717534, + "2024-08-05T17": 0.5193062100000001, + "2024-08-06T00": 0.5260051800000001, + "2024-08-06T04": 0.5232353500000001, + "2024-08-06T03": 0.5241043209999999, + "2024-08-05T22": 0.51408738, + "2024-08-06T01": 0.53235966, + "2024-08-06T06": 0.5311750046390384, + "2024-08-06T07": 0.532656641, + "2024-08-06T08": 0.529506936, + "2024-08-06T09": 0.5222827227436038, + "2024-08-06T10": 0.51866592, + "2024-08-06T11": 0.5171292500000001, + "2024-08-06T12": 0.516591068, + "2024-08-06T13": 0.513243668, + "2024-08-06T14": 0.513248799 + }, + "USD hedera": { + "2024-06-28": 0.07831105675532253, + "2024-06-30": 0.07597412732132376, + "2024-07-15": 0.07440449517968652, + "2024-07-18": 0.07444888708607376, + "2024-07-14": 0.0711147531204219, + "2024-07-11": 0.0668, + "2024-07-19": 0.07305335692844855, + "2024-07-12": 0.06594055429217406, + "2024-07-24": 0.06820795540775139, + "2024-07-08": 0.0658, + "2024-07-07": 0.06750595240703904, + "2024-07-13": 0.06832135170624055, + "2024-07-09": 0.0673766088307683, + "2024-07-02": 0.07778813726745569, + "2024-07-20": 0.0746259591857448, + "2024-06-29": 0.07703623684657274, + "2024-07-21": 0.07377637486130702, + "2024-07-23": 0.06953839865148086, + "2024-07-10": 0.06707565740138442, + "2024-07-01": 0.07679150527231932, + "2024-06-26": 0.07729287774993703, + "2024-07-17": 0.07741432812036483, + "2024-07-22": 0.07215852744800255, + "2024-07-04": 0.06944912465601112, + "2024-06-25": 0.07906222025026904, + "2024-07-26": 0.06747977949396343, + "2024-07-03": 0.07386237854306964, + "2024-07-05": 0.06384822419064881, + "2024-07-25": 0.06519198011075661, + "2024-07-16": 0.0767812525218559, + "2024-07-06": 0.06800662767184291, + "2024-06-27": 0.07781358425786433, + "2024-07-22T13": 0.0726001626, + "2024-07-25T10": 0.0649766, + "2024-07-26T06": 0.06755648600000001, + "2024-07-24T14": 0.06991048500000001, + "2024-07-21T20": 0.0734405576, + "2024-07-21T07": 0.0737613846, + "2024-07-21T14": 0.0730048132, + "2024-07-22T23": 0.07092127000000001, + "2024-07-24T07": 0.0686679399, + "2024-07-20T11": 0.0742563678, + "2024-07-26T08": 0.0675291936, + "2024-07-25T20": 0.0643245584, + "2024-07-21T02": 0.07547112600000001, + "2024-07-20T04": 0.0749151936, + "2024-07-20T03": 0.07472361050000001, + "2024-07-25T13": 0.0645093504, + "2024-07-21T06": 0.074121489, + "2024-07-20T12": 0.074135568, + "2024-07-24T02": 0.06779067790000001, + "2024-07-24T17": 0.0689393106, + "2024-07-25T06": 0.06548297, + "2024-07-25T22": 0.0657535575, + "2024-07-22T07": 0.0720108, + "2024-07-22T22": 0.071223496, + "2024-07-26T03": 0.06706926719999999, + "2024-07-23T01": 0.07090709, + "2024-07-24T03": 0.0681240872, + "2024-07-23T21": 0.068310245, + "2024-07-19T20": 0.0752838625, + "2024-07-23T22": 0.0680322436, + "2024-07-21T23": 0.07450596, + "2024-07-19T16": 0.07481496, + "2024-07-22T20": 0.0721974246, + "2024-07-23T10": 0.0706792932, + "2024-07-19T17": 0.0745196863, + "2024-07-22T09": 0.07211, + "2024-07-24T04": 0.06803443978722677, + "2024-07-22T06": 0.072404344, + "2024-07-24T21": 0.066683331, + "2024-07-20T21": 0.074434224, + "2024-07-21T15": 0.073324189, + "2024-07-20T09": 0.07448094200000001, + "2024-07-25T14": 0.0646167296, + "2024-07-19T11": 0.07229481489999999, + "2024-07-23T20": 0.06872408521795233, + "2024-07-25T03": 0.0651276234, + "2024-07-20T01": 0.07475736, + "2024-07-25T23": 0.0659495493, + "2024-07-20T16": 0.07462685599999999, + "2024-07-22T15": 0.071806462, + "2024-07-23T16": 0.0682716042, + "2024-07-22T02": 0.07402, + "2024-07-21T04": 0.074920972, + "2024-07-23T09": 0.071, + "2024-07-20T10": 0.07446423779999999, + "2024-07-22T19": 0.071919413, + "2024-07-20T00": 0.0752376, + "2024-07-20T19": 0.074734362, + "2024-07-26T05": 0.06729721109999999, + "2024-07-19T14": 0.07345, + "2024-07-21T00": 0.0749717355, + "2024-07-22T12": 0.07260580800000001, + "2024-07-24T06": 0.0680206802, + "2024-07-25T01": 0.0649922, + "2024-07-20T22": 0.07443199199999999, + "2024-07-19T15": 0.07400148, + "2024-07-21T13": 0.072922599, + "2024-07-25T07": 0.06562359000000001, + "2024-07-21T08": 0.07395143969999998, + "2024-07-23T06": 0.0692003785, + "2024-07-22T16": 0.0718207715, + "2024-07-24T11": 0.06945, + "2024-07-24T01": 0.0679713594, + "2024-07-23T00": 0.070601174, + "2024-07-19T12": 0.072183394, + "2024-07-25T17": 0.065886161, + "2024-07-25T19": 0.064581266, + "2024-07-19T21": 0.07540843870000001, + "2024-07-23T08": 0.0704947693854454, + "2024-07-21T21": 0.07400405809999999, + "2024-07-21T11": 0.073719899, + "2024-07-22T14": 0.071850776, + "2024-07-20T23": 0.07457161949999999, + "2024-07-20T08": 0.07453725, + "2024-07-20T02": 0.074533525, + "2024-07-24T05": 0.06770587740103749, + "2024-07-24T16": 0.0686361767, + "2024-07-21T01": 0.07532786100000001, + "2024-07-24T13": 0.06961, + "2024-07-25T04": 0.06507088879999999, + "2024-07-19T13": 0.07228554000000001, + "2024-07-25T12": 0.0641462571, + "2024-07-19T22": 0.07494670590000001, + "2024-07-26T07": 0.067687137, + "2024-07-25T02": 0.06518696, + "2024-07-21T12": 0.073572065, + "2024-07-23T18": 0.0679974789, + "2024-07-23T11": 0.070251405, + "2024-07-19T10": 0.07198487999999999, + "2024-07-19T19": 0.07492995999999999, + "2024-07-25T11": 0.0645947982, + "2024-07-22T08": 0.072105768, + "2024-07-23T19": 0.06862263799999999, + "2024-07-22T21": 0.07182082199999999, + "2024-07-21T09": 0.07414075360000001, + "2024-07-21T22": 0.07430743000000001, + "2024-07-22T04": 0.07362588960000001, + "2024-07-25T16": 0.065785524, + "2024-07-19T23": 0.074807385, + "2024-07-20T06": 0.07475989200000001, + "2024-07-23T02": 0.0711756936, + "2024-07-23T14": 0.069911184, + "2024-07-23T03": 0.070904963, + "2024-07-25T08": 0.06578220591023111, + "2024-07-24T15": 0.06906311949999999, + "2024-07-19T09": 0.07199559800000001, + "2024-07-20T15": 0.07451309190000001, + "2024-07-23T23": 0.0681761353, + "2024-07-23T12": 0.06972254779999999, + "2024-07-22T10": 0.07229072289999999, + "2024-07-21T10": 0.07401998, + "2024-07-22T00": 0.07505375250000001, + "2024-07-24T22": 0.066687994, + "2024-07-24T19": 0.067699323, + "2024-07-24T09": 0.06937, + "2024-07-23T04": 0.069956995, + "2024-07-23T05": 0.06920415199999999, + "2024-07-25T18": 0.0648431364, + "2024-07-25T15": 0.065385612, + "2024-07-26T01": 0.066376722, + "2024-07-22T01": 0.07450894, + "2024-07-26T02": 0.066926612, + "2024-07-24T18": 0.068116811, + "2024-07-21T19": 0.07212811899999999, + "2024-07-25T05": 0.06518435199999999, + "2024-07-22T18": 0.071884374, + "2024-07-24T00": 0.0681861362, + "2024-07-24T08": 0.0692793072, + "2024-07-24T20": 0.067299327, + "2024-07-24T23": 0.066388048, + "2024-07-22T17": 0.071960073, + "2024-07-21T17": 0.07290320765302678, + "2024-07-24T12": 0.06925207750000001, + "2024-07-23T13": 0.06938109919999999, + "2024-07-21T05": 0.0746108852, + "2024-07-20T05": 0.074735856, + "2024-07-21T03": 0.07532108400000001, + "2024-07-26T00": 0.06626608120000001, + "2024-07-20T20": 0.07462984, + "2024-07-22T03": 0.073702948, + "2024-07-25T21": 0.0657448752, + "2024-07-21T16": 0.073127047, + "2024-07-20T17": 0.07478990399999999, + "2024-07-22T11": 0.072302169, + "2024-07-25T00": 0.0667479832, + "2024-07-20T13": 0.073630912, + "2024-07-23T07": 0.06940694, + "2024-07-22T05": 0.0729843788, + "2024-07-20T07": 0.074733615, + "2024-07-21T18": 0.07141069339999999, + "2024-07-23T17": 0.067546754, + "2024-07-20T14": 0.0739480896, + "2024-07-26T04": 0.0672505836, + "2024-07-24T10": 0.06955, + "2024-07-20T18": 0.07485741, + "2024-07-23T15": 0.0696718422, + "2024-07-19T18": 0.07461939599999999, + "2024-07-25T09": 0.065876276, + "latest": 0.055743, + "2024-07-26T09": 0.06748785, + "2024-07-26T10": 0.0672518371, + "2024-07-26T11": 0.06743343451321086, + "2024-07-26T12": 0.0673485488, + "2024-07-26T13": 0.06728923199999999, + "2024-07-26T14": 0.06719395199999999, + "2024-07-26T17": 0.06794864099999999, + "2024-07-26T16": 0.06813659300000001, + "2024-07-26T15": 0.06739460800000001, + "2024-07-26T18": 0.06811, + "2024-07-27": 0.06890377090814345, + "2024-07-28": 0.06816084045128509, + "2024-07-28T05": 0.0676693233, + "2024-07-26T21": 0.06783, + "2024-07-27T02": 0.068602058, + "2024-07-28T01": 0.0690151686, + "2024-07-27T10": 0.0692855424, + "2024-07-28T02": 0.068656567, + "2024-07-27T19": 0.06866824168892215, + "2024-07-27T09": 0.0690762163, + "2024-07-27T06": 0.0687213744, + "2024-07-27T18": 0.068910335, + "2024-07-26T22": 0.0682727308, + "2024-07-27T13": 0.0699190883, + "2024-07-27T12": 0.069411798, + "2024-07-27T16": 0.06890689, + "2024-07-27T05": 0.0688913778, + "2024-07-26T23": 0.06825273000000001, + "2024-07-26T20": 0.06792, + "2024-07-27T08": 0.069283464, + "2024-07-28T03": 0.0684086318, + "2024-07-27T01": 0.06831273239999999, + "2024-07-28T09": 0.06842863140000001, + "2024-07-28T10": 0.068797936, + "2024-07-27T00": 0.0685327412, + "2024-07-28T00": 0.068499315, + "2024-07-27T04": 0.068701374, + "2024-07-27T14": 0.06960696, + "2024-07-27T07": 0.06891, + "2024-07-27T11": 0.0690717402, + "2024-07-27T22": 0.0692737648, + "2024-07-27T03": 0.0685306853, + "2024-07-27T20": 0.06820341, + "2024-07-27T23": 0.0689851707, + "2024-07-28T08": 0.0682786344, + "2024-07-27T21": 0.06899793000000001, + "2024-07-28T07": 0.06819863599999999, + "2024-07-27T15": 0.069066906, + "2024-07-26T19": 0.0684, + "2024-07-28T04": 0.0682686346, + "2024-07-28T06": 0.06799864, + "2024-07-27T17": 0.06870824399999999, + "2024-07-29": 0.0684165452566318, + "2024-07-28T20": 0.0676325596, + "2024-07-28T16": 0.0677793222, + "2024-07-29T07": 0.0689975782, + "2024-07-28T23": 0.06738865220000001, + "2024-07-28T15": 0.0678593214, + "2024-07-28T18": 0.06798252109999998, + "2024-07-29T04": 0.0686817572, + "2024-07-29T06": 0.06904121632278372, + "2024-07-28T21": 0.067243275, + "2024-07-29T03": 0.06898241109999999, + "2024-07-28T12": 0.06877793659999999, + "2024-07-29T05": 0.068891732, + "2024-07-28T17": 0.0677825431, + "2024-07-29T00": 0.06807, + "2024-07-29T01": 0.06834, + "2024-07-28T22": 0.0670579882, + "2024-07-28T19": 0.0678425365, + "2024-07-28T14": 0.06818, + "2024-07-29T02": 0.0687757571640662, + "2024-07-29T08": 0.06918616, + "2024-07-28T11": 0.0689572416, + "2024-07-28T13": 0.0686586268, + "2024-07-29T09": 0.069184776, + "2024-07-29T10": 0.06898551, + "2024-07-29T11": 0.0688055478, + "2024-07-29T12": 0.0689837909, + "2024-07-29T13": 0.0689737918, + "2024-07-30": 0.06662566794295494, + "2024-07-29T23": 0.06703128480000001, + "2024-07-29T18": 0.06716656400000001, + "2024-07-29T21": 0.067044636, + "2024-07-29T22": 0.0672312588, + "2024-07-29T17": 0.0671052336, + "2024-07-29T15": 0.0674724526, + "2024-07-30T01": 0.0676651104, + "2024-07-29T19": 0.0673292256, + "2024-07-30T04": 0.067646468, + "2024-07-29T14": 0.06828975500000001, + "2024-07-29T20": 0.06719260799999999, + "2024-07-30T03": 0.06759053599999999, + "2024-07-30T00": 0.067088593, + "2024-07-29T16": 0.066878592, + "2024-07-30T02": 0.06723655, + "2024-07-30T09": 0.0668052996, + "2024-07-30T08": 0.0674011224, + "2024-07-30T06": 0.0674951478, + "2024-07-30T05": 0.067387194, + "2024-07-30T07": 0.0677023928, + "2024-07-30T10": 0.0665686814, + "2024-07-30T11": 0.0666759951, + "2024-07-30T12": 0.06668666, + "2024-07-30T13": 0.06678664, + "2024-07-31": 0.06554333202624378, + "2024-07-31T00": 0.06584353500000001, + "2024-07-31T05": 0.065685546, + "2024-07-30T23": 0.06575092669999999, + "2024-07-30T19": 0.0654157872, + "2024-07-30T16": 0.066778624, + "2024-07-30T17": 0.0659195586, + "2024-07-30T18": 0.065678976, + "2024-07-30T20": 0.065370383, + "2024-07-30T15": 0.066577356, + "2024-07-31T03": 0.0660661232, + "2024-07-30T21": 0.06541264792580702, + "2024-07-31T01": 0.066184774, + "2024-07-31T07": 0.06677929199999999, + "2024-07-31T06": 0.06668065699999999, + "2024-07-31T02": 0.06628674, + "2024-07-30T22": 0.06582090639999999, + "2024-07-30T14": 0.066306736, + "2024-07-31T04": 0.06575618829999999, + "2024-07-31T08": 0.0665200525, + "2024-07-31T11": 0.06590373299999999, + "2024-07-31T09": 0.066474065, + "2024-07-31T10": 0.06596832, + "2024-07-31T12": 0.066013012, + "2024-08-01": 0.06216919924210415, + "2024-07-31T14": 0.06617021, + "2024-07-31T23": 0.06297984, + "2024-07-31T13": 0.0664887356, + "2024-07-31T21": 0.062676174, + "2024-08-01T01": 0.06307791500000001, + "2024-07-31T18": 0.06397888, + "2024-07-31T19": 0.06335093673825148, + "2024-07-31T16": 0.0655944082, + "2024-08-01T02": 0.0628373076, + "2024-07-31T22": 0.06303133038669705, + "2024-07-31T20": 0.0626355626, + "2024-07-31T17": 0.06430507591895569, + "2024-08-01T00": 0.06299920340000001, + "2024-07-31T15": 0.0658429933, + "2024-08-01T07": 0.0618821405, + "2024-08-01T06": 0.062169522, + "2024-08-01T05": 0.062182045799999995, + "2024-08-01T04": 0.061967760000000004, + "2024-08-01T03": 0.06286666299999999, + "2024-08-01T08": 0.062267604000000004, + "2024-08-01T09": 0.062343819599999996, + "2024-08-01T10": 0.0622270022, + "2024-08-01T11": 0.0621970181, + "2024-08-01T12": 0.06256744800000001, + "2024-08-01T13": 0.0624100288, + "2024-08-01T14": 0.061464174200000006, + "2024-08-01T15": 0.060569700000000004, + "2024-08-02": 0.06371768772967454, + "2024-08-02T00": 0.063822508, + "2024-08-01T20": 0.0620672487, + "2024-08-01T21": 0.06317182839999999, + "2024-08-02T04": 0.061954840362216185, + "2024-08-01T19": 0.060962867000000004, + "2024-08-01T16": 0.059908035, + "2024-08-02T02": 0.0619560513, + "2024-08-01T17": 0.0598414891, + "2024-08-01T23": 0.0634009822, + "2024-08-02T01": 0.0631837164, + "2024-08-01T22": 0.0635172369, + "2024-08-01T18": 0.0598049288, + "2024-08-02T03": 0.062042868, + "2024-08-02T05": 0.061546408, + "2024-08-02T06": 0.0609136704, + "2024-08-02T07": 0.060960581900000005, + "2024-08-02T08": 0.0610293036, + "2024-08-02T09": 0.061387161600000004, + "2024-08-02T10": 0.061253412, + "2024-08-02T11": 0.061338432400000004, + "2024-08-02T12": 0.06135702, + "2024-08-02T13": 0.06195164, + "2024-08-02T14": 0.062182060883669295, + "2024-08-02T15": 0.05944169, + "2024-08-03": 0.05846034162921176, + "2024-08-02T16": 0.060048915, + "2024-08-02T22": 0.059332284, + "2024-08-02T23": 0.059323968000000005, + "2024-08-03T00": 0.0594120681, + "2024-08-03T01": 0.05832816800000001, + "2024-08-03T03": 0.0588498852, + "2024-08-02T19": 0.059375210399999996, + "2024-08-02T18": 0.0598401, + "2024-08-02T21": 0.059320620000000004, + "2024-08-02T17": 0.060242715, + "2024-08-02T20": 0.05966489429999999, + "2024-08-03T02": 0.058852212400000006, + "2024-08-03T06": 0.059435144999999995, + "2024-08-03T19": 0.056605813, + "2024-08-03T10": 0.0589880448, + "2024-08-03T09": 0.0589974455, + "2024-08-03T15": 0.0583708653, + "2024-08-03T22": 0.057467225000000004, + "2024-08-03T05": 0.059417680223638254, + "2024-08-03T08": 0.0590226924, + "2024-08-03T14": 0.059171513499999995, + "2024-08-03T18": 0.056620338, + "2024-08-03T17": 0.056859032, + "2024-08-03T21": 0.056895842, + "2024-08-03T12": 0.059364848399999996, + "2024-08-03T20": 0.0566020512, + "2024-08-03T04": 0.0591901575, + "2024-08-03T16": 0.0575468075, + "2024-08-03T11": 0.05895044, + "2024-08-03T07": 0.059536228, + "2024-08-03T13": 0.0591497508, + "2024-08-04": 0.05633188537979161, + "2024-08-03T23": 0.0580474752, + "2024-08-04T17": 0.054554682, + "2024-08-04T13": 0.05827085, + "2024-08-04T06": 0.05866360600000001, + "2024-08-04T12": 0.058170900000000005, + "2024-08-04T10": 0.0578400587029399, + "2024-08-04T16": 0.055480025599999996, + "2024-08-04T15": 0.0560524197, + "2024-08-04T00": 0.0580757151, + "2024-08-04T11": 0.0581603231, + "2024-08-04T01": 0.057915809500000005, + "2024-08-04T03": 0.0582838416, + "2024-08-04T04": 0.0582744309, + "2024-08-04T07": 0.0580757151, + "2024-08-04T08": 0.0579546261, + "2024-08-04T18": 0.05447006643515981, + "2024-08-04T09": 0.058066883, + "2024-08-04T02": 0.058344972, + "2024-08-04T05": 0.058364376, + "2024-08-04T14": 0.0566856147, + "2024-08-05": 0.05020910297660031, + "2024-08-05T01": 0.05318243856698145, + "2024-08-04T19": 0.055025979543184875, + "2024-08-04T22": 0.0558035531187065, + "2024-08-05T03": 0.05030197833416853, + "2024-08-05T02": 0.050165157627484816, + "2024-08-04T23": 0.05599926059368982, + "2024-08-05T00": 0.0553083189186419, + "2024-08-05T04": 0.0491921508986063, + "2024-08-05T06": 0.04936748927379006, + "2024-08-04T20": 0.05607319322471607, + "2024-08-05T05": 0.049640544389003505, + "2024-08-04T21": 0.055996282776998065, + "2024-08-05T07": 0.04795015814845696, + "2024-08-05T08": 0.05134885645840233, + "2024-08-05T09": 0.050309972508658124, + "2024-08-05T10": 0.05039377991337103, + "2024-08-05T11": 0.0477362049, + "2024-08-05T12": 0.0485767738627718, + "2024-08-05T13": 0.04714459855609136, + "2024-08-05T14": 0.05107407398014023, + "2024-08-05T15": 0.05292332069999999, + "2024-08-06": 0.05465060332899578, + "2024-08-05T19": 0.05171964600000001, + "2024-08-05T20": 0.052255224999999995, + "2024-08-05T21": 0.052409432000000006, + "2024-08-06T02": 0.054620748000000004, + "2024-08-05T18": 0.052294044199999994, + "2024-08-05T23": 0.05241048, + "2024-08-05T16": 0.053317296, + "2024-08-06T05": 0.055432686, + "2024-08-05T17": 0.05320137030000001, + "2024-08-06T00": 0.054190836, + "2024-08-06T04": 0.054924705000000004, + "2024-08-06T03": 0.054791360299999994, + "2024-08-05T22": 0.052708959, + "2024-08-06T01": 0.055066514999999996, + "2024-08-06T06": 0.056040879999999994, + "2024-08-06T07": 0.055837386, + "2024-08-06T08": 0.054951853599999996, + "2024-08-06T09": 0.05441632, + "2024-08-06T10": 0.054217344, + "2024-08-06T11": 0.054203547500000004, + "2024-08-06T12": 0.0543300947, + "2024-08-06T13": 0.0541251508, + "2024-08-06T14": 0.054125691899999995 + }, + "USD injective": { + "2024-06-28": 23.058171717412844, + "2024-06-30": 22.75631410815453, + "2024-07-15": 22.061881700798295, + "2024-07-18": 25.863523231707205, + "2024-07-14": 20.615666004194797, + "2024-07-11": 20.45171142981854, + "2024-07-19": 26.36828447506886, + "2024-07-12": 19.671140106592222, + "2024-07-24": 24.74704557045426, + "2024-07-08": 19.49513844767768, + "2024-07-07": 19.369034744191808, + "2024-07-13": 20.205706303493102, + "2024-07-09": 20.282957558541288, + "2024-07-02": 22.606157432874582, + "2024-07-20": 27.12718365252579, + "2024-06-29": 22.98536241863785, + "2024-07-21": 27.32958200180076, + "2024-07-23": 24.7463700391517, + "2024-07-10": 20.749013507019175, + "2024-07-01": 23.353532592254425, + "2024-06-26": 22.959178622472873, + "2024-07-17": 25.909690866932813, + "2024-07-22": 26.633079436031803, + "2024-07-04": 20.559419558876087, + "2024-06-25": 23.047280787263276, + "2024-07-26": 25.46190228176444, + "2024-07-03": 21.594422547498183, + "2024-07-05": 18.681368472780925, + "2024-07-25": 23.74178895545976, + "2024-07-16": 23.57792344315337, + "2024-07-06": 19.373888691329608, + "2024-06-27": 23.431472633677433, + "2024-07-22T13": 26.7937506, + "2024-07-25T10": 23.591504, + "2024-07-26T06": 24.910017, + "2024-07-24T14": 25.673850500000004, + "2024-07-21T20": 27.716758520000003, + "2024-07-21T07": 27.107858999999998, + "2024-07-21T14": 27.12021774, + "2024-07-22T23": 25.81376059830267, + "2024-07-24T07": 25.0192494, + "2024-07-20T11": 26.593024200000002, + "2024-07-26T08": 25.32994656, + "2024-07-25T20": 23.329399600000002, + "2024-07-21T02": 27.41967536, + "2024-07-20T04": 26.942657099999998, + "2024-07-20T03": 26.6219745, + "2024-07-25T13": 23.606443520000003, + "2024-07-21T06": 27.266905109999996, + "2024-07-20T12": 26.474701760000002, + "2024-07-24T02": 24.040240400000002, + "2024-07-24T17": 25.0597494, + "2024-07-25T06": 23.695837479999998, + "2024-07-25T22": 24.023992500000002, + "2024-07-22T07": 26.684002000000003, + "2024-07-22T22": 25.938400012793057, + "2024-07-26T03": 24.638057279999998, + "2024-07-23T01": 26.032603, + "2024-07-24T03": 24.311369760162094, + "2024-07-23T21": 24.223633, + "2024-07-19T20": 26.582956950000003, + "2024-07-23T22": 24.066331160000004, + "2024-07-21T23": 27.555358077801614, + "2024-07-19T16": 27.095418, + "2024-07-22T20": 26.35200996, + "2024-07-23T10": 25.377746220000002, + "2024-07-19T17": 27.135101550149184, + "2024-07-22T09": 27, + "2024-07-24T04": 24.458650288567135, + "2024-07-22T06": 26.55959348, + "2024-07-24T21": 24.307568999999997, + "2024-07-20T21": 27.254102174363236, + "2024-07-21T15": 27.594103049999998, + "2024-07-20T09": 26.823744950000002, + "2024-07-25T14": 23.9013924, + "2024-07-19T11": 25.71996092606791, + "2024-07-23T20": 24.154829999999997, + "2024-07-25T03": 23.295573, + "2024-07-20T01": 26.603295, + "2024-07-25T23": 23.81791925002706, + "2024-07-20T16": 27.109756, + "2024-07-22T15": 26.082347199999997, + "2024-07-23T16": 24.03508527, + "2024-07-22T02": 26.90801001914168, + "2024-07-21T04": 27.403670880000004, + "2024-07-23T09": 25.58, + "2024-07-20T10": 26.805324779999996, + "2024-07-22T19": 26.33110748, + "2024-07-20T00": 26.423205, + "2024-07-20T19": 27.4025994, + "2024-07-26T05": 24.71630301, + "2024-07-19T14": 26.725, + "2024-07-21T00": 27.567992399999994, + "2024-07-22T12": 26.812144800000002, + "2024-07-24T06": 24.600246000000002, + "2024-07-25T01": 23.290204839999998, + "2024-07-20T22": 27.7519282, + "2024-07-19T15": 26.600531999999998, + "2024-07-21T13": 26.9683576, + "2024-07-25T07": 23.9440125, + "2024-07-21T08": 27.103857839999996, + "2024-07-23T06": 25.170212120267507, + "2024-07-22T16": 26.154922650000003, + "2024-07-24T11": 25.220477525067643, + "2024-07-24T01": 23.988479759999997, + "2024-07-23T00": 26.0288063, + "2024-07-19T12": 25.859051049999998, + "2024-07-25T17": 24.1849201, + "2024-07-25T19": 23.62014817, + "2024-07-19T21": 26.49950786, + "2024-07-23T08": 25.600768000000002, + "2024-07-21T21": 27.851290739999996, + "2024-07-21T11": 27.158549224206627, + "2024-07-22T14": 26.253937500000003, + "2024-07-20T23": 27.612005159999995, + "2024-07-20T08": 27.103544999999997, + "2024-07-20T02": 26.647986200000002, + "2024-07-24T05": 24.624969840000002, + "2024-07-24T16": 24.962246399999998, + "2024-07-21T01": 27.532183139999997, + "2024-07-24T13": 25.41, + "2024-07-25T04": 23.52370622, + "2024-07-19T13": 25.939888720223344, + "2024-07-25T12": 23.6212569, + "2024-07-19T22": 26.356908560000004, + "2024-07-26T07": 25.081259758578078, + "2024-07-25T02": 23.2113568, + "2024-07-21T12": 27.382212199999998, + "2024-07-23T18": 24.122653200000002, + "2024-07-23T11": 25.055501099999997, + "2024-07-19T10": 25.74659208, + "2024-07-19T19": 26.950776, + "2024-07-25T11": 23.66276792, + "2024-07-22T08": 27.172173600000004, + "2024-07-23T19": 24.2179893, + "2024-07-22T21": 26.146580309999997, + "2024-07-21T09": 27.217618800000004, + "2024-07-21T22": 27.7157713, + "2024-07-22T04": 26.92655046062253, + "2024-07-25T16": 24.32664696, + "2024-07-19T23": 26.43321, + "2024-07-20T06": 27.8991552, + "2024-07-23T02": 25.95507624, + "2024-07-23T14": 24.6839488, + "2024-07-23T03": 25.842808870000002, + "2024-07-25T08": 23.893068999999997, + "2024-07-24T15": 25.316188752961914, + "2024-07-19T09": 26.019795, + "2024-07-20T15": 27.09239604, + "2024-07-23T23": 24.101068900999998, + "2024-07-23T12": 24.746453560000003, + "2024-07-22T10": 27.128410238926232, + "2024-07-21T10": 27.0873116, + "2024-07-22T00": 27.39636975, + "2024-07-24T22": 24.012703753937647, + "2024-07-24T19": 24.33175668, + "2024-07-24T09": 25.315, + "2024-07-23T04": 25.452545, + "2024-07-23T05": 25.216512899999998, + "2024-07-25T18": 23.843799, + "2024-07-25T15": 24.240665879999998, + "2024-07-26T01": 24.1671656, + "2024-07-22T01": 26.976236759999995, + "2024-07-26T02": 24.239151200000002, + "2024-07-24T18": 24.672467, + "2024-07-21T19": 27.208607219999998, + "2024-07-25T05": 23.7243048, + "2024-07-22T18": 26.309260799999997, + "2024-07-24T00": 24.082853596591406, + "2024-07-24T08": 25.30174698, + "2024-07-24T20": 24.35375646, + "2024-07-24T23": 23.815712400000002, + "2024-07-22T17": 26.2936806, + "2024-07-21T17": 27.07363666, + "2024-07-24T12": 25.22775681, + "2024-07-23T13": 24.3738992, + "2024-07-21T05": 27.359658560000003, + "2024-07-20T05": 27.76332, + "2024-07-21T03": 27.257630000000002, + "2024-07-26T00": 24.03509805785959, + "2024-07-20T20": 27.5240052, + "2024-07-22T03": 26.976079000000002, + "2024-07-25T21": 24.0244731, + "2024-07-21T16": 27.4201417, + "2024-07-20T17": 27.11084, + "2024-07-22T11": 26.80680418, + "2024-07-25T00": 23.9856818, + "2024-07-20T13": 26.43424775508307, + "2024-07-23T07": 25.2085206, + "2024-07-22T05": 26.59368516395228, + "2024-07-20T07": 27.612420000000004, + "2024-07-21T18": 26.715482719999997, + "2024-07-23T17": 23.862386, + "2024-07-20T14": 26.760165, + "2024-07-26T04": 24.566560199999998, + "2024-07-24T10": 25.319717396727604, + "2024-07-20T18": 27.313983688684374, + "2024-07-23T15": 24.65820173535615, + "2024-07-19T18": 26.84997918, + "2024-07-25T09": 23.9013924, + "latest": 16.48, + "2024-07-26T09": 25.7153704, + "2024-07-26T10": 25.7530448, + "2024-07-26T11": 25.7838104, + "2024-07-26T12": 25.887272171519953, + "2024-07-26T13": 25.7258832, + "2024-07-26T14": 25.51791216965056, + "2024-07-26T17": 25.4794904, + "2024-07-26T16": 25.406662504483847, + "2024-07-26T15": 25.5679544, + "2024-07-26T18": 25.43, + "2024-07-27": 25.457169307347332, + "2024-07-28": 24.640443450396734, + "2024-07-28T05": 24.621753780000002, + "2024-07-26T21": 25.67, + "2024-07-27T02": 25.5607668, + "2024-07-28T01": 25.23723327, + "2024-07-27T10": 25.566045120000002, + "2024-07-28T02": 25.207643807784436, + "2024-07-27T19": 24.532131500000002, + "2024-07-27T09": 25.482293199999997, + "2024-07-27T06": 25.430508599999996, + "2024-07-27T18": 24.703705000000003, + "2024-07-26T22": 25.732029240000003, + "2024-07-27T13": 25.945031640996902, + "2024-07-27T12": 25.8243894, + "2024-07-27T16": 24.72392150653714, + "2024-07-27T05": 25.50454369492383, + "2024-07-26T23": 25.8710348, + "2024-07-26T20": 25.36, + "2024-07-27T08": 25.471273500000002, + "2024-07-28T03": 25.1394972, + "2024-07-27T01": 25.5782640830761, + "2024-07-28T09": 24.68650626, + "2024-07-28T10": 24.729258100000003, + "2024-07-27T00": 25.69202764, + "2024-07-28T00": 25.08674913, + "2024-07-27T04": 25.430508599999996, + "2024-07-27T14": 25.5395537, + "2024-07-27T07": 25.53, + "2024-07-27T11": 25.6143537, + "2024-07-27T22": 25.644691769999998, + "2024-07-27T03": 25.4702547, + "2024-07-27T20": 24.582229050000002, + "2024-07-27T23": 25.4282199, + "2024-07-28T08": 24.489510199999998, + "2024-07-27T21": 25.399238, + "2024-07-28T07": 24.47751044, + "2024-07-27T15": 24.942494, + "2024-07-26T19": 25.53, + "2024-07-28T04": 24.85350292, + "2024-07-28T06": 24.629507399999998, + "2024-07-27T17": 24.59095056, + "2024-07-29": 25.069059254811442, + "2024-07-28T20": 24.35532062, + "2024-07-28T16": 24.6097539, + "2024-07-29T07": 25.665379400000003, + "2024-07-28T23": 24.1895162, + "2024-07-28T15": 24.5597544, + "2024-07-28T18": 24.6772852, + "2024-07-29T04": 25.334959440000002, + "2024-07-29T06": 25.608221963743404, + "2024-07-28T21": 24.1715826, + "2024-07-29T03": 25.571691993093328, + "2024-07-28T12": 24.943283652794157, + "2024-07-29T05": 25.401125276992033, + "2024-07-28T17": 24.58829499, + "2024-07-29T00": 24.689, + "2024-07-29T01": 24.830141089538024, + "2024-07-28T22": 24.079277599999998, + "2024-07-28T19": 24.53230115, + "2024-07-28T14": 24.614580360993163, + "2024-07-29T02": 25.200235860000003, + "2024-07-29T08": 25.824834, + "2024-07-28T11": 24.830031810471855, + "2024-07-28T13": 24.83050338, + "2024-07-29T09": 25.66035348, + "2024-07-29T10": 25.594624, + "2024-07-29T11": 25.5146408, + "2024-07-29T12": 25.497705, + "2024-07-29T13": 25.4177122, + "2024-07-30": 24.09180424806856, + "2024-07-29T23": 24.2868423, + "2024-07-29T18": 24.9510088, + "2024-07-29T21": 24.5880328, + "2024-07-29T22": 24.57780447, + "2024-07-29T17": 24.76754994, + "2024-07-29T15": 24.692187874628367, + "2024-07-30T01": 24.28365642, + "2024-07-29T19": 24.853022879999997, + "2024-07-30T04": 24.3211348, + "2024-07-29T14": 25.0622401, + "2024-07-29T20": 24.787273099999997, + "2024-07-30T03": 24.21373067641279, + "2024-07-30T00": 24.075906399999997, + "2024-07-29T16": 24.55513984, + "2024-07-30T02": 24.086181800000002, + "2024-07-30T09": 24.5495979, + "2024-07-30T08": 24.6730896, + "2024-07-30T06": 24.4468048358661, + "2024-07-30T05": 24.372368369999997, + "2024-07-30T07": 24.651588920000002, + "2024-07-30T10": 24.39185268, + "2024-07-30T11": 24.39287642, + "2024-07-30T12": 24.235152, + "2024-07-30T13": 24.3191352, + "2024-07-31": 23.15827704326171, + "2024-07-31T00": 23.196199500000002, + "2024-07-31T05": 23.02693296, + "2024-07-30T23": 23.186558385680648, + "2024-07-30T19": 23.25039417, + "2024-07-30T16": 23.9823232, + "2024-07-30T17": 23.5626933, + "2024-07-30T18": 23.442496, + "2024-07-30T20": 23.131058600000003, + "2024-07-30T15": 24.072654613249256, + "2024-07-31T03": 23.23678084487595, + "2024-07-30T21": 23.11298906, + "2024-07-31T01": 23.364624900000003, + "2024-07-31T07": 23.450728019999996, + "2024-07-31T06": 23.448298021000003, + "2024-07-31T02": 23.2913408, + "2024-07-30T22": 23.152923759409077, + "2024-07-30T14": 24.023194399999998, + "2024-07-31T04": 23.021164539999997, + "2024-07-31T08": 23.2395375, + "2024-07-31T11": 23.0952906, + "2024-07-31T09": 23.258925480000002, + "2024-07-31T10": 23.068921599999996, + "2024-07-31T12": 23.17901248, + "2024-08-01": 21.46367505750249, + "2024-07-31T14": 23.153576200000003, + "2024-07-31T23": 21.99296, + "2024-07-31T13": 23.24307062, + "2024-07-31T21": 22.14258262, + "2024-08-01T01": 22.1758073509212, + "2024-07-31T18": 22.882446299999998, + "2024-07-31T19": 22.5723228, + "2024-07-31T16": 22.73013179, + "2024-08-01T02": 22.158471600000002, + "2024-07-31T22": 22.1831211, + "2024-07-31T20": 22.2413225, + "2024-07-31T17": 22.83009279, + "2024-08-01T00": 22.071324304343737, + "2024-07-31T15": 23.070537199999997, + "2024-08-01T07": 21.5802845, + "2024-08-01T06": 21.749733866571756, + "2024-08-01T05": 21.749435101784176, + "2024-08-01T04": 21.748517857123133, + "2024-08-01T03": 22.1082764, + "2024-08-01T08": 21.58976748, + "2024-08-01T09": 21.721714254566898, + "2024-08-01T10": 21.388658, + "2024-08-01T11": 21.3686686, + "2024-08-01T12": 21.65673264, + "2024-08-01T13": 21.61462, + "2024-08-01T14": 21.224584600600046, + "2024-08-01T15": 20.84957, + "2024-08-02": 21.719671188274333, + "2024-08-02T00": 21.645501499999998, + "2024-08-01T20": 20.78798291, + "2024-08-01T21": 21.230449999999998, + "2024-08-02T04": 21.4604532, + "2024-08-01T19": 20.6392718, + "2024-08-01T16": 20.5985709, + "2024-08-02T02": 21.329427239999998, + "2024-08-01T17": 20.565328580000003, + "2024-08-01T23": 21.579912, + "2024-08-02T01": 21.510838300000003, + "2024-08-01T22": 21.6320305, + "2024-08-01T18": 20.38023292, + "2024-08-02T03": 21.5002016, + "2024-08-02T05": 21.2315125, + "2024-08-02T06": 20.947261199542023, + "2024-08-02T07": 21.05796868276078, + "2024-08-02T08": 20.952594899999998, + "2024-08-02T09": 21.131811, + "2024-08-02T10": 21.1688994, + "2024-08-02T11": 21.3620408, + "2024-08-02T12": 21.255111, + "2024-08-02T13": 21.313362599999998, + "2024-08-02T14": 21.497790447352436, + "2024-08-02T15": 20.2201648, + "2024-08-03": 19.414077222968228, + "2024-08-02T16": 20.3726685, + "2024-08-02T22": 19.627598999999996, + "2024-08-02T23": 19.683772480000002, + "2024-08-03T00": 19.6142716, + "2024-08-03T01": 19.378135540000002, + "2024-08-03T03": 19.5267355, + "2024-08-02T19": 19.72247904, + "2024-08-02T18": 19.87011, + "2024-08-02T21": 19.65033, + "2024-08-02T17": 20.280715, + "2024-08-02T20": 19.832359139999998, + "2024-08-03T02": 19.47426, + "2024-08-03T06": 19.884302459999997, + "2024-08-03T19": 18.130846899999998, + "2024-08-03T10": 19.742611200000002, + "2024-08-03T09": 19.7124403, + "2024-08-03T15": 19.156156770000003, + "2024-08-03T22": 18.45447495, + "2024-08-03T05": 19.7380664, + "2024-08-03T08": 19.6509201, + "2024-08-03T14": 19.657214500000002, + "2024-08-03T18": 18.1932558, + "2024-08-03T17": 18.363768559999997, + "2024-08-03T21": 18.2500434, + "2024-08-03T12": 19.9048608, + "2024-08-03T20": 18.0778797, + "2024-08-03T04": 19.664119160000002, + "2024-08-03T16": 18.7759075, + "2024-08-03T11": 19.7933596, + "2024-08-03T07": 19.85273482, + "2024-08-03T13": 19.7165836, + "2024-08-04": 18.100373349472445, + "2024-08-03T23": 18.48283683758993, + "2024-08-04T17": 17.045840199999997, + "2024-08-04T13": 18.520735000000002, + "2024-08-04T06": 18.376900973722893, + "2024-08-04T12": 18.430780000000002, + "2024-08-04T10": 18.2505048, + "2024-08-04T16": 17.304264464341266, + "2024-08-04T15": 17.6231135327252, + "2024-08-04T00": 18.4391145, + "2024-08-04T11": 18.399956757351404, + "2024-08-04T01": 18.37315344, + "2024-08-04T03": 18.408579600000003, + "2024-08-04T04": 18.34680162, + "2024-08-04T07": 18.179267900000003, + "2024-08-04T08": 18.207041199036446, + "2024-08-04T18": 17.249328424521146, + "2024-08-04T09": 18.26158496, + "2024-08-04T02": 18.526916339489425, + "2024-08-04T05": 18.283840050000002, + "2024-08-04T14": 17.982264299999997, + "2024-08-05": 15.30464192416004, + "2024-08-05T01": 16.99748277711352, + "2024-08-04T19": 17.709594005055404, + "2024-08-04T22": 18.0535227389613, + "2024-08-05T03": 15.715278153353637, + "2024-08-05T02": 15.733603908320012, + "2024-08-04T23": 17.984961048170547, + "2024-08-05T00": 17.611613652542335, + "2024-08-05T04": 15.591071495712594, + "2024-08-05T06": 15.234929760724215, + "2024-08-04T20": 18.248516698616683, + "2024-08-05T05": 15.512916808403036, + "2024-08-04T21": 18.225510633273647, + "2024-08-05T07": 14.508523483076782, + "2024-08-05T08": 15.274366286757434, + "2024-08-05T09": 14.939668340033299, + "2024-08-05T10": 14.890132987112343, + "2024-08-05T11": 13.982847529392409, + "2024-08-05T12": 14.12866681247541, + "2024-08-05T13": 13.793257259915805, + "2024-08-05T14": 14.735668504766968, + "2024-08-05T15": 15.45455591849057, + "2024-08-06": 16.355686199866717, + "2024-08-05T19": 15.432719037581194, + "2024-08-05T20": 15.481548, + "2024-08-05T21": 15.5227936, + "2024-08-06T02": 16.3862244, + "2024-08-05T18": 15.667203599999999, + "2024-08-05T23": 15.373073999999999, + "2024-08-05T16": 15.796683751126219, + "2024-08-06T05": 16.629805800000003, + "2024-08-05T17": 15.910381590000002, + "2024-08-06T00": 16.193238, + "2024-08-06T04": 16.487416000000003, + "2024-08-06T03": 16.3963921, + "2024-08-05T22": 15.46762905, + "2024-08-06T01": 16.434929, + "2024-08-06T06": 16.87330853, + "2024-08-06T07": 16.6411421, + "2024-08-06T08": 16.3244627, + "2024-08-06T09": 16.084823999999998, + "2024-08-06T10": 16.00512, + "2024-08-06T11": 15.979994, + "2024-08-06T12": 15.9659052, + "2024-08-06T13": 15.824429600000002, + "2024-08-06T14": 15.824587799999998 + }, + "USD internet_computer": { + "2024-06-28": 8.171986609316127, + "2024-06-30": 7.976971072392022, + "2024-07-15": 9.238362592686407, + "2024-07-18": 9.884051215151635, + "2024-07-14": 8.749515938824768, + "2024-07-11": 7.398046173678546, + "2024-07-19": 9.687076194197079, + "2024-07-12": 7.273532268262174, + "2024-07-24": 9.760628860991034, + "2024-07-08": 6.910937721435742, + "2024-07-07": 7.346229297826785, + "2024-07-13": 8.078920858958597, + "2024-07-09": 7.121037528038093, + "2024-07-02": 7.970461927062725, + "2024-07-20": 10.255233749876536, + "2024-06-29": 7.967091676538412, + "2024-07-21": 10.248566218345452, + "2024-07-23": 9.836130930937214, + "2024-07-10": 7.229458809970471, + "2024-07-01": 8.206994082024611, + "2024-06-26": 8.227554919216606, + "2024-07-17": 10.055941552531024, + "2024-07-22": 10.382261207214158, + "2024-07-04": 6.939150659164031, + "2024-06-25": 8.159303087111358, + "2024-07-26": 9.737398026503136, + "2024-07-03": 7.636108130942858, + "2024-07-05": 6.433392970263413, + "2024-07-25": 9.569719157041206, + "2024-07-16": 9.53886680615282, + "2024-07-06": 7.047316300800466, + "2024-06-27": 8.119182692579145, + "2024-07-22T13": 10.30844298, + "2024-07-25T10": 9.498579280000001, + "2024-07-26T06": 9.843031000000002, + "2024-07-24T14": 10.006734334693432, + "2024-07-21T20": 10.385607156, + "2024-07-21T07": 10.148742281999999, + "2024-07-21T14": 10.14044658, + "2024-07-22T23": 10.152087233735555, + "2024-07-24T07": 9.73170804, + "2024-07-20T11": 10.26202593, + "2024-07-26T08": 9.8834184, + "2024-07-25T20": 9.46204615583822, + "2024-07-21T02": 10.252870000000001, + "2024-07-20T04": 10.301739543, + "2024-07-20T03": 10.42568945, + "2024-07-25T13": 9.51595392, + "2024-07-21T06": 10.200964739201215, + "2024-07-20T12": 10.222904640000001, + "2024-07-24T02": 9.750197501, + "2024-07-24T17": 9.85190148, + "2024-07-25T06": 9.661487359999999, + "2024-07-25T22": 9.853536, + "2024-07-22T07": 10.33254965, + "2024-07-22T22": 10.237377219999999, + "2024-07-26T03": 9.76743696, + "2024-07-23T01": 10.2020201, + "2024-07-24T03": 9.751585059999998, + "2024-07-23T21": 9.628444050000002, + "2024-07-19T20": 10.061525650000002, + "2024-07-23T22": 9.54971864, + "2024-07-21T23": 10.688855040000002, + "2024-07-19T16": 10.1050206, + "2024-07-22T20": 10.4689767, + "2024-07-23T10": 9.91890081, + "2024-07-19T17": 10.110314169999999, + "2024-07-22T09": 10.336207164799621, + "2024-07-24T04": 9.758292739999998, + "2024-07-22T06": 10.365621899999999, + "2024-07-24T21": 9.6120387, + "2024-07-20T21": 10.191686019999999, + "2024-07-21T15": 10.18235907, + "2024-07-20T09": 10.2356265, + "2024-07-25T14": 9.50857568, + "2024-07-19T11": 9.46201256, + "2024-07-23T20": 9.701939999999999, + "2024-07-25T03": 9.36222084, + "2024-07-20T01": 10.146070499999999, + "2024-07-25T23": 9.881935649999999, + "2024-07-20T16": 10.222678839999999, + "2024-07-22T15": 10.29292628, + "2024-07-23T16": 9.6616422, + "2024-07-22T02": 10.513, + "2024-07-21T04": 10.257271232, + "2024-07-23T09": 9.973, + "2024-07-20T10": 10.32374674, + "2024-07-22T19": 10.44982069, + "2024-07-20T00": 10.159077, + "2024-07-20T19": 10.31174122, + "2024-07-26T05": 9.77714199, + "2024-07-19T14": 9.853, + "2024-07-21T00": 10.272978299999998, + "2024-07-22T12": 10.38683088, + "2024-07-24T06": 9.695040095006451, + "2024-07-25T01": 9.50585916, + "2024-07-20T22": 10.207387289999998, + "2024-07-19T15": 9.95569911, + "2024-07-21T13": 10.08412511, + "2024-07-25T07": 9.6275925, + "2024-07-21T08": 10.154944079999998, + "2024-07-23T06": 9.870480350000001, + "2024-07-22T16": 10.310546350000001, + "2024-07-24T11": 10.048, + "2024-07-24T01": 9.72719454, + "2024-07-23T00": 10.179556486406687, + "2024-07-19T12": 9.451825580000001, + "2024-07-25T17": 9.71196006, + "2024-07-25T19": 9.55222905, + "2024-07-19T21": 10.193271238402014, + "2024-07-23T08": 9.90329709, + "2024-07-21T21": 10.61220666422941, + "2024-07-21T11": 10.20775535, + "2024-07-22T14": 10.2476842480702, + "2024-07-20T23": 10.302987, + "2024-07-20T08": 10.133064, + "2024-07-20T02": 10.3906737, + "2024-07-24T05": 9.65677248, + "2024-07-24T16": 9.78188029, + "2024-07-21T01": 10.29180656, + "2024-07-24T13": 9.9746, + "2024-07-25T04": 9.41468176, + "2024-07-19T13": 9.687632810430191, + "2024-07-25T12": 9.604651126801466, + "2024-07-19T22": 10.183987710000002, + "2024-07-26T07": 9.852127739999998, + "2024-07-25T02": 9.446352785126455, + "2024-07-21T12": 10.209299080902326, + "2024-07-23T18": 9.65206161, + "2024-07-23T11": 9.850196999999998, + "2024-07-19T10": 9.47101067, + "2024-07-19T19": 10.1350524, + "2024-07-25T11": 9.5862599, + "2024-07-22T08": 10.369829520000001, + "2024-07-23T19": 9.713204300000001, + "2024-07-22T21": 10.37800875, + "2024-07-21T09": 10.251869720000002, + "2024-07-21T22": 10.7740773, + "2024-07-22T04": 10.487418890371693, + "2024-07-25T16": 9.6378792, + "2024-07-19T23": 10.13716605, + "2024-07-20T06": 10.319125999999999, + "2024-07-23T02": 10.161812880000001, + "2024-07-23T14": 9.902884207999998, + "2024-07-23T03": 10.0807056, + "2024-07-25T08": 9.59621629, + "2024-07-24T15": 9.854872069999999, + "2024-07-19T09": 9.4861024, + "2024-07-20T15": 10.195359582, + "2024-07-23T23": 9.601864089999998, + "2024-07-23T12": 9.863775160000001, + "2024-07-22T10": 10.38910389, + "2024-07-21T10": 10.23176183, + "2024-07-22T00": 10.838541900000001, + "2024-07-24T22": 9.54628136, + "2024-07-24T19": 9.709902900000001, + "2024-07-24T09": 9.907, + "2024-07-23T04": 9.95223439910979, + "2024-07-23T05": 9.82358938, + "2024-07-25T18": 9.70547592, + "2024-07-25T15": 9.629928810709835, + "2024-07-26T01": 9.7920412, + "2024-07-22T01": 10.709828334469387, + "2024-07-26T02": 9.757084835772183, + "2024-07-24T18": 9.7629762, + "2024-07-21T19": 10.259999839999999, + "2024-07-25T05": 9.552906751999998, + "2024-07-22T18": 10.3810758, + "2024-07-24T00": 9.64637397487389, + "2024-07-24T08": 9.85090149, + "2024-07-24T20": 9.72490275, + "2024-07-24T23": 9.48429252, + "2024-07-22T17": 10.361450399999999, + "2024-07-21T17": 10.30342857, + "2024-07-24T12": 10.033300989999999, + "2024-07-23T13": 9.813569919999999, + "2024-07-21T05": 10.24589667995823, + "2024-07-20T05": 10.446011680000002, + "2024-07-21T03": 10.2828784, + "2024-07-26T00": 9.93991218, + "2024-07-20T20": 10.274107999999998, + "2024-07-22T03": 10.554422160000001, + "2024-07-25T21": 9.78174968, + "2024-07-21T16": 10.21477807, + "2024-07-20T17": 10.2721072, + "2024-07-22T11": 10.37731131, + "2024-07-25T00": 9.63726498, + "2024-07-20T13": 10.15126174, + "2024-07-23T07": 9.826910296200554, + "2024-07-22T05": 10.52013117, + "2024-07-20T07": 10.2366044, + "2024-07-21T18": 10.185377829999998, + "2024-07-23T17": 9.5799579, + "2024-07-20T14": 10.175865360000001, + "2024-07-26T04": 9.77563122, + "2024-07-24T10": 10.018, + "2024-07-20T18": 10.261128, + "2024-07-23T15": 9.819669059999999, + "2024-07-19T18": 10.14163614, + "2024-07-25T09": 9.553959335999998, + "latest": 7.5, + "2024-07-26T09": 9.898218, + "2024-07-26T10": 9.94931296, + "2024-07-26T11": 9.8776288, + "2024-07-26T12": 9.65066426145947, + "2024-07-26T13": 9.637557743999999, + "2024-07-26T14": 9.61513456, + "2024-07-26T17": 9.57780844, + "2024-07-26T16": 9.63851805, + "2024-07-26T15": 9.642155421560203, + "2024-07-26T18": 9.583, + "2024-07-27": 9.792291294103848, + "2024-07-28": 9.527424905313719, + "2024-07-28T05": 9.46790532, + "2024-07-26T21": 9.617, + "2024-07-27T02": 10.01130033, + "2024-07-28T01": 9.759316799999999, + "2024-07-27T10": 9.777982176000002, + "2024-07-28T02": 9.671016425, + "2024-07-27T19": 9.5763935, + "2024-07-27T09": 9.786880739999999, + "2024-07-27T06": 9.843196859999999, + "2024-07-27T18": 9.5954391, + "2024-07-26T22": 9.683587328, + "2024-07-27T13": 9.896286349999999, + "2024-07-27T12": 9.80266617, + "2024-07-27T16": 9.7019701, + "2024-07-27T05": 9.8551971, + "2024-07-26T23": 9.766162089900089, + "2024-07-26T20": 9.599, + "2024-07-27T08": 9.836791815, + "2024-07-28T03": 9.6348073, + "2024-07-27T01": 9.93639744, + "2024-07-28T09": 9.599808, + "2024-07-28T10": 9.59671209, + "2024-07-27T00": 9.76440640599835, + "2024-07-28T00": 9.67090329, + "2024-07-27T04": 9.833196659999999, + "2024-07-27T14": 9.80942432937814, + "2024-07-27T07": 9.885, + "2024-07-27T11": 9.772961121, + "2024-07-27T22": 9.79011881, + "2024-07-27T03": 9.94709947, + "2024-07-27T20": 9.500475000000002, + "2024-07-27T23": 9.77031603, + "2024-07-28T08": 9.524209512, + "2024-07-27T21": 9.686709389999999, + "2024-07-28T07": 9.546599007349677, + "2024-07-27T15": 9.6769676, + "2024-07-26T19": 9.653, + "2024-07-28T04": 9.5248095, + "2024-07-28T06": 9.545740259989685, + "2024-07-27T17": 9.6311556, + "2024-07-29": 9.471642811227742, + "2024-07-28T20": 9.421638167440053, + "2024-07-28T16": 9.506254616237094, + "2024-07-29T07": 9.592872972, + "2024-07-28T23": 9.359812799999998, + "2024-07-28T15": 9.510604893, + "2024-07-28T18": 9.497486047590545, + "2024-07-29T04": 9.574568992573585, + "2024-07-29T06": 9.596779062506561, + "2024-07-28T21": 9.369062999999999, + "2024-07-29T03": 9.64193927, + "2024-07-28T12": 9.54171374, + "2024-07-29T05": 9.57185124, + "2024-07-28T17": 9.465364367673022, + "2024-07-29T00": 9.487, + "2024-07-29T01": 9.505, + "2024-07-28T22": 9.290004341216708, + "2024-07-28T19": 9.45296006, + "2024-07-28T14": 9.497, + "2024-07-29T02": 9.62132646, + "2024-07-29T08": 9.578084, + "2024-07-28T11": 9.593916272411395, + "2024-07-28T13": 9.52180956, + "2024-07-29T09": 9.502908900000001, + "2024-07-29T10": 9.49500563, + "2024-07-29T11": 9.539134099187333, + "2024-07-29T12": 9.477146979999999, + "2024-07-29T13": 9.44714968, + "2024-07-30": 9.010274909442717, + "2024-07-29T23": 8.977537100105522, + "2024-07-29T18": 9.061187400000001, + "2024-07-29T21": 9.024278, + "2024-07-29T22": 9.0688209, + "2024-07-29T17": 9.08600064, + "2024-07-29T15": 9.1376236, + "2024-07-30T01": 8.997020220000001, + "2024-07-29T19": 9.051751488, + "2024-07-30T04": 9.071185400000001, + "2024-07-29T14": 9.34559795, + "2024-07-29T20": 9.059703323, + "2024-07-30T03": 9.03073552, + "2024-07-30T00": 8.890488359999999, + "2024-07-29T16": 9.04910336, + "2024-07-30T02": 8.9472102, + "2024-07-30T09": 9.0330123, + "2024-07-30T08": 9.0424674, + "2024-07-30T06": 9.07600284, + "2024-07-30T05": 9.03228354, + "2024-07-30T07": 9.143247707933725, + "2024-07-30T10": 9.01346745, + "2024-07-30T11": 9.02610412, + "2024-07-30T12": 9.042191200000001, + "2024-07-30T13": 9.061187400000001, + "2024-07-31": 8.826455657472446, + "2024-07-31T00": 8.821794, + "2024-07-31T05": 8.893115960080642, + "2024-07-30T23": 8.832437850000002, + "2024-07-30T19": 8.83972809, + "2024-07-30T16": 9.10608512, + "2024-07-30T17": 8.974517037, + "2024-07-30T18": 8.913146880000001, + "2024-07-30T20": 8.827351, + "2024-07-30T15": 9.05392062, + "2024-07-31T03": 8.87613562, + "2024-07-30T21": 8.81470758, + "2024-07-31T01": 8.88195668, + "2024-07-31T07": 9.01220535, + "2024-07-31T06": 9.03337956, + "2024-07-31T02": 8.8602276, + "2024-07-30T22": 8.85343176, + "2024-07-30T14": 9.0241948, + "2024-07-31T04": 8.87313625, + "2024-07-31T08": 8.947571779999999, + "2024-07-31T11": 8.88211215, + "2024-07-31T09": 8.93251496, + "2024-07-31T10": 8.895728, + "2024-07-31T12": 8.940506993504616, + "2024-08-01": 8.757212521991068, + "2024-07-31T14": 9.08291085, + "2024-07-31T23": 9.009116160000001, + "2024-07-31T13": 9.028754489999999, + "2024-07-31T21": 9.109874879826489, + "2024-08-01T01": 8.9328724, + "2024-07-31T18": 9.34191615, + "2024-07-31T19": 9.372812159999999, + "2024-07-31T16": 9.120441640000001, + "2024-08-01T02": 8.82141048, + "2024-07-31T22": 9.105800160827654, + "2024-07-31T20": 9.17941863, + "2024-07-31T17": 9.2064081, + "2024-08-01T00": 8.970884669921551, + "2024-07-31T15": 9.099267769999999, + "2024-08-01T07": 8.7840454, + "2024-08-01T06": 8.743343541190141, + "2024-08-01T05": 8.74366311, + "2024-08-01T04": 8.67848484, + "2024-08-01T03": 8.777345539999999, + "2024-08-01T08": 8.86338864, + "2024-08-01T09": 8.777905859999999, + "2024-08-01T10": 8.736167376, + "2024-08-01T11": 8.742364089999999, + "2024-08-01T12": 8.84639748, + "2024-08-01T13": 8.921452297003261, + "2024-08-01T14": 8.742326680000001, + "2024-08-01T15": 8.681357150000002, + "2024-08-02": 8.93488108555253, + "2024-08-02T00": 8.9139702, + "2024-08-01T20": 8.750521401216966, + "2024-08-01T21": 8.87982304, + "2024-08-02T04": 8.85093831, + "2024-08-01T19": 8.6554685, + "2024-08-01T16": 8.613966, + "2024-08-02T02": 8.81832138, + "2024-08-01T17": 8.56006073, + "2024-08-01T23": 8.90670905, + "2024-08-02T01": 8.87909057, + "2024-08-01T22": 8.93058146, + "2024-08-01T18": 8.476020520381761, + "2024-08-02T03": 8.90380096, + "2024-08-02T05": 8.80533269, + "2024-08-02T06": 8.716370520000002, + "2024-08-02T07": 8.760897920000001, + "2024-08-02T08": 8.751430279, + "2024-08-02T09": 8.80641996, + "2024-08-02T10": 8.86525728, + "2024-08-02T11": 8.908110896, + "2024-08-02T12": 8.847802199999999, + "2024-08-02T13": 9.045270672105975, + "2024-08-02T14": 9.211673043745062, + "2024-08-02T15": 8.68847694, + "2024-08-03": 8.128697843111823, + "2024-08-02T16": 8.69160585, + "2024-08-02T22": 8.38942514, + "2024-08-02T23": 8.2843824, + "2024-08-03T00": 8.32208377, + "2024-08-03T01": 8.154972089000259, + "2024-08-03T03": 8.236541587423797, + "2024-08-02T19": 8.59562055, + "2024-08-02T18": 8.665326, + "2024-08-02T21": 8.4332583, + "2024-08-02T17": 8.70871885, + "2024-08-02T20": 8.538183225, + "2024-08-03T02": 8.24460274, + "2024-08-03T06": 8.319921390000001, + "2024-08-03T19": 7.7239706, + "2024-08-03T10": 8.1628104, + "2024-08-03T09": 8.200499335839597, + "2024-08-03T15": 8.06759109, + "2024-08-03T22": 7.801550580000001, + "2024-08-03T05": 8.34565151393058, + "2024-08-03T08": 8.211027569999999, + "2024-08-03T14": 8.27361865, + "2024-08-03T18": 7.634651999999999, + "2024-08-03T17": 7.6704732799999995, + "2024-08-03T21": 7.7793296, + "2024-08-03T12": 8.232961604041124, + "2024-08-03T20": 7.77178941, + "2024-08-03T04": 8.290552109607612, + "2024-08-03T16": 7.84311325, + "2024-08-03T11": 8.12799620623397, + "2024-08-03T07": 8.28912114, + "2024-08-03T13": 8.243390680000001, + "2024-08-04": 7.713903786567115, + "2024-08-03T23": 7.78463816, + "2024-08-04T17": 7.194024, + "2024-08-04T13": 7.829117571288496, + "2024-08-04T06": 7.88166692455173, + "2024-08-04T12": 7.844171149978484, + "2024-08-04T10": 7.79694348, + "2024-08-04T16": 7.29574328, + "2024-08-04T15": 7.480584648, + "2024-08-04T00": 7.788402130000001, + "2024-08-04T11": 7.848095429, + "2024-08-04T01": 7.77041275, + "2024-08-04T03": 7.88610758, + "2024-08-04T04": 7.8831883199999995, + "2024-08-04T07": 7.818384430000001, + "2024-08-04T08": 7.8052359000000004, + "2024-08-04T18": 7.296476590923275, + "2024-08-04T09": 7.812544310000001, + "2024-08-04T02": 7.8522858, + "2024-08-04T05": 7.861201739999999, + "2024-08-04T14": 7.5867824054009745, + "2024-08-05": 6.897371251143111, + "2024-08-05T01": 7.067538912950238, + "2024-08-04T19": 7.391358794058179, + "2024-08-04T22": 7.475945212962688, + "2024-08-05T03": 6.914613456767776, + "2024-08-05T02": 6.831818238314233, + "2024-08-04T23": 7.474493950427855, + "2024-08-05T00": 7.348392681079483, + "2024-08-05T04": 6.879167398826775, + "2024-08-05T06": 6.839112026380997, + "2024-08-04T20": 7.553220641800118, + "2024-08-05T05": 6.975035088181885, + "2024-08-04T21": 7.550526846733796, + "2024-08-05T07": 6.644716412899894, + "2024-08-05T08": 7.045537566808697, + "2024-08-05T09": 6.88033394842043, + "2024-08-05T10": 6.889039172978322, + "2024-08-05T11": 6.52888820753673, + "2024-08-05T12": 6.613891017831128, + "2024-08-05T13": 6.411773540608793, + "2024-08-05T14": 6.849016965546232, + "2024-08-05T15": 7.147500089999999, + "2024-08-06": 7.385652550460328, + "2024-08-05T19": 6.966646320000001, + "2024-08-05T20": 7.060706, + "2024-08-05T21": 7.11728088, + "2024-08-06T02": 7.410815040000001, + "2024-08-05T18": 7.135580857999999, + "2024-08-05T23": 7.120423799999999, + "2024-08-05T16": 7.238063099999999, + "2024-08-06T05": 7.45139373, + "2024-08-05T17": 7.25928045, + "2024-08-06T00": 7.348469399999999, + "2024-08-06T04": 7.37631785, + "2024-08-06T03": 7.370008458784067, + "2024-08-05T22": 7.170218729999999, + "2024-08-06T01": 7.4082218, + "2024-08-06T06": 7.524488869999999, + "2024-08-06T07": 7.491115687, + "2024-08-06T08": 7.3542629999999996, + "2024-08-06T09": 7.3021899999999995, + "2024-08-06T10": 7.331345280000001, + "2024-08-06T11": 7.340834750000001, + "2024-08-06T12": 7.3227084, + "2024-08-06T13": 7.245028040000001, + "2024-08-06T14": 7.24510047 + }, + "USD iota": { + "2024-06-28": 0.17844465492431735, + "2024-06-30": 0.16745003190465657, + "2024-07-15": 0.1637583153233829, + "2024-07-18": 0.17231487994428596, + "2024-07-14": 0.1592445357436711, + "2024-07-11": 0.15544378806336223, + "2024-07-19": 0.17032098631786916, + "2024-07-12": 0.15377388827331803, + "2024-07-24": 0.16995435335534878, + "2024-07-08": 0.14454137885817725, + "2024-07-07": 0.1578205659480986, + "2024-07-13": 0.15644751250479436, + "2024-07-09": 0.14945985699513445, + "2024-07-02": 0.16858858907881177, + "2024-07-20": 0.1759892859348843, + "2024-06-29": 0.1705589462933095, + "2024-07-21": 0.17530238692957556, + "2024-07-23": 0.17352941589641535, + "2024-07-10": 0.1536793629143608, + "2024-07-01": 0.1700560950694936, + "2024-06-26": 0.1794312112695351, + "2024-07-17": 0.17110819904194863, + "2024-07-22": 0.18102253187044418, + "2024-07-04": 0.16244037674255735, + "2024-06-25": 0.17678913009517355, + "2024-07-26": 0.15825216839118875, + "2024-07-03": 0.1719960478125477, + "2024-07-05": 0.15019361142609478, + "2024-07-25": 0.1647966245307115, + "2024-07-16": 0.17252368084492223, + "2024-07-06": 0.15022514173538726, + "2024-06-27": 0.17303218300619827, + "2024-07-22T13": 0.17474572676137903, + "2024-07-25T10": 0.15672300026828312, + "2024-07-26T06": 0.1620293943935687, + "2024-07-24T14": 0.1699732265027851, + "2024-07-21T20": 0.17572890702245, + "2024-07-21T07": 0.1746735599344364, + "2024-07-21T14": 0.17696105940927406, + "2024-07-22T23": 0.17336220313522083, + "2024-07-24T07": 0.16851204154724791, + "2024-07-20T11": 0.17494862045798987, + "2024-07-26T08": 0.16170572966857955, + "2024-07-25T20": 0.15420082803287213, + "2024-07-21T02": 0.17926794445811423, + "2024-07-20T04": 0.17506746030342554, + "2024-07-20T03": 0.17455161357800222, + "2024-07-25T13": 0.15515016523332567, + "2024-07-21T06": 0.17617959653995044, + "2024-07-20T12": 0.1740689792027101, + "2024-07-24T02": 0.16815776121962978, + "2024-07-24T17": 0.1698897631520354, + "2024-07-25T06": 0.15717322016758467, + "2024-07-25T22": 0.15746549164412096, + "2024-07-22T07": 0.17345050665203846, + "2024-07-22T22": 0.1743658654055199, + "2024-07-26T03": 0.16178235160004067, + "2024-07-23T01": 0.1723174203399129, + "2024-07-24T03": 0.1701266501621152, + "2024-07-23T21": 0.16874400576696844, + "2024-07-19T20": 0.17581337551522694, + "2024-07-23T22": 0.16883644606133608, + "2024-07-21T23": 0.18031223137419297, + "2024-07-19T16": 0.17471262955198447, + "2024-07-22T20": 0.175516090354003, + "2024-07-23T10": 0.17423419085771158, + "2024-07-19T17": 0.1752468822796138, + "2024-07-22T09": 0.17300563128089616, + "2024-07-24T04": 0.16949918536210998, + "2024-07-22T06": 0.17450859140844416, + "2024-07-24T21": 0.16864241020969029, + "2024-07-20T21": 0.1753773931040565, + "2024-07-21T15": 0.1785228413160122, + "2024-07-20T09": 0.17541857521667803, + "2024-07-25T14": 0.1555686758214264, + "2024-07-19T11": 0.16934181730316, + "2024-07-23T20": 0.16829520032027903, + "2024-07-25T03": 0.1576301969252899, + "2024-07-20T01": 0.17488304420040107, + "2024-07-25T23": 0.1578818886621966, + "2024-07-20T16": 0.17626679145614707, + "2024-07-22T15": 0.17211863536505578, + "2024-07-23T16": 0.1705181012325541, + "2024-07-22T02": 0.17842457699644781, + "2024-07-21T04": 0.17755406099869542, + "2024-07-23T09": 0.1727404431682151, + "2024-07-20T10": 0.17587622330631728, + "2024-07-22T19": 0.17471735714136813, + "2024-07-20T00": 0.1759892859348843, + "2024-07-20T19": 0.17591726162073903, + "2024-07-26T05": 0.16172960241214518, + "2024-07-19T14": 0.17225458335390176, + "2024-07-21T00": 0.17519271410101048, + "2024-07-22T12": 0.17407585157214098, + "2024-07-24T06": 0.16833284037209406, + "2024-07-25T01": 0.16252325257458408, + "2024-07-20T22": 0.1753426485581763, + "2024-07-19T15": 0.17310524624523807, + "2024-07-21T13": 0.177604173816424, + "2024-07-25T07": 0.15831968926743628, + "2024-07-21T08": 0.17496794478884656, + "2024-07-23T06": 0.16806286990050773, + "2024-07-22T16": 0.17376743202136305, + "2024-07-24T11": 0.17174189832503822, + "2024-07-24T01": 0.16787618409823055, + "2024-07-23T00": 0.17352941589641535, + "2024-07-19T12": 0.1693976317062462, + "2024-07-25T17": 0.15721510927275362, + "2024-07-25T19": 0.15438001657479702, + "2024-07-19T21": 0.1759540217873327, + "2024-07-23T08": 0.16813378237227664, + "2024-07-21T21": 0.17853446277514246, + "2024-07-21T11": 0.17900268615780282, + "2024-07-22T14": 0.17275412594565392, + "2024-07-20T23": 0.17523635025517376, + "2024-07-20T08": 0.17595568610522394, + "2024-07-20T02": 0.17435799202034688, + "2024-07-24T05": 0.16922139026193744, + "2024-07-24T16": 0.1694529211276475, + "2024-07-21T01": 0.17510470508659734, + "2024-07-24T13": 0.17026281497772022, + "2024-07-25T04": 0.1568971421303335, + "2024-07-19T13": 0.1704316983725581, + "2024-07-25T12": 0.1567411152888023, + "2024-07-19T22": 0.17538558911241228, + "2024-07-26T07": 0.16265993999998296, + "2024-07-25T02": 0.1576534291096595, + "2024-07-21T12": 0.17945612726320065, + "2024-07-23T18": 0.16660300393602662, + "2024-07-23T11": 0.1736620042738329, + "2024-07-19T10": 0.16844522743096707, + "2024-07-19T19": 0.1749879930308392, + "2024-07-25T11": 0.1563495914432807, + "2024-07-22T08": 0.17244041279480535, + "2024-07-23T19": 0.16708972427994923, + "2024-07-22T21": 0.17523637689406044, + "2024-07-21T09": 0.1786450303457762, + "2024-07-21T22": 0.17998937139604318, + "2024-07-22T04": 0.1771220787784205, + "2024-07-25T16": 0.15709299355974052, + "2024-07-19T23": 0.17568036836000506, + "2024-07-20T06": 0.17530249104612677, + "2024-07-23T02": 0.17208715837968583, + "2024-07-23T14": 0.16986520504225736, + "2024-07-23T03": 0.17264400348359954, + "2024-07-25T08": 0.15615346166306338, + "2024-07-24T15": 0.171592727681821, + "2024-07-19T09": 0.16965275260629215, + "2024-07-20T15": 0.17475173214647555, + "2024-07-23T23": 0.16840924566858118, + "2024-07-23T12": 0.17146928875632347, + "2024-07-22T10": 0.1732752434475446, + "2024-07-21T10": 0.1779899829934601, + "2024-07-22T00": 0.18053454654636295, + "2024-07-24T22": 0.16608834498783517, + "2024-07-24T19": 0.16870916642609693, + "2024-07-24T09": 0.17081304904579883, + "2024-07-23T04": 0.1720457662364476, + "2024-07-23T05": 0.170831732051004, + "2024-07-25T18": 0.1570970367501567, + "2024-07-25T15": 0.15811894672464188, + "2024-07-26T01": 0.15910415492111776, + "2024-07-22T01": 0.18005755713934235, + "2024-07-26T02": 0.15919800270943132, + "2024-07-24T18": 0.1701578404999752, + "2024-07-21T19": 0.17396624196542615, + "2024-07-25T05": 0.15856261211937478, + "2024-07-22T18": 0.17395111687299308, + "2024-07-24T00": 0.1694115007676571, + "2024-07-24T08": 0.17023796558602286, + "2024-07-24T20": 0.16842844788709593, + "2024-07-24T23": 0.16511253714787136, + "2024-07-22T17": 0.17333023343079082, + "2024-07-21T17": 0.17855800956357082, + "2024-07-24T12": 0.172409457163739, + "2024-07-23T13": 0.17162362825989785, + "2024-07-21T05": 0.17742727997737792, + "2024-07-20T05": 0.17586123946164256, + "2024-07-21T03": 0.17805723335707996, + "2024-07-26T00": 0.15832024278329954, + "2024-07-20T20": 0.17503189396121954, + "2024-07-22T03": 0.17881694142632343, + "2024-07-25T21": 0.15600824121032558, + "2024-07-21T16": 0.17792484738481334, + "2024-07-20T17": 0.17630085234645126, + "2024-07-22T11": 0.1735368988989677, + "2024-07-25T00": 0.16530540984616535, + "2024-07-20T13": 0.1738647111455983, + "2024-07-23T07": 0.16845241589410528, + "2024-07-22T05": 0.1764373269322076, + "2024-07-20T07": 0.175631174443254, + "2024-07-21T18": 0.1751894844475988, + "2024-07-23T17": 0.16623009219946824, + "2024-07-20T14": 0.1739601673342477, + "2024-07-26T04": 0.16169874149399446, + "2024-07-24T10": 0.17137232979063702, + "2024-07-20T18": 0.1767684796052844, + "2024-07-23T15": 0.17264382111518836, + "2024-07-19T18": 0.17499625766525845, + "2024-07-25T09": 0.1572079126231338, + "latest": 0.128583, + "2024-07-26T09": 0.16199127977130692, + "2024-07-26T10": 0.16254719008973745, + "2024-07-26T11": 0.16195453755644423, + "2024-07-26T12": 0.16224798322499892, + "2024-07-26T13": 0.16230194536429418, + "2024-07-26T14": 0.1634414475587702, + "2024-07-26T17": 0.16373954587069167, + "2024-07-26T16": 0.16284111248449734, + "2024-07-26T15": 0.1620628656490683, + "2024-07-26T18": 0.1636560730556613, + "2024-07-27": 0.1650087442373747, + "2024-07-28": 0.1650405112083268, + "2024-07-28T05": 0.16384318420970798, + "2024-07-26T21": 0.16348459480010827, + "2024-07-27T02": 0.1642571276971249, + "2024-07-28T01": 0.16566796469933642, + "2024-07-27T10": 0.16678957588461674, + "2024-07-28T02": 0.1654817468931518, + "2024-07-27T19": 0.16531027819279143, + "2024-07-27T09": 0.16691498110857203, + "2024-07-27T06": 0.16440284260226612, + "2024-07-27T18": 0.165945234167388, + "2024-07-26T22": 0.16438878636543794, + "2024-07-27T13": 0.16743206677511002, + "2024-07-27T12": 0.16729267455545088, + "2024-07-27T16": 0.1666013590128298, + "2024-07-27T05": 0.1645289905360407, + "2024-07-26T23": 0.1651901686018497, + "2024-07-26T20": 0.16473463766693028, + "2024-07-27T08": 0.16707339578713415, + "2024-07-28T03": 0.16615046087475888, + "2024-07-27T01": 0.16504611529625146, + "2024-07-28T09": 0.1645873110084832, + "2024-07-28T10": 0.16528826587214304, + "2024-07-27T00": 0.16510630685300093, + "2024-07-28T00": 0.16574856357867074, + "2024-07-27T04": 0.16413127172735814, + "2024-07-27T14": 0.1688906698822172, + "2024-07-27T07": 0.1658189504431136, + "2024-07-27T11": 0.16622865033772066, + "2024-07-27T22": 0.16713025248110813, + "2024-07-27T03": 0.16440592978833313, + "2024-07-27T20": 0.16631794263573418, + "2024-07-27T23": 0.1673675534827017, + "2024-07-28T08": 0.16401965238828062, + "2024-07-27T21": 0.16523362829940946, + "2024-07-28T07": 0.16418923051777892, + "2024-07-27T15": 0.1676018303433092, + "2024-07-26T19": 0.16419687628798024, + "2024-07-28T04": 0.16521908911661376, + "2024-07-28T06": 0.16343701218425558, + "2024-07-27T17": 0.16712654720083173, + "2024-07-29": 0.16686681634651565, + "2024-07-28T20": 0.16404363525567445, + "2024-07-28T16": 0.16307123411847524, + "2024-07-29T07": 0.16712136013472384, + "2024-07-28T23": 0.16175422794082617, + "2024-07-28T15": 0.16322716275448165, + "2024-07-28T18": 0.16349195466478927, + "2024-07-29T04": 0.166774283628338, + "2024-07-29T06": 0.1664514660845074, + "2024-07-28T21": 0.16265047356497678, + "2024-07-29T03": 0.16821783092072393, + "2024-07-28T12": 0.16517955383735236, + "2024-07-29T05": 0.1667247430943259, + "2024-07-28T17": 0.16313822685021098, + "2024-07-29T00": 0.16301087136708137, + "2024-07-29T01": 0.16578531059448037, + "2024-07-28T22": 0.1623961150967879, + "2024-07-28T19": 0.1642098463800498, + "2024-07-28T14": 0.16508337470008858, + "2024-07-29T02": 0.16589059753952526, + "2024-07-29T08": 0.1679044539919051, + "2024-07-28T11": 0.16531916868551524, + "2024-07-28T13": 0.16464607486153984, + "2024-07-29T09": 0.16710019822049452, + "2024-07-29T10": 0.16731082239733108, + "2024-07-29T11": 0.16716935266905097, + "2024-07-29T12": 0.1671276627860647, + "2024-07-29T13": 0.16752671209910752, + "2024-07-30": 0.16087147701893395, + "2024-07-29T23": 0.1607156963085482, + "2024-07-29T18": 0.16176264290766104, + "2024-07-29T21": 0.16138175745880987, + "2024-07-29T22": 0.1611847921625174, + "2024-07-29T17": 0.1608593662629584, + "2024-07-29T15": 0.1633990359605932, + "2024-07-30T01": 0.1615579924694754, + "2024-07-29T19": 0.16183914651817546, + "2024-07-30T04": 0.16222248982492876, + "2024-07-29T14": 0.16707519640051408, + "2024-07-29T20": 0.1617088093911063, + "2024-07-30T03": 0.16115341339478997, + "2024-07-30T00": 0.1611682826038438, + "2024-07-29T16": 0.16226380320150866, + "2024-07-30T02": 0.16092481305114958, + "2024-07-30T09": 0.16163961852096884, + "2024-07-30T08": 0.1615648917676214, + "2024-07-30T06": 0.160816841410378, + "2024-07-30T05": 0.1615976999968988, + "2024-07-30T07": 0.1610168535617056, + "2024-07-30T10": 0.16125563406251403, + "2024-07-30T11": 0.1602147603992495, + "2024-07-30T12": 0.159532122147659, + "2024-07-30T13": 0.16009127966228145, + "2024-07-31": 0.15609135269714244, + "2024-07-31T00": 0.15609135269714244, + "2024-07-31T05": 0.15606395476857432, + "2024-07-30T23": 0.1560782974657093, + "2024-07-30T19": 0.15743227774155988, + "2024-07-30T16": 0.15965035050722712, + "2024-07-30T17": 0.15948663417255052, + "2024-07-30T18": 0.15792103513023015, + "2024-07-30T20": 0.15641308053090028, + "2024-07-30T15": 0.15852240167284956, + "2024-07-31T03": 0.15628457824415387, + "2024-07-30T21": 0.15626297382186388, + "2024-07-31T01": 0.1560585827166446, + "2024-07-31T07": 0.15783721219173283, + "2024-07-31T06": 0.1572222882255097, + "2024-07-31T02": 0.15659520227425702, + "2024-07-30T22": 0.15614026392149205, + "2024-07-30T14": 0.15956941540969014, + "2024-07-31T04": 0.15686861355339435, + "2024-07-31T08": 0.15693011641383778, + "2024-07-31T11": 0.15539755729599705, + "2024-07-31T09": 0.15750081601907862, + "2024-07-31T10": 0.1564283190678299, + "2024-07-31T12": 0.15607027186308975, + "2024-08-01": 0.15096092324501295, + "2024-07-31T14": 0.15672392138307595, + "2024-07-31T23": 0.1517003423837491, + "2024-07-31T13": 0.15650056721618777, + "2024-07-31T21": 0.15181177820128247, + "2024-08-01T01": 0.15126060179280335, + "2024-07-31T18": 0.1569092858515981, + "2024-07-31T19": 0.15707606499322344, + "2024-07-31T16": 0.15645996527852726, + "2024-08-01T02": 0.15175184541521913, + "2024-07-31T22": 0.1525014916941328, + "2024-07-31T20": 0.15451522812199642, + "2024-07-31T17": 0.1562326084492804, + "2024-08-01T00": 0.15098040330355433, + "2024-07-31T15": 0.1563661247457285, + "2024-08-01T07": 0.14837275178706807, + "2024-08-01T06": 0.14895824392797763, + "2024-08-01T05": 0.14700209842791648, + "2024-08-01T04": 0.15065435588577536, + "2024-08-01T03": 0.15110133828047587, + "2024-08-01T08": 0.14809765819421686, + "2024-08-01T09": 0.14971216704545084, + "2024-08-01T10": 0.1491837225119172, + "2024-08-01T11": 0.14985319280189924, + "2024-08-01T12": 0.14962071907026533, + "2024-08-01T13": 0.1507697100573881, + "2024-08-01T14": 0.15024713844571105, + "2024-08-01T15": 0.1471617464061678, + "2024-08-02": 0.14923724790898657, + "2024-08-02T00": 0.1491965718163826, + "2024-08-01T20": 0.14346602494310876, + "2024-08-01T21": 0.14514801614825157, + "2024-08-02T04": 0.14668367415463524, + "2024-08-01T19": 0.14158025778363978, + "2024-08-01T16": 0.14508934739877438, + "2024-08-02T02": 0.14672945129622453, + "2024-08-01T17": 0.14279937330119874, + "2024-08-01T23": 0.14813942240345523, + "2024-08-02T01": 0.14812314471768764, + "2024-08-01T22": 0.14662122973151867, + "2024-08-01T18": 0.14323845985164482, + "2024-08-02T03": 0.14547115620008716, + "2024-08-02T05": 0.14580829256790576, + "2024-08-02T06": 0.14391454309342058, + "2024-08-02T07": 0.14399199455829995, + "2024-08-02T08": 0.14360194698252385, + "2024-08-02T09": 0.1443958541862367, + "2024-08-02T10": 0.1447829377802626, + "2024-08-02T11": 0.14499403462682836, + "2024-08-02T12": 0.14454883417888348, + "2024-08-02T13": 0.14428707148514802, + "2024-08-02T14": 0.14638465319040664, + "2024-08-02T15": 0.14031470421182943, + "2024-08-03": 0.13929558233360365, + "2024-08-02T16": 0.14032488413438574, + "2024-08-02T22": 0.13919346110301417, + "2024-08-02T23": 0.13929288214980154, + "2024-08-03T00": 0.13929558233360365, + "2024-08-03T01": 0.13776908251478653, + "2024-08-03T03": 0.13879410143419538, + "2024-08-02T19": 0.1401097231067396, + "2024-08-02T18": 0.1402864209556766, + "2024-08-02T21": 0.14083340296066726, + "2024-08-02T17": 0.1404379221130758, + "2024-08-02T20": 0.13975036945923183, + "2024-08-03T02": 0.13814616334778324, + "2024-08-03T06": 0.13987268100591, + "2024-08-03T19": 0.13241271589006293, + "2024-08-03T10": 0.13976901504060404, + "2024-08-03T09": 0.13973365677160415, + "2024-08-03T15": 0.13950591978364857, + "2024-08-03T22": 0.13364443862656172, + "2024-08-03T05": 0.13935630539710905, + "2024-08-03T08": 0.13978366218925736, + "2024-08-03T14": 0.14032188956154593, + "2024-08-03T18": 0.1333791521624479, + "2024-08-03T17": 0.13569022827247912, + "2024-08-03T21": 0.13275619916967096, + "2024-08-03T12": 0.13994973936630747, + "2024-08-03T20": 0.13265048409020805, + "2024-08-03T04": 0.13963786429060884, + "2024-08-03T16": 0.1350408180695287, + "2024-08-03T11": 0.1396285900600451, + "2024-08-03T07": 0.14007965878041911, + "2024-08-03T13": 0.14054869861439157, + "2024-08-04": 0.13420055474179024, + "2024-08-03T23": 0.1339537753867304, + "2024-08-04T17": 0.127121204624337, + "2024-08-04T13": 0.13636927361884923, + "2024-08-04T06": 0.1352646241297841, + "2024-08-04T12": 0.134824454924669, + "2024-08-04T10": 0.13504969178141532, + "2024-08-04T16": 0.1291801012911335, + "2024-08-04T15": 0.1316112068637632, + "2024-08-04T00": 0.13387244011859692, + "2024-08-04T11": 0.1352026802189943, + "2024-08-04T01": 0.13569132473042306, + "2024-08-04T03": 0.13593116094092636, + "2024-08-04T04": 0.13554605339399228, + "2024-08-04T07": 0.13560258933125624, + "2024-08-04T08": 0.13413133389378146, + "2024-08-04T18": 0.12709239343120388, + "2024-08-04T09": 0.13478835205537504, + "2024-08-04T02": 0.13475911269105836, + "2024-08-04T05": 0.13493114313762464, + "2024-08-04T14": 0.13535429981935898, + "2024-08-05": 0.12697962037396818, + "2024-08-05T01": 0.1215600349444176, + "2024-08-04T19": 0.12871866057213416, + "2024-08-04T22": 0.13001149990455035, + "2024-08-05T03": 0.1145139199636623, + "2024-08-05T02": 0.11360510388046925, + "2024-08-04T23": 0.13005038296818966, + "2024-08-05T00": 0.1275175098134888, + "2024-08-05T04": 0.11261216435021046, + "2024-08-05T06": 0.11234983726692427, + "2024-08-04T20": 0.13160090679492786, + "2024-08-05T05": 0.11340497729999661, + "2024-08-04T21": 0.13089173848666436, + "2024-08-05T07": 0.1095995167695044, + "2024-08-05T08": 0.11431102772755314, + "2024-08-05T09": 0.11227388721409978, + "2024-08-05T10": 0.11298407574699675, + "2024-08-05T11": 0.10972426003799655, + "2024-08-05T12": 0.11042662274714234, + "2024-08-05T13": 0.10926264482826778, + "2024-08-05T14": 0.11572680612848027, + "2024-08-05T15": 0.12097218878046644, + "2024-08-06": 0.12063227556015207, + "2024-08-05T19": 0.11903449206806584, + "2024-08-05T20": 0.12064934955206151, + "2024-08-05T21": 0.12049499821872475, + "2024-08-06T02": 0.1252971524931655, + "2024-08-05T18": 0.1228008430257598, + "2024-08-05T23": 0.12153499186374941, + "2024-08-05T16": 0.12179064965015206, + "2024-08-06T05": 0.12616853728865435, + "2024-08-05T17": 0.12205519947645659, + "2024-08-06T00": 0.12063227556015207, + "2024-08-06T04": 0.12460762295254331, + "2024-08-06T03": 0.12504828395042564, + "2024-08-05T22": 0.12053873912071661, + "2024-08-06T01": 0.12646124751466534, + "2024-08-06T06": 0.12754792116704045, + "2024-08-06T07": 0.1283017665459538, + "2024-08-06T08": 0.1282177396280056, + "2024-08-06T09": 0.12570801015256214, + "2024-08-06T10": 0.12517698077421194, + "2024-08-06T11": 0.1246141855160569, + "2024-08-06T12": 0.12486992266865733, + "2024-08-06T13": 0.12425456947073486, + "2024-08-06T14": 0.12396872617675339 + }, + "USD klaytn": { + "2024-06-28": 0.16249485400448122, + "2024-06-30": 0.15814170023924928, + "2024-07-15": 0.15247473908900042, + "2024-07-18": 0.1564971886370956, + "2024-07-14": 0.14915069418468976, + "2024-07-11": 0.14730108645292114, + "2024-07-19": 0.15507990394506269, + "2024-07-12": 0.14211920348306756, + "2024-07-24": 0.14268576536154545, + "2024-07-08": 0.14308818351029196, + "2024-07-07": 0.147201533965401, + "2024-07-13": 0.14653066648631302, + "2024-07-09": 0.14690019764561013, + "2024-07-02": 0.1572948435691495, + "2024-07-20": 0.15885621016389778, + "2024-06-29": 0.15904823522455233, + "2024-07-21": 0.15685156728927535, + "2024-07-23": 0.14272220716088482, + "2024-07-10": 0.1477000005754159, + "2024-07-01": 0.16001035124554394, + "2024-06-26": 0.16175139098822666, + "2024-07-17": 0.15913790257099927, + "2024-07-22": 0.14462176177268216, + "2024-07-04": 0.14579685885731009, + "2024-06-25": 0.1581244405005381, + "2024-07-26": 0.14241835960961838, + "2024-07-03": 0.15369509243222343, + "2024-07-05": 0.132778752, + "2024-07-25": 0.13566886191689795, + "2024-07-16": 0.15615765919494556, + "2024-07-06": 0.14791479, + "2024-06-27": 0.16093874361282795, + "2024-07-22T13": 0.15337146899999998, + "2024-07-25T10": 0.134551544, + "2024-07-26T06": 0.14252149, + "2024-07-24T14": 0.14432164500000003, + "2024-07-21T20": 0.1559240337732913, + "2024-07-21T07": 0.15756568079999997, + "2024-07-21T14": 0.1564331692, + "2024-07-22T23": 0.14294287, + "2024-07-24T07": 0.14320570370000002, + "2024-07-20T11": 0.15904288736268338, + "2024-07-26T08": 0.14247719999999997, + "2024-07-25T20": 0.134767648, + "2024-07-21T02": 0.15724401600000001, + "2024-07-20T04": 0.159174777, + "2024-07-20T03": 0.158971505, + "2024-07-25T13": 0.13495680000000002, + "2024-07-21T06": 0.1578057504, + "2024-07-20T12": 0.15883620480000002, + "2024-07-24T02": 0.141601416, + "2024-07-24T17": 0.14365856340000002, + "2024-07-25T06": 0.13596464, + "2024-07-25T22": 0.1382754225, + "2024-07-22T07": 0.15322298, + "2024-07-22T22": 0.143247256, + "2024-07-26T03": 0.141777312, + "2024-07-23T01": 0.14361436, + "2024-07-24T03": 0.142808568, + "2024-07-23T21": 0.14154019474042234, + "2024-07-19T20": 0.15947173, + "2024-07-23T22": 0.1407653332, + "2024-07-21T23": 0.15765261120000001, + "2024-07-19T16": 0.15813162, + "2024-07-22T20": 0.144805005, + "2024-07-23T10": 0.144198558, + "2024-07-19T17": 0.15882064399999998, + "2024-07-22T09": 0.15296, + "2024-07-24T04": 0.1424642738, + "2024-07-22T06": 0.153909234, + "2024-07-24T21": 0.14108589, + "2024-07-20T21": 0.1575424362, + "2024-07-21T15": 0.156451612, + "2024-07-20T09": 0.159627747, + "2024-07-25T14": 0.135551184, + "2024-07-19T11": 0.1531778259, + "2024-07-23T20": 0.14202839999999997, + "2024-07-25T03": 0.1348143804, + "2024-07-20T01": 0.15857925, + "2024-07-25T23": 0.1386470061, + "2024-07-20T16": 0.15849703839999998, + "2024-07-22T15": 0.149613464, + "2024-07-23T16": 0.14162407200000002, + "2024-07-22T02": 0.1567, + "2024-07-21T04": 0.15774415600000002, + "2024-07-23T09": 0.1441, + "2024-07-20T10": 0.1595963061141011, + "2024-07-22T19": 0.144539015, + "2024-07-20T00": 0.15917954999999998, + "2024-07-20T19": 0.15807268, + "2024-07-26T05": 0.1418530428, + "2024-07-19T14": 0.15567, + "2024-07-21T00": 0.157745733, + "2024-07-22T12": 0.15351228, + "2024-07-24T06": 0.14241142410000002, + "2024-07-25T01": 0.13518377599999998, + "2024-07-20T22": 0.1575577207, + "2024-07-19T15": 0.15610312199999998, + "2024-07-21T13": 0.156148391, + "2024-07-25T07": 0.13616594999999998, + "2024-07-21T08": 0.157345617, + "2024-07-23T06": 0.14212131500000003, + "2024-07-22T16": 0.14322148, + "2024-07-24T11": 0.1441, + "2024-07-24T01": 0.14050281, + "2024-07-23T00": 0.142862846, + "2024-07-19T12": 0.153164764, + "2024-07-25T17": 0.1371611901, + "2024-07-25T19": 0.1355634776554124, + "2024-07-19T21": 0.1598214674, + "2024-07-23T08": 0.143504305, + "2024-07-21T21": 0.1567035108974828, + "2024-07-21T11": 0.15714241699999998, + "2024-07-22T14": 0.15102265, + "2024-07-20T23": 0.157745733, + "2024-07-20T08": 0.160170045, + "2024-07-20T02": 0.158891469, + "2024-07-24T05": 0.14211136800000002, + "2024-07-24T16": 0.14271284299999998, + "2024-07-21T01": 0.157358201, + "2024-07-24T13": 0.1445, + "2024-07-25T04": 0.1351710734, + "2024-07-19T13": 0.1537029688643687, + "2024-07-25T12": 0.135050013, + "2024-07-19T22": 0.15897786100000003, + "2024-07-26T07": 0.142772868, + "2024-07-25T02": 0.13536292200000002, + "2024-07-21T12": 0.15689705499999998, + "2024-07-23T18": 0.140515455, + "2024-07-23T11": 0.14350286999999998, + "2024-07-19T10": 0.152867891, + "2024-07-19T19": 0.15946375999999998, + "2024-07-25T11": 0.13503731489999998, + "2024-07-22T08": 0.15251220000000001, + "2024-07-23T19": 0.14154669499999997, + "2024-07-22T21": 0.14364164399999999, + "2024-07-21T09": 0.15783418120000003, + "2024-07-21T22": 0.157475746, + "2024-07-22T04": 0.15641251200000003, + "2024-07-25T16": 0.136769904, + "2024-07-19T23": 0.158889405, + "2024-07-20T06": 0.160124024, + "2024-07-23T02": 0.14411152800000002, + "2024-07-23T14": 0.14302441135165708, + "2024-07-23T03": 0.14410008629999999, + "2024-07-25T08": 0.135660647, + "2024-07-24T15": 0.143227208, + "2024-07-19T09": 0.1539692, + "2024-07-20T15": 0.158549135, + "2024-07-23T23": 0.14111269899999998, + "2024-07-23T12": 0.142625668, + "2024-07-22T10": 0.15360153599999998, + "2024-07-21T10": 0.157742579, + "2024-07-22T00": 0.15790789500000002, + "2024-07-24T22": 0.14047471000000003, + "2024-07-24T19": 0.142598574, + "2024-07-24T09": 0.14372041369092547, + "2024-07-23T04": 0.14351434999999998, + "2024-07-23T05": 0.14200851999999997, + "2024-07-25T18": 0.136264562, + "2024-07-25T15": 0.136869882, + "2024-07-26T01": 0.14007198, + "2024-07-22T01": 0.1570488436, + "2024-07-26T02": 0.14087182, + "2024-07-24T18": 0.14281428000000002, + "2024-07-21T19": 0.15318972069999998, + "2024-07-25T05": 0.13586738399999998, + "2024-07-22T18": 0.14460891599999998, + "2024-07-24T00": 0.1415027341, + "2024-07-24T08": 0.14399856, + "2024-07-24T20": 0.142198578, + "2024-07-24T23": 0.14018971000229294, + "2024-07-22T17": 0.14292000600000002, + "2024-07-21T17": 0.155266736, + "2024-07-24T12": 0.1440143203, + "2024-07-23T13": 0.141822688, + "2024-07-21T05": 0.15804424, + "2024-07-20T05": 0.1598967136, + "2024-07-21T03": 0.156943932, + "2024-07-26T00": 0.139270747, + "2024-07-20T20": 0.15786312, + "2024-07-22T03": 0.15687627480000002, + "2024-07-25T21": 0.137768306, + "2024-07-21T16": 0.1560839138045936, + "2024-07-20T17": 0.15846336, + "2024-07-22T11": 0.153204596, + "2024-07-25T00": 0.13847507, + "2024-07-20T13": 0.15806636000000002, + "2024-07-23T07": 0.14271427, + "2024-07-22T05": 0.15533455318669084, + "2024-07-20T07": 0.16045859288230097, + "2024-07-21T18": 0.152665618, + "2024-07-23T17": 0.13991399, + "2024-07-20T14": 0.158260116, + "2024-07-26T04": 0.1417001592, + "2024-07-24T10": 0.144, + "2024-07-20T18": 0.158889405, + "2024-07-23T15": 0.14369442389999998, + "2024-07-19T18": 0.158741262, + "2024-07-25T09": 0.13565114799999997, + "latest": 0.123445, + "2024-07-26T09": 0.14282428700000002, + "2024-07-26T10": 0.14246152499999998, + "2024-07-26T11": 0.14246579999999998, + "2024-07-26T12": 0.14275572739999998, + "2024-07-26T13": 0.14217724799999998, + "2024-07-26T14": 0.14218720199999998, + "2024-07-26T17": 0.143197136, + "2024-07-26T16": 0.1425428725, + "2024-07-26T15": 0.1422786168, + "2024-07-26T18": 0.14352, + "2024-07-27": 0.1442337500798511, + "2024-07-28": 0.14328713420000003, + "2024-07-28T05": 0.14287857120000003, + "2024-07-26T21": 0.1433, + "2024-07-27T02": 0.143604308, + "2024-07-28T01": 0.144589878, + "2024-07-27T10": 0.14391151200000002, + "2024-07-28T02": 0.14432278350000002, + "2024-07-27T19": 0.144036, + "2024-07-27T09": 0.143812942, + "2024-07-27T06": 0.14376287519999997, + "2024-07-27T18": 0.14440165700000002, + "2024-07-26T22": 0.1437457496, + "2024-07-27T13": 0.14621900599999998, + "2024-07-27T12": 0.145124667, + "2024-07-27T16": 0.14541454, + "2024-07-27T05": 0.144102882, + "2024-07-26T23": 0.1438257528, + "2024-07-26T20": 0.14331, + "2024-07-27T08": 0.14430721500000002, + "2024-07-28T03": 0.144097118, + "2024-07-27T01": 0.14305572200000002, + "2024-07-28T09": 0.1435671286, + "2024-07-28T10": 0.1436456905, + "2024-07-27T00": 0.143805752, + "2024-07-28T00": 0.14399856, + "2024-07-27T04": 0.14361492967737566, + "2024-07-27T14": 0.1470147, + "2024-07-27T07": 0.14438, + "2024-07-27T11": 0.14382444600000002, + "2024-07-27T22": 0.1454769059, + "2024-07-27T03": 0.1433814338, + "2024-07-27T20": 0.14370718500000002, + "2024-07-27T23": 0.1448098626, + "2024-07-28T08": 0.143247135, + "2024-07-27T21": 0.14509564700000002, + "2024-07-28T07": 0.1433071338, + "2024-07-27T15": 0.14591459, + "2024-07-26T19": 0.1439, + "2024-07-28T04": 0.1434271314, + "2024-07-28T06": 0.14329713400000002, + "2024-07-27T17": 0.144217304, + "2024-07-29": 0.14408166301289513, + "2024-07-28T20": 0.1429442744, + "2024-07-28T16": 0.142798572, + "2024-07-29T07": 0.1453838262, + "2024-07-28T23": 0.142697146, + "2024-07-28T15": 0.1426285737, + "2024-07-28T18": 0.14330214629868915, + "2024-07-29T04": 0.145382552, + "2024-07-29T06": 0.14550148876598823, + "2024-07-28T21": 0.14228577, + "2024-07-29T03": 0.14598393999999998, + "2024-07-28T12": 0.1436156914, + "2024-07-29T05": 0.145282564, + "2024-07-28T17": 0.14287428209999997, + "2024-07-29T00": 0.1439, + "2024-07-29T01": 0.144, + "2024-07-28T22": 0.14199573999999998, + "2024-07-28T19": 0.14312425459999997, + "2024-07-28T14": 0.1431, + "2024-07-29T02": 0.14498984999999998, + "2024-07-29T08": 0.14552089, + "2024-07-28T11": 0.14367452856845575, + "2024-07-28T13": 0.1435871282, + "2024-07-29T09": 0.145368012, + "2024-07-29T10": 0.14551943450000002, + "2024-07-29T11": 0.14546944499999998, + "2024-07-29T12": 0.145186932, + "2024-07-29T13": 0.1448769599, + "2024-07-30": 0.140769718582954, + "2024-07-29T23": 0.140781696, + "2024-07-29T18": 0.14118175800000002, + "2024-07-29T21": 0.1411578638007166, + "2024-07-29T22": 0.14148160499999998, + "2024-07-29T17": 0.14046909000000002, + "2024-07-29T15": 0.142263002, + "2024-07-30T01": 0.141668826, + "2024-07-29T19": 0.141377376, + "2024-07-30T04": 0.141841626, + "2024-07-29T14": 0.143878415, + "2024-07-29T20": 0.1413944449, + "2024-07-30T03": 0.1415901746, + "2024-07-30T00": 0.1407392250692311, + "2024-07-29T16": 0.14095487999999998, + "2024-07-30T02": 0.14082183, + "2024-07-30T09": 0.1413588942, + "2024-07-30T08": 0.141660324, + "2024-07-30T06": 0.141368892, + "2024-07-30T05": 0.14129609129967105, + "2024-07-30T07": 0.141863106, + "2024-07-30T10": 0.141275979, + "2024-07-30T11": 0.14097038999999997, + "2024-07-30T12": 0.14097179999999998, + "2024-07-30T13": 0.14117176, + "2024-07-31": 0.1384953333949678, + "2024-07-31T00": 0.1391652, + "2024-07-31T05": 0.1392160819273335, + "2024-07-30T23": 0.13901967259999998, + "2024-07-30T19": 0.138648681, + "2024-07-30T16": 0.14095487999999998, + "2024-07-30T17": 0.1397966496, + "2024-07-30T18": 0.13925542400000002, + "2024-07-30T20": 0.13822940673061523, + "2024-07-30T15": 0.140552196, + "2024-07-31T03": 0.139870621, + "2024-07-30T21": 0.1383740134, + "2024-07-31T01": 0.13951858319462412, + "2024-07-31T07": 0.14095628999999998, + "2024-07-31T06": 0.14075916800000002, + "2024-07-31T02": 0.13937212, + "2024-07-30T22": 0.13904966389999998, + "2024-07-30T14": 0.14053674945412772, + "2024-07-31T04": 0.139470705, + "2024-07-31T08": 0.14033682, + "2024-07-31T11": 0.138963528, + "2024-07-31T09": 0.1398754273, + "2024-07-31T10": 0.13929310720000002, + "2024-07-31T12": 0.13922199200000002, + "2024-08-01": 0.1350283374222481, + "2024-07-31T14": 0.13943722500000003, + "2024-07-31T23": 0.1367462272, + "2024-07-31T13": 0.139834247, + "2024-07-31T21": 0.136048282, + "2024-08-01T01": 0.137052015, + "2024-07-31T18": 0.13885416299999997, + "2024-07-31T19": 0.138153012, + "2024-07-31T16": 0.13906574319999998, + "2024-08-01T02": 0.136329072, + "2024-07-31T22": 0.136357716, + "2024-07-31T20": 0.136446765, + "2024-07-31T17": 0.138845829, + "2024-08-01T00": 0.136754856, + "2024-07-31T15": 0.139442805, + "2024-08-01T07": 0.13613871, + "2024-08-01T06": 0.135733458, + "2024-08-01T05": 0.1354573206, + "2024-08-01T04": 0.1350497376, + "2024-08-01T03": 0.1360078776, + "2024-08-01T08": 0.13667889000000003, + "2024-08-01T09": 0.13692054, + "2024-08-01T10": 0.137527072, + "2024-08-01T11": 0.1377369607, + "2024-08-01T12": 0.1375984116, + "2024-08-01T13": 0.13683806090321268, + "2024-08-01T14": 0.13644267000000002, + "2024-08-01T15": 0.13393300000000002, + "2024-08-02": 0.13534656954681443, + "2024-08-02T00": 0.13537805, + "2024-08-01T20": 0.130967589, + "2024-08-01T21": 0.13316858156368352, + "2024-08-02T04": 0.13321866059999998, + "2024-08-01T19": 0.13015667, + "2024-08-01T16": 0.131118153, + "2024-08-02T02": 0.132684464, + "2024-08-01T17": 0.129794781, + "2024-08-01T23": 0.135373985, + "2024-08-02T01": 0.13418047300000002, + "2024-08-01T22": 0.1348180081, + "2024-08-01T18": 0.128581596, + "2024-08-02T03": 0.132677824, + "2024-08-02T05": 0.133184029, + "2024-08-02T06": 0.13195963440000003, + "2024-08-02T07": 0.13198695694297258, + "2024-08-02T08": 0.13250992539999998, + "2024-08-02T09": 0.1331553878, + "2024-08-02T10": 0.13289892, + "2024-08-02T11": 0.1333179188, + "2024-08-02T12": 0.13320669, + "2024-08-02T13": 0.134195246, + "2024-08-02T14": 0.1345930513203918, + "2024-08-02T15": 0.129772698, + "2024-08-03": 0.12869961484476616, + "2024-08-02T16": 0.1308986415, + "2024-08-02T22": 0.12935237, + "2024-08-02T23": 0.12944409920000002, + "2024-08-03T00": 0.129729831, + "2024-08-03T01": 0.128242068, + "2024-08-03T03": 0.12944690381275759, + "2024-08-02T19": 0.130357755, + "2024-08-02T18": 0.1310688, + "2024-08-02T21": 0.1293705, + "2024-08-02T17": 0.1315848755, + "2024-08-02T20": 0.130657428, + "2024-08-03T02": 0.1293190732, + "2024-08-03T06": 0.1307673081, + "2024-08-03T19": 0.12640133, + "2024-08-03T10": 0.130784808, + "2024-08-03T09": 0.1304138283, + "2024-08-03T15": 0.129713034, + "2024-08-03T22": 0.12732738200000002, + "2024-08-03T05": 0.13042506729999997, + "2024-08-03T08": 0.13057322100000002, + "2024-08-03T14": 0.13091485, + "2024-08-03T18": 0.1259118, + "2024-08-03T17": 0.12708843039999998, + "2024-08-03T21": 0.12642409999999998, + "2024-08-03T12": 0.1310902956, + "2024-08-03T20": 0.1261554192, + "2024-08-03T04": 0.1300784879, + "2024-08-03T16": 0.12810385, + "2024-08-03T11": 0.13034732998437554, + "2024-08-03T07": 0.131159509, + "2024-08-03T13": 0.131110784, + "2024-08-04": 0.12433641720567103, + "2024-08-03T23": 0.127728432, + "2024-08-04T17": 0.120300068, + "2024-08-04T13": 0.12607693, + "2024-08-04T06": 0.127520888, + "2024-08-04T12": 0.12583705, + "2024-08-04T10": 0.1254647244, + "2024-08-04T16": 0.12091287999999999, + "2024-08-04T15": 0.12201819300000001, + "2024-08-04T00": 0.12802658655362087, + "2024-08-04T11": 0.125635893, + "2024-08-04T01": 0.1281843266, + "2024-08-04T03": 0.1280605532, + "2024-08-04T04": 0.1277820054, + "2024-08-04T07": 0.12632542400000002, + "2024-08-04T08": 0.12602307899999998, + "2024-08-04T18": 0.12051960094948685, + "2024-08-04T09": 0.126028123, + "2024-08-04T02": 0.12852284, + "2024-08-04T05": 0.1274622006, + "2024-08-04T14": 0.124046637, + "2024-08-05": 0.10957220831736388, + "2024-08-05T01": 0.11620249985148934, + "2024-08-04T19": 0.12149973698859161, + "2024-08-04T22": 0.12414822540343529, + "2024-08-05T03": 0.11073116677642063, + "2024-08-05T02": 0.11099436455900263, + "2024-08-04T23": 0.12457287220827462, + "2024-08-05T00": 0.12259174164806337, + "2024-08-05T04": 0.1087850723259879, + "2024-08-05T06": 0.10713556575947582, + "2024-08-04T20": 0.12439463546126527, + "2024-08-05T05": 0.1090521758808672, + "2024-08-04T21": 0.12415082043980279, + "2024-08-05T07": 0.1069, + "2024-08-05T08": 0.10926340558516431, + "2024-08-05T09": 0.1094490846954366, + "2024-08-05T10": 0.11034728367128435, + "2024-08-05T11": 0.1065600501920697, + "2024-08-05T12": 0.10577302046172361, + "2024-08-05T13": 0.10457723526127416, + "2024-08-05T14": 0.1117732456641394, + "2024-08-05T15": 0.11817440299999998, + "2024-08-06": 0.1206178603648958, + "2024-08-05T19": 0.115643928, + "2024-08-05T20": 0.11661165999999999, + "2024-08-05T21": 0.11692104200000002, + "2024-08-06T02": 0.120445752, + "2024-08-05T18": 0.11662362219999999, + "2024-08-05T23": 0.11792358, + "2024-08-05T16": 0.11918336999999998, + "2024-08-06T05": 0.12220205670000002, + "2024-08-05T17": 0.11856991500000001, + "2024-08-06T00": 0.11992398, + "2024-08-06T04": 0.1213045625, + "2024-08-06T03": 0.12061702229999999, + "2024-08-05T22": 0.1176800022, + "2024-08-06T01": 0.12143641999999999, + "2024-08-06T06": 0.12359015499999998, + "2024-08-06T07": 0.12368281199999999, + "2024-08-06T08": 0.12427141972726269, + "2024-08-06T09": 0.12093626999999998, + "2024-08-06T10": 0.12063859200000002, + "2024-08-06T11": 0.1203200725, + "2024-08-06T12": 0.120544585, + "2024-08-06T13": 0.120133628, + "2024-08-06T14": 0.12013482899999998 + }, + "USD kusama": { + "2024-06-28": 23.929789194513646, + "2024-06-30": 23.45169531957049, + "2024-07-15": 23.281412046067093, + "2024-07-18": 22.711592002081247, + "2024-07-14": 22.237558245971847, + "2024-07-11": 21.120155776549186, + "2024-07-19": 21.96998639201075, + "2024-07-12": 21.022840655975227, + "2024-07-24": 21.16085502558384, + "2024-07-08": 20.55130283498973, + "2024-07-07": 21.05021936122073, + "2024-07-13": 21.52174902932419, + "2024-07-09": 21.05002832157994, + "2024-07-02": 23.988712016069655, + "2024-07-20": 22.79093379225086, + "2024-06-29": 23.33106817782385, + "2024-07-21": 23.0475772343425, + "2024-07-23": 21.67337219348559, + "2024-07-10": 21.03100008193346, + "2024-07-01": 24.031517190386545, + "2024-06-26": 23.312994053432917, + "2024-07-17": 23.19552457964471, + "2024-07-22": 22.822301562600124, + "2024-07-04": 21.804574779071324, + "2024-06-25": 23.999531863833248, + "2024-07-26": 21.14027212572177, + "2024-07-03": 23.578564862409326, + "2024-07-05": 19.456886400000002, + "2024-07-25": 20.35532814022139, + "2024-07-16": 23.18856207648199, + "2024-07-06": 20.482048, + "2024-06-27": 23.51643714864041, + "2024-07-22T13": 23.013221400000003, + "2024-07-25T10": 20.352670399999997, + "2024-07-26T06": 21.155768000000002, + "2024-07-24T14": 21.380177707592164, + "2024-07-21T20": 23.4765716, + "2024-07-21T07": 22.89126630357557, + "2024-07-21T14": 22.837762199999997, + "2024-07-22T23": 22.056615, + "2024-07-24T07": 21.3093607, + "2024-07-20T11": 22.631083800000003, + "2024-07-26T08": 21.196607999999998, + "2024-07-25T20": 19.969212460168496, + "2024-07-21T02": 23.212497680000002, + "2024-07-20T04": 22.6506408, + "2024-07-20T03": 22.470107000000002, + "2024-07-25T13": 20.163545600000003, + "2024-07-21T06": 23.026675799999996, + "2024-07-20T12": 22.580833600000002, + "2024-07-24T02": 21.100211, + "2024-07-24T17": 21.2697873, + "2024-07-25T06": 20.464677799999997, + "2024-07-25T22": 20.555225834264505, + "2024-07-22T07": 22.733409500000004, + "2024-07-22T22": 22.2573425, + "2024-07-26T03": 20.9866416, + "2024-07-23T01": 22.212221, + "2024-07-24T03": 21.18527104, + "2024-07-23T21": 21.123168000000003, + "2024-07-19T20": 22.490116, + "2024-07-23T22": 21.0837944, + "2024-07-21T23": 23.52371197136439, + "2024-07-19T16": 22.25445, + "2024-07-22T20": 22.8486792, + "2024-07-23T10": 21.99278007, + "2024-07-19T17": 22.252892499999998, + "2024-07-22T09": 22.71, + "2024-07-24T04": 21.179635369999996, + "2024-07-22T06": 22.8213692, + "2024-07-24T21": 20.957904000000003, + "2024-07-20T21": 22.990570799999997, + "2024-07-21T15": 23.10067370256694, + "2024-07-20T09": 22.8425565, + "2024-07-25T14": 20.322681199999998, + "2024-07-19T11": 21.6254577, + "2024-07-23T20": 21.199324581097002, + "2024-07-25T03": 20.2461525, + "2024-07-20T01": 22.45122, + "2024-07-25T23": 20.547628259999996, + "2024-07-20T16": 22.8982404, + "2024-07-22T15": 22.702042999999996, + "2024-07-23T16": 21.274198809990732, + "2024-07-22T02": 23.53, + "2024-07-21T04": 23.3165268, + "2024-07-23T09": 22.15, + "2024-07-20T10": 22.772534977851222, + "2024-07-22T19": 22.8161587, + "2024-07-20T00": 22.51125, + "2024-07-20T19": 22.9805662, + "2024-07-26T05": 21.015006389999996, + "2024-07-19T14": 21.98, + "2024-07-21T00": 23.226733799999998, + "2024-07-22T12": 22.999202564776898, + "2024-07-24T06": 21.1502115, + "2024-07-25T01": 20.3075628, + "2024-07-20T22": 23.02089473, + "2024-07-19T15": 22.000439999999998, + "2024-07-21T13": 22.7570525, + "2024-07-25T07": 20.524867500000003, + "2024-07-21T08": 22.90564071, + "2024-07-23T06": 21.513226500000005, + "2024-07-22T16": 22.743411000000002, + "2024-07-24T11": 21.421, + "2024-07-24T01": 21.102422039999997, + "2024-07-23T00": 22.01700807321724, + "2024-07-19T12": 21.6250251, + "2024-07-25T17": 20.495694999999998, + "2024-07-25T19": 20.1241623, + "2024-07-19T21": 22.5514954, + "2024-07-23T08": 21.9506585, + "2024-07-21T21": 23.544472599999995, + "2024-07-21T11": 22.8861776, + "2024-07-22T14": 22.7134065, + "2024-07-20T23": 23.086693199999996, + "2024-07-20T08": 22.821405, + "2024-07-20T02": 22.418548486014902, + "2024-07-24T05": 21.071685600000002, + "2024-07-24T16": 21.181906199999997, + "2024-07-21T01": 23.1985803, + "2024-07-24T13": 21.37, + "2024-07-25T04": 20.287607051308406, + "2024-07-19T13": 21.75405275435835, + "2024-07-25T12": 20.2724964, + "2024-07-19T22": 22.477008340000005, + "2024-07-26T07": 21.195971999999998, + "2024-07-25T02": 20.286013873953895, + "2024-07-21T12": 22.816843, + "2024-07-23T18": 21.0923199, + "2024-07-23T11": 21.93443868, + "2024-07-19T10": 21.665449300000002, + "2024-07-19T19": 22.428968, + "2024-07-25T11": 20.362055700000003, + "2024-07-22T08": 22.7218176, + "2024-07-23T19": 21.206995999999997, + "2024-07-22T21": 22.566542399999996, + "2024-07-21T09": 22.979461246902986, + "2024-07-21T22": 23.711010012799033, + "2024-07-22T04": 23.171853600000002, + "2024-07-25T16": 20.4554988, + "2024-07-19T23": 22.480456720261447, + "2024-07-20T06": 22.719084, + "2024-07-23T02": 22.171773600000005, + "2024-07-23T14": 21.7834848, + "2024-07-23T03": 22.098658542825632, + "2024-07-25T08": 20.494055, + "2024-07-24T15": 21.20206222064086, + "2024-07-19T09": 21.665666, + "2024-07-20T15": 22.787061800000004, + "2024-07-23T23": 21.145370479050445, + "2024-07-23T12": 21.783920400000003, + "2024-07-22T10": 22.8902289, + "2024-07-21T10": 22.99220622, + "2024-07-22T00": 23.67582520699883, + "2024-07-24T22": 20.884440124, + "2024-07-24T19": 21.029789700000002, + "2024-07-24T09": 21.45, + "2024-07-23T04": 21.812181, + "2024-07-23T05": 21.5112906, + "2024-07-25T18": 20.284724599999997, + "2024-07-25T15": 20.4255054, + "2024-07-26T01": 20.70389070252319, + "2024-07-22T01": 23.632835599999996, + "2024-07-26T02": 20.825834, + "2024-07-24T18": 21.052105, + "2024-07-21T19": 22.97903978511909, + "2024-07-25T05": 20.445092, + "2024-07-22T18": 22.834566, + "2024-07-24T00": 21.15790404, + "2024-07-24T08": 21.39478605, + "2024-07-24T20": 21.0597894, + "2024-07-24T23": 20.76664067257722, + "2024-07-22T17": 22.803192000000003, + "2024-07-21T17": 23.1699588, + "2024-07-24T12": 21.350418621128956, + "2024-07-23T13": 21.653463999999996, + "2024-07-21T05": 23.142402802621117, + "2024-07-20T05": 22.6208528, + "2024-07-21T03": 23.196493200000003, + "2024-07-26T00": 20.65985584091374, + "2024-07-20T20": 22.999195999999998, + "2024-07-22T03": 23.390935600000002, + "2024-07-25T21": 20.420348045535636, + "2024-07-21T16": 23.0985433, + "2024-07-20T17": 22.949176, + "2024-07-22T11": 22.94368829, + "2024-07-25T00": 20.8762416, + "2024-07-20T13": 22.440966465330888, + "2024-07-23T07": 21.582158, + "2024-07-22T05": 23.051383, + "2024-07-20T07": 22.808259100000004, + "2024-07-21T18": 22.799799699999998, + "2024-07-23T17": 21.032103, + "2024-07-20T14": 22.5785766, + "2024-07-26T04": 20.96406462, + "2024-07-24T10": 21.4, + "2024-07-20T18": 22.996672028110627, + "2024-07-23T15": 21.7136907, + "2024-07-19T18": 22.3858188, + "2024-07-25T09": 20.622573199999998, + "latest": 17.27, + "2024-07-26T09": 21.146662595435085, + "2024-07-26T10": 21.094303, + "2024-07-26T11": 21.05094656, + "2024-07-26T12": 21.0464215, + "2024-07-26T13": 20.99664, + "2024-07-26T14": 21.075617686056777, + "2024-07-26T17": 21.3695726, + "2024-07-26T16": 21.35107111206757, + "2024-07-26T15": 21.148308, + "2024-07-26T18": 21.371, + "2024-07-27": 21.8320812941558, + "2024-07-28": 21.539569200000003, + "2024-07-28T05": 21.51478485, + "2024-07-26T21": 21.381463390759144, + "2024-07-27T02": 21.580647399999997, + "2024-07-28T01": 21.9184656, + "2024-07-27T10": 21.941755200000003, + "2024-07-28T02": 21.924374142318953, + "2024-07-27T19": 21.665415000000003, + "2024-07-27T09": 21.9719773, + "2024-07-27T06": 21.880437599999997, + "2024-07-27T18": 21.739260400000003, + "2024-07-26T22": 21.50086, + "2024-07-27T13": 22.0728691, + "2024-07-27T12": 21.95973252, + "2024-07-27T16": 21.782178000000002, + "2024-07-27T05": 21.81542749357415, + "2024-07-26T23": 21.550862000000002, + "2024-07-26T20": 21.35, + "2024-07-27T08": 21.950143864029002, + "2024-07-28T03": 21.849563, + "2024-07-27T01": 21.557913892840887, + "2024-07-28T09": 21.585568916602423, + "2024-07-28T10": 21.597034522099364, + "2024-07-27T00": 21.6108644, + "2024-07-28T00": 21.7697823, + "2024-07-27T04": 21.700433999999998, + "2024-07-27T14": 21.992199, + "2024-07-27T07": 21.968943416731022, + "2024-07-27T11": 21.8837196, + "2024-07-27T22": 22.058014599999996, + "2024-07-27T03": 21.640216400000003, + "2024-07-27T20": 21.591079500000003, + "2024-07-27T23": 21.9684621, + "2024-07-28T08": 21.5795684, + "2024-07-27T21": 21.9393418, + "2024-07-28T07": 21.5895682, + "2024-07-27T15": 21.812181, + "2024-07-26T19": 21.44, + "2024-07-28T04": 21.6795664, + "2024-07-28T06": 21.6095678, + "2024-07-27T17": 21.7626112, + "2024-07-29": 21.707237363011473, + "2024-07-28T20": 21.3176548, + "2024-07-28T16": 21.389912437001037, + "2024-07-29T07": 22.0360328, + "2024-07-28T23": 21.1295774, + "2024-07-28T15": 21.3797862, + "2024-07-28T18": 21.45665452328536, + "2024-07-29T04": 22.027356400000002, + "2024-07-29T06": 22.007200163134968, + "2024-07-28T21": 21.207879000000002, + "2024-07-29T03": 22.1875591, + "2024-07-28T12": 21.56335308, + "2024-07-29T05": 21.9773624, + "2024-07-28T17": 21.3776482, + "2024-07-29T00": 21.51, + "2024-07-29T01": 21.54, + "2024-07-28T22": 21.1193664, + "2024-07-28T19": 21.397645999999998, + "2024-07-28T14": 21.46, + "2024-07-29T02": 21.8484705, + "2024-07-29T08": 22.005598000000003, + "2024-07-28T11": 21.6091356, + "2024-07-28T13": 21.563330761662247, + "2024-07-29T09": 22.1051358, + "2024-07-29T10": 22.1653443, + "2024-07-29T11": 22.08936026, + "2024-07-29T12": 22.047015589999997, + "2024-07-29T13": 21.8680317, + "2024-07-30": 21.39139842898355, + "2024-07-29T23": 21.077259599999998, + "2024-07-29T18": 21.2477496, + "2024-07-29T21": 21.1083112, + "2024-07-29T22": 21.157249200000003, + "2024-07-29T17": 21.2753184, + "2024-07-29T15": 21.334451599999998, + "2024-07-30T01": 21.245325, + "2024-07-29T19": 21.2865936, + "2024-07-30T04": 21.365726000000002, + "2024-07-29T14": 21.6667495, + "2024-07-29T20": 21.287658099999998, + "2024-07-30T03": 21.2770208, + "2024-07-30T00": 21.1164096, + "2024-07-29T16": 21.2531968, + "2024-07-30T02": 21.125774, + "2024-07-30T09": 21.5552568, + "2024-07-30T08": 21.6339408, + "2024-07-30T06": 21.4252854, + "2024-07-30T05": 21.365939700000002, + "2024-07-30T07": 21.6343736, + "2024-07-30T10": 21.5463365, + "2024-07-30T11": 21.575468199999996, + "2024-07-30T12": 21.685662, + "2024-07-30T13": 21.805638, + "2024-07-31": 20.932879263426734, + "2024-07-31T00": 20.824792499999997, + "2024-07-31T05": 20.7654306, + "2024-07-30T23": 20.8639477, + "2024-07-30T19": 20.99223, + "2024-07-30T16": 21.703052800000002, + "2024-07-30T17": 21.5133288, + "2024-07-30T18": 21.3031808, + "2024-07-30T20": 20.873736, + "2024-07-30T15": 21.742605, + "2024-07-31T03": 20.8656173, + "2024-07-30T21": 20.7645998, + "2024-07-31T01": 20.905190700000002, + "2024-07-31T07": 21.2034249, + "2024-07-31T06": 21.2138462, + "2024-07-31T02": 20.89582, + "2024-07-30T22": 20.8639477, + "2024-07-30T14": 21.755648, + "2024-07-31T04": 20.77810905288672, + "2024-07-31T08": 21.0805095, + "2024-07-31T11": 20.908494, + "2024-07-31T09": 21.0417905, + "2024-07-31T10": 20.95236624312484, + "2024-07-31T12": 20.928571992903443, + "2024-08-01": 19.749999851485406, + "2024-07-31T14": 21.110496, + "2024-07-31T23": 20.543424, + "2024-07-31T13": 21.1400595, + "2024-07-31T21": 20.5122024, + "2024-08-01T01": 20.6027865, + "2024-07-31T18": 21.047883246104234, + "2024-07-31T19": 20.962870199999998, + "2024-07-31T16": 21.00197372291593, + "2024-08-01T02": 20.4593556, + "2024-07-31T22": 20.640150708964118, + "2024-07-31T20": 20.601962099999998, + "2024-07-31T17": 20.99181, + "2024-08-01T00": 20.526124143, + "2024-07-31T15": 21.02737524, + "2024-08-01T07": 20.150928, + "2024-08-01T06": 20.190102, + "2024-08-01T05": 20.187678, + "2024-08-01T04": 20.180954303332015, + "2024-08-01T03": 20.401181639999997, + "2024-08-01T08": 20.2255655686118, + "2024-08-01T09": 20.3082144, + "2024-08-01T10": 20.3292198, + "2024-08-01T11": 20.439161499999997, + "2024-08-01T12": 20.499334800000003, + "2024-08-01T13": 20.40424759143506, + "2024-08-01T14": 20.1215454, + "2024-08-01T15": 19.73013, + "2024-08-02": 19.38330914413685, + "2024-08-02T00": 20.251756999999998, + "2024-08-01T20": 19.2505373, + "2024-08-01T21": 19.557315073922275, + "2024-08-02T04": 19.8519183, + "2024-08-01T19": 19.27877, + "2024-08-01T16": 19.296483, + "2024-08-02T02": 19.752800099999998, + "2024-08-01T17": 19.064545199999998, + "2024-08-01T23": 20.2011954, + "2024-08-02T01": 20.032155500000002, + "2024-08-01T22": 20.0033834, + "2024-08-01T18": 18.8926028, + "2024-08-02T03": 19.901673600000002, + "2024-08-02T05": 19.66387753, + "2024-08-02T06": 19.3952484, + "2024-08-02T07": 19.480910334438303, + "2024-08-02T08": 19.4638316, + "2024-08-02T09": 19.583144, + "2024-08-02T10": 19.5751116, + "2024-08-02T11": 19.5935276, + "2024-08-02T12": 19.496343, + "2024-08-02T13": 19.681363012954726, + "2024-08-02T14": 19.847452705174796, + "2024-08-02T15": 18.9114486, + "2024-08-03": 18.335698232930582, + "2024-08-02T16": 19.0338075, + "2024-08-02T22": 18.828511000000002, + "2024-08-02T23": 18.825872000000004, + "2024-08-03T00": 18.8253065, + "2024-08-03T01": 18.4572696, + "2024-08-03T03": 18.8275685, + "2024-08-02T19": 18.8594208, + "2024-08-02T18": 18.97101, + "2024-08-02T21": 18.77121, + "2024-08-02T17": 19.061874, + "2024-08-02T20": 18.9093663, + "2024-08-03T02": 18.76120248, + "2024-08-03T06": 19.03522896, + "2024-08-03T19": 17.636232999999997, + "2024-08-03T10": 19.0032624, + "2024-08-03T09": 19.013063300000002, + "2024-08-03T15": 18.640950094940987, + "2024-08-03T22": 18.1296602, + "2024-08-03T05": 18.9888989, + "2024-08-03T08": 19.043873464336396, + "2024-08-03T14": 18.9736591, + "2024-08-03T18": 17.667624, + "2024-08-03T17": 17.9170904, + "2024-08-03T21": 17.909248, + "2024-08-03T12": 19.01253948, + "2024-08-03T20": 17.6481678, + "2024-08-03T04": 18.890900900000002, + "2024-08-03T16": 18.242379024279465, + "2024-08-03T11": 18.994031600000003, + "2024-08-03T07": 19.129509499999998, + "2024-08-03T13": 18.937465633995565, + "2024-08-04": 17.87, + "2024-08-03T23": 18.11385056, + "2024-08-04T17": 16.95, + "2024-08-04T13": 18.14, + "2024-08-04T06": 18.49, + "2024-08-04T12": 18.1, + "2024-08-04T10": 18.15, + "2024-08-04T16": 17.07, + "2024-08-04T15": 17.37, + "2024-08-04T00": 18.38, + "2024-08-04T11": 18.183218722691667, + "2024-08-04T01": 18.29, + "2024-08-04T03": 18.44, + "2024-08-04T04": 18.48, + "2024-08-04T07": 18.16, + "2024-08-04T08": 18.21, + "2024-08-04T18": 17.121919759586298, + "2024-08-04T09": 18.18, + "2024-08-04T02": 18.48, + "2024-08-04T05": 18.46, + "2024-08-04T14": 17.61, + "2024-08-05": 17.647394187771283, + "2024-08-05T01": 16.898590142318202, + "2024-08-04T19": 17.317977634384047, + "2024-08-04T22": 17.725780240498022, + "2024-08-05T03": 15.755532976051775, + "2024-08-05T02": 15.810766900132311, + "2024-08-04T23": 17.757391972733757, + "2024-08-05T00": 17.589535375585417, + "2024-08-05T04": 15.426351324776455, + "2024-08-05T06": 15.208572412633385, + "2024-08-04T20": 17.651665116335423, + "2024-08-05T05": 15.439557453048716, + "2024-08-04T21": 17.75068860996984, + "2024-08-05T07": 14.632523946128503, + "2024-08-05T08": 15.42567399768487, + "2024-08-05T09": 15.199712338156216, + "2024-08-05T10": 15.24394344686376, + "2024-08-05T11": 14.825843394828238, + "2024-08-05T12": 14.757067523239384, + "2024-08-05T13": 14.554575936566748, + "2024-08-05T14": 15.588065921172804, + "2024-08-05T15": 16.330335171890596, + "2024-08-06": 16.029178422992235, + "2024-08-05T19": 15.74, + "2024-08-05T20": 15.92, + "2024-08-05T21": 15.97, + "2024-08-06T02": 16.6863384, + "2024-08-05T18": 15.942091364456918, + "2024-08-05T23": 16.033830111230614, + "2024-08-05T16": 16.49, + "2024-08-06T05": 16.9600005, + "2024-08-05T17": 16.25, + "2024-08-06T00": 16.713342, + "2024-08-06T04": 16.7375285, + "2024-08-06T03": 16.636485699999998, + "2024-08-05T22": 16.17, + "2024-08-06T01": 16.845052, + "2024-08-06T06": 17.232570599999995, + "2024-08-06T07": 17.0614235, + "2024-08-06T08": 16.7797266, + "2024-08-06T09": 16.685004, + "2024-08-06T10": 16.8353856, + "2024-08-06T11": 16.8142025, + "2024-08-06T12": 16.786208600000002, + "2024-08-06T13": 16.676668160000002, + "2024-08-06T14": 16.676834879999998 + }, + "USD litecoin": { + "2024-06-28": 73.33155288278427, + "2024-06-30": 74.88137460228967, + "2024-07-15": 70.6095650136007, + "2024-07-18": 71.93376424175818, + "2024-07-14": 70.0033156628916, + "2024-07-11": 67.81313741782456, + "2024-07-19": 71.57764862542234, + "2024-07-12": 68.81227718591022, + "2024-07-24": 72.86326121521151, + "2024-07-08": 64.52695928455707, + "2024-07-07": 63.93029667054925, + "2024-07-13": 69.87407969772856, + "2024-07-09": 65.58229154619195, + "2024-07-02": 75.06972463613154, + "2024-07-20": 73.2097217634264, + "2024-06-29": 74.47278173700671, + "2024-07-21": 73.27708421927517, + "2024-07-23": 72.11519768431921, + "2024-07-10": 66.09699623527591, + "2024-07-01": 74.90093141293953, + "2024-06-26": 71.26259065952476, + "2024-07-17": 72.73455069484123, + "2024-07-22": 73.01831905462348, + "2024-07-04": 68.90208481350962, + "2024-06-25": 70.75922324826823, + "2024-07-26": 71.0963953909035, + "2024-07-03": 74.23157987431925, + "2024-07-05": 59.894433161770586, + "2024-07-25": 68.83817543859296, + "2024-07-16": 72.88419813694655, + "2024-07-06": 63.19252865435933, + "2024-06-27": 71.50134359824021, + "2024-07-22T13": 73.02022140000001, + "2024-07-25T10": 68.50233028, + "2024-07-26T06": 71.225752, + "2024-07-24T14": 73.45101600000001, + "2024-07-21T20": 73.63761276000001, + "2024-07-21T07": 72.74108879999999, + "2024-07-21T14": 73.42495600000001, + "2024-07-22T23": 71.20135400000001, + "2024-07-24T07": 72.4478265, + "2024-07-20T11": 72.8556818, + "2024-07-26T08": 70.90765296, + "2024-07-25T20": 68.1386428, + "2024-07-21T02": 73.21149348, + "2024-07-20T04": 73.134357, + "2024-07-20T03": 73.092877, + "2024-07-25T13": 67.96824319999999, + "2024-07-21T06": 72.72608444999999, + "2024-07-20T12": 72.7699128, + "2024-07-24T02": 72.6607266, + "2024-07-24T17": 73.2192678, + "2024-07-25T06": 68.8620912, + "2024-07-25T22": 69.14271, + "2024-07-22T07": 73.83407345, + "2024-07-22T22": 71.43756662, + "2024-07-26T03": 70.11877919999999, + "2024-07-23T01": 72.43724300000001, + "2024-07-24T03": 72.69336134, + "2024-07-23T21": 72.48087050000001, + "2024-07-19T20": 73.32298050000001, + "2024-07-23T22": 72.13298160000001, + "2024-07-21T23": 73.9659168, + "2024-07-19T16": 72.934584, + "2024-07-22T20": 72.33047514, + "2024-07-23T10": 72.42127578, + "2024-07-19T17": 72.93348012, + "2024-07-22T09": 73.748, + "2024-07-24T04": 72.3121693, + "2024-07-22T06": 72.94837663999999, + "2024-07-24T21": 71.462853, + "2024-07-20T21": 73.30970695999999, + "2024-07-21T15": 73.4342253, + "2024-07-20T09": 73.04015, + "2024-07-25T14": 67.97634893060892, + "2024-07-19T11": 70.285237, + "2024-07-23T20": 72.504498, + "2024-07-25T03": 68.84391717, + "2024-07-20T01": 73.19658, + "2024-07-25T23": 68.8186596, + "2024-07-20T16": 73.51245496, + "2024-07-22T15": 71.8864692, + "2024-07-23T16": 71.7922026, + "2024-07-22T02": 73.901, + "2024-07-21T04": 73.170482, + "2024-07-23T09": 72.12, + "2024-07-20T10": 72.9635478, + "2024-07-22T19": 72.15347618, + "2024-07-20T00": 73.366665, + "2024-07-20T19": 73.49379159999998, + "2024-07-26T05": 70.7665518, + "2024-07-19T14": 71.66, + "2024-07-21T00": 73.1712135, + "2024-07-22T12": 73.1958552, + "2024-07-24T06": 72.17372173000001, + "2024-07-25T01": 69.34167799999999, + "2024-07-20T22": 73.3215147, + "2024-07-19T15": 71.75143499999999, + "2024-07-21T13": 73.3027168, + "2024-07-25T07": 69.10272, + "2024-07-21T08": 73.04117579999999, + "2024-07-23T06": 70.8406245, + "2024-07-22T16": 71.65803105130743, + "2024-07-24T11": 73.35, + "2024-07-24T01": 72.81245622, + "2024-07-23T00": 71.531453, + "2024-07-19T12": 70.30382639999999, + "2024-07-25T17": 69.2654512, + "2024-07-25T19": 68.58910338999999, + "2024-07-19T21": 73.5875105, + "2024-07-23T08": 71.39261117378913, + "2024-07-21T21": 73.42394789999999, + "2024-07-21T11": 73.25977479999999, + "2024-07-22T14": 72.1448201, + "2024-07-20T23": 73.08118739999999, + "2024-07-20T08": 73.222593, + "2024-07-20T02": 73.0228455, + "2024-07-24T05": 72.00776016, + "2024-07-24T16": 73.16658439999999, + "2024-07-21T01": 73.23208584999999, + "2024-07-24T13": 73.46, + "2024-07-25T04": 69.09032599999999, + "2024-07-19T13": 71.125772, + "2024-07-25T12": 68.1447771, + "2024-07-19T22": 73.58203754000002, + "2024-07-26T07": 71.4664188, + "2024-07-25T02": 68.656266, + "2024-07-21T12": 73.311987, + "2024-07-23T18": 71.83390086, + "2024-07-23T11": 72.30244601999999, + "2024-07-19T10": 70.13326891999999, + "2024-07-19T19": 73.57942, + "2024-07-25T11": 68.59223859, + "2024-07-22T08": 74.04592320000002, + "2024-07-23T19": 72.14780092, + "2024-07-22T21": 71.8008162, + "2024-07-21T09": 73.4005464, + "2024-07-21T22": 73.737373, + "2024-07-22T04": 73.70689607999999, + "2024-07-25T16": 68.75487059999999, + "2024-07-19T23": 73.46671500000001, + "2024-07-20T06": 73.17926, + "2024-07-23T02": 72.305784, + "2024-07-23T14": 72.73763616, + "2024-07-23T03": 72.12504840000001, + "2024-07-25T08": 69.02997549999999, + "2024-07-24T15": 72.9838643, + "2024-07-19T09": 70.095978, + "2024-07-20T15": 73.48277259999999, + "2024-07-23T23": 72.81655289999999, + "2024-07-23T12": 72.13298160000001, + "2024-07-22T10": 74.0307403, + "2024-07-21T10": 73.4598288, + "2024-07-22T00": 74.37371850000001, + "2024-07-24T22": 71.27716780000002, + "2024-07-24T19": 72.6692733, + "2024-07-24T09": 73.23, + "2024-07-23T04": 71.6731666, + "2024-07-23T05": 70.8842528, + "2024-07-25T18": 68.94007092, + "2024-07-25T15": 68.41494540000001, + "2024-07-26T01": 69.561085, + "2024-07-22T01": 74.24890879999998, + "2024-07-26T02": 69.726052, + "2024-07-24T18": 72.85728499999999, + "2024-07-21T19": 72.9784505, + "2024-07-25T05": 69.3933416, + "2024-07-22T18": 71.88437400000001, + "2024-07-24T00": 72.89155965, + "2024-07-24T08": 73.22926770000001, + "2024-07-24T20": 72.39927600000001, + "2024-07-24T23": 71.0072164, + "2024-07-22T17": 71.71003800000001, + "2024-07-21T17": 73.42161011839471, + "2024-07-24T12": 73.34220020000001, + "2024-07-23T13": 72.0215216, + "2024-07-21T05": 73.07645568, + "2024-07-20T05": 73.03504000000001, + "2024-07-21T03": 73.16047920000001, + "2024-07-26T00": 69.2254596, + "2024-07-20T20": 73.48638279999999, + "2024-07-22T03": 73.98295920000001, + "2024-07-25T21": 69.0741093, + "2024-07-21T16": 73.43755070192725, + "2024-07-20T17": 73.57942, + "2024-07-22T11": 73.8622158, + "2024-07-25T00": 71.41958156924153, + "2024-07-20T13": 72.69151762000001, + "2024-07-23T07": 70.977097, + "2024-07-22T05": 73.204392, + "2024-07-20T07": 73.4030165, + "2024-07-21T18": 72.25005416999998, + "2024-07-23T17": 71.0301023, + "2024-07-20T14": 73.0977666, + "2024-07-26T04": 70.49013, + "2024-07-24T10": 73.328, + "2024-07-20T18": 73.57677, + "2024-07-23T15": 72.44531361000001, + "2024-07-19T18": 72.98897219999999, + "2024-07-25T09": 69.03425394985392, + "latest": 58.48, + "2024-07-26T09": 71.29716420000001, + "2024-07-26T10": 71.0934680273825, + "2024-07-26T11": 71.06294079999999, + "2024-07-26T12": 71.2178909, + "2024-07-26T13": 71.06662752, + "2024-07-26T14": 70.9636127, + "2024-07-26T17": 71.25057496, + "2024-07-26T16": 71.4284284, + "2024-07-26T15": 71.3542912, + "2024-07-26T18": 71.16, + "2024-07-27": 71.49251241246913, + "2024-07-28": 71.18258277422935, + "2024-07-28T05": 70.62529374, + "2024-07-26T21": 71.17, + "2024-07-27T02": 71.2221366, + "2024-07-28T01": 71.49299514, + "2024-07-27T10": 71.43771456, + "2024-07-28T02": 71.45642699999999, + "2024-07-27T19": 71.3878425, + "2024-07-27T09": 71.49643409999999, + "2024-07-27T06": 71.3114262, + "2024-07-27T18": 71.790767, + "2024-07-26T22": 71.25285000000001, + "2024-07-27T13": 71.81333452, + "2024-07-27T12": 71.4521448, + "2024-07-27T16": 72.02720199999999, + "2024-07-27T05": 71.35142699999999, + "2024-07-26T23": 71.32085272, + "2024-07-26T20": 71.05, + "2024-07-27T08": 71.47657365, + "2024-07-28T03": 71.3385732, + "2024-07-27T01": 71.32585292, + "2024-07-28T09": 71.2058561050715, + "2024-07-28T10": 71.4478565, + "2024-07-27T00": 71.4228568, + "2024-07-28T00": 71.13804173671105, + "2024-07-27T04": 71.26042518, + "2024-07-27T14": 72.05920520000001, + "2024-07-27T07": 71.49, + "2024-07-27T11": 71.39213459999999, + "2024-07-27T22": 71.7235443, + "2024-07-27T03": 71.3207132, + "2024-07-27T20": 71.17655865, + "2024-07-27T23": 71.46399717, + "2024-07-28T08": 71.10966927538921, + "2024-07-27T21": 71.7178484, + "2024-07-28T07": 71.02506778131377, + "2024-07-27T15": 71.6411634, + "2024-07-26T19": 71.259, + "2024-07-28T04": 71.06457868, + "2024-07-28T06": 70.8085838, + "2024-07-27T17": 71.96863519999998, + "2024-07-29": 74.2264001354402, + "2024-07-28T20": 71.3721482, + "2024-07-28T16": 70.95729042, + "2024-07-29T07": 74.3966062, + "2024-07-28T23": 71.0685786, + "2024-07-28T15": 70.84929149999999, + "2024-07-28T18": 71.44514017, + "2024-07-29T04": 73.1762178, + "2024-07-29T06": 73.56064134492682, + "2024-07-28T21": 71.142885, + "2024-07-29T03": 73.391926, + "2024-07-28T12": 71.6478505, + "2024-07-29T05": 73.50517832, + "2024-07-28T17": 71.05718284999999, + "2024-07-29T00": 71.701, + "2024-07-29T01": 71.69, + "2024-07-28T22": 71.03786880000001, + "2024-07-28T19": 71.49513467, + "2024-07-28T14": 70.885, + "2024-07-29T02": 72.39493200000001, + "2024-07-29T08": 74.71505400000001, + "2024-07-28T11": 71.6171352, + "2024-07-28T13": 71.40057196, + "2024-07-29T09": 75.22175908282749, + "2024-07-29T10": 76.12401059999999, + "2024-07-29T11": 75.99852405720263, + "2024-07-29T12": 76.0831519, + "2024-07-29T13": 76.0731528, + "2024-07-30": 73.361522031725, + "2024-07-29T23": 73.8703956, + "2024-07-29T18": 73.845228, + "2024-07-29T21": 73.99408, + "2024-07-29T22": 74.04874208646429, + "2024-07-29T17": 73.9737222, + "2024-07-29T15": 74.9405104, + "2024-07-30T01": 74.25865950000001, + "2024-07-29T19": 74.0281536, + "2024-07-30T04": 73.7892392, + "2024-07-29T14": 75.6186555, + "2024-07-29T20": 74.14184350000001, + "2024-07-30T03": 73.8196638, + "2024-07-30T00": 73.86744039999999, + "2024-07-29T16": 74.2162432, + "2024-07-30T02": 73.355326, + "2024-07-30T09": 73.70718575969896, + "2024-07-30T08": 73.86231276, + "2024-07-30T06": 73.48183044000001, + "2024-07-30T05": 73.5460236, + "2024-07-30T07": 73.780812, + "2024-07-30T10": 73.5075016, + "2024-07-30T11": 73.46356940999999, + "2024-07-30T12": 73.4313108, + "2024-07-30T13": 73.495298, + "2024-07-31": 71.35871416637693, + "2024-07-31T00": 71.5721025, + "2024-07-31T05": 71.6242392, + "2024-07-30T23": 71.6092273, + "2024-07-30T19": 72.073323, + "2024-07-30T16": 73.24355455999999, + "2024-07-30T17": 72.4575312, + "2024-07-30T18": 72.48479744, + "2024-07-30T20": 71.7744612, + "2024-07-30T15": 73.21109976000001, + "2024-07-31T03": 72.3248086, + "2024-07-30T21": 71.68335748, + "2024-07-31T01": 72.07241953, + "2024-07-31T07": 72.1176366, + "2024-07-31T06": 72.19405765, + "2024-07-31T02": 72.4435084, + "2024-07-30T22": 71.7391896, + "2024-07-30T14": 73.205356, + "2024-07-31T04": 71.884901, + "2024-07-31T08": 71.85764950000001, + "2024-07-31T11": 71.580609, + "2024-07-31T09": 71.8419707, + "2024-07-31T10": 71.63259984, + "2024-07-31T12": 71.7198144, + "2024-08-01": 69.7106419383458, + "2024-07-31T14": 71.74769900000001, + "2024-07-31T23": 70.34448256, + "2024-07-31T13": 71.9761553, + "2024-07-31T21": 70.3132708, + "2024-08-01T01": 70.915171, + "2024-07-31T18": 71.4664083, + "2024-07-31T19": 70.8658974, + "2024-07-31T16": 71.52209549999999, + "2024-08-01T02": 70.9480878, + "2024-07-31T22": 70.9280055, + "2024-07-31T20": 70.29202007627964, + "2024-07-31T17": 71.44912397, + "2024-08-01T00": 70.5067251, + "2024-07-31T15": 71.42370427, + "2024-08-01T07": 69.8225657, + "2024-08-01T06": 70.11062894999999, + "2024-08-01T05": 69.9672939, + "2024-08-01T04": 70.3833816, + "2024-08-01T03": 70.662529, + "2024-08-01T08": 70.1335116, + "2024-08-01T09": 70.5490578, + "2024-08-01T10": 70.28173093, + "2024-08-01T11": 70.3027198, + "2024-08-01T12": 70.47433428, + "2024-08-01T13": 70.17130159999999, + "2024-08-01T14": 69.4408226, + "2024-08-01T15": 68.50573000000001, + "2024-08-02": 69.78001627239561, + "2024-08-02T00": 69.5783231, + "2024-08-01T20": 67.22203710000001, + "2024-08-01T21": 68.5169064, + "2024-08-02T04": 68.72740110000001, + "2024-08-01T19": 67.106102, + "2024-08-01T16": 67.68258900000001, + "2024-08-02T02": 68.36946677, + "2024-08-01T17": 67.1855356, + "2024-08-01T23": 69.53527199999999, + "2024-08-02T01": 69.04349655000001, + "2024-08-01T22": 69.50626188, + "2024-08-01T18": 66.5687004, + "2024-08-02T03": 68.636796, + "2024-08-02T05": 68.45039630000001, + "2024-08-02T06": 67.9683048, + "2024-08-02T07": 67.78504960000001, + "2024-08-02T08": 68.2033442, + "2024-08-02T09": 68.8307546, + "2024-08-02T10": 68.9875296, + "2024-08-02T11": 68.991998, + "2024-08-02T12": 68.55197999999999, + "2024-08-02T13": 68.7563282, + "2024-08-02T14": 68.90690114460659, + "2024-08-02T15": 65.11612360000001, + "2024-08-03": 64.70587392513981, + "2024-08-02T16": 65.4143505, + "2024-08-02T22": 64.9358886, + "2024-08-02T23": 64.8868384, + "2024-08-03T00": 64.8349548, + "2024-08-03T01": 63.91129230000001, + "2024-08-03T03": 64.95361311, + "2024-08-02T19": 64.96311294, + "2024-08-02T18": 65.11482000000001, + "2024-08-02T21": 64.87505999999999, + "2024-08-02T17": 65.317889, + "2024-08-02T20": 65.25179793, + "2024-08-03T02": 64.7294442, + "2024-08-03T06": 65.87012322, + "2024-08-03T19": 63.1207274, + "2024-08-03T10": 65.8819728, + "2024-08-03T09": 65.6315359, + "2024-08-03T15": 65.3861619, + "2024-08-03T22": 64.15041341, + "2024-08-03T05": 65.2874504, + "2024-08-03T08": 65.5163874, + "2024-08-03T14": 66.1669635, + "2024-08-03T18": 63.285669, + "2024-08-03T17": 63.354352, + "2024-08-03T21": 63.142092, + "2024-08-03T12": 66.07474500000001, + "2024-08-03T20": 63.13067409000001, + "2024-08-03T04": 65.1541278, + "2024-08-03T16": 64.58152749999999, + "2024-08-03T11": 66.01649952000001, + "2024-08-03T07": 65.7595619, + "2024-08-03T13": 66.1449908, + "2024-08-04": 64.78606368747421, + "2024-08-03T23": 64.37804445431898, + "2024-08-04T17": 61.6188139, + "2024-08-04T13": 64.885541, + "2024-08-04T06": 64.90973100000001, + "2024-08-04T12": 64.86755000000001, + "2024-08-04T10": 64.74131700000001, + "2024-08-04T16": 62.8447192, + "2024-08-04T15": 63.057723, + "2024-08-04T00": 64.6918093, + "2024-08-04T11": 64.99983317, + "2024-08-04T01": 64.44595444, + "2024-08-04T03": 64.8547651, + "2024-08-04T04": 64.87540185, + "2024-08-04T07": 64.64483703, + "2024-08-04T08": 64.4106855, + "2024-08-04T18": 61.56433438623443, + "2024-08-04T09": 64.63113924000001, + "2024-08-04T02": 64.81109, + "2024-08-04T05": 64.7274849129124, + "2024-08-04T14": 63.5626563, + "2024-08-05": 55.291548559896164, + "2024-08-05T01": 59.289632716883, + "2024-08-04T19": 62.72229428009442, + "2024-08-04T22": 62.90130497081258, + "2024-08-05T03": 56.20667015065049, + "2024-08-05T02": 55.9796487588589, + "2024-08-04T23": 63.20082758141167, + "2024-08-05T00": 62.47759157158937, + "2024-08-05T04": 55.264293796650264, + "2024-08-05T06": 54.82418812381515, + "2024-08-04T20": 63.387618429237115, + "2024-08-05T05": 55.734951392393505, + "2024-08-04T21": 63.37788056304373, + "2024-08-05T07": 52.13266802066623, + "2024-08-05T08": 54.15712936855061, + "2024-08-05T09": 53.595013320570075, + "2024-08-05T10": 53.413273781495775, + "2024-08-05T11": 52.55962459810443, + "2024-08-05T12": 52.973510690295626, + "2024-08-05T13": 51.13529695295977, + "2024-08-05T14": 53.70134784853266, + "2024-08-05T15": 56.64566429999999, + "2024-08-06": 57.999149531498034, + "2024-08-05T19": 55.301006400000006, + "2024-08-05T20": 55.9005895, + "2024-08-05T21": 56.370144800000006, + "2024-08-06T02": 58.0020324, + "2024-08-05T18": 56.15976695490462, + "2024-08-05T23": 56.371272, + "2024-08-05T16": 57.14997699999999, + "2024-08-06T05": 58.0042023, + "2024-08-05T17": 56.88354150000001, + "2024-08-06T00": 57.801558, + "2024-08-06T04": 57.84643597327406, + "2024-08-06T03": 57.852553699999994, + "2024-08-05T22": 56.6796339, + "2024-08-06T01": 58.487541, + "2024-08-06T06": 58.59274149999999, + "2024-08-06T07": 58.44813403, + "2024-08-06T08": 57.7734892, + "2024-08-06T09": 57.227163, + "2024-08-06T10": 57.29832960000001, + "2024-08-06T11": 57.294320000000006, + "2024-08-06T12": 57.2011566, + "2024-08-06T13": 56.9859516, + "2024-08-06T14": 56.98652129999999 + }, + "USD monero": { + "2024-06-28": 166.94550403280363, + "2024-06-30": 167.75321319390525, + "2024-07-15": 159.06284572853463, + "2024-07-18": 160.84089460390544, + "2024-07-14": 156.9629169101725, + "2024-07-11": 158.29790938715033, + "2024-07-19": 160.2119201854699, + "2024-07-12": 159.00192806886636, + "2024-07-24": 161.32862831190292, + "2024-07-08": 152.33743016153707, + "2024-07-07": 154.87734031087882, + "2024-07-13": 159.74576132380085, + "2024-07-09": 154.48800285226937, + "2024-07-02": 168.9935244516203, + "2024-07-20": 162.88602823235536, + "2024-06-29": 166.48099127402858, + "2024-07-21": 163.65462492098624, + "2024-07-23": 160.13510151760804, + "2024-07-10": 155.17641791135344, + "2024-07-01": 170.13119842883253, + "2024-06-26": 164.8984099073863, + "2024-07-17": 161.56700654200154, + "2024-07-22": 163.06284538795987, + "2024-07-04": 159.0469134046908, + "2024-06-25": 162.67, + "2024-07-26": 163.9765228551999, + "2024-07-03": 166.66868578361905, + "2024-07-05": 148.91565886478784, + "2024-07-25": 155.4416809233061, + "2024-07-16": 160.5475309619398, + "2024-07-06": 156.54157311800597, + "2024-06-27": 165.86543941472644, + "2024-07-22T13": 162.34272479999998, + "2024-07-25T10": 153.42566606446331, + "2024-07-26T06": 168.376318, + "2024-07-24T14": 163.2144785, + "2024-07-21T20": 163.79585, + "2024-07-21T07": 162.98725259999998, + "2024-07-21T14": 163.7656614, + "2024-07-22T23": 160.69038814866798, + "2024-07-24T07": 161.6151514, + "2024-07-20T11": 162.82974750000002, + "2024-07-26T08": 166.9532832, + "2024-07-25T20": 158.46196, + "2024-07-21T02": 163.4557548, + "2024-07-20T04": 163.02658649999998, + "2024-07-20T03": 162.653161, + "2024-07-25T13": 153.7607808, + "2024-07-21T06": 163.18731059999996, + "2024-07-20T12": 162.978192, + "2024-07-24T02": 160.97160970000002, + "2024-07-24T17": 163.3183668, + "2024-07-25T06": 155.08966619999998, + "2024-07-25T22": 160.0299825, + "2024-07-22T07": 164.0746075, + "2024-07-22T22": 161.0231201, + "2024-07-26T03": 171.72252, + "2024-07-23T01": 160.996098, + "2024-07-24T03": 160.8896528, + "2024-07-23T21": 159.12386500000002, + "2024-07-19T20": 162.81323300000003, + "2024-07-23T22": 159.2586614, + "2024-07-21T23": 164.14313040000002, + "2024-07-19T16": 160.672128, + "2024-07-22T20": 162.011541, + "2024-07-23T10": 161.099939741832, + "2024-07-19T17": 160.820904, + "2024-07-22T09": 164.75, + "2024-07-24T04": 160.6148183, + "2024-07-22T06": 163.7898268, + "2024-07-24T21": 159.89712433703687, + "2024-07-20T21": 163.4151364, + "2024-07-21T15": 164.0169768825191, + "2024-07-20T09": 161.788935, + "2024-07-25T14": 153.42474719999998, + "2024-07-19T11": 159.13657429999998, + "2024-07-23T20": 159.83196, + "2024-07-25T03": 158.00997239999998, + "2024-07-20T01": 162.74132999999998, + "2024-07-25T23": 161.79552744596938, + "2024-07-20T16": 163.8189536, + "2024-07-22T15": 163.3647015, + "2024-07-23T16": 160.9673598, + "2024-07-22T02": 163.12, + "2024-07-21T04": 163.6558108, + "2024-07-23T09": 159.61, + "2024-07-20T10": 161.66433139999998, + "2024-07-22T19": 161.8936995, + "2024-07-20T00": 161.74083, + "2024-07-20T19": 164.17548599999998, + "2024-07-26T05": 174.31687349999999, + "2024-07-19T14": 160.23, + "2024-07-21T00": 163.4273802, + "2024-07-22T12": 162.7530192, + "2024-07-24T06": 160.9816098, + "2024-07-25T01": 158.97092120000002, + "2024-07-20T22": 163.6003179, + "2024-07-19T15": 160.52321039999998, + "2024-07-21T13": 164.0708462, + "2024-07-25T07": 154.51136250000002, + "2024-07-21T08": 162.80720039999997, + "2024-07-23T06": 159.13386650000004, + "2024-07-22T16": 160.9741425, + "2024-07-24T11": 161.12, + "2024-07-24T01": 159.8131962, + "2024-07-23T00": 160.51814099999999, + "2024-07-19T12": 158.51353350000002, + "2024-07-25T17": 154.8774689, + "2024-07-25T19": 158.0141626, + "2024-07-19T21": 161.7124313, + "2024-07-23T08": 158.7747631, + "2024-07-21T21": 164.3012113, + "2024-07-21T11": 163.1540397, + "2024-07-22T14": 161.86427600000002, + "2024-07-20T23": 163.1072874, + "2024-07-20T08": 162.070995, + "2024-07-20T02": 162.98330950000002, + "2024-07-24T05": 160.4528352, + "2024-07-24T16": 163.78473929999998, + "2024-07-21T01": 163.40350782168716, + "2024-07-24T13": 162.68, + "2024-07-25T04": 156.9980172, + "2024-07-19T13": 159.576827823923, + "2024-07-25T12": 153.3332457, + "2024-07-19T22": 161.1989488, + "2024-07-26T07": 166.95172260377285, + "2024-07-25T02": 158.348324, + "2024-07-21T12": 164.54935, + "2024-07-23T18": 158.0773866, + "2024-07-23T11": 161.103222, + "2024-07-19T10": 159.4964987, + "2024-07-19T19": 161.894732, + "2024-07-25T11": 152.8803534, + "2024-07-22T08": 164.05312320000002, + "2024-07-23T19": 159.16250630000002, + "2024-07-22T21": 162.0669858, + "2024-07-21T09": 162.945612, + "2024-07-21T22": 164.136412, + "2024-07-22T04": 163.24617870061275, + "2024-07-25T16": 153.96612, + "2024-07-19T23": 161.34062999999998, + "2024-07-20T06": 162.565, + "2024-07-23T02": 161.10288720000003, + "2024-07-23T14": 160.6456992, + "2024-07-23T03": 160.511235, + "2024-07-25T08": 155.0250297, + "2024-07-24T15": 163.03097, + "2024-07-19T09": 159.63806599999998, + "2024-07-20T15": 162.6203967, + "2024-07-23T23": 160.64445669999998, + "2024-07-23T12": 160.6689152, + "2024-07-22T10": 164.80164800000003, + "2024-07-21T10": 162.7039182, + "2024-07-22T00": 164.83824150000004, + "2024-07-24T22": 160.59108840000002, + "2024-07-24T19": 161.1683883, + "2024-07-24T09": 160.63, + "2024-07-23T04": 160.50604900000002, + "2024-07-23T05": 160.2896168, + "2024-07-25T18": 157.70898499999998, + "2024-07-25T15": 153.35009127825626, + "2024-07-26T01": 166.456702, + "2024-07-22T01": 163.63963439999998, + "2024-07-26T02": 168.13636599999998, + "2024-07-24T18": 162.686267, + "2024-07-21T19": 164.3340653, + "2024-07-25T05": 156.37246159999998, + "2024-07-22T18": 161.192232, + "2024-07-24T00": 160.6744594, + "2024-07-24T08": 161.64838350000002, + "2024-07-24T20": 161.11838880000002, + "2024-07-24T23": 160.071182, + "2024-07-22T17": 160.9525302, + "2024-07-21T17": 163.78436365131645, + "2024-07-24T12": 161.6248486, + "2024-07-23T13": 159.77555999999998, + "2024-07-21T05": 163.4657576, + "2024-07-20T05": 162.5679952, + "2024-07-21T03": 163.5857912, + "2024-07-26T00": 163.6456272, + "2024-07-20T20": 163.805496, + "2024-07-22T03": 163.47653880000001, + "2024-07-25T21": 159.763246, + "2024-07-21T16": 163.32040619999998, + "2024-07-20T17": 163.835508, + "2024-07-22T11": 162.9648888, + "2024-07-25T00": 160.1311712, + "2024-07-20T13": 162.8783802, + "2024-07-23T07": 159.525951, + "2024-07-22T05": 164.2398538, + "2024-07-20T07": 162.66316550000002, + "2024-07-21T18": 163.1101072, + "2024-07-23T17": 160.14601299999998, + "2024-07-20T14": 162.68179560000002, + "2024-07-26T04": 173.2457422, + "2024-07-24T10": 161.1, + "2024-07-20T18": 164.11201499999999, + "2024-07-23T15": 161.04210786750468, + "2024-07-19T18": 161.20190159999999, + "2024-07-25T09": 154.72427919999998, + "latest": 148.9, + "2024-07-26T09": 164.11045479999999, + "2024-07-26T10": 162.1262141, + "2024-07-26T11": 161.8011584, + "2024-07-26T12": 163.072273, + "2024-07-26T13": 164.41758575228187, + "2024-07-26T14": 162.4453786, + "2024-07-26T17": 163.8067238, + "2024-07-26T16": 163.891805, + "2024-07-26T15": 162.5269968, + "2024-07-26T18": 163.56, + "2024-07-27": 163.33799239651844, + "2024-07-28": 162.79902716518865, + "2024-07-28T05": 161.0583894, + "2024-07-26T21": 162.13, + "2024-07-27T02": 162.43487290000002, + "2024-07-28T01": 162.1186509, + "2024-07-27T10": 163.11304800000002, + "2024-07-28T02": 161.9919, + "2024-07-27T19": 164.34107500000002, + "2024-07-27T09": 162.8646565, + "2024-07-27T06": 162.7132542, + "2024-07-27T18": 163.78456400000002, + "2024-07-26T22": 162.5465016, + "2024-07-27T13": 163.65127189999998, + "2024-07-27T12": 163.94786639999998, + "2024-07-27T16": 164.686467, + "2024-07-27T05": 162.3332466, + "2024-07-26T23": 162.08648320000003, + "2024-07-26T20": 163.58, + "2024-07-27T08": 162.27811350000002, + "2024-07-28T03": 161.796764, + "2024-07-27T01": 163.2865312, + "2024-07-28T09": 160.85678280000002, + "2024-07-28T10": 161.4151574, + "2024-07-27T00": 162.98101846255167, + "2024-07-28T00": 161.8483815, + "2024-07-27T04": 161.3432268, + "2024-07-27T14": 163.426341, + "2024-07-27T07": 162.61, + "2024-07-27T11": 163.40777459999998, + "2024-07-27T22": 163.3452976, + "2024-07-27T03": 162.1516215, + "2024-07-27T20": 164.38821900000002, + "2024-07-27T23": 162.8186019, + "2024-07-28T08": 160.2067958, + "2024-07-27T21": 164.095077, + "2024-07-28T07": 160.6167876, + "2024-07-27T15": 163.61636, + "2024-07-26T19": 163.33, + "2024-07-28T04": 161.746765, + "2024-07-28T06": 161.2767744, + "2024-07-27T17": 164.5243171262813, + "2024-07-29": 164.13422923057763, + "2024-07-28T20": 162.6421074, + "2024-07-28T16": 163.6883631, + "2024-07-29T07": 164.9703, + "2024-07-28T23": 164.5767084, + "2024-07-28T15": 164.23835760000003, + "2024-07-28T18": 164.24193139999997, + "2024-07-29T04": 164.91020840000002, + "2024-07-29T06": 164.58906037499534, + "2024-07-28T21": 163.113687, + "2024-07-29T03": 164.71187969999997, + "2024-07-28T12": 163.8350848, + "2024-07-29T05": 164.4902588, + "2024-07-28T17": 164.3419204, + "2024-07-29T00": 164.69, + "2024-07-29T01": 164.44377161490746, + "2024-07-28T22": 164.3350698, + "2024-07-28T19": 164.15194129999998, + "2024-07-28T14": 162.63, + "2024-07-29T02": 164.1985053, + "2024-07-29T08": 165.186956, + "2024-07-28T11": 162.7334904, + "2024-07-28T13": 162.87674239999998, + "2024-07-29T09": 165.313623, + "2024-07-29T10": 165.10532059999997, + "2024-07-29T11": 164.38547179999998, + "2024-07-29T12": 164.7651698, + "2024-07-29T13": 164.27521389999998, + "2024-07-30": 160.05445046652775, + "2024-07-29T23": 161.6289855, + "2024-07-29T18": 162.947404, + "2024-07-29T21": 161.587072, + "2024-07-29T22": 161.678979, + "2024-07-29T17": 162.82417080000002, + "2024-07-29T15": 163.6674354, + "2024-07-30T01": 160.39470540000002, + "2024-07-29T19": 162.81394559999998, + "2024-07-30T04": 160.46790000000001, + "2024-07-29T14": 163.615454, + "2024-07-29T20": 162.8420854, + "2024-07-30T03": 160.2575608, + "2024-07-30T00": 160.4427201, + "2024-07-29T16": 162.7179136, + "2024-07-30T02": 159.490083244038, + "2024-07-30T09": 162.0943314, + "2024-07-30T08": 161.4347856, + "2024-07-30T06": 159.8054787951377, + "2024-07-30T05": 159.9296076, + "2024-07-30T07": 160.30830899999998, + "2024-07-30T10": 162.70233589999998, + "2024-07-30T11": 163.5583682077519, + "2024-07-30T12": 160.977798, + "2024-07-30T13": 160.79783400000002, + "2024-07-31": 157.7019769673825, + "2024-07-31T00": 158.0304825, + "2024-07-31T05": 159.0550002, + "2024-07-30T23": 157.9641771, + "2024-07-30T19": 159.7808592, + "2024-07-30T16": 158.849152, + "2024-07-30T17": 157.351206, + "2024-07-30T18": 158.44037439550434, + "2024-07-30T20": 157.422759, + "2024-07-30T15": 159.6157122, + "2024-07-31T03": 158.6166835, + "2024-07-30T21": 157.7489746, + "2024-07-31T01": 158.2535933, + "2024-07-31T07": 159.89099985853187, + "2024-07-31T06": 159.3437769, + "2024-07-31T02": 158.108372, + "2024-07-30T22": 157.4243337, + "2024-07-30T14": 160.307932, + "2024-07-31T04": 159.29696584825066, + "2024-07-31T08": 159.748081, + "2024-07-31T11": 160.6415985, + "2024-07-31T09": 159.8676273, + "2024-07-31T10": 160.622864, + "2024-07-31T12": 160.5000696, + "2024-08-01": 156.10070777674125, + "2024-07-31T14": 160.227865, + "2024-07-31T23": 157.69952, + "2024-07-31T13": 160.5644992, + "2024-07-31T21": 156.4305338, + "2024-08-01T01": 156.9950325, + "2024-07-31T18": 159.0974805, + "2024-07-31T19": 158.0262528, + "2024-07-31T16": 159.3178418, + "2024-08-01T02": 156.2508536423934, + "2024-07-31T22": 157.4311812, + "2024-07-31T20": 156.838809, + "2024-07-31T17": 158.88800949999998, + "2024-08-01T00": 157.36883336984715, + "2024-07-31T15": 160.14431390000001, + "2024-08-01T07": 157.26352888317751, + "2024-08-01T06": 156.23549619785598, + "2024-08-01T05": 155.1453036, + "2024-08-01T04": 155.68899960000002, + "2024-08-01T03": 156.01726699999998, + "2024-08-01T08": 157.617996, + "2024-08-01T09": 157.8783774, + "2024-08-01T10": 156.73688539999998, + "2024-08-01T11": 156.7968536, + "2024-08-01T12": 156.8483964, + "2024-08-01T13": 156.075048, + "2024-08-01T14": 155.49684691860887, + "2024-08-01T15": 154.79256500000002, + "2024-08-02": 156.72144701913743, + "2024-08-02T00": 156.86869099999998, + "2024-08-01T20": 152.7655508, + "2024-08-01T21": 155.5073810954853, + "2024-08-02T04": 156.457494, + "2024-08-01T19": 151.81282199999998, + "2024-08-01T16": 152.41374551901137, + "2024-08-02T02": 156.34386239999998, + "2024-08-01T17": 152.87607, + "2024-08-01T23": 156.5742504, + "2024-08-02T01": 156.9202166, + "2024-08-01T22": 157.05506157740686, + "2024-08-01T18": 150.6512732, + "2024-08-02T03": 155.6666548, + "2024-08-02T05": 156.4337841, + "2024-08-02T06": 157.1604672, + "2024-08-02T07": 159.10102369999998, + "2024-08-02T08": 160.2868514, + "2024-08-02T09": 161.2512046, + "2024-08-02T10": 162.1166976, + "2024-08-02T11": 163.3027104, + "2024-08-02T12": 162.825942, + "2024-08-02T13": 162.9328132, + "2024-08-02T14": 163.5608804063039, + "2024-08-02T15": 161.7812988, + "2024-08-03": 157.2840746511159, + "2024-08-02T16": 162.19201950000001, + "2024-08-02T22": 159.2782156, + "2024-08-02T23": 158.4669024, + "2024-08-03T00": 157.37357020000002, + "2024-08-03T01": 155.7481938, + "2024-08-03T03": 158.4711946, + "2024-08-02T19": 160.65469530000001, + "2024-08-02T18": 159.48036, + "2024-08-02T21": 158.70114, + "2024-08-02T17": 160.04781, + "2024-08-02T20": 160.25748449155128, + "2024-08-03T02": 157.2721264, + "2024-08-03T06": 160.6946517, + "2024-08-03T19": 150.8222668, + "2024-08-03T10": 159.0199392, + "2024-08-03T09": 159.18819630000002, + "2024-08-03T15": 159.692934, + "2024-08-03T22": 147.77571980000002, + "2024-08-03T05": 159.3029772, + "2024-08-03T08": 160.9037718, + "2024-08-03T14": 160.69548, + "2024-08-03T18": 152.583117, + "2024-08-03T17": 153.3794872, + "2024-08-03T21": 148.500846, + "2024-08-03T12": 160.3580352, + "2024-08-03T20": 150.47911140000002, + "2024-08-03T04": 158.75949079999998, + "2024-08-03T16": 157.8115525, + "2024-08-03T11": 159.665768, + "2024-08-03T07": 160.7078584, + "2024-08-03T13": 161.1203636, + "2024-08-04": 150.80104652004965, + "2024-08-03T23": 146.80774159999999, + "2024-08-04T17": 147.277658, + "2024-08-04T13": 153.133395, + "2024-08-04T06": 150.5665908, + "2024-08-04T12": 152.78357000000003, + "2024-08-04T10": 151.7410536, + "2024-08-04T16": 150.4216184, + "2024-08-04T15": 150.7489305, + "2024-08-04T00": 149.62167110000001, + "2024-08-04T11": 152.622123, + "2024-08-04T01": 150.12137610000002, + "2024-08-04T03": 151.43626956262682, + "2024-08-04T04": 152.26706040000002, + "2024-08-04T07": 150.111382, + "2024-08-04T08": 150.108378, + "2024-08-04T18": 146.81777696424854, + "2024-08-04T09": 150.9039357, + "2024-08-04T02": 150.599586, + "2024-08-04T05": 152.32702379999998, + "2024-08-04T14": 152.4844035, + "2024-08-05": 144.48006378664743, + "2024-08-05T01": 146.22862599859585, + "2024-08-04T19": 148.66005063896617, + "2024-08-04T22": 150.89004415073666, + "2024-08-05T03": 144.9997132877712, + "2024-08-05T02": 145.6011854959676, + "2024-08-04T23": 151.04950882351, + "2024-08-05T00": 150.44243491370707, + "2024-08-05T04": 146.3557775339994, + "2024-08-05T06": 141.89606127951308, + "2024-08-04T20": 149.75726787424765, + "2024-08-05T05": 145.08217918475532, + "2024-08-04T21": 151.1931613384318, + "2024-08-05T07": 139.5745392430122, + "2024-08-05T08": 143.55576566316265, + "2024-08-05T09": 141.55106441694352, + "2024-08-05T10": 143.34701831151418, + "2024-08-05T11": 142.27849379999998, + "2024-08-05T12": 141.95180493443826, + "2024-08-05T13": 139.6664827528702, + "2024-08-05T14": 145.10713125574836, + "2024-08-05T15": 149.82601432871044, + "2024-08-06": 149.80661870841524, + "2024-08-05T19": 144.3948492, + "2024-08-05T20": 145.784577, + "2024-08-05T21": 146.60638440000002, + "2024-08-06T02": 150.3471102, + "2024-08-05T18": 146.8775326, + "2024-08-05T23": 146.149224, + "2024-08-05T16": 151.936281, + "2024-08-06T05": 149.39809290000002, + "2024-08-05T17": 150.2586003, + "2024-08-06T00": 148.959786, + "2024-08-06T04": 148.8769645, + "2024-08-06T03": 148.55791499999998, + "2024-08-05T22": 146.7349407, + "2024-08-06T01": 150.93526699999998, + "2024-08-06T06": 150.4697628, + "2024-08-06T07": 150.67088189999998, + "2024-08-06T08": 148.9463388, + "2024-08-06T09": 148.104418, + "2024-08-06T10": 148.70757120000002, + "2024-08-06T11": 148.43710000000002, + "2024-08-06T12": 148.5449413, + "2024-08-06T13": 147.6713364, + "2024-08-06T14": 147.67281269999998 + }, + "USD near": { + "2024-06-28": 5.1189698936704655, + "2024-06-30": 5.048656221808104, + "2024-07-15": 5.600690091115816, + "2024-07-18": 6.083681760155467, + "2024-07-14": 5.366981733124768, + "2024-07-11": 4.8935711581139865, + "2024-07-19": 6.112062773860554, + "2024-07-12": 4.942653891495454, + "2024-07-24": 5.758837512946294, + "2024-07-08": 4.473692947537101, + "2024-07-07": 4.692149494687023, + "2024-07-13": 5.179164852764435, + "2024-07-09": 4.517294070559305, + "2024-07-02": 5.433824296609034, + "2024-07-20": 6.331931099910532, + "2024-06-29": 4.978703732808046, + "2024-07-21": 6.184654545679756, + "2024-07-23": 5.867564319629732, + "2024-07-10": 4.625896691697447, + "2024-07-01": 5.30998427265361, + "2024-06-26": 5.26670299642383, + "2024-07-17": 6.198297891551166, + "2024-07-22": 6.163948987506248, + "2024-07-04": 4.854114342503813, + "2024-06-25": 5.529868773258216, + "2024-07-26": 5.640285919218731, + "2024-07-03": 5.190362509651767, + "2024-07-05": 4.372825402080473, + "2024-07-25": 5.456761984966314, + "2024-07-16": 6.0902523251247125, + "2024-07-06": 4.563987564281788, + "2024-06-27": 5.193219419929176, + "2024-07-22T13": 6.1548615600000005, + "2024-07-25T10": 5.50001928, + "2024-07-26T06": 5.6478702, + "2024-07-24T14": 5.90588575, + "2024-07-21T20": 6.28876036, + "2024-07-21T07": 6.1799916779999995, + "2024-07-21T14": 6.13008352, + "2024-07-22T23": 6.0317089699999995, + "2024-07-24T07": 5.80482585, + "2024-07-20T11": 6.302086510000001, + "2024-07-26T08": 5.6091024, + "2024-07-25T20": 5.171077285440569, + "2024-07-21T02": 6.324770440000001, + "2024-07-20T04": 6.381662720207629, + "2024-07-20T03": 6.35065651, + "2024-07-25T13": 5.42026496, + "2024-07-21T06": 6.227805539999999, + "2024-07-20T12": 6.321032639999999, + "2024-07-24T02": 5.684956849000001, + "2024-07-24T17": 5.81294187, + "2024-07-25T06": 5.681522419999999, + "2024-07-25T22": 5.409247349999999, + "2024-07-22T07": 6.158923700000001, + "2024-07-22T22": 6.047695081, + "2024-07-26T03": 5.609302368, + "2024-07-23T01": 6.070607, + "2024-07-24T03": 5.7173430199999995, + "2024-07-23T21": 5.765364675000001, + "2024-07-19T20": 6.392575365000001, + "2024-07-23T22": 5.744033740000001, + "2024-07-21T23": 6.325906032000001, + "2024-07-19T16": 6.3642726, + "2024-07-22T20": 6.152337000000001, + "2024-07-23T10": 5.927440725, + "2024-07-19T17": 6.389330504999999, + "2024-07-22T09": 6.12, + "2024-07-24T04": 5.72817184, + "2024-07-22T06": 6.18237092, + "2024-07-24T21": 5.6574481719942575, + "2024-07-20T21": 6.269082451999999, + "2024-07-21T15": 6.174036759999999, + "2024-07-20T09": 6.323476, + "2024-07-25T14": 5.4030542, + "2024-07-19T11": 6.055348711474193, + "2024-07-23T20": 5.7751548, + "2024-07-25T03": 5.561943029999999, + "2024-07-20T01": 6.3721844999999995, + "2024-07-25T23": 5.399225721, + "2024-07-20T16": 6.3062694399999994, + "2024-07-22T15": 6.145553049999999, + "2024-07-23T16": 5.77798209, + "2024-07-22T02": 6.376, + "2024-07-21T04": 6.330872148000001, + "2024-07-23T09": 5.98, + "2024-07-20T10": 6.315903979999999, + "2024-07-22T19": 6.149559933, + "2024-07-20T00": 6.380188499999999, + "2024-07-20T19": 6.2928934, + "2024-07-26T05": 5.63392935, + "2024-07-19T14": 6.23, + "2024-07-21T00": 6.292952628383004, + "2024-07-22T12": 6.1654932, + "2024-07-24T06": 5.75805758, + "2024-07-25T01": 5.5413349599999995, + "2024-07-20T22": 6.269794853, + "2024-07-19T15": 6.31712634, + "2024-07-21T13": 6.09889007, + "2024-07-25T07": 5.6401896, + "2024-07-21T08": 6.152783789999999, + "2024-07-23T06": 5.86187915, + "2024-07-22T16": 6.11991785, + "2024-07-24T11": 5.979, + "2024-07-24T01": 5.70211404, + "2024-07-23T00": 6.039857831108249, + "2024-07-19T12": 6.08559999, + "2024-07-25T17": 5.353975429, + "2024-07-25T19": 5.20049142, + "2024-07-19T21": 6.422873996, + "2024-07-23T08": 5.9891796699999995, + "2024-07-21T21": 6.295195859999999, + "2024-07-21T11": 6.13265537, + "2024-07-22T14": 6.1489222, + "2024-07-20T23": 6.2818211999999995, + "2024-07-20T08": 6.341169, + "2024-07-20T02": 6.368364475, + "2024-07-24T05": 5.69745576, + "2024-07-24T16": 5.749517409999999, + "2024-07-21T01": 6.323338769999999, + "2024-07-24T13": 5.933, + "2024-07-25T04": 5.595750918062986, + "2024-07-19T13": 6.1197758, + "2024-07-25T12": 5.505394362484511, + "2024-07-19T22": 6.42514678, + "2024-07-26T07": 5.6289302999999995, + "2024-07-25T02": 5.5978802000000005, + "2024-07-21T12": 6.1328393, + "2024-07-23T18": 5.753232786000001, + "2024-07-23T11": 5.882117639999999, + "2024-07-19T10": 6.05272866, + "2024-07-19T19": 6.4065616, + "2024-07-25T11": 5.53184174, + "2024-07-22T08": 6.131490480000001, + "2024-07-23T19": 5.770903769999999, + "2024-07-22T21": 6.0977678399999995, + "2024-07-21T09": 6.1815303440000005, + "2024-07-21T22": 6.32333227, + "2024-07-22T04": 6.27350184, + "2024-07-25T16": 5.367018996, + "2024-07-19T23": 6.433215, + "2024-07-20T06": 6.346837719999999, + "2024-07-23T02": 6.06648528, + "2024-07-23T14": 5.884775982307383, + "2024-07-23T03": 6.028421959999999, + "2024-07-25T08": 5.62036962, + "2024-07-24T15": 5.815104659999999, + "2024-07-19T09": 6.0797838, + "2024-07-20T15": 6.31995858, + "2024-07-23T23": 5.76351867, + "2024-07-23T12": 5.9150645200000005, + "2024-07-22T10": 6.222262222, + "2024-07-21T10": 6.1806683300000005, + "2024-07-22T00": 6.38531925, + "2024-07-24T22": 5.599117991284752, + "2024-07-24T19": 5.717042829, + "2024-07-24T09": 5.883047680246754, + "2024-07-23T04": 5.9675967, + "2024-07-23T05": 5.87135226, + "2024-07-25T18": 5.2736285, + "2024-07-25T15": 5.373117654, + "2024-07-26T01": 5.4699058, + "2024-07-22T01": 6.39276704, + "2024-07-26T02": 5.5378922, + "2024-07-24T18": 5.7365736, + "2024-07-21T19": 6.15439928, + "2024-07-25T05": 5.6936332, + "2024-07-22T18": 6.141228, + "2024-07-24T00": 5.70851372, + "2024-07-24T08": 5.848388140252619, + "2024-07-24T20": 5.73394266, + "2024-07-24T23": 5.568997400000001, + "2024-07-22T17": 6.11185554, + "2024-07-21T17": 6.126233147999999, + "2024-07-24T12": 5.956378686, + "2024-07-23T13": 5.83693376, + "2024-07-21T05": 6.27775728, + "2024-07-20T05": 6.35254776, + "2024-07-21T03": 6.337774080000001, + "2024-07-26T00": 5.428859699999999, + "2024-07-20T20": 6.2898149199999995, + "2024-07-22T03": 6.31825272, + "2024-07-25T21": 5.35176881, + "2024-07-21T16": 6.118986990925472, + "2024-07-20T17": 6.3215276, + "2024-07-22T11": 6.185485559, + "2024-07-25T00": 5.647983180000001, + "2024-07-20T13": 6.30464684, + "2024-07-23T07": 5.84338428, + "2024-07-22T05": 6.20137206, + "2024-07-20T07": 6.379269380000001, + "2024-07-21T18": 6.024889589, + "2024-07-23T17": 5.738573799999999, + "2024-07-20T14": 6.35541414, + "2024-07-26T04": 5.62721208, + "2024-07-24T10": 5.974, + "2024-07-20T18": 6.311153999999999, + "2024-07-23T15": 5.861364387988192, + "2024-07-19T18": 6.33864762, + "2024-07-25T09": 5.612378816, + "latest": 3.7, + "2024-07-26T09": 5.642184224, + "2024-07-26T10": 5.621081898, + "2024-07-26T11": 5.6216504800000004, + "2024-07-26T12": 5.6190446000000005, + "2024-07-26T13": 5.6051030399999995, + "2024-07-26T14": 5.65849069, + "2024-07-26T17": 5.7967840619999995, + "2024-07-26T16": 5.7717114, + "2024-07-26T15": 5.7235420800000005, + "2024-07-26T18": 5.742, + "2024-07-27": 5.728219722351934, + "2024-07-28": 5.531026155040114, + "2024-07-28T05": 5.511391392399441, + "2024-07-26T21": 5.663510397974232, + "2024-07-27T02": 5.67317019, + "2024-07-28T01": 5.657803926, + "2024-07-27T10": 5.838595353895455, + "2024-07-28T02": 5.64671765, + "2024-07-27T19": 5.664315725000001, + "2024-07-27T09": 5.809546097619352, + "2024-07-27T06": 5.683661416936397, + "2024-07-27T18": 5.705355675000001, + "2024-07-26T22": 5.7042281599999995, + "2024-07-27T13": 5.915468911, + "2024-07-27T12": 5.86299654, + "2024-07-27T16": 5.715571499999999, + "2024-07-27T05": 5.6971139399999995, + "2024-07-26T23": 5.724328964000001, + "2024-07-26T20": 5.679, + "2024-07-27T08": 5.852292600000001, + "2024-07-28T03": 5.603287932, + "2024-07-27T01": 5.66222648, + "2024-07-28T09": 5.549888999999999, + "2024-07-28T10": 5.548233548, + "2024-07-27T00": 5.705628216, + "2024-07-28T00": 5.630243697, + "2024-07-27T04": 5.672313443999999, + "2024-07-27T14": 5.8255825, + "2024-07-27T07": 5.804, + "2024-07-27T11": 5.805686799, + "2024-07-27T22": 5.7594816, + "2024-07-27T03": 5.6696566960000006, + "2024-07-27T20": 5.61328065, + "2024-07-27T23": 5.707041421808548, + "2024-07-28T08": 5.54288914, + "2024-07-27T21": 5.73382798, + "2024-07-28T07": 5.548589026, + "2024-07-27T15": 5.756575600000001, + "2024-07-26T19": 5.719, + "2024-07-28T04": 5.565688684, + "2024-07-28T06": 5.564888699999999, + "2024-07-27T17": 5.681681719999999, + "2024-07-29": 5.53087813169511, + "2024-07-28T20": 5.457199641999999, + "2024-07-28T16": 5.4616453830000005, + "2024-07-29T07": 5.619330687031704, + "2024-07-28T23": 5.4148917, + "2024-07-28T15": 5.454645453, + "2024-07-28T18": 5.485196562, + "2024-07-29T04": 5.584129824, + "2024-07-29T06": 5.632283440206237, + "2024-07-28T21": 5.4424557, + "2024-07-29T03": 5.666376629999999, + "2024-07-28T12": 5.517434472, + "2024-07-29T05": 5.598328120000001, + "2024-07-28T17": 5.46639863, + "2024-07-29T00": 5.52, + "2024-07-29T01": 5.516, + "2024-07-28T22": 5.426749558213465, + "2024-07-28T19": 5.4813969799999995, + "2024-07-28T14": 5.4719999999999995, + "2024-07-29T02": 5.5696101, + "2024-07-29T08": 5.653869, + "2024-07-28T11": 5.540605095763001, + "2024-07-28T13": 5.511289772, + "2024-07-29T09": 5.663053854, + "2024-07-29T10": 5.655312135, + "2024-07-29T11": 5.61082148, + "2024-07-29T12": 5.560999464999999, + "2024-07-29T13": 5.55549996, + "2024-07-30": 5.244874674356381, + "2024-07-29T23": 5.290712118, + "2024-07-29T18": 5.340931599999999, + "2024-07-29T21": 5.3192744240000005, + "2024-07-29T22": 5.3333065799999995, + "2024-07-29T17": 5.3298271800000006, + "2024-07-29T15": 5.3586064, + "2024-07-30T01": 5.3218289400000005, + "2024-07-29T19": 5.33614608, + "2024-07-30T04": 5.3359326, + "2024-07-29T14": 5.463180400000001, + "2024-07-29T20": 5.336312941, + "2024-07-30T03": 5.32825394, + "2024-07-30T00": 5.26810427, + "2024-07-29T16": 5.3152985600000004, + "2024-07-30T02": 5.2699458, + "2024-07-30T09": 5.300633604, + "2024-07-30T08": 5.32250928, + "2024-07-30T06": 5.31982938, + "2024-07-30T05": 5.30999091, + "2024-07-30T07": 5.3466095199999994, + "2024-07-30T10": 5.290118104072304, + "2024-07-30T11": 5.263894349999999, + "2024-07-30T12": 5.2769444000000005, + "2024-07-30T13": 5.2829432, + "2024-07-31": 5.142323448780863, + "2024-07-31T00": 5.16145579265715, + "2024-07-31T05": 5.14086876, + "2024-07-30T23": 5.16950041, + "2024-07-30T19": 5.122903824, + "2024-07-30T16": 5.20233472, + "2024-07-30T17": 5.149403189999999, + "2024-07-30T18": 5.14135424, + "2024-07-30T20": 5.1264616, + "2024-07-30T15": 5.2182252, + "2024-07-31T03": 5.18990989, + "2024-07-30T21": 5.14166282, + "2024-07-31T01": 5.19580469, + "2024-07-31T07": 5.21138397, + "2024-07-31T06": 5.234181647, + "2024-07-31T02": 5.208958, + "2024-07-30T22": 5.183445890901661, + "2024-07-30T14": 5.2189682587117145, + "2024-07-31T04": 5.143019739, + "2024-07-31T08": 5.1836663000000005, + "2024-07-31T11": 5.1651576, + "2024-07-31T09": 5.18397746, + "2024-07-31T10": 5.160121952, + "2024-07-31T12": 5.167204743999999, + "2024-08-01": 4.992419839586975, + "2024-07-31T14": 5.18066765, + "2024-07-31T23": 4.988538818258918, + "2024-07-31T13": 5.2295409600000005, + "2024-07-31T21": 5.0030981, + "2024-08-01T01": 5.0162437, + "2024-07-31T18": 5.18228928, + "2024-07-31T19": 5.08926906, + "2024-07-31T16": 5.15298955, + "2024-08-01T02": 5.0073948, + "2024-07-31T22": 5.013645288, + "2024-07-31T20": 5.0310371300000005, + "2024-07-31T17": 5.17598058, + "2024-08-01T00": 5.002348679999999, + "2024-07-31T15": 5.16088317, + "2024-08-01T07": 5.019740100000001, + "2024-08-01T06": 5.0005485300000005, + "2024-08-01T05": 5.001547194, + "2024-08-01T04": 4.97391222, + "2024-08-01T03": 5.009343639999999, + "2024-08-01T08": 5.042976288, + "2024-08-01T09": 5.0966678283187274, + "2024-08-01T10": 5.0461241359999995, + "2024-08-01T11": 5.04532456, + "2024-08-01T12": 5.100784519833939, + "2024-08-01T13": 5.080760064, + "2024-08-01T14": 5.0178916, + "2024-08-01T15": 4.887555, + "2024-08-02": 4.974637018168624, + "2024-08-02T00": 4.9955, + "2024-08-01T20": 4.75818937, + "2024-08-01T21": 4.912476359999999, + "2024-08-02T04": 4.888747188, + "2024-08-01T19": 4.7517673, + "2024-08-01T16": 4.7946414, + "2024-08-02T02": 4.8717578800000005, + "2024-08-01T17": 4.7531468299999995, + "2024-08-01T23": 4.98036395, + "2024-08-02T01": 4.95258827, + "2024-08-01T22": 5.014652686848436, + "2024-08-01T18": 4.723590368216718, + "2024-08-02T03": 4.90148648, + "2024-08-02T05": 4.8198031199999996, + "2024-08-02T06": 4.775068188, + "2024-08-02T07": 4.783022611000001, + "2024-08-02T08": 4.797247953341756, + "2024-08-02T09": 4.853822119999999, + "2024-08-02T10": 4.858604652, + "2024-08-02T11": 4.87390248, + "2024-08-02T12": 4.8086316, + "2024-08-02T13": 4.9561312, + "2024-08-02T14": 4.987160482558888, + "2024-08-02T15": 4.7053842, + "2024-08-03": 4.545577964514977, + "2024-08-02T16": 4.731674654999999, + "2024-08-02T22": 4.622124764, + "2024-08-02T23": 4.593113280000001, + "2024-08-03T00": 4.589280424728256, + "2024-08-03T01": 4.476599788908544, + "2024-08-03T03": 4.620594941, + "2024-08-02T19": 4.6649097, + "2024-08-02T18": 4.698297, + "2024-08-02T21": 4.641354, + "2024-08-02T17": 4.74768541, + "2024-08-02T20": 4.69287918, + "2024-08-03T02": 4.55298212, + "2024-08-03T06": 4.657617657, + "2024-08-03T19": 4.296646, + "2024-08-03T10": 4.5759696000000005, + "2024-08-03T09": 4.63487129, + "2024-08-03T15": 4.51297428, + "2024-08-03T22": 4.35851423, + "2024-08-03T05": 4.654527733, + "2024-08-03T08": 4.64449047, + "2024-08-03T14": 4.61000155, + "2024-08-03T18": 4.29089427, + "2024-08-03T17": 4.347067856, + "2024-08-03T21": 4.308228725286352, + "2024-08-03T12": 4.6114926, + "2024-08-03T20": 4.289950957550025, + "2024-08-03T04": 4.642006833, + "2024-08-03T16": 4.43667, + "2024-08-03T11": 4.569158680000001, + "2024-08-03T07": 4.700165436, + "2024-08-03T13": 4.596871999999999, + "2024-08-04": 4.241795578398128, + "2024-08-03T23": 4.3525612, + "2024-08-04T17": 4.05563103, + "2024-08-04T13": 4.4067955, + "2024-08-04T06": 4.36329308, + "2024-08-04T12": 4.393402200000001, + "2024-08-04T10": 4.287469356, + "2024-08-04T16": 4.124128488, + "2024-08-04T15": 4.187192700000001, + "2024-08-04T00": 4.3720189860000005, + "2024-08-04T11": 4.36977028, + "2024-08-04T01": 4.36942052, + "2024-08-04T03": 4.3985711940000005, + "2024-08-04T04": 4.38632271, + "2024-08-04T07": 4.312424556865224, + "2024-08-04T08": 4.29238005, + "2024-08-04T18": 4.114150624572986, + "2024-08-04T09": 4.312740336, + "2024-08-04T02": 4.4099524400000005, + "2024-08-04T05": 4.36433613, + "2024-08-04T14": 4.24617336, + "2024-08-05": 3.4895673688708064, + "2024-08-05T01": 3.9717583094520124, + "2024-08-04T19": 4.1465567629721845, + "2024-08-04T22": 4.182265700579178, + "2024-08-05T03": 3.6710814800033598, + "2024-08-05T02": 3.6930869647642455, + "2024-08-04T23": 4.182359519166659, + "2024-08-05T00": 4.148082221345226, + "2024-08-05T04": 3.5733198408141003, + "2024-08-05T06": 3.4868430703864566, + "2024-08-04T20": 4.2238012924760335, + "2024-08-05T05": 3.5598902541050195, + "2024-08-04T21": 4.198375366117336, + "2024-08-05T07": 3.4866262558465406, + "2024-08-05T08": 3.503011263192124, + "2024-08-05T09": 3.4014232328817204, + "2024-08-05T10": 3.363733191744949, + "2024-08-05T11": 3.222131929705613, + "2024-08-05T12": 3.28343361942559, + "2024-08-05T13": 3.184480398398907, + "2024-08-05T14": 3.359227047161656, + "2024-08-05T15": 3.4858304793631874, + "2024-08-06": 3.579008771059112, + "2024-08-05T19": 3.459078612693595, + "2024-08-05T20": 3.5083508, + "2024-08-05T21": 3.550639, + "2024-08-06T02": 3.70040562, + "2024-08-05T18": 3.5188555569727513, + "2024-08-05T23": 3.5747147999999997, + "2024-08-05T16": 3.5816281921327686, + "2024-08-06T05": 3.7231953900000003, + "2024-08-05T17": 3.5773521061536178, + "2024-08-06T00": 3.6927384, + "2024-08-06T04": 3.6864581600000004, + "2024-08-06T03": 3.6979416349999994, + "2024-08-05T22": 3.58560945, + "2024-08-06T01": 3.7271178, + "2024-08-06T06": 3.7598426829999996, + "2024-08-06T07": 3.72849642, + "2024-08-06T08": 3.6771314999999998, + "2024-08-06T09": 3.6080821000000003, + "2024-08-06T10": 3.5935495680000002, + "2024-08-06T11": 3.5808950000000004, + "2024-08-06T12": 3.574922232, + "2024-08-06T13": 3.5397977305235013, + "2024-08-06T14": 3.5398262519999997 + }, + "USD neo": { + "2024-06-28": 11.61533590701977, + "2024-06-30": 11.31152439211297, + "2024-07-15": 11.018400982524147, + "2024-07-18": 11.660790522026657, + "2024-07-14": 10.706639042133903, + "2024-07-11": 9.910073094015265, + "2024-07-19": 11.419992926570904, + "2024-07-12": 9.851331135173929, + "2024-07-24": 11.56046711227548, + "2024-07-08": 9.429221317275003, + "2024-07-07": 9.711301200032624, + "2024-07-13": 10.202135141026572, + "2024-07-09": 9.697013046762976, + "2024-07-02": 11.524968220876096, + "2024-07-20": 11.775649285987384, + "2024-06-29": 11.421919717318762, + "2024-07-21": 11.863900433997484, + "2024-07-23": 11.398773552799044, + "2024-07-10": 9.834000038311713, + "2024-07-01": 11.56329486754385, + "2024-06-26": 11.376581146143508, + "2024-07-17": 11.74279683333458, + "2024-07-22": 11.651753282515541, + "2024-07-04": 10.29171932399888, + "2024-06-25": 11.334583788091667, + "2024-07-26": 11.339073214723529, + "2024-07-03": 11.135154519943413, + "2024-07-05": 8.9285712, + "2024-07-25": 11.017471321475428, + "2024-07-16": 11.324181307410532, + "2024-07-06": 9.6259625, + "2024-06-27": 11.438538884958907, + "2024-07-22T13": 11.684139245172814, + "2024-07-25T10": 10.896076, + "2024-07-26T06": 11.34773, + "2024-07-24T14": 11.681752000000001, + "2024-07-21T20": 12.00336, + "2024-07-21T07": 11.74740576, + "2024-07-21T14": 11.83102118, + "2024-07-22T23": 11.503449999999999, + "2024-07-24T07": 11.579652600000001, + "2024-07-20T11": 11.655708500000001, + "2024-07-26T08": 11.348184, + "2024-07-25T20": 10.797408, + "2024-07-21T02": 12.0433712, + "2024-07-20T04": 11.785536599999999, + "2024-07-20T03": 11.758722171389827, + "2024-07-25T13": 10.8865152, + "2024-07-21T06": 11.8134249, + "2024-07-20T12": 11.655592, + "2024-07-24T02": 11.420918548507636, + "2024-07-24T17": 11.649883500000001, + "2024-07-25T06": 11.0871166, + "2024-07-25T22": 11.12621775, + "2024-07-22T07": 11.5637343, + "2024-07-22T22": 11.522978577788772, + "2024-07-26T03": 11.268196799999998, + "2024-07-23T01": 11.6101609, + "2024-07-24T03": 11.474488428, + "2024-07-23T21": 11.3517025, + "2024-07-19T20": 11.77229515, + "2024-07-23T22": 11.351042820000002, + "2024-07-21T23": 12.018961440000002, + "2024-07-19T16": 11.622323999999999, + "2024-07-22T20": 11.66752862152255, + "2024-07-23T10": 11.536584633, + "2024-07-19T17": 11.62328824972144, + "2024-07-22T09": 11.610028896179013, + "2024-07-24T04": 11.450343499999999, + "2024-07-22T06": 11.620697199999999, + "2024-07-24T21": 11.438856, + "2024-07-20T21": 11.787419719999999, + "2024-07-21T15": 11.82690159, + "2024-07-20T09": 11.706434999999999, + "2024-07-25T14": 10.8760832, + "2024-07-19T11": 11.3776102, + "2024-07-23T20": 11.355665723166904, + "2024-07-25T03": 11.0479005, + "2024-07-20T01": 11.735865, + "2024-07-25T23": 11.10255714, + "2024-07-20T16": 11.8242552, + "2024-07-22T15": 11.591043099999998, + "2024-07-23T16": 11.2619142, + "2024-07-22T02": 11.891125623756267, + "2024-07-21T04": 11.979617798069778, + "2024-07-23T09": 11.61, + "2024-07-20T10": 11.701415550946338, + "2024-07-22T19": 11.6331401, + "2024-07-20T00": 11.706025310858418, + "2024-07-20T19": 11.821335313999999, + "2024-07-26T05": 11.3178492, + "2024-07-19T14": 11.493, + "2024-07-21T00": 12.013482899999998, + "2024-07-22T12": 11.721937680000002, + "2024-07-24T06": 11.5401154, + "2024-07-25T01": 11.083757751443647, + "2024-07-20T22": 11.8150783, + "2024-07-19T15": 11.500229999999998, + "2024-07-21T13": 11.820918486170493, + "2024-07-25T07": 11.057235, + "2024-07-21T08": 11.807570073804039, + "2024-07-23T06": 11.363831288329914, + "2024-07-22T16": 11.603740300000002, + "2024-07-24T11": 11.753, + "2024-07-24T01": 11.376227519999999, + "2024-07-23T00": 11.513453, + "2024-07-19T12": 11.3873803, + "2024-07-25T17": 11.0576774, + "2024-07-25T19": 10.8668477, + "2024-07-19T21": 11.807049538435814, + "2024-07-23T08": 11.5703471, + "2024-07-21T21": 12.032285699999997, + "2024-07-21T11": 11.7231644, + "2024-07-22T14": 11.561734000000001, + "2024-07-20T23": 11.8334307, + "2024-07-20T08": 11.746257319127057, + "2024-07-20T02": 11.72029569712477, + "2024-07-24T05": 11.453698664085172, + "2024-07-24T16": 11.5710413, + "2024-07-21T01": 12.0544585, + "2024-07-24T13": 11.683678045889428, + "2024-07-25T04": 11.058919557759264, + "2024-07-19T13": 11.430329293259936, + "2024-07-25T12": 10.8459855, + "2024-07-19T22": 11.7857722, + "2024-07-26T07": 11.37483837, + "2024-07-25T02": 11.017796, + "2024-07-21T12": 11.7955376, + "2024-07-23T18": 11.2512375, + "2024-07-23T11": 11.500229999999998, + "2024-07-19T10": 11.340895752278843, + "2024-07-19T19": 11.722206110634998, + "2024-07-25T11": 10.9057451, + "2024-07-22T08": 11.600928, + "2024-07-23T19": 11.3337389, + "2024-07-22T21": 11.5733553, + "2024-07-21T09": 11.828311, + "2024-07-21T22": 12.061206, + "2024-07-22T04": 11.800944000000001, + "2024-07-25T16": 11.0075778, + "2024-07-19T23": 11.789892, + "2024-07-20T06": 11.7547, + "2024-07-23T02": 11.677934160000001, + "2024-07-23T14": 11.541846399999999, + "2024-07-23T03": 11.620976736766842, + "2024-07-25T08": 11.026801299999999, + "2024-07-24T15": 11.612205899999998, + "2024-07-19T09": 11.2617472, + "2024-07-20T15": 11.82066327, + "2024-07-23T23": 11.372699079575245, + "2024-07-23T12": 11.462062800000002, + "2024-07-22T10": 11.6801168, + "2024-07-21T10": 11.80118546, + "2024-07-22T00": 12.090604500000001, + "2024-07-24T22": 11.4379408, + "2024-07-24T19": 11.539884599999999, + "2024-07-24T09": 11.64, + "2024-07-23T04": 11.561156, + "2024-07-23T05": 11.330679799999999, + "2024-07-25T18": 10.947152999999998, + "2024-07-25T15": 11.047569000000001, + "2024-07-26T01": 11.1207754, + "2024-07-22T01": 11.95543448, + "2024-07-26T02": 11.154158664166882, + "2024-07-24T18": 11.591159, + "2024-07-21T19": 11.694559099999998, + "2024-07-25T05": 11.091337439999998, + "2024-07-22T18": 11.632326, + "2024-07-24T00": 11.397689651877528, + "2024-07-24T08": 11.639883600000001, + "2024-07-24T20": 11.5898841, + "2024-07-24T23": 11.4029471, + "2024-07-22T17": 11.6116254, + "2024-07-21T17": 11.699045605811213, + "2024-07-24T12": 11.7503525, + "2024-07-23T13": 11.4218272, + "2024-07-21T05": 11.9333404, + "2024-07-20T05": 11.7656448, + "2024-07-21T03": 12.018743612152289, + "2024-07-26T00": 11.134068556403747, + "2024-07-20T20": 11.814724, + "2024-07-22T03": 11.864679957589281, + "2024-07-25T21": 11.027670352766298, + "2024-07-21T16": 11.80536637, + "2024-07-20T17": 11.884752, + "2024-07-22T11": 11.6703501, + "2024-07-25T00": 11.4179444, + "2024-07-20T13": 11.614876200000001, + "2024-07-23T07": 11.373735026818432, + "2024-07-22T05": 11.7207032, + "2024-07-20T07": 11.785301, + "2024-07-21T18": 11.494940699999999, + "2024-07-23T17": 11.151115, + "2024-07-20T14": 11.741460060000001, + "2024-07-26T04": 11.298418, + "2024-07-24T10": 11.7, + "2024-07-20T18": 11.835915, + "2024-07-23T15": 11.47984145717925, + "2024-07-19T18": 11.673034199999998, + "2024-07-25T09": 11.026050634869408, + "latest": 9.01, + "2024-07-26T09": 11.347957000000001, + "2024-07-26T10": 11.346099018531811, + "2024-07-26T11": 11.337278399999999, + "2024-07-26T12": 11.298079000000001, + "2024-07-26T13": 11.27519568, + "2024-07-26T14": 11.293983449999999, + "2024-07-26T17": 11.419771599999999, + "2024-07-26T16": 11.38845017444156, + "2024-07-26T15": 11.349092, + "2024-07-26T18": 11.45, + "2024-07-27": 11.731118349997598, + "2024-07-28": 11.58477185976387, + "2024-07-28T05": 11.50388496, + "2024-07-26T21": 11.49606959545699, + "2024-07-27T02": 11.6703501, + "2024-07-28T01": 11.747170119168102, + "2024-07-27T10": 11.700936, + "2024-07-28T02": 11.739413, + "2024-07-27T19": 11.659959734146982, + "2024-07-27T09": 11.7110539, + "2024-07-27T06": 11.660951006316797, + "2024-07-27T18": 11.8117715, + "2024-07-26T22": 11.5604624, + "2024-07-27T13": 11.801534, + "2024-07-27T12": 11.7519975, + "2024-07-27T16": 11.711171, + "2024-07-27T05": 11.66908804505781, + "2024-07-26T23": 11.630465200000002, + "2024-07-26T20": 11.48, + "2024-07-27T08": 11.750587500000002, + "2024-07-28T03": 11.699765999999999, + "2024-07-27T01": 11.690556320690616, + "2024-07-28T09": 11.669766599999999, + "2024-07-28T10": 11.6796496, + "2024-07-27T00": 11.820472800000001, + "2024-07-28T00": 11.690124473842253, + "2024-07-27T04": 11.69823396, + "2024-07-27T14": 11.776177500000001, + "2024-07-27T07": 11.74, + "2024-07-27T11": 11.711990700000001, + "2024-07-27T22": 11.81493656, + "2024-07-27T03": 11.690439168233715, + "2024-07-27T20": 11.6905845, + "2024-07-27T23": 11.7791754, + "2024-07-28T08": 11.5597688, + "2024-07-27T21": 11.789684644475484, + "2024-07-28T07": 11.549769000000001, + "2024-07-27T15": 11.711171, + "2024-07-26T19": 11.49, + "2024-07-28T04": 11.6297674, + "2024-07-28T06": 11.599768, + "2024-07-27T17": 11.727631479255459, + "2024-07-29": 11.768502246091431, + "2024-07-28T20": 11.518732799999999, + "2024-07-28T16": 11.510129047080174, + "2024-07-29T07": 11.88685998, + "2024-07-28T23": 11.4897702, + "2024-07-28T15": 11.509884900000001, + "2024-07-28T18": 11.566727519999999, + "2024-07-29T04": 11.7785864, + "2024-07-29T06": 11.86154055823834, + "2024-07-28T21": 11.458854, + "2024-07-29T03": 11.79670222, + "2024-07-28T12": 11.6396508, + "2024-07-29T05": 11.832579919999999, + "2024-07-28T17": 11.5387306, + "2024-07-29T00": 11.6632, + "2024-07-29T01": 11.67, + "2024-07-28T22": 11.4396568, + "2024-07-28T19": 11.567185581618704, + "2024-07-28T14": 11.53, + "2024-07-29T02": 11.7691761, + "2024-07-29T08": 11.917616, + "2024-07-28T11": 11.679532799999999, + "2024-07-28T13": 11.6297674, + "2024-07-29T09": 11.9073798, + "2024-07-29T10": 11.917496799999999, + "2024-07-29T11": 11.915497219999999, + "2024-07-29T12": 11.918927199999999, + "2024-07-29T13": 11.928926299999999, + "2024-07-30": 11.512523504848831, + "2024-07-29T23": 11.5285011, + "2024-07-29T18": 11.697659999999999, + "2024-07-29T21": 11.599072, + "2024-07-29T22": 11.628488100000002, + "2024-07-29T17": 11.64943656, + "2024-07-29T15": 11.6669658, + "2024-07-30T01": 11.572025149122862, + "2024-07-29T19": 11.688129599999998, + "2024-07-30T04": 11.627674, + "2024-07-29T14": 11.783232250000001, + "2024-07-29T20": 11.658717399999999, + "2024-07-30T03": 11.618373199999999, + "2024-07-30T00": 11.5280399, + "2024-07-29T16": 11.622467835296773, + "2024-07-30T02": 11.527694, + "2024-07-30T09": 11.529477965567349, + "2024-07-30T08": 11.5567632, + "2024-07-30T06": 11.5774524, + "2024-07-30T05": 11.5877979, + "2024-07-30T07": 11.596983999999999, + "2024-07-30T10": 11.5180416, + "2024-07-30T11": 11.5275787, + "2024-07-30T12": 11.5036988, + "2024-07-30T13": 11.467706000000002, + "2024-07-31": 11.321148885306005, + "2024-07-31T00": 11.35716, + "2024-07-31T05": 11.297514000000001, + "2024-07-30T23": 11.39069574, + "2024-07-30T19": 11.3158116, + "2024-07-30T16": 11.446335999999999, + "2024-07-30T17": 11.356478399999999, + "2024-07-30T18": 11.36436224, + "2024-07-30T20": 11.296610000000001, + "2024-07-30T15": 11.436110399999999, + "2024-07-31T03": 11.4076039, + "2024-07-30T21": 11.2670698, + "2024-07-31T01": 11.4373688, + "2024-07-31T07": 11.473859217256452, + "2024-07-31T06": 11.4866679, + "2024-07-31T02": 11.437712, + "2024-07-30T22": 11.3467085, + "2024-07-30T14": 11.415716399999999, + "2024-07-31T04": 11.34479342718572, + "2024-07-31T08": 11.446888758527146, + "2024-07-31T11": 11.31877125, + "2024-07-31T09": 11.4255423, + "2024-07-31T10": 11.394528, + "2024-07-31T12": 11.343644, + "2024-08-01": 10.474440978424576, + "2024-07-31T14": 11.3848745, + "2024-07-31T23": 10.9764864, + "2024-07-31T13": 11.424806358080861, + "2024-07-31T21": 11.0058162, + "2024-08-01T01": 10.856199, + "2024-07-31T18": 11.3162644, + "2024-07-31T19": 11.186195399999999, + "2024-07-31T16": 11.3255813, + "2024-08-01T02": 10.814373600000001, + "2024-07-31T22": 11.067304225299408, + "2024-07-31T20": 11.0157022, + "2024-07-31T17": 11.3455735, + "2024-08-01T00": 10.926393099999999, + "2024-07-31T15": 11.3653383, + "2024-08-01T07": 10.675194, + "2024-08-01T06": 10.696275368855554, + "2024-08-01T05": 10.733448600000001, + "2024-08-01T04": 10.694436, + "2024-08-01T03": 10.784281299999998, + "2024-08-01T08": 10.660476327770036, + "2024-08-01T09": 10.700239962538825, + "2024-08-01T10": 10.67134119, + "2024-08-01T11": 10.694329, + "2024-08-01T12": 10.73841312, + "2024-08-01T13": 10.7248496, + "2024-08-01T14": 10.5755564, + "2024-08-01T15": 10.444775, + "2024-08-02": 10.23118998123512, + "2024-08-02T00": 10.6494069, + "2024-08-01T20": 10.239090321330611, + "2024-08-01T21": 10.4603676, + "2024-08-02T04": 10.51841952, + "2024-08-01T19": 10.248714, + "2024-08-01T16": 10.2578145, + "2024-08-02T02": 10.5108476, + "2024-08-01T17": 10.18074691, + "2024-08-01T23": 10.636698661999999, + "2024-08-02T01": 10.6205393, + "2024-08-01T22": 10.58021113, + "2024-08-01T18": 10.0707264, + "2024-08-02T03": 10.510340596756407, + "2024-08-02T05": 10.4608911, + "2024-08-02T06": 10.3121568, + "2024-08-02T07": 10.391576, + "2024-08-02T08": 10.391368, + "2024-08-02T09": 10.4510044, + "2024-08-02T10": 10.4320656, + "2024-08-02T11": 10.480189240000001, + "2024-08-02T12": 10.441685699999999, + "2024-08-02T13": 10.5817398, + "2024-08-02T14": 10.609926541403485, + "2024-08-02T15": 10.090102, + "2024-08-03": 9.763416574193394, + "2024-08-02T16": 10.197025155, + "2024-08-02T22": 10.04953046, + "2024-08-02T23": 10.06732881515279, + "2024-08-03T00": 10.03233427484756, + "2024-08-03T01": 9.86485129, + "2024-08-03T03": 10.0779929, + "2024-08-02T19": 10.131714459202518, + "2024-08-02T18": 10.1898, + "2024-08-02T21": 10.041554050903885, + "2024-08-02T17": 10.230272, + "2024-08-02T20": 10.188099554013949, + "2024-08-03T02": 10.046720800000001, + "2024-08-03T06": 10.1389365, + "2024-08-03T19": 9.452621200000001, + "2024-08-03T10": 9.99719472, + "2024-08-03T09": 10.03206351, + "2024-08-03T15": 9.7134876, + "2024-08-03T22": 9.5745394, + "2024-08-03T05": 10.092295147856593, + "2024-08-03T08": 10.079760195839864, + "2024-08-03T14": 9.973513, + "2024-08-03T18": 9.443385, + "2024-08-03T17": 9.49316, + "2024-08-03T21": 9.504294, + "2024-08-03T12": 9.9624228, + "2024-08-03T20": 9.418885116, + "2024-08-03T04": 10.10778082, + "2024-08-03T16": 9.612784999999999, + "2024-08-03T11": 9.9916, + "2024-08-03T07": 10.1491288, + "2024-08-03T13": 9.943233999999999, + "2024-08-04": 9.255267068525031, + "2024-08-03T23": 9.554646400000001, + "2024-08-04T17": 9.00067298528914, + "2024-08-04T13": 9.622186500000002, + "2024-08-04T06": 9.7039798, + "2024-08-04T12": 9.61519, + "2024-08-04T10": 9.5250444, + "2024-08-04T16": 9.1234264, + "2024-08-04T15": 9.233809200000001, + "2024-08-04T00": 9.6243183, + "2024-08-04T11": 9.625088700000001, + "2024-08-04T01": 9.571362781471432, + "2024-08-04T03": 9.6640046, + "2024-08-04T04": 9.6641013, + "2024-08-04T07": 9.5843419, + "2024-08-04T08": 9.55616718, + "2024-08-04T18": 9.06927385399696, + "2024-08-04T09": 9.592546545173173, + "2024-08-04T02": 9.651589745057157, + "2024-08-04T05": 9.654107400000001, + "2024-08-04T14": 9.32198982, + "2024-08-05": 8.210875866482743, + "2024-08-05T01": 8.704498537485803, + "2024-08-04T19": 9.179955285730362, + "2024-08-04T22": 9.217891034926648, + "2024-08-05T03": 8.325768616578797, + "2024-08-05T02": 8.258645453408823, + "2024-08-04T23": 9.273386228722726, + "2024-08-05T00": 9.15215523589748, + "2024-08-05T04": 8.192630802224341, + "2024-08-05T06": 8.18178054180321, + "2024-08-04T20": 9.289596663605446, + "2024-08-05T05": 8.21768274431043, + "2024-08-04T21": 9.272987540423536, + "2024-08-05T07": 7.854687595278876, + "2024-08-05T08": 8.250347809330151, + "2024-08-05T09": 8.132660470075582, + "2024-08-05T10": 8.135788548438786, + "2024-08-05T11": 7.9092977030551275, + "2024-08-05T12": 7.906504389768087, + "2024-08-05T13": 7.708050299323837, + "2024-08-05T14": 8.300976589589956, + "2024-08-05T15": 8.585405399999999, + "2024-08-06": 8.803084733478043, + "2024-08-05T19": 8.4231996, + "2024-08-05T20": 8.52455237, + "2024-08-05T21": 8.5915462, + "2024-08-06T02": 8.7933402, + "2024-08-05T18": 8.5139146, + "2024-08-05T23": 8.5657128, + "2024-08-05T16": 8.6610585, + "2024-08-06T05": 8.936302163329584, + "2024-08-05T17": 8.645097600000001, + "2024-08-06T00": 8.7897576, + "2024-08-06T04": 8.853311012086222, + "2024-08-06T03": 8.801621107284781, + "2024-08-05T22": 8.6214654, + "2024-08-06T01": 8.902793344765556, + "2024-08-06T06": 9.00657, + "2024-08-06T07": 8.99402196, + "2024-08-06T08": 8.8651388, + "2024-08-06T09": 8.80264, + "2024-08-06T10": 8.7928128, + "2024-08-06T11": 8.796198500000001, + "2024-08-06T12": 8.80025489, + "2024-08-06T13": 8.715982042921492, + "2024-08-06T14": 8.716069178344004 + }, + "USD nervos": { + "2024-06-28": 0.011893011028023422, + "2024-06-30": 0.011195032585133706, + "2024-07-15": 0.011190540738359527, + "2024-07-18": 0.011840829377115463, + "2024-07-14": 0.010675565747696548, + "2024-07-11": 0.010089987568228409, + "2024-07-19": 0.01160877958612742, + "2024-07-12": 0.00975776916701758, + "2024-07-24": 0.011526458286169512, + "2024-07-08": 0.009356765834393379, + "2024-07-07": 0.010157325486433678, + "2024-07-13": 0.010926377283890154, + "2024-07-09": 0.009552757706110231, + "2024-07-02": 0.011904595442549492, + "2024-07-20": 0.011975694433834684, + "2024-06-29": 0.011352190129080147, + "2024-07-21": 0.012485497039142169, + "2024-07-23": 0.011998447280556013, + "2024-07-10": 0.009889550009070117, + "2024-07-01": 0.01239976533263158, + "2024-06-26": 0.011983409975166621, + "2024-07-17": 0.012389362029534019, + "2024-07-22": 0.012651587429356922, + "2024-07-04": 0.011102007596904996, + "2024-06-25": 0.011014883177079387, + "2024-07-26": 0.012024205084715314, + "2024-07-03": 0.011558920978996357, + "2024-07-05": 0.009745736856409528, + "2024-07-25": 0.01212923825778571, + "2024-07-16": 0.01278311861929004, + "2024-07-06": 0.009321970843625378, + "2024-06-27": 0.011756590863139293, + "2024-07-22T13": 0.013277085681989988, + "2024-07-25T10": 0.011364035189877653, + "2024-07-26T06": 0.011887906036571968, + "2024-07-24T14": 0.011979340107657027, + "2024-07-21T20": 0.012316360918104027, + "2024-07-21T07": 0.012072589919463477, + "2024-07-21T14": 0.011913533593743354, + "2024-07-22T23": 0.012168774706706194, + "2024-07-24T07": 0.011794173085916512, + "2024-07-20T11": 0.012185170159342415, + "2024-07-26T08": 0.011863802063248406, + "2024-07-25T20": 0.011867720778321322, + "2024-07-21T02": 0.012470597147196847, + "2024-07-20T04": 0.012313526422520716, + "2024-07-20T03": 0.011877046733772453, + "2024-07-25T13": 0.010887183497069651, + "2024-07-21T06": 0.012223210354958094, + "2024-07-20T12": 0.012134075856100766, + "2024-07-24T02": 0.011508579630441683, + "2024-07-24T17": 0.012251880983641716, + "2024-07-25T06": 0.011158732242077711, + "2024-07-25T22": 0.01216225816801288, + "2024-07-22T07": 0.012153932550365044, + "2024-07-22T22": 0.012300313102076955, + "2024-07-26T03": 0.011958027020627987, + "2024-07-23T01": 0.012107873607315451, + "2024-07-24T03": 0.011637751506212012, + "2024-07-23T21": 0.011555328074622622, + "2024-07-19T20": 0.0119581289236001, + "2024-07-23T22": 0.011556266849241267, + "2024-07-21T23": 0.012554896545027831, + "2024-07-19T16": 0.011921514599779411, + "2024-07-22T20": 0.012592335377897883, + "2024-07-23T10": 0.0121076075408031, + "2024-07-19T17": 0.01199651799463201, + "2024-07-22T09": 0.012318347037697385, + "2024-07-24T04": 0.01169128067373266, + "2024-07-22T06": 0.012171827254368916, + "2024-07-24T21": 0.012302342794286382, + "2024-07-20T21": 0.012343478372626287, + "2024-07-21T15": 0.012088551843803075, + "2024-07-20T09": 0.012344521738023823, + "2024-07-25T14": 0.010838834303948316, + "2024-07-19T11": 0.011459861369029357, + "2024-07-23T20": 0.01160071649983461, + "2024-07-25T03": 0.011368114039005818, + "2024-07-20T01": 0.011888915922996986, + "2024-07-25T23": 0.011965959279759793, + "2024-07-20T16": 0.012228969682687, + "2024-07-22T15": 0.012581746408044233, + "2024-07-23T16": 0.011870889218946452, + "2024-07-22T02": 0.012598693663441487, + "2024-07-21T04": 0.012344604070375924, + "2024-07-23T09": 0.01222949835859135, + "2024-07-20T10": 0.01228027197145842, + "2024-07-22T19": 0.012454155063538124, + "2024-07-20T00": 0.011975694433834684, + "2024-07-20T19": 0.012369518641716435, + "2024-07-26T05": 0.011859673190459195, + "2024-07-19T14": 0.011573470371975062, + "2024-07-21T00": 0.012493913863998223, + "2024-07-22T12": 0.012572035256901906, + "2024-07-24T06": 0.011665666623872521, + "2024-07-25T01": 0.012084069875987693, + "2024-07-20T22": 0.012305084136226385, + "2024-07-19T15": 0.011925247402983768, + "2024-07-21T13": 0.01193795635039237, + "2024-07-25T07": 0.011249287057997772, + "2024-07-21T08": 0.012048568266936985, + "2024-07-23T06": 0.011897577603347434, + "2024-07-22T16": 0.012738444189004756, + "2024-07-24T11": 0.012075421736627125, + "2024-07-24T01": 0.011501177022059944, + "2024-07-23T00": 0.011998447280556013, + "2024-07-19T12": 0.011428716545880404, + "2024-07-25T17": 0.011773053724441504, + "2024-07-25T19": 0.01168210942657232, + "2024-07-19T21": 0.012037219727078838, + "2024-07-23T08": 0.011963106555573819, + "2024-07-21T21": 0.012518878709357915, + "2024-07-21T11": 0.012043346006881051, + "2024-07-22T14": 0.012708673761242162, + "2024-07-20T23": 0.012247503721538733, + "2024-07-20T08": 0.012507556764327146, + "2024-07-20T02": 0.011862145654356388, + "2024-07-24T05": 0.011639868359454197, + "2024-07-24T16": 0.012037863912746107, + "2024-07-21T01": 0.012297648314188133, + "2024-07-24T13": 0.011920464845606459, + "2024-07-25T04": 0.011187852146520664, + "2024-07-19T13": 0.01148623720945797, + "2024-07-25T12": 0.011127110311126683, + "2024-07-19T22": 0.012045117262095919, + "2024-07-26T07": 0.011993107384399623, + "2024-07-25T02": 0.011499238393272136, + "2024-07-21T12": 0.012035507383285947, + "2024-07-23T18": 0.011586230214216378, + "2024-07-23T11": 0.0120406078036319, + "2024-07-19T10": 0.011339772025453203, + "2024-07-19T19": 0.011811535575827916, + "2024-07-25T11": 0.011215590779971847, + "2024-07-22T08": 0.012153516117518609, + "2024-07-23T19": 0.011565956324280313, + "2024-07-22T21": 0.012452299379133428, + "2024-07-21T09": 0.012157742413965455, + "2024-07-21T22": 0.012612730519686675, + "2024-07-22T04": 0.012533528080207705, + "2024-07-25T16": 0.011462463887668778, + "2024-07-19T23": 0.011927470856153966, + "2024-07-20T06": 0.01239565945336307, + "2024-07-23T02": 0.012212246996445308, + "2024-07-23T14": 0.01177126410694434, + "2024-07-23T03": 0.012398621935752543, + "2024-07-25T08": 0.011148487328037561, + "2024-07-24T15": 0.012253413953619023, + "2024-07-19T09": 0.011396330426287606, + "2024-07-20T15": 0.012092431316472287, + "2024-07-23T23": 0.011553174845414934, + "2024-07-23T12": 0.011974261940761378, + "2024-07-22T10": 0.012518071183480731, + "2024-07-21T10": 0.012161328007865773, + "2024-07-22T00": 0.012681657363496832, + "2024-07-24T22": 0.012165444534821067, + "2024-07-24T19": 0.012065226583593104, + "2024-07-24T09": 0.01196758819761844, + "2024-07-23T04": 0.012195696342453733, + "2024-07-23T05": 0.012062281735518751, + "2024-07-25T18": 0.011962330052174095, + "2024-07-25T15": 0.01124326490543321, + "2024-07-26T01": 0.01192660620872571, + "2024-07-22T01": 0.012570371651724763, + "2024-07-26T02": 0.011657166945247535, + "2024-07-24T18": 0.012287106528819166, + "2024-07-21T19": 0.011924588077427863, + "2024-07-25T05": 0.011223358677900884, + "2024-07-22T18": 0.012487447498929735, + "2024-07-24T00": 0.011525003848668414, + "2024-07-24T08": 0.011907995713114173, + "2024-07-24T20": 0.012098508608829944, + "2024-07-24T23": 0.012015800519830935, + "2024-07-22T17": 0.012321634201696796, + "2024-07-21T17": 0.012184631102104942, + "2024-07-24T12": 0.011927755996433136, + "2024-07-23T13": 0.011701816200787312, + "2024-07-21T05": 0.01222547911927927, + "2024-07-20T05": 0.012431977437134983, + "2024-07-21T03": 0.012447968005855842, + "2024-07-26T00": 0.012016846775118476, + "2024-07-20T20": 0.012253180197434262, + "2024-07-22T03": 0.012644624068367171, + "2024-07-25T21": 0.011947387503815675, + "2024-07-21T16": 0.012045484914486192, + "2024-07-20T17": 0.012220096099079071, + "2024-07-22T11": 0.012506757308668001, + "2024-07-25T00": 0.01215111688906097, + "2024-07-20T13": 0.012133185568718039, + "2024-07-23T07": 0.011959056737657276, + "2024-07-22T05": 0.012466061849544078, + "2024-07-20T07": 0.01234344754009994, + "2024-07-21T18": 0.011922195953962038, + "2024-07-23T17": 0.011559001003087509, + "2024-07-20T14": 0.011990666406543357, + "2024-07-26T04": 0.011801468787368706, + "2024-07-24T10": 0.011911138466650938, + "2024-07-20T18": 0.012340369808690622, + "2024-07-23T15": 0.011981830243313453, + "2024-07-19T18": 0.012021969799451054, + "2024-07-25T09": 0.011307976263829131, + "latest": 0.00785797, + "2024-07-26T09": 0.011911439847007587, + "2024-07-26T10": 0.01206778414647419, + "2024-07-26T11": 0.012054840776060933, + "2024-07-26T12": 0.012227449211475802, + "2024-07-26T13": 0.012293058969500736, + "2024-07-26T14": 0.012514345233307316, + "2024-07-26T17": 0.01252483891944709, + "2024-07-26T16": 0.012400088899686254, + "2024-07-26T15": 0.012302536345913915, + "2024-07-26T18": 0.012436796657297113, + "2024-07-27": 0.012409545707884275, + "2024-07-28": 0.012338603475298525, + "2024-07-28T05": 0.012146374154474008, + "2024-07-26T21": 0.012395883552690393, + "2024-07-27T02": 0.012275126307086213, + "2024-07-28T01": 0.012440458127656241, + "2024-07-27T10": 0.012672002524212005, + "2024-07-28T02": 0.01254608903276452, + "2024-07-27T19": 0.012250532699756787, + "2024-07-27T09": 0.012521676643602115, + "2024-07-27T06": 0.01229144532555346, + "2024-07-27T18": 0.012242502836127659, + "2024-07-26T22": 0.012438066697375755, + "2024-07-27T13": 0.012626150696839238, + "2024-07-27T12": 0.012823966982187286, + "2024-07-27T16": 0.012331182980322448, + "2024-07-27T05": 0.012366902347549167, + "2024-07-26T23": 0.012372490626614312, + "2024-07-26T20": 0.01248238798633354, + "2024-07-27T08": 0.012638966561747355, + "2024-07-28T03": 0.012502362086588507, + "2024-07-27T01": 0.012382300000917973, + "2024-07-28T09": 0.012146970478648845, + "2024-07-28T10": 0.012195739168549645, + "2024-07-27T00": 0.012480771655361435, + "2024-07-28T00": 0.012435597204669722, + "2024-07-27T04": 0.012339158365847548, + "2024-07-27T14": 0.012949841572162321, + "2024-07-27T07": 0.01241003746249082, + "2024-07-27T11": 0.012859785133167111, + "2024-07-27T22": 0.012669181320451599, + "2024-07-27T03": 0.012406653967164654, + "2024-07-27T20": 0.012333934903663541, + "2024-07-27T23": 0.012655570728589942, + "2024-07-28T08": 0.012197461914316554, + "2024-07-27T21": 0.012335261751396126, + "2024-07-28T07": 0.01223097992926596, + "2024-07-27T15": 0.012561436462578603, + "2024-07-26T19": 0.012415228818020452, + "2024-07-28T04": 0.012388640081280565, + "2024-07-28T06": 0.012112027961334416, + "2024-07-27T17": 0.012276126435961082, + "2024-07-29": 0.012274952948585808, + "2024-07-28T20": 0.01217167588106731, + "2024-07-28T16": 0.011984503235804512, + "2024-07-29T07": 0.01268786127152254, + "2024-07-28T23": 0.012038836292508076, + "2024-07-28T15": 0.011944348895313832, + "2024-07-28T18": 0.012243183680530902, + "2024-07-29T04": 0.012613280417122669, + "2024-07-29T06": 0.012600743187756497, + "2024-07-28T21": 0.01213511492764652, + "2024-07-29T03": 0.012547058555224241, + "2024-07-28T12": 0.01220785338616942, + "2024-07-29T05": 0.01252535982368396, + "2024-07-28T17": 0.012073229245625304, + "2024-07-29T00": 0.012142886051600887, + "2024-07-29T01": 0.012329526922946192, + "2024-07-28T22": 0.012089127158039845, + "2024-07-28T19": 0.012228655765522886, + "2024-07-28T14": 0.012162830048752123, + "2024-07-29T02": 0.012256461774482195, + "2024-07-29T08": 0.01275565330837224, + "2024-07-28T11": 0.012175384375440542, + "2024-07-28T13": 0.012189913832368018, + "2024-07-29T09": 0.012616263384673147, + "2024-07-29T10": 0.012620397021669182, + "2024-07-29T11": 0.012539318163739321, + "2024-07-29T12": 0.012580243356903562, + "2024-07-29T13": 0.01259584049325079, + "2024-07-30": 0.011687545884999971, + "2024-07-29T23": 0.011774613298658922, + "2024-07-29T18": 0.011923527062958694, + "2024-07-29T21": 0.011890236065324078, + "2024-07-29T22": 0.011783576565471366, + "2024-07-29T17": 0.011865270108196593, + "2024-07-29T15": 0.012352037844734437, + "2024-07-30T01": 0.011834750190816886, + "2024-07-29T19": 0.011874405775176835, + "2024-07-30T04": 0.011809243945992103, + "2024-07-29T14": 0.01271647252098087, + "2024-07-29T20": 0.011912671607729363, + "2024-07-30T03": 0.01176385697298364, + "2024-07-30T00": 0.011699143069886979, + "2024-07-29T16": 0.0121495064695672, + "2024-07-30T02": 0.011750508199988605, + "2024-07-30T09": 0.011954725913880668, + "2024-07-30T08": 0.01187935511534993, + "2024-07-30T06": 0.011800128603314308, + "2024-07-30T05": 0.011821406608156611, + "2024-07-30T07": 0.011830977956796147, + "2024-07-30T10": 0.011870733141451558, + "2024-07-30T11": 0.0118075506792908, + "2024-07-30T12": 0.011669478649534933, + "2024-07-30T13": 0.011732286245356268, + "2024-07-31": 0.011389407869204218, + "2024-07-31T00": 0.011389407869204218, + "2024-07-31T05": 0.01140559591476854, + "2024-07-30T23": 0.011432062317295237, + "2024-07-30T19": 0.011478880392529107, + "2024-07-30T16": 0.011676672849028291, + "2024-07-30T17": 0.011663882720595351, + "2024-07-30T18": 0.011560378327573922, + "2024-07-30T20": 0.011405622544310927, + "2024-07-30T15": 0.011619035945813537, + "2024-07-31T03": 0.01137432849046559, + "2024-07-30T21": 0.01142637237881641, + "2024-07-31T01": 0.011428208186450094, + "2024-07-31T07": 0.011687586854513474, + "2024-07-31T06": 0.011545159786341148, + "2024-07-31T02": 0.011454800164359456, + "2024-07-30T22": 0.011391273526902251, + "2024-07-30T14": 0.01164738662054102, + "2024-07-31T04": 0.011430329513554372, + "2024-07-31T08": 0.011494649495812984, + "2024-07-31T11": 0.011330690150761196, + "2024-07-31T09": 0.011481126169596886, + "2024-07-31T10": 0.011380760439089574, + "2024-07-31T12": 0.011352805794765341, + "2024-08-01": 0.01086071403357392, + "2024-07-31T14": 0.011493620341264235, + "2024-07-31T23": 0.010966903877293238, + "2024-07-31T13": 0.011398168622778539, + "2024-07-31T21": 0.01092702521415967, + "2024-08-01T01": 0.010984608224821571, + "2024-07-31T18": 0.011349690654865949, + "2024-07-31T19": 0.011448003345362567, + "2024-07-31T16": 0.011311191290848567, + "2024-08-01T02": 0.010936769738327664, + "2024-07-31T22": 0.011005956956200267, + "2024-07-31T20": 0.011137566933175433, + "2024-07-31T17": 0.011316453722372161, + "2024-08-01T00": 0.01086071403357392, + "2024-07-31T15": 0.011426057765114135, + "2024-08-01T07": 0.010549746327802274, + "2024-08-01T06": 0.010664490889985927, + "2024-08-01T05": 0.010565319144209535, + "2024-08-01T04": 0.010837035405057736, + "2024-08-01T03": 0.010916256513682932, + "2024-08-01T08": 0.010590832140091651, + "2024-08-01T09": 0.010732068482045493, + "2024-08-01T10": 0.010573406918199758, + "2024-08-01T11": 0.010617207364387047, + "2024-08-01T12": 0.010637300856242562, + "2024-08-01T13": 0.010785341740406617, + "2024-08-01T14": 0.010701379461533964, + "2024-08-01T15": 0.010409122637359122, + "2024-08-02": 0.010442830071888521, + "2024-08-02T00": 0.010362929015422385, + "2024-08-01T20": 0.009885099982029058, + "2024-08-01T21": 0.010091291164562715, + "2024-08-02T04": 0.010220322272965127, + "2024-08-01T19": 0.009779556613578898, + "2024-08-01T16": 0.01022843984266638, + "2024-08-02T02": 0.010168767771495784, + "2024-08-01T17": 0.009960175346189759, + "2024-08-01T23": 0.010356222892503287, + "2024-08-02T01": 0.010339571659578698, + "2024-08-01T22": 0.010075302809427448, + "2024-08-01T18": 0.009869165989407718, + "2024-08-02T03": 0.010081901169538188, + "2024-08-02T05": 0.01019837830320465, + "2024-08-02T06": 0.009969088091875113, + "2024-08-02T07": 0.009996212771180488, + "2024-08-02T08": 0.010026315683451843, + "2024-08-02T09": 0.010072494126006939, + "2024-08-02T10": 0.01009738636012012, + "2024-08-02T11": 0.010111958670666337, + "2024-08-02T12": 0.010045774614438386, + "2024-08-02T13": 0.010112098502027699, + "2024-08-02T14": 0.01028110550245031, + "2024-08-02T15": 0.009697572152797743, + "2024-08-03": 0.009481603463245373, + "2024-08-02T16": 0.00973272471631602, + "2024-08-02T22": 0.009541570524513506, + "2024-08-02T23": 0.009463828927838001, + "2024-08-03T00": 0.009481603463245373, + "2024-08-03T01": 0.009301339511054293, + "2024-08-03T03": 0.009380022709542775, + "2024-08-02T19": 0.00962623976819377, + "2024-08-02T18": 0.00965996205533783, + "2024-08-02T21": 0.009603693656416525, + "2024-08-02T17": 0.009733173495977002, + "2024-08-02T20": 0.009568837687191092, + "2024-08-03T02": 0.009405237658906404, + "2024-08-03T06": 0.009484430647766643, + "2024-08-03T19": 0.008861449723071589, + "2024-08-03T10": 0.00945662145582711, + "2024-08-03T09": 0.009424481983178539, + "2024-08-03T15": 0.009473422861604366, + "2024-08-03T22": 0.008974998090858322, + "2024-08-03T05": 0.009467080717786196, + "2024-08-03T08": 0.00945942795750165, + "2024-08-03T14": 0.009497523392597134, + "2024-08-03T18": 0.008868982119868125, + "2024-08-03T17": 0.00909921619175085, + "2024-08-03T21": 0.00882772463408118, + "2024-08-03T12": 0.009410983213411522, + "2024-08-03T20": 0.008866331406959615, + "2024-08-03T04": 0.009509140420148584, + "2024-08-03T16": 0.009162691346195401, + "2024-08-03T11": 0.009438803066475, + "2024-08-03T07": 0.009504138604887505, + "2024-08-03T13": 0.009491805944663728, + "2024-08-04": 0.009019904719384181, + "2024-08-03T23": 0.00896267950486935, + "2024-08-04T17": 0.007943516904644524, + "2024-08-04T13": 0.009020732448403623, + "2024-08-04T06": 0.009084583251661876, + "2024-08-04T12": 0.008950705740927708, + "2024-08-04T10": 0.008970348361663064, + "2024-08-04T16": 0.008314820937141679, + "2024-08-04T15": 0.008576864592589422, + "2024-08-04T00": 0.009011994685917025, + "2024-08-04T11": 0.008944138667824446, + "2024-08-04T01": 0.00908914214726672, + "2024-08-04T03": 0.00912350737439847, + "2024-08-04T04": 0.009099892899913734, + "2024-08-04T07": 0.00911389754559171, + "2024-08-04T08": 0.009011712621410237, + "2024-08-04T18": 0.007954731080204171, + "2024-08-04T09": 0.008989134236687965, + "2024-08-04T02": 0.00903343823254724, + "2024-08-04T05": 0.009058225145115275, + "2024-08-04T14": 0.008929820876779312, + "2024-08-05": 0.008045549846705543, + "2024-08-05T01": 0.007702323499852557, + "2024-08-04T19": 0.008121973620522518, + "2024-08-04T22": 0.008220069837164928, + "2024-08-05T03": 0.007076668130014888, + "2024-08-05T02": 0.007078368796193516, + "2024-08-04T23": 0.008183802452853864, + "2024-08-05T00": 0.008037257178746352, + "2024-08-05T04": 0.006962893144891377, + "2024-08-05T06": 0.006797230680115392, + "2024-08-04T20": 0.008357731867507287, + "2024-08-05T05": 0.00692185426642153, + "2024-08-04T21": 0.008361240486764307, + "2024-08-05T07": 0.006546846737094346, + "2024-08-05T08": 0.006841591960008222, + "2024-08-05T09": 0.006772835001557377, + "2024-08-05T10": 0.006753928951072459, + "2024-08-05T11": 0.006473877637339445, + "2024-08-05T12": 0.006512486318300043, + "2024-08-05T13": 0.006347447915431457, + "2024-08-05T14": 0.006507942271366662, + "2024-08-05T15": 0.00695093196054237, + "2024-08-06": 0.006875439148452129, + "2024-08-05T19": 0.006771158445907655, + "2024-08-05T20": 0.00689649863793709, + "2024-08-05T21": 0.006934330827303646, + "2024-08-06T02": 0.007405569591683908, + "2024-08-05T18": 0.007038870382384169, + "2024-08-05T23": 0.0069525612616294094, + "2024-08-05T16": 0.0070487958640025475, + "2024-08-06T05": 0.007384733436725025, + "2024-08-05T17": 0.007039882691963723, + "2024-08-06T00": 0.006875439148452129, + "2024-08-06T04": 0.007305605962548521, + "2024-08-06T03": 0.007347545968455579, + "2024-08-05T22": 0.006929828685585738, + "2024-08-06T01": 0.007440256458062138, + "2024-08-06T06": 0.007482533144203899, + "2024-08-06T07": 0.007510710946922959, + "2024-08-06T08": 0.00763937333664688, + "2024-08-06T09": 0.007450604642101474, + "2024-08-06T10": 0.0074970545230168915, + "2024-08-06T11": 0.007537440232535998, + "2024-08-06T12": 0.007541945485697397, + "2024-08-06T13": 0.007493605478560519, + "2024-08-06T14": 0.007487214190123068 + }, + "USD osmo": { + "2024-06-28": 0.5361231569121421, + "2024-06-30": 0.5294352502327897, + "2024-07-15": 0.50254633493704, + "2024-07-18": 0.5378903371750399, + "2024-07-14": 0.4841645605995294, + "2024-07-11": 0.4909036207721588, + "2024-07-19": 0.5312996709183119, + "2024-07-12": 0.4740640566571007, + "2024-07-24": 0.5011202482665436, + "2024-07-08": 0.47426083465360913, + "2024-07-07": 0.4760049603772478, + "2024-07-13": 0.4818008330816177, + "2024-07-09": 0.49990067258706944, + "2024-07-02": 0.5427920474910016, + "2024-07-20": 0.5522649452731553, + "2024-06-29": 0.5300609421262702, + "2024-07-21": 0.5420782162886373, + "2024-07-23": 0.5135799115424972, + "2024-07-10": 0.497400001937792, + "2024-07-01": 0.5432561176182981, + "2024-06-26": 0.5399377396337529, + "2024-07-17": 0.5435294547899497, + "2024-07-22": 0.5337803199037376, + "2024-07-04": 0.4815593302490591, + "2024-06-25": 0.5489376910423232, + "2024-07-26": 0.4826605503304275, + "2024-07-03": 0.5165113827546846, + "2024-07-05": 0.428531424, + "2024-07-25": 0.46789261147463707, + "2024-07-16": 0.5250938841218894, + "2024-07-06": 0.45874587, + "2024-06-27": 0.5394594757971888, + "2024-07-22T13": 0.537675264, + "2024-07-25T10": 0.468231376, + "2024-07-26T06": 0.4829034, + "2024-07-24T14": 0.503775555, + "2024-07-21T20": 0.53965106, + "2024-07-21T07": 0.550059471, + "2024-07-21T14": 0.54768615, + "2024-07-22T23": 0.51805537, + "2024-07-24T07": 0.5043848679999999, + "2024-07-20T11": 0.548868814, + "2024-07-26T08": 0.48452246399999993, + "2024-07-25T20": 0.458689888, + "2024-07-21T02": 0.561457164, + "2024-07-20T04": 0.5487862254011828, + "2024-07-20T03": 0.5444448900000001, + "2024-07-25T13": 0.464951168, + "2024-07-21T06": 0.552360138, + "2024-07-20T12": 0.5477628, + "2024-07-24T02": 0.5018705219736701, + "2024-07-24T17": 0.49989500100000006, + "2024-07-25T06": 0.46987779999999996, + "2024-07-25T22": 0.47038237499999996, + "2024-07-22T07": 0.533379995, + "2024-07-22T22": 0.520871831, + "2024-07-26T03": 0.47932329599999995, + "2024-07-23T01": 0.5226868709165331, + "2024-07-24T03": 0.504130246, + "2024-07-23T21": 0.5058168463362102, + "2024-07-19T20": 0.54544534, + "2024-07-23T22": 0.50259045, + "2024-07-21T23": 0.5409432720000001, + "2024-07-19T16": 0.53780754, + "2024-07-22T20": 0.535403376, + "2024-07-23T10": 0.519394806, + "2024-07-19T17": 0.5376014509789918, + "2024-07-22T09": 0.5324, + "2024-07-24T04": 0.503715111, + "2024-07-22T06": 0.533632016, + "2024-07-24T21": 0.48505149, + "2024-07-20T21": 0.558356726, + "2024-07-21T15": 0.5515266579147353, + "2024-07-20T09": 0.5513030500000001, + "2024-07-25T14": 0.461433824, + "2024-07-19T11": 0.52289017, + "2024-07-23T20": 0.50680134, + "2024-07-25T03": 0.466111422, + "2024-07-20T01": 0.5420086826109898, + "2024-07-25T23": 0.471553773, + "2024-07-20T16": 0.551498468, + "2024-07-22T15": 0.5295476549999999, + "2024-07-23T16": 0.50408568, + "2024-07-22T02": 0.5441, + "2024-07-21T04": 0.55915652, + "2024-07-23T09": 0.5202, + "2024-07-20T10": 0.5518537359999999, + "2024-07-22T19": 0.5341441800000001, + "2024-07-20T00": 0.5437738753940808, + "2024-07-20T19": 0.5547550699999999, + "2024-07-26T05": 0.47890899, + "2024-07-19T14": 0.5332, + "2024-07-21T00": 0.5589620519999999, + "2024-07-22T12": 0.537442992, + "2024-07-24T06": 0.5030050300000001, + "2024-07-25T01": 0.46994359999999996, + "2024-07-20T22": 0.558840198, + "2024-07-19T15": 0.532310646, + "2024-07-21T13": 0.5491701900000001, + "2024-07-25T07": 0.470582325, + "2024-07-21T08": 0.5506624623679996, + "2024-07-23T06": 0.5103765450000001, + "2024-07-22T16": 0.5303795450000001, + "2024-07-24T11": 0.5064, + "2024-07-24T01": 0.501610032, + "2024-07-23T00": 0.51825543, + "2024-07-19T12": 0.5236795260000001, + "2024-07-25T17": 0.468601573, + "2024-07-25T19": 0.460566397, + "2024-07-19T21": 0.546578613, + "2024-07-23T08": 0.516915507, + "2024-07-21T21": 0.5358487952370689, + "2024-07-21T11": 0.5498484189999999, + "2024-07-22T14": 0.53267989, + "2024-07-20T23": 0.5600623709999999, + "2024-07-20T08": 0.5537767499999999, + "2024-07-20T02": 0.54284417, + "2024-07-24T05": 0.502140168, + "2024-07-24T16": 0.49624465799999995, + "2024-07-21T01": 0.559506941, + "2024-07-24T13": 0.5071, + "2024-07-25T04": 0.467534536, + "2024-07-19T13": 0.52599478, + "2024-07-25T12": 0.468126729, + "2024-07-19T22": 0.5454671480000001, + "2024-07-26T07": 0.485607717, + "2024-07-25T02": 0.46780642, + "2024-07-21T12": 0.55006497, + "2024-07-23T18": 0.50205522, + "2024-07-23T11": 0.516610332, + "2024-07-19T10": 0.5230301724927978, + "2024-07-19T19": 0.5414219059046564, + "2024-07-25T11": 0.468417246, + "2024-07-22T08": 0.5332426560000001, + "2024-07-23T19": 0.504866551, + "2024-07-22T21": 0.5252522789999999, + "2024-07-21T09": 0.5513543360000001, + "2024-07-21T22": 0.53945394, + "2024-07-22T04": 0.5429434320000001, + "2024-07-25T16": 0.4672088958624726, + "2024-07-19T23": 0.5454726, + "2024-07-20T06": 0.5547217999999999, + "2024-07-23T02": 0.5224417920000001, + "2024-07-23T14": 0.5146823359999999, + "2024-07-23T03": 0.5227365890000001, + "2024-07-25T08": 0.47026358399999996, + "2024-07-24T15": 0.497894582, + "2024-07-19T09": 0.52309536, + "2024-07-20T15": 0.55117081, + "2024-07-23T23": 0.502345207, + "2024-07-23T12": 0.5147926460000001, + "2024-07-22T10": 0.5344434450469246, + "2024-07-21T10": 0.551948986, + "2024-07-22T00": 0.5445272250000001, + "2024-07-24T22": 0.484012862, + "2024-07-24T19": 0.493495065, + "2024-07-24T09": 0.5059, + "2024-07-23T04": 0.51915191, + "2024-07-23T05": 0.511930714, + "2024-07-25T18": 0.464479204, + "2024-07-25T15": 0.467197194, + "2024-07-26T01": 0.47400518, + "2024-07-22T01": 0.543465208, + "2024-07-26T02": 0.47710456, + "2024-07-24T18": 0.4960496, + "2024-07-21T19": 0.5396103659999999, + "2024-07-25T05": 0.47038707999999996, + "2024-07-22T18": 0.53320662, + "2024-07-24T00": 0.5015451349999999, + "2024-07-24T08": 0.506194938, + "2024-07-24T20": 0.492495075, + "2024-07-24T23": 0.48141333000000003, + "2024-07-22T17": 0.532374522, + "2024-07-21T17": 0.551336973, + "2024-07-24T12": 0.507415222, + "2024-07-23T13": 0.512181936, + "2024-07-21T05": 0.55665582, + "2024-07-20T05": 0.552565104, + "2024-07-21T03": 0.559956744, + "2024-07-26T00": 0.47290066999999997, + "2024-07-20T20": 0.5567226, + "2024-07-22T03": 0.543421736, + "2024-07-25T21": 0.46859219900000004, + "2024-07-21T16": 0.551403944, + "2024-07-20T17": 0.5521207599999999, + "2024-07-22T11": 0.534516035, + "2024-07-25T00": 0.481813258, + "2024-07-20T13": 0.5455290260000001, + "2024-07-23T07": 0.51025102, + "2024-07-22T05": 0.5375322499999999, + "2024-07-20T07": 0.55504966, + "2024-07-21T18": 0.543133447, + "2024-07-23T17": 0.50065006, + "2024-07-20T14": 0.5487159867807088, + "2024-07-26T04": 0.47923289799999996, + "2024-07-24T10": 0.5063026516680844, + "2024-07-20T18": 0.5529763499999999, + "2024-07-23T15": 0.513587295, + "2024-07-19T18": 0.539040114, + "2024-07-25T09": 0.47073047599999995, + "latest": 0.358131, + "2024-07-26T09": 0.48591252, + "2024-07-26T10": 0.48486904999999997, + "2024-07-26T11": 0.484083792, + "2024-07-26T12": 0.480818247, + "2024-07-26T13": 0.480023184, + "2024-07-26T14": 0.481756638, + "2024-07-26T17": 0.483790324, + "2024-07-26T16": 0.48317584, + "2024-07-26T15": 0.482261416, + "2024-07-26T18": 0.4849, + "2024-07-27": 0.4877464978085105, + "2024-07-28": 0.4805903880000001, + "2024-07-28T05": 0.47674239560336057, + "2024-07-26T21": 0.4855, + "2024-07-27T02": 0.48551456499999995, + "2024-07-28T01": 0.485666001, + "2024-07-27T10": 0.48833906400000004, + "2024-07-28T02": 0.48618456758015927, + "2024-07-27T19": 0.48352085000000006, + "2024-07-27T09": 0.48828919600946746, + "2024-07-27T06": 0.48822423517412256, + "2024-07-27T18": 0.48617291500000004, + "2024-07-26T22": 0.48651946, + "2024-07-27T13": 0.491863934, + "2024-07-27T12": 0.490183317, + "2024-07-27T16": 0.48714871, + "2024-07-27T05": 0.487709754, + "2024-07-26T23": 0.487119484, + "2024-07-26T20": 0.4862, + "2024-07-27T08": 0.489124455, + "2024-07-28T03": 0.483690326, + "2024-07-27T01": 0.487319492, + "2024-07-28T09": 0.48109037800000004, + "2024-07-28T10": 0.482685519, + "2024-07-27T00": 0.486919476, + "2024-07-28T00": 0.484195158, + "2024-07-27T04": 0.48691362262971016, + "2024-07-27T14": 0.49044904, + "2024-07-27T07": 0.4894, + "2024-07-27T11": 0.488483028, + "2024-07-27T22": 0.490755828, + "2024-07-27T03": 0.48560485600000003, + "2024-07-27T20": 0.482524125, + "2024-07-27T23": 0.488365812, + "2024-07-28T08": 0.479390412, + "2024-07-27T21": 0.488585342, + "2024-07-28T07": 0.47849042999999997, + "2024-07-27T15": 0.48744874, + "2024-07-26T19": 0.4865, + "2024-07-28T04": 0.4799904, + "2024-07-28T06": 0.478590428, + "2024-07-27T17": 0.4861583319999999, + "2024-07-29": 0.48753795201309963, + "2024-07-28T20": 0.482246947, + "2024-07-28T16": 0.47959520400000005, + "2024-07-29T07": 0.49204924539189027, + "2024-07-28T23": 0.4787382099153546, + "2024-07-28T15": 0.479295207, + "2024-07-28T18": 0.482246947, + "2024-07-29T04": 0.487241524, + "2024-07-29T06": 0.49063757928443114, + "2024-07-28T21": 0.47855214, + "2024-07-29T03": 0.48846539129598965, + "2024-07-28T12": 0.48398548, + "2024-07-29T05": 0.488341392, + "2024-07-28T17": 0.47944725499999996, + "2024-07-29T00": 0.4822, + "2024-07-29T01": 0.4816, + "2024-07-28T22": 0.477285681, + "2024-07-28T19": 0.48294687, + "2024-07-28T14": 0.4819, + "2024-07-29T02": 0.485266029, + "2024-07-29T08": 0.4940416287908895, + "2024-07-28T11": 0.484280628, + "2024-07-28T13": 0.483690326, + "2024-07-29T09": 0.49349140799999996, + "2024-07-29T10": 0.49389626, + "2024-07-29T11": 0.49339636499999995, + "2024-07-29T12": 0.49257785226075956, + "2024-07-29T13": 0.49155575599999995, + "2024-07-30": 0.474597907750911, + "2024-07-29T23": 0.476638029, + "2024-07-29T18": 0.4824035, + "2024-07-29T21": 0.47946164, + "2024-07-29T22": 0.47960851306334384, + "2024-07-29T17": 0.482293872, + "2024-07-29T15": 0.48227457599999995, + "2024-07-30T01": 0.477194994, + "2024-07-29T19": 0.482122848, + "2024-07-30T04": 0.47825048235345324, + "2024-07-29T14": 0.48812677000000004, + "2024-07-29T20": 0.48204696899999994, + "2024-07-30T03": 0.477333164, + "2024-07-30T00": 0.475119216, + "2024-07-29T16": 0.4797578204953466, + "2024-07-30T02": 0.47480502, + "2024-07-30T09": 0.47759490600000004, + "2024-07-30T08": 0.47857086254186615, + "2024-07-30T06": 0.47739495, + "2024-07-30T05": 0.47720931299999997, + "2024-07-30T07": 0.479075408, + "2024-07-30T10": 0.477418825, + "2024-07-30T11": 0.476599893, + "2024-07-30T12": 0.4757423545732492, + "2024-07-30T13": 0.47580482, + "2024-07-31": 0.46092548438839953, + "2024-07-31T00": 0.46088475, + "2024-07-31T05": 0.458699064, + "2024-07-30T23": 0.461666078, + "2024-07-30T19": 0.461529171, + "2024-07-30T16": 0.47284864, + "2024-07-30T17": 0.466955199, + "2024-07-30T18": 0.465451008, + "2024-07-30T20": 0.46106164, + "2024-07-30T15": 0.473039112, + "2024-07-31T03": 0.461003169, + "2024-07-30T21": 0.4588782729320713, + "2024-07-31T01": 0.46249360200000006, + "2024-07-31T07": 0.465902230009064, + "2024-07-31T06": 0.465664918, + "2024-07-31T02": 0.46270744, + "2024-07-30T22": 0.46006654199999997, + "2024-07-30T14": 0.47250548000000003, + "2024-07-31T04": 0.460203337, + "2024-07-31T08": 0.463091515, + "2024-07-31T11": 0.460046835, + "2024-07-31T09": 0.462019742, + "2024-07-31T10": 0.46027896, + "2024-07-31T12": 0.461462330101841, + "2024-08-01": 0.44366453724452953, + "2024-07-31T14": 0.46253802925033716, + "2024-07-31T23": 0.449955968, + "2024-07-31T13": 0.46328215500000003, + "2024-07-31T21": 0.449829, + "2024-08-01T01": 0.45044229, + "2024-07-31T18": 0.4598482, + "2024-07-31T19": 0.458743974, + "2024-07-31T16": 0.4598206, + "2024-08-01T02": 0.448466676, + "2024-07-31T22": 0.45185988, + "2024-07-31T20": 0.45162379799999997, + "2024-07-31T17": 0.458421146, + "2024-08-01T00": 0.451251038, + "2024-07-31T15": 0.460711031, + "2024-08-01T07": 0.44420002000000003, + "2024-08-01T06": 0.444981852, + "2024-08-01T05": 0.444828489, + "2024-08-01T04": 0.445368288, + "2024-08-01T03": 0.44906187099999995, + "2024-08-01T08": 0.4447686, + "2024-08-01T09": 0.44624103, + "2024-08-01T10": 0.44476414999999997, + "2024-08-01T11": 0.44396457399999995, + "2024-08-01T12": 0.445967976, + "2024-08-01T13": 0.445985824, + "2024-08-01T14": 0.440714822, + "2024-08-01T15": 0.43508235000000006, + "2024-08-02": 0.44208938243849827, + "2024-08-02T00": 0.44100274, + "2024-08-01T20": 0.42886640700000006, + "2024-08-01T21": 0.436398144, + "2024-08-02T04": 0.434803968, + "2024-08-01T19": 0.42822843000000005, + "2024-08-01T16": 0.42979892999999997, + "2024-08-02T02": 0.43432181099999995, + "2024-08-01T17": 0.427153725, + "2024-08-01T23": 0.44208847500000004, + "2024-08-02T01": 0.439108845, + "2024-08-01T22": 0.440833804, + "2024-08-01T18": 0.42370982799999996, + "2024-08-02T03": 0.434499892, + "2024-08-02T05": 0.43152424699999997, + "2024-08-02T06": 0.42617586, + "2024-08-02T07": 0.42757587063208546, + "2024-08-02T08": 0.427444926, + "2024-08-02T09": 0.42863106, + "2024-08-02T10": 0.426375708, + "2024-08-02T11": 0.42734073200000006, + "2024-08-02T12": 0.42480242999999995, + "2024-08-02T13": 0.42736639400000004, + "2024-08-02T14": 0.42945756329003704, + "2024-08-02T15": 0.41139643600000003, + "2024-08-03": 0.39539159622728237, + "2024-08-02T16": 0.410151075, + "2024-08-02T22": 0.404238642, + "2024-08-02T23": 0.404781216, + "2024-08-03T00": 0.40446945, + "2024-08-03T01": 0.40000738500000005, + "2024-08-03T03": 0.40431828799999997, + "2024-08-02T19": 0.40765983483378976, + "2024-08-02T18": 0.4082913, + "2024-08-02T21": 0.4042953, + "2024-08-02T17": 0.40981031, + "2024-08-02T20": 0.409153536, + "2024-08-03T02": 0.401768964, + "2024-08-03T06": 0.407255607, + "2024-08-03T19": 0.38020321, + "2024-08-03T10": 0.404743512, + "2024-08-03T09": 0.40563866000000004, + "2024-08-03T15": 0.399532134, + "2024-08-03T22": 0.384880493, + "2024-08-03T05": 0.405849007, + "2024-08-03T08": 0.405306471, + "2024-08-03T14": 0.40513648999999996, + "2024-08-03T18": 0.38333148, + "2024-08-03T17": 0.384922656, + "2024-08-03T21": 0.38117116, + "2024-08-03T12": 0.40729022400000003, + "2024-08-03T20": 0.37955129469619076, + "2024-08-03T04": 0.405989536, + "2024-08-03T16": 0.39070675, + "2024-08-03T11": 0.404859632, + "2024-08-03T07": 0.4081785218386333, + "2024-08-03T13": 0.406123648, + "2024-08-04": 0.375607922716167, + "2024-08-03T23": 0.3848914042668789, + "2024-08-04T17": 0.362498876, + "2024-08-04T13": 0.38670655000000004, + "2024-08-04T06": 0.392556464, + "2024-08-04T12": 0.38690645, + "2024-08-04T10": 0.385399488, + "2024-08-04T16": 0.36823468, + "2024-08-04T15": 0.372250425, + "2024-08-04T00": 0.386284117766624, + "2024-08-04T11": 0.387502273, + "2024-08-04T01": 0.385872201, + "2024-08-04T03": 0.38917368757864224, + "2024-08-04T04": 0.3897621, + "2024-08-04T07": 0.3894716143821081, + "2024-08-04T08": 0.38696380799999996, + "2024-08-04T18": 0.3638714601458058, + "2024-08-04T09": 0.38697929600000003, + "2024-08-04T02": 0.3887666, + "2024-08-04T05": 0.390061917, + "2024-08-04T14": 0.376637976, + "2024-08-05": 0.3311589491782728, + "2024-08-05T01": 0.3584927439423605, + "2024-08-04T19": 0.36866714693656577, + "2024-08-04T22": 0.375125438999064, + "2024-08-05T03": 0.3356273724655861, + "2024-08-05T02": 0.3370990493751724, + "2024-08-04T23": 0.3752043026397867, + "2024-08-05T00": 0.36954232069938914, + "2024-08-05T04": 0.33143818306131767, + "2024-08-05T06": 0.3301085626823583, + "2024-08-04T20": 0.37540580608781665, + "2024-08-05T05": 0.3316328467911103, + "2024-08-04T21": 0.37469593272896756, + "2024-08-05T07": 0.3157899644637834, + "2024-08-05T08": 0.33285547031658275, + "2024-08-05T09": 0.32436667908828976, + "2024-08-05T10": 0.3256515547152357, + "2024-08-05T11": 0.31204055999999997, + "2024-08-05T12": 0.3156374043574573, + "2024-08-05T13": 0.3114572593649147, + "2024-08-05T14": 0.32041031824412985, + "2024-08-05T15": 0.335711365, + "2024-08-06": 0.3494224428868045, + "2024-08-05T19": 0.331926084, + "2024-08-05T20": 0.33523352, + "2024-08-05T21": 0.336360534, + "2024-08-06T02": 0.35133345600000004, + "2024-08-05T18": 0.33645469799999994, + "2024-08-05T23": 0.335067, + "2024-08-05T16": 0.33953751, + "2024-08-06T05": 0.35410880100000003, + "2024-08-05T17": 0.34014081697774845, + "2024-08-06T00": 0.3430686, + "2024-08-06T04": 0.35235849, + "2024-08-06T03": 0.35053665599999995, + "2024-08-05T22": 0.336357171, + "2024-08-06T01": 0.34860454999999996, + "2024-08-06T06": 0.3584035699317949, + "2024-08-06T07": 0.35723919, + "2024-08-06T08": 0.35250433400000003, + "2024-08-06T09": 0.35200557, + "2024-08-06T10": 0.35141241600000006, + "2024-08-06T11": 0.35018752500000006, + "2024-08-06T12": 0.350429611, + "2024-08-06T13": 0.348797636, + "2024-08-06T14": 0.348801123 + }, + "USD polkadot": { + "2024-06-28": 6.276925764666111, + "2024-06-30": 6.124775007096806, + "2024-07-15": 6.403134280290466, + "2024-07-18": 6.193160195071448, + "2024-07-14": 6.241350734915403, + "2024-07-11": 6.091174495357801, + "2024-07-19": 6.158153264348902, + "2024-07-12": 5.917267397502996, + "2024-07-24": 5.917249261634868, + "2024-07-08": 5.971454509562169, + "2024-07-07": 6.197064578692867, + "2024-07-13": 6.233445570320021, + "2024-07-09": 6.079597841727698, + "2024-07-02": 6.427351340496791, + "2024-07-20": 6.332051864321539, + "2024-06-29": 6.134715463852718, + "2024-07-21": 6.2953301226950105, + "2024-07-23": 6.005627234070037, + "2024-07-10": 6.126873718960431, + "2024-07-01": 6.331077277871948, + "2024-06-26": 5.8430066811205394, + "2024-07-17": 6.445443880934569, + "2024-07-22": 6.2509317070911425, + "2024-07-04": 5.8197413169766055, + "2024-06-25": 5.8359441123501075, + "2024-07-26": 5.835734985850814, + "2024-07-03": 6.178113514355757, + "2024-07-05": 5.452427682821641, + "2024-07-25": 5.69701083272247, + "2024-07-16": 6.362077020291528, + "2024-07-06": 5.936868307716907, + "2024-06-27": 6.127636060111013, + "2024-07-22T13": 6.31388382, + "2024-07-25T10": 5.717940799999999, + "2024-07-26T06": 5.8488299999999995, + "2024-07-24T14": 5.96589475, + "2024-07-21T20": 6.3737841600000005, + "2024-07-21T07": 6.256213776, + "2024-07-21T14": 6.27813384, + "2024-07-22T23": 6.1038306, + "2024-07-24T07": 5.95682129, + "2024-07-20T11": 6.287986882257691, + "2024-07-26T08": 5.855063039999999, + "2024-07-25T20": 5.5836596, + "2024-07-21T02": 6.361780800000001, + "2024-07-20T04": 6.35198403, + "2024-07-20T03": 6.33925138, + "2024-07-25T13": 5.7021747199999995, + "2024-07-21T06": 6.2818211999999995, + "2024-07-20T12": 6.273034465929654, + "2024-07-24T02": 5.914061005352967, + "2024-07-24T17": 5.91794082, + "2024-07-25T06": 5.689143290485118, + "2024-07-25T22": 5.7325665, + "2024-07-22T07": 6.24653684, + "2024-07-22T22": 6.12902191, + "2024-07-26T03": 5.814640850355753, + "2024-07-23T01": 6.143614299999999, + "2024-07-24T03": 5.93735622, + "2024-07-23T21": 5.940292861229276, + "2024-07-19T20": 6.325845350000001, + "2024-07-23T22": 5.91306416, + "2024-07-21T23": 6.419048632689732, + "2024-07-19T16": 6.286257, + "2024-07-22T20": 6.2263651200000005, + "2024-07-23T10": 6.087939120000001, + "2024-07-19T17": 6.28581705, + "2024-07-22T09": 6.243106177338802, + "2024-07-24T04": 5.93117793, + "2024-07-22T06": 6.25337518, + "2024-07-24T21": 5.7324266999999995, + "2024-07-20T21": 6.322807153999999, + "2024-07-21T15": 6.30708065, + "2024-07-20T09": 6.31387072, + "2024-07-25T14": 5.687951599999999, + "2024-07-19T11": 6.102418223, + "2024-07-23T20": 5.9431884, + "2024-07-25T03": 5.63292954, + "2024-07-20T01": 6.3481724999999996, + "2024-07-25T23": 5.742319328999999, + "2024-07-20T16": 6.3402816799999995, + "2024-07-22T15": 6.22656034, + "2024-07-23T16": 5.88600045, + "2024-07-22T02": 6.398, + "2024-07-21T04": 6.3367738000000005, + "2024-07-23T09": 6.116, + "2024-07-20T10": 6.3096010819999995, + "2024-07-22T19": 6.198784664885738, + "2024-07-20T00": 6.3441705, + "2024-07-20T19": 6.355922379999999, + "2024-07-26T05": 5.80650330496332, + "2024-07-19T14": 6.226, + "2024-07-21T00": 6.348562268528683, + "2024-07-22T12": 6.325506000000001, + "2024-07-24T06": 5.934659346, + "2024-07-25T01": 5.62632476, + "2024-07-20T22": 6.332021598999999, + "2024-07-19T15": 6.232124639999999, + "2024-07-21T13": 6.250236973000001, + "2024-07-25T07": 5.696575500000001, + "2024-07-21T08": 6.267817139999999, + "2024-07-23T06": 6.0129018, + "2024-07-22T16": 6.198929700000001, + "2024-07-24T11": 5.983815946675297, + "2024-07-24T01": 5.907618149999999, + "2024-07-23T00": 6.1088321, + "2024-07-19T12": 6.13458872, + "2024-07-25T17": 5.7387946, + "2024-07-25T19": 5.63736469, + "2024-07-19T21": 6.331127229, + "2024-07-23T08": 6.09618288, + "2024-07-21T21": 6.39021391, + "2024-07-21T11": 6.26869209, + "2024-07-22T14": 6.2389357, + "2024-07-20T23": 6.327534452999999, + "2024-07-20T08": 6.331164, + "2024-07-20T02": 6.332848500000001, + "2024-07-24T05": 5.91347304, + "2024-07-24T16": 5.891530189999999, + "2024-07-21T01": 6.363353569999999, + "2024-07-24T13": 5.9788, + "2024-07-25T04": 5.65620802, + "2024-07-19T13": 6.1777642, + "2024-07-25T12": 5.70988656, + "2024-07-19T22": 6.329199789000001, + "2024-07-26T07": 5.857517030630883, + "2024-07-25T02": 5.635872600000001, + "2024-07-21T12": 6.27268124, + "2024-07-23T18": 5.8796466899999995, + "2024-07-23T11": 6.05312106, + "2024-07-19T10": 6.10071858, + "2024-07-19T19": 6.3025199999999995, + "2024-07-25T11": 5.728664949, + "2024-07-22T08": 6.246499680000001, + "2024-07-23T19": 5.9239542599999995, + "2024-07-22T21": 6.18779394, + "2024-07-21T09": 6.28375896, + "2024-07-21T22": 6.421642100000001, + "2024-07-22T04": 6.359308704000001, + "2024-07-25T16": 5.7187415999999995, + "2024-07-19T23": 6.3381675, + "2024-07-20T06": 6.32913064, + "2024-07-23T02": 6.1464916800000005, + "2024-07-23T14": 6.01796272, + "2024-07-23T03": 6.130229086000001, + "2024-07-25T08": 5.721340329999999, + "2024-07-24T15": 5.920873206628418, + "2024-07-19T09": 6.1017794, + "2024-07-20T15": 6.329461525, + "2024-07-23T23": 5.91853262, + "2024-07-23T12": 6.00908144, + "2024-07-22T10": 6.285062850000001, + "2024-07-21T10": 6.2916983, + "2024-07-22T00": 6.451222545, + "2024-07-24T22": 5.723569572, + "2024-07-24T19": 5.8559414400000005, + "2024-07-24T09": 5.971, + "2024-07-23T04": 6.0726072, + "2024-07-23T05": 6.010360599999999, + "2024-07-25T18": 5.68752086, + "2024-07-25T15": 5.70574446, + "2024-07-26T01": 5.7428512, + "2024-07-22T01": 6.4276712279999995, + "2024-07-26T02": 5.74885, + "2024-07-24T18": 5.8695869, + "2024-07-21T19": 6.236974127856375, + "2024-07-25T05": 5.688734376, + "2024-07-22T18": 6.1932384, + "2024-07-24T00": 5.90353127, + "2024-07-24T08": 5.968940310000001, + "2024-07-24T20": 5.82194178, + "2024-07-24T23": 5.7239695, + "2024-07-22T17": 6.19286688, + "2024-07-21T17": 6.2596905099999995, + "2024-07-24T12": 5.980679415, + "2024-07-23T13": 5.988958079999999, + "2024-07-21T05": 6.313767360000001, + "2024-07-20T05": 6.33003696, + "2024-07-21T03": 6.350777720000001, + "2024-07-26T00": 5.753291555, + "2024-07-20T20": 6.342536, + "2024-07-22T03": 6.382601829312599, + "2024-07-25T21": 5.7076869299999995, + "2024-07-21T16": 6.299329889999999, + "2024-07-20T17": 6.366545599999999, + "2024-07-22T11": 6.29918897, + "2024-07-25T00": 5.759963020000001, + "2024-07-20T13": 6.252625, + "2024-07-23T07": 6.0036003000000004, + "2024-07-22T05": 6.31937914, + "2024-07-20T07": 6.335849850000001, + "2024-07-21T18": 6.18865998, + "2024-07-23T17": 5.8575857000000005, + "2024-07-20T14": 6.2976371608809725, + "2024-07-26T04": 5.802721178838594, + "2024-07-24T10": 5.981537499674689, + "2024-07-20T18": 6.367081949999999, + "2024-07-23T15": 5.96601405, + "2024-07-19T18": 6.2840334239999995, + "2024-07-25T09": 5.748729711999999, + "latest": 4.45, + "2024-07-26T09": 5.8739753154035705, + "2024-07-26T10": 5.86241672, + "2024-07-26T11": 5.85159528, + "2024-07-26T12": 5.813711501, + "2024-07-26T13": 5.81107008, + "2024-07-26T14": 5.81647647, + "2024-07-26T17": 5.8448831, + "2024-07-26T16": 5.8377081, + "2024-07-26T15": 5.8145348, + "2024-07-26T18": 5.852, + "2024-07-27": 5.852602765615216, + "2024-07-28": 5.739905979713342, + "2024-07-28T05": 5.71194288, + "2024-07-26T21": 5.844, + "2024-07-27T02": 5.829174869999999, + "2024-07-28T01": 5.825192208, + "2024-07-27T10": 5.861068848, + "2024-07-28T02": 5.816809145, + "2024-07-27T19": 5.808451750000001, + "2024-07-27T09": 5.86252758, + "2024-07-27T06": 5.853117059999999, + "2024-07-27T18": 5.82787405, + "2024-07-26T22": 5.846933868000001, + "2024-07-27T13": 5.91676908, + "2024-07-27T12": 5.8789992600000005, + "2024-07-27T16": 5.8385838, + "2024-07-27T05": 5.857859142629555, + "2024-07-26T23": 5.862234480000001, + "2024-07-26T20": 5.838, + "2024-07-27T08": 5.864393205, + "2024-07-28T03": 5.805583886, + "2024-07-27T01": 5.835433408000001, + "2024-07-28T09": 5.7488850199999995, + "2024-07-28T10": 5.760827170000001, + "2024-07-27T00": 5.855934228, + "2024-07-28T00": 5.799942, + "2024-07-27T04": 5.834316683999999, + "2024-07-27T14": 5.8885888, + "2024-07-27T07": 5.88, + "2024-07-27T11": 5.86999773, + "2024-07-27T22": 5.878470889999999, + "2024-07-27T03": 5.83205832, + "2024-07-27T20": 5.784615700066962, + "2024-07-27T23": 5.85459015, + "2024-07-28T08": 5.75188496, + "2024-07-27T21": 5.85382438, + "2024-07-28T07": 5.745685084, + "2024-07-27T15": 5.830583, + "2024-07-26T19": 5.856, + "2024-07-28T04": 5.756911175379537, + "2024-07-28T06": 5.73788524, + "2024-07-27T17": 5.826699119999999, + "2024-07-29": 5.786762346279409, + "2024-07-28T20": 5.733842818800578, + "2024-07-28T16": 5.70494295, + "2024-07-29T07": 5.84594754, + "2024-07-28T23": 5.71888562, + "2024-07-28T15": 5.709942900000001, + "2024-07-28T18": 5.719670766999999, + "2024-07-29T04": 5.8195015759999995, + "2024-07-29T06": 5.851555543603578, + "2024-07-28T21": 5.700070242282708, + "2024-07-29T03": 5.849356499999999, + "2024-07-28T12": 5.750827470000001, + "2024-07-29T05": 5.8293004, + "2024-07-28T17": 5.695373439999999, + "2024-07-29T00": 5.772, + "2024-07-29T01": 5.7686, + "2024-07-28T22": 5.699829, + "2024-07-28T19": 5.741268391, + "2024-07-28T14": 5.713457661712338, + "2024-07-29T02": 5.804493657, + "2024-07-29T08": 5.8448308, + "2024-07-28T11": 5.755869756, + "2024-07-28T13": 5.755784882, + "2024-07-29T09": 5.85571146, + "2024-07-29T10": 5.84277276, + "2024-07-29T11": 5.82177717, + "2024-07-29T12": 5.83547476, + "2024-07-29T13": 5.8214760199999995, + "2024-07-30": 5.657986688188726, + "2024-07-29T23": 5.64726576, + "2024-07-29T18": 5.7128572, + "2024-07-29T21": 5.6605471199999995, + "2024-07-29T22": 5.6595641610000005, + "2024-07-29T17": 5.697446286, + "2024-07-29T15": 5.7085154, + "2024-07-30T01": 5.68274952, + "2024-07-29T19": 5.69508864, + "2024-07-30T04": 5.6838630000000006, + "2024-07-29T14": 5.783832295, + "2024-07-29T20": 5.68637443, + "2024-07-30T03": 5.6814044919999995, + "2024-07-30T00": 5.65503848, + "2024-07-29T16": 5.68717952, + "2024-07-30T02": 5.656468480000001, + "2024-07-30T09": 5.68074996, + "2024-07-30T08": 5.689006632, + "2024-07-30T06": 5.691138346740006, + "2024-07-30T05": 5.66992251, + "2024-07-30T07": 5.704516439999999, + "2024-07-30T10": 5.6790344, + "2024-07-30T11": 5.68280636, + "2024-07-30T12": 5.6838630000000006, + "2024-07-30T13": 5.68106356, + "2024-07-31": 5.520330848129529, + "2024-07-31T00": 5.518619999999999, + "2024-07-31T05": 5.478794400000001, + "2024-07-30T23": 5.51140123, + "2024-07-30T19": 5.546347092, + "2024-07-30T16": 5.64619264, + "2024-07-30T17": 5.592965642999999, + "2024-07-30T18": 5.57521536, + "2024-07-30T20": 5.5213431, + "2024-07-30T15": 5.64408036, + "2024-07-31T03": 5.49984479, + "2024-07-30T21": 5.52256376, + "2024-07-31T01": 5.51673086, + "2024-07-31T07": 5.535483468, + "2024-07-31T06": 5.54139253, + "2024-07-31T02": 5.5058986, + "2024-07-30T22": 5.51540007, + "2024-07-30T14": 5.656473742229626, + "2024-07-31T04": 5.48484794, + "2024-07-31T08": 5.529928135890506, + "2024-07-31T11": 5.5389519, + "2024-07-31T09": 5.533840959999999, + "2024-07-31T10": 5.536341279999999, + "2024-07-31T12": 5.544393400000001, + "2024-08-01": 5.318513445679658, + "2024-07-31T14": 5.500523650000001, + "2024-07-31T23": 5.383176832, + "2024-07-31T13": 5.54439291, + "2024-07-31T21": 5.376955979999999, + "2024-08-01T01": 5.394512550453116, + "2024-07-31T18": 5.492486881, + "2024-07-31T19": 5.433152099999999, + "2024-07-31T16": 5.44487567, + "2024-08-01T02": 5.3812003200000005, + "2024-07-31T22": 5.39032848, + "2024-07-31T20": 5.372004101, + "2024-07-31T17": 5.483260694, + "2024-08-01T00": 5.39921767, + "2024-07-31T15": 5.470756069999999, + "2024-08-01T07": 5.363285435000001, + "2024-08-01T06": 5.35140046399128, + "2024-08-01T05": 5.31275724, + "2024-08-01T04": 5.31423516, + "2024-08-01T03": 5.37015231, + "2024-08-01T08": 5.36920656, + "2024-08-01T09": 5.3568912, + "2024-08-01T10": 5.36415549, + "2024-08-01T11": 5.3671539, + "2024-08-01T12": 5.36620812, + "2024-08-01T13": 5.34143488, + "2024-08-01T14": 5.2577907999999995, + "2024-08-01T15": 5.168414500000001, + "2024-08-02": 5.343944203573159, + "2024-08-02T00": 5.3411886, + "2024-08-01T20": 5.21772477, + "2024-08-01T21": 5.27614148, + "2024-08-02T04": 5.26120794, + "2024-08-01T19": 5.182539484052709, + "2024-08-01T16": 5.1144174, + "2024-08-02T02": 5.25942032, + "2024-08-01T17": 5.093371025000001, + "2024-08-01T23": 5.34302636, + "2024-08-02T01": 5.31426609, + "2024-08-01T22": 5.33856531, + "2024-08-01T18": 5.10429972, + "2024-08-02T03": 5.27614148, + "2024-08-02T05": 5.227079649209002, + "2024-08-02T06": 5.193060352004102, + "2024-08-02T07": 5.220767749999999, + "2024-08-02T08": 5.238944033618473, + "2024-08-02T09": 5.2574746800000005, + "2024-08-02T10": 5.2520054400000005, + "2024-08-02T11": 5.24159336, + "2024-08-02T12": 5.216346, + "2024-08-02T13": 5.24890266, + "2024-08-02T14": 5.249368391900548, + "2024-08-02T15": 5.0454506079999994, + "2024-08-03": 5.081670366488918, + "2024-08-02T16": 5.087197082176196, + "2024-08-02T22": 5.09318714, + "2024-08-02T23": 5.1084528, + "2024-08-03T00": 5.114099630503347, + "2024-08-03T01": 5.03879465, + "2024-08-03T03": 5.1139072, + "2024-08-02T19": 5.086449719999999, + "2024-08-02T18": 5.10489, + "2024-08-02T21": 5.092902, + "2024-08-02T17": 5.11213885, + "2024-08-02T20": 5.11741593, + "2024-08-03T02": 5.09926008, + "2024-08-03T06": 5.176950966, + "2024-08-03T19": 4.90916786, + "2024-08-03T10": 5.15645832, + "2024-08-03T09": 5.1554076, + "2024-08-03T15": 5.106376434, + "2024-08-03T22": 5.04312378, + "2024-08-03T05": 5.15926685, + "2024-08-03T08": 5.159890047, + "2024-08-03T14": 5.186153196732091, + "2024-08-03T18": 4.894571399999999, + "2024-08-03T17": 4.93244608, + "2024-08-03T21": 4.964019799999999, + "2024-08-03T12": 5.1708671520000005, + "2024-08-03T20": 4.91070762, + "2024-08-03T04": 5.14280052, + "2024-08-03T16": 5.0182335, + "2024-08-03T11": 5.16665636, + "2024-08-03T07": 5.18144991, + "2024-08-03T13": 5.167283856, + "2024-08-04": 4.783735849009637, + "2024-08-03T23": 5.043010886311089, + "2024-08-04T17": 4.6091712099999995, + "2024-08-04T13": 4.89565095, + "2024-08-04T06": 5.02588202, + "2024-08-04T12": 4.883557000000001, + "2024-08-04T10": 4.96041924, + "2024-08-04T16": 4.69461744, + "2024-08-04T15": 4.753546638790864, + "2024-08-04T00": 5.043022860000001, + "2024-08-04T11": 4.92648621, + "2024-08-04T01": 5.050918199, + "2024-08-04T03": 5.05986094, + "2024-08-04T04": 5.051516694, + "2024-08-04T07": 4.9820588500000005, + "2024-08-04T08": 4.96996647, + "2024-08-04T18": 4.622411506838054, + "2024-08-04T09": 4.97416311, + "2024-08-04T02": 5.0629604, + "2024-08-04T05": 5.039923770000001, + "2024-08-04T14": 4.79393772, + "2024-08-05": 4.037621245609297, + "2024-08-05T01": 4.487251822764869, + "2024-08-04T19": 4.6810242635117865, + "2024-08-04T22": 4.755985406223767, + "2024-08-05T03": 4.1275582632051115, + "2024-08-05T02": 4.1156763672842995, + "2024-08-04T23": 4.759788837381049, + "2024-08-05T00": 4.688670727211944, + "2024-08-05T04": 4.022504964291024, + "2024-08-05T06": 3.916603802489979, + "2024-08-04T20": 4.763541322179411, + "2024-08-05T05": 3.9694921711478512, + "2024-08-04T21": 4.784842302966678, + "2024-08-05T07": 3.8119699324428535, + "2024-08-05T08": 4.0242472344989455, + "2024-08-05T09": 3.9195010883272534, + "2024-08-05T10": 3.9698861919864927, + "2024-08-05T11": 3.8104953, + "2024-08-05T12": 3.878020101758373, + "2024-08-05T13": 3.8192688307947664, + "2024-08-05T14": 4.148119690000001, + "2024-08-05T15": 4.219656709999999, + "2024-08-06": 4.344862759666136, + "2024-08-05T19": 4.114562940000001, + "2024-08-05T20": 4.16521648, + "2024-08-05T21": 4.19675528, + "2024-08-06T02": 4.3416492, + "2024-08-05T18": 4.17291866, + "2024-08-05T23": 4.225147183620002, + "2024-08-05T16": 4.2319603, + "2024-08-06T05": 4.378581840000001, + "2024-08-05T17": 4.22349039, + "2024-08-06T00": 4.3288656, + "2024-08-06T04": 4.3699656000000004, + "2024-08-06T03": 4.341692599999999, + "2024-08-05T22": 4.2325369074728725, + "2024-08-06T01": 4.381314, + "2024-08-06T06": 4.43223317, + "2024-08-06T07": 4.40995269, + "2024-08-06T08": 4.36052764, + "2024-08-06T09": 4.3332996, + "2024-08-06T10": 4.3463904, + "2024-08-06T11": 4.34608625, + "2024-08-06T12": 4.3405482819705785, + "2024-08-06T13": 4.31720848, + "2024-08-06T14": 4.317251639999999 + }, + "USD polygon": { + "2024-06-28": 0.5642874831339221, + "2024-06-30": 0.5492629328469869, + "2024-07-15": 0.536789081046803, + "2024-07-18": 0.5306332393531523, + "2024-07-14": 0.5283129534408879, + "2024-07-11": 0.5108888714493965, + "2024-07-19": 0.5188997555607686, + "2024-07-12": 0.5000345465064904, + "2024-07-24": 0.5334622236788786, + "2024-07-08": 0.49390317756263574, + "2024-07-07": 0.495044501742339, + "2024-07-13": 0.517386819872156, + "2024-07-09": 0.49995819655136453, + "2024-07-02": 0.5651131619985318, + "2024-07-20": 0.5363392912462562, + "2024-06-29": 0.5549032982593715, + "2024-07-21": 0.5369464421923805, + "2024-07-23": 0.5363239462747732, + "2024-07-10": 0.5074128434758726, + "2024-07-01": 0.5634745286164152, + "2024-06-26": 0.5560727482154345, + "2024-07-17": 0.5515194912692808, + "2024-07-22": 0.5389383100680454, + "2024-07-04": 0.5099347864830387, + "2024-06-25": 0.5702819155393858, + "2024-07-26": 0.4959381002321125, + "2024-07-03": 0.5457442995161293, + "2024-07-05": 0.45788152470025834, + "2024-07-25": 0.500007586487168, + "2024-07-16": 0.5431983508598159, + "2024-07-06": 0.48396254350456847, + "2024-06-27": 0.5557622869163067, + "2024-07-22T13": 0.5427581249664795, + "2024-07-25T10": 0.5042302080945993, + "2024-07-26T06": 0.5095872156744602, + "2024-07-24T14": 0.5327963964142861, + "2024-07-21T20": 0.536921027443685, + "2024-07-21T07": 0.533059284467124, + "2024-07-21T14": 0.5328007461707333, + "2024-07-22T23": 0.5321251144587742, + "2024-07-24T07": 0.5289017700655371, + "2024-07-20T11": 0.5342552539456599, + "2024-07-26T08": 0.5120612585328406, + "2024-07-25T20": 0.48874448592842207, + "2024-07-21T02": 0.5425156165065775, + "2024-07-20T04": 0.5335157272803392, + "2024-07-20T03": 0.5311613618777903, + "2024-07-25T13": 0.498819084662647, + "2024-07-21T06": 0.5365789663570502, + "2024-07-20T12": 0.5310021476513082, + "2024-07-24T02": 0.5302595947670398, + "2024-07-24T17": 0.5347893793477378, + "2024-07-25T06": 0.504642322408911, + "2024-07-25T22": 0.49564657415686153, + "2024-07-22T07": 0.5343043267362214, + "2024-07-22T22": 0.5369289792619165, + "2024-07-26T03": 0.5051617034566247, + "2024-07-23T01": 0.5341800866763188, + "2024-07-24T03": 0.5352091754962136, + "2024-07-23T21": 0.535302930846183, + "2024-07-19T20": 0.5324263960330841, + "2024-07-23T22": 0.5344381637497039, + "2024-07-21T23": 0.5466197352132968, + "2024-07-19T16": 0.5218400172753673, + "2024-07-22T20": 0.5417513717716509, + "2024-07-23T10": 0.5425209011616747, + "2024-07-19T17": 0.5281049907922963, + "2024-07-22T09": 0.5345068913881109, + "2024-07-24T04": 0.5372824543400965, + "2024-07-22T06": 0.537853506945636, + "2024-07-24T21": 0.5286589653659335, + "2024-07-20T21": 0.5408191572111393, + "2024-07-21T15": 0.5373317553329138, + "2024-07-20T09": 0.5352758164529128, + "2024-07-25T14": 0.4955747845244414, + "2024-07-19T11": 0.5101127959271332, + "2024-07-23T20": 0.5382385653377821, + "2024-07-25T03": 0.5024363125008372, + "2024-07-20T01": 0.5303343760431914, + "2024-07-25T23": 0.4948536119489579, + "2024-07-20T16": 0.5373904988457205, + "2024-07-22T15": 0.5335439943349685, + "2024-07-23T16": 0.5371326307297923, + "2024-07-22T02": 0.5475968795507066, + "2024-07-21T04": 0.5386122892175065, + "2024-07-23T09": 0.5371141605585291, + "2024-07-20T10": 0.5339828103405159, + "2024-07-22T19": 0.5389537580877048, + "2024-07-20T00": 0.5332556420584379, + "2024-07-20T19": 0.5410792073091577, + "2024-07-26T05": 0.5071555144355568, + "2024-07-19T14": 0.5175181932234715, + "2024-07-21T00": 0.5413939891890549, + "2024-07-22T12": 0.5425428378229934, + "2024-07-24T06": 0.5303587499327975, + "2024-07-25T01": 0.5183100386613129, + "2024-07-20T22": 0.5406493158134014, + "2024-07-19T15": 0.5221704061147723, + "2024-07-21T13": 0.5349898613451362, + "2024-07-25T07": 0.5049649688816991, + "2024-07-21T08": 0.5335640282176694, + "2024-07-23T06": 0.5255688328568857, + "2024-07-22T16": 0.5366396300614117, + "2024-07-24T11": 0.5378004314242155, + "2024-07-24T01": 0.52941291534795, + "2024-07-23T00": 0.5304048830543177, + "2024-07-19T12": 0.5124525864146524, + "2024-07-25T17": 0.4986882686298688, + "2024-07-25T19": 0.48756717534457317, + "2024-07-19T21": 0.5304953542863456, + "2024-07-23T08": 0.5263848407596754, + "2024-07-21T21": 0.5436882535974612, + "2024-07-21T11": 0.5346898489414978, + "2024-07-22T14": 0.5367705437559429, + "2024-07-20T23": 0.5415572749455746, + "2024-07-20T08": 0.5369415522606, + "2024-07-20T02": 0.5288029431625405, + "2024-07-24T05": 0.5333877145576486, + "2024-07-24T16": 0.5340303797092762, + "2024-07-21T01": 0.5404324969119023, + "2024-07-24T13": 0.5343404523461648, + "2024-07-25T04": 0.5001205667246519, + "2024-07-19T13": 0.5144280265558064, + "2024-07-25T12": 0.5043451317675217, + "2024-07-19T22": 0.5317411962219536, + "2024-07-26T07": 0.5137443879692232, + "2024-07-25T02": 0.5044965812957993, + "2024-07-21T12": 0.5340453001684392, + "2024-07-23T18": 0.5247510668802928, + "2024-07-23T11": 0.5491283253997314, + "2024-07-19T10": 0.5080872612016252, + "2024-07-19T19": 0.5268877735474761, + "2024-07-25T11": 0.5030882889688677, + "2024-07-22T08": 0.5346252130685795, + "2024-07-23T19": 0.5310245769886898, + "2024-07-22T21": 0.5408192948852417, + "2024-07-21T09": 0.5337999017664992, + "2024-07-21T22": 0.5473536480963268, + "2024-07-22T04": 0.5443500356419291, + "2024-07-25T16": 0.49789307364009844, + "2024-07-19T23": 0.5325139207724998, + "2024-07-26T09": 0.5127076960000001, + "2024-07-20T06": 0.537183838219018, + "2024-07-23T02": 0.5376033419693852, + "2024-07-23T14": 0.5446708426276712, + "2024-07-23T03": 0.5379960286189198, + "2024-07-25T08": 0.5010580358190112, + "2024-07-24T15": 0.5390397768649237, + "2024-07-19T09": 0.512984542498806, + "2024-07-20T15": 0.5334391865762875, + "2024-07-23T23": 0.5348832715707211, + "2024-07-23T12": 0.551097286566204, + "2024-07-22T10": 0.5388988138821478, + "2024-07-21T10": 0.5362477324434334, + "2024-07-22T00": 0.5484971502002676, + "2024-07-24T22": 0.5212522395277206, + "2024-07-24T19": 0.5263273880715491, + "2024-07-24T09": 0.5368098300607309, + "2024-07-23T04": 0.53460625203781, + "2024-07-23T05": 0.5295614367087477, + "2024-07-25T18": 0.4976622743968633, + "2024-07-25T15": 0.501479307383579, + "2024-07-26T01": 0.4993669970027644, + "2024-07-22T01": 0.5486698454942832, + "2024-07-26T02": 0.4992325971280241, + "2024-07-24T18": 0.5333203286126477, + "2024-07-21T19": 0.530656760299233, + "2024-07-25T05": 0.502767903073334, + "2024-07-22T18": 0.5391273294803035, + "2024-07-24T00": 0.53248982938172, + "2024-07-24T08": 0.5339931377596545, + "2024-07-24T20": 0.5261306071558219, + "2024-07-24T23": 0.5179315195102125, + "2024-07-22T17": 0.5371705268078467, + "2024-07-21T17": 0.5411998296855661, + "2024-07-24T12": 0.5366699050410741, + "2024-07-23T13": 0.5487413499975777, + "2024-07-21T05": 0.5369362555781803, + "2024-07-20T05": 0.5384640839002954, + "2024-07-21T03": 0.5391978285212694, + "2024-07-26T00": 0.4971610804695168, + "2024-07-20T20": 0.5391695195846109, + "2024-07-22T03": 0.5491293140289276, + "2024-07-25T21": 0.49205877403192205, + "2024-07-21T16": 0.536866520076085, + "2024-07-20T17": 0.5364823722879607, + "2024-07-22T11": 0.5418422370387771, + "2024-07-25T00": 0.5169807410682172, + "2024-07-20T13": 0.5311257271080172, + "2024-07-23T07": 0.5259643898425544, + "2024-07-22T05": 0.5428320549445539, + "2024-07-20T07": 0.5383991433605753, + "2024-07-21T18": 0.5338151211360532, + "2024-07-23T17": 0.5253187283210706, + "2024-07-20T14": 0.5305785034739319, + "2024-07-26T04": 0.5046492028346172, + "2024-07-24T10": 0.5353352947032195, + "2024-07-20T18": 0.5412564587418087, + "2024-07-23T15": 0.5450149152600378, + "2024-07-19T18": 0.5281684316115957, + "2024-07-25T09": 0.5044437989267927, + "latest": 0.41186, + "2024-07-26T10": 0.509762327, + "2024-07-26T11": 0.508577912, + "2024-07-26T12": 0.5085135380000001, + "2024-07-26T13": 0.507718752, + "2024-07-26T14": 0.509154172, + "2024-07-26T17": 0.5111897759999999, + "2024-07-26T16": 0.51177441, + "2024-07-26T15": 0.510759136, + "2024-07-26T18": 0.5117, + "2024-07-27": 0.5135469255827727, + "2024-07-28": 0.5120014803069549, + "2024-07-28T05": 0.509194908, + "2024-07-26T21": 0.5131911872460624, + "2024-07-27T02": 0.512515375, + "2024-07-28T01": 0.518863677, + "2024-07-27T10": 0.514341144, + "2024-07-28T02": 0.5175741199999999, + "2024-07-27T19": 0.513828425, + "2024-07-27T09": 0.5146463139999999, + "2024-07-27T06": 0.5146102919999999, + "2024-07-27T18": 0.5152772800000001, + "2024-07-26T22": 0.514420576, + "2024-07-27T13": 0.5206676779999999, + "2024-07-27T12": 0.516487788, + "2024-07-27T16": 0.51625162, + "2024-07-27T05": 0.5140102799999999, + "2024-07-26T23": 0.5147205880000001, + "2024-07-26T20": 0.5108, + "2024-07-27T08": 0.5159257950000001, + "2024-07-28T03": 0.51598968, + "2024-07-27T01": 0.51202048, + "2024-07-28T09": 0.515189696, + "2024-07-28T10": 0.516584502, + "2024-07-27T00": 0.513620544, + "2024-07-28T00": 0.5152948470000001, + "2024-07-27T04": 0.512710254, + "2024-07-27T14": 0.51995199, + "2024-07-27T07": 0.5164, + "2024-07-27T11": 0.514187397, + "2024-07-27T22": 0.520353164, + "2024-07-27T03": 0.512705127, + "2024-07-27T20": 0.514525725, + "2024-07-27T23": 0.519163656, + "2024-07-28T08": 0.5149897, + "2024-07-27T21": 0.5209843700000001, + "2024-07-28T07": 0.513189736, + "2024-07-27T15": 0.51675167, + "2024-07-26T19": 0.513, + "2024-07-28T04": 0.5126897460000001, + "2024-07-28T06": 0.5122921574501519, + "2024-07-27T17": 0.515361836, + "2024-07-29": 0.5170364526549603, + "2024-07-28T20": 0.507644153, + "2024-07-28T16": 0.5074975881003955, + "2024-07-29T07": 0.51890658, + "2024-07-28T23": 0.507789844, + "2024-07-28T15": 0.507894921, + "2024-07-28T18": 0.5101438779999999, + "2024-07-29T04": 0.516637996, + "2024-07-29T06": 0.5183340556369453, + "2024-07-28T21": 0.5065493400000001, + "2024-07-29T03": 0.5199428, + "2024-07-28T12": 0.51398458, + "2024-07-29T05": 0.516837972, + "2024-07-28T17": 0.5072441969999999, + "2024-07-29T00": 0.5128, + "2024-07-29T01": 0.5123, + "2024-07-28T22": 0.506384808, + "2024-07-28T19": 0.508744032, + "2024-07-28T14": 0.5094, + "2024-07-29T02": 0.516363852, + "2024-07-29T08": 0.51959606, + "2024-07-28T11": 0.516879324, + "2024-07-28T13": 0.5125897479999999, + "2024-07-29T09": 0.521985138, + "2024-07-29T10": 0.522990149, + "2024-07-29T11": 0.521190527, + "2024-07-29T12": 0.5211669591736676, + "2024-07-29T13": 0.523452885, + "2024-07-30": 0.5163246506872848, + "2024-07-29T23": 0.5105336220000001, + "2024-07-29T18": 0.5142971199999999, + "2024-07-29T21": 0.511659064, + "2024-07-29T22": 0.512133414, + "2024-07-29T17": 0.51288714, + "2024-07-29T15": 0.5148661, + "2024-07-30T01": 0.5155865460000001, + "2024-07-29T19": 0.517017264, + "2024-07-30T04": 0.51569684, + "2024-07-29T14": 0.52112182, + "2024-07-29T20": 0.5163929808953304, + "2024-07-30T03": 0.5143279839999999, + "2024-07-30T00": 0.5106131810000001, + "2024-07-29T16": 0.512535936, + "2024-07-30T02": 0.5108978000000001, + "2024-07-30T09": 0.518085996, + "2024-07-30T08": 0.52035426, + "2024-07-30T06": 0.521285292, + "2024-07-30T05": 0.518101542, + "2024-07-30T07": 0.523063968, + "2024-07-30T10": 0.5173172159999999, + "2024-07-30T11": 0.5165019691098955, + "2024-07-30T12": 0.51879622, + "2024-07-30T13": 0.5193961, + "2024-07-31": 0.5053285123268569, + "2024-07-31T00": 0.50567355, + "2024-07-31T05": 0.509115267877778, + "2024-07-30T23": 0.505153463, + "2024-07-30T19": 0.50481315, + "2024-07-30T16": 0.520633344, + "2024-07-30T17": 0.514040598, + "2024-07-30T18": 0.51033664, + "2024-07-30T20": 0.50324898, + "2024-07-30T15": 0.520223064, + "2024-07-31T03": 0.510992669, + "2024-07-30T21": 0.5028666041063875, + "2024-07-31T01": 0.5090037190659089, + "2024-07-31T07": 0.5174395439999999, + "2024-07-31T06": 0.5164501859999999, + "2024-07-31T02": 0.51109776, + "2024-07-30T22": 0.5054533760000001, + "2024-07-30T14": 0.51759646, + "2024-07-31T04": 0.508493194, + "2024-07-31T08": 0.51596771, + "2024-07-31T11": 0.51151851, + "2024-07-31T09": 0.514199384, + "2024-07-31T10": 0.51175424, + "2024-07-31T12": 0.51371216, + "2024-08-01": 0.4887406162643104, + "2024-07-31T14": 0.514468385, + "2024-07-31T23": 0.49534144, + "2024-07-31T13": 0.517256775, + "2024-07-31T21": 0.49401220399999995, + "2024-08-01T01": 0.49482675000000004, + "2024-07-31T18": 0.51183104, + "2024-07-31T19": 0.503428776, + "2024-07-31T16": 0.514699189, + "2024-08-01T02": 0.49294353600000007, + "2024-07-31T22": 0.495346395, + "2024-07-31T20": 0.496906131, + "2024-07-31T17": 0.513599618, + "2024-08-01T00": 0.495936287, + "2024-07-31T15": 0.5143890139999999, + "2024-08-01T07": 0.48638103, + "2024-08-01T06": 0.48936009599999997, + "2024-08-01T05": 0.489101466, + "2024-08-01T04": 0.48864577200000003, + "2024-08-01T03": 0.492438869, + "2024-08-01T08": 0.48674676, + "2024-08-01T09": 0.48871638, + "2024-08-01T10": 0.48714167799999997, + "2024-08-01T11": 0.496136908, + "2024-08-01T12": 0.49792567368448143, + "2024-08-01T13": 0.499360192, + "2024-08-01T14": 0.496891218, + "2024-08-02": 0.49307926330670404, + "2024-08-02T00": 0.49225657, + "2024-08-01T20": 0.47911560400000003, + "2024-08-01T21": 0.484753616, + "2024-08-02T04": 0.486057285, + "2024-08-01T19": 0.47367838, + "2024-08-01T16": 0.47776533, + "2024-08-02T02": 0.483079355, + "2024-08-01T23": 0.49154244, + "2024-08-02T01": 0.48996354400000003, + "2024-08-01T22": 0.489493383, + "2024-08-01T15": 0.48925525000000003, + "2024-08-01T18": 0.469767416, + "2024-08-02T03": 0.4832571688307159, + "2024-08-01T17": 0.47431549300000003, + "2024-08-02T05": 0.483778746, + "2024-08-02T06": 0.48013482, + "2024-08-02T07": 0.48156983569419537, + "2024-08-02T08": 0.482399276, + "2024-08-02T09": 0.48508247, + "2024-08-02T10": 0.484231704, + "2024-08-02T11": 0.4844754074650369, + "2024-08-02T12": 0.4832884441161683, + "2024-08-02T13": 0.483522558, + "2024-08-02T14": 0.48545844738607175, + "2024-08-02T15": 0.4675448780960035, + "2024-08-03": 0.4641005209605169, + "2024-08-02T16": 0.4665844742568176, + "2024-08-02T22": 0.46790195788355265, + "2024-08-02T23": 0.46563733782517186, + "2024-08-03T00": 0.4679131827166918, + "2024-08-03T01": 0.4627034756564782, + "2024-08-03T03": 0.468242128, + "2024-08-02T19": 0.46516352705720043, + "2024-08-02T18": 0.46681968560945897, + "2024-08-02T21": 0.4695755674918396, + "2024-08-02T17": 0.4639447428182218, + "2024-08-02T20": 0.46532981598048856, + "2024-08-03T02": 0.4635279643295213, + "2024-08-03T06": 0.46998715499999993, + "2024-08-03T19": 0.446851184, + "2024-08-03T10": 0.471384816, + "2024-08-03T09": 0.4695817, + "2024-08-03T15": 0.46438865100000004, + "2024-08-03T22": 0.45143399932771056, + "2024-08-03T05": 0.468779077, + "2024-08-03T08": 0.46964400300000003, + "2024-08-03T14": 0.46959456499999996, + "2024-08-03T18": 0.44728668, + "2024-08-03T17": 0.44967599999999996, + "2024-08-03T21": 0.44733143999999997, + "2024-08-03T12": 0.471741204, + "2024-08-03T20": 0.445001649, + "2024-08-03T04": 0.470024795, + "2024-08-03T16": 0.456157625, + "2024-08-03T11": 0.47120385600000003, + "2024-08-03T07": 0.471794639, + "2024-08-03T13": 0.46968039999999994, + "2024-08-04": 0.429726226045297, + "2024-08-03T23": 0.4522755042156144, + "2024-08-04T17": 0.42159941270875795, + "2024-08-04T13": 0.45243966041939515, + "2024-08-04T06": 0.4553092581257186, + "2024-08-04T12": 0.4513271852519509, + "2024-08-04T10": 0.45160659193857156, + "2024-08-04T16": 0.42871281178384224, + "2024-08-04T15": 0.4347297293753916, + "2024-08-04T00": 0.4543057389820615, + "2024-08-04T11": 0.4512905949401006, + "2024-08-04T01": 0.45548426637367634, + "2024-08-04T03": 0.45598471586303907, + "2024-08-04T04": 0.4566510882817632, + "2024-08-04T07": 0.4551248578022213, + "2024-08-04T08": 0.44993584949929727, + "2024-08-04T18": 0.41686371472005007, + "2024-08-04T09": 0.45166513423856447, + "2024-08-04T02": 0.4543702719196918, + "2024-08-04T05": 0.45377974047445097, + "2024-08-04T14": 0.4491211210386523, + "2024-08-05": 0.3705007201039541, + "2024-08-05T01": 0.40223963043293, + "2024-08-04T19": 0.42217956537649104, + "2024-08-04T22": 0.4268335562795971, + "2024-08-05T03": 0.37715630519648186, + "2024-08-05T02": 0.37716340695859957, + "2024-08-04T23": 0.42621697019566046, + "2024-08-05T00": 0.4219158198001334, + "2024-08-05T04": 0.366732423860356, + "2024-08-05T06": 0.36296659069085985, + "2024-08-04T20": 0.42762875410922996, + "2024-08-05T05": 0.3679153059936128, + "2024-08-04T21": 0.4294318552662062, + "2024-08-05T07": 0.3526080230918811, + "2024-08-05T08": 0.36901566139184655, + "2024-08-05T09": 0.3645910821014074, + "2024-08-05T10": 0.36549660886147906, + "2024-08-05T11": 0.3586654034056549, + "2024-08-05T12": 0.35925507782045796, + "2024-08-05T13": 0.3531951647949418, + "2024-08-05T14": 0.371962845268661, + "2024-08-05T15": 0.38058307015243487, + "2024-08-06": 0.39355932255676984, + "2024-08-05T19": 0.37964421000000004, + "2024-08-05T20": 0.38433842999999995, + "2024-08-05T21": 0.38596946200000004, + "2024-08-06T02": 0.402953064, + "2024-08-05T18": 0.38307613399999996, + "2024-08-05T23": 0.38627723999999997, + "2024-08-05T16": 0.38677055, + "2024-08-06T05": 0.4078602753884353, + "2024-08-05T17": 0.38572744500000006, + "2024-08-06T00": 0.39767952, + "2024-08-06T04": 0.40598261, + "2024-08-06T03": 0.40315716999999995, + "2024-08-05T22": 0.387365841, + "2024-08-06T01": 0.40382111, + "2024-08-06T06": 0.4114075678275423, + "2024-08-06T07": 0.413576911, + "2024-08-06T08": 0.408036524, + "2024-08-06T09": 0.4041212, + "2024-08-06T10": 0.40362912000000006, + "2024-08-06T11": 0.40170040000000007, + "2024-08-06T12": 0.40124840700000003, + "2024-08-06T13": 0.398811636, + "2024-08-06T14": 0.39881562299999995 + }, + "USD qtum": { + "2024-06-28": 2.611702785628263, + "2024-06-30": 2.5508336118136485, + "2024-07-15": 2.4882196595429398, + "2024-07-18": 2.697951533181367, + "2024-07-14": 2.3888119229580087, + "2024-07-11": 2.282016831538127, + "2024-07-19": 2.6609983518043063, + "2024-07-12": 2.2683064989415707, + "2024-07-24": 2.6471069590132523, + "2024-07-08": 2.1658211424408966, + "2024-07-07": 2.2250231866373453, + "2024-07-13": 2.349491710418767, + "2024-07-09": 2.2170029828476356, + "2024-07-02": 2.5636562758222654, + "2024-07-20": 2.73331128711279, + "2024-06-29": 2.5699319363967215, + "2024-07-21": 2.7396381670113477, + "2024-07-23": 2.6564133301983888, + "2024-07-10": 2.26820000883655, + "2024-07-01": 2.5939256086215234, + "2024-06-26": 2.5652291055364005, + "2024-07-17": 2.6866398887850664, + "2024-07-22": 2.707407393628289, + "2024-07-04": 2.29937335319171, + "2024-06-25": 2.5537796806502833, + "2024-07-26": 2.5344928463280185, + "2024-07-03": 2.509908726246432, + "2024-07-05": 2.03267472, + "2024-07-25": 2.4954272611980644, + "2024-07-16": 2.561945965395616, + "2024-07-06": 2.1862186, + "2024-06-27": 2.5894054838265057, + "2024-07-22T13": 2.7123796799999997, + "2024-07-25T10": 2.4811064800000002, + "2024-07-26T06": 2.5334931999999997, + "2024-07-24T14": 2.6734009500000004, + "2024-07-21T20": 2.7807784000000004, + "2024-07-21T07": 2.7167876399999997, + "2024-07-21T14": 2.72292548, + "2024-07-22T23": 2.6788034, + "2024-07-24T07": 2.6359209200000002, + "2024-07-20T11": 2.72933672, + "2024-07-26T08": 2.5325947199999996, + "2024-07-25T20": 2.39642472, + "2024-07-21T02": 2.77777756, + "2024-07-20T04": 2.7522929699999996, + "2024-07-20T03": 2.74790274180002, + "2024-07-25T13": 2.46321152, + "2024-07-21T06": 2.7287911199999995, + "2024-07-20T12": 2.7303099200000003, + "2024-07-24T02": 2.6200262000000003, + "2024-07-24T17": 2.66197338, + "2024-07-25T06": 2.504541818548066, + "2024-07-25T22": 2.45838525, + "2024-07-22T07": 2.6824023, + "2024-07-22T22": 2.69288836, + "2024-07-26T03": 2.5145976, + "2024-07-23T01": 2.7142714, + "2024-07-24T03": 2.62615756, + "2024-07-23T21": 2.6064370358641415, + "2024-07-19T20": 2.74223345, + "2024-07-23T22": 2.5994678200000005, + "2024-07-21T23": 2.7952236000000004, + "2024-07-19T16": 2.715543, + "2024-07-22T20": 2.726635728, + "2024-07-23T10": 2.6879731199999997, + "2024-07-19T17": 2.7131248816001166, + "2024-07-22T09": 2.693, + "2024-07-24T04": 2.62507875, + "2024-07-22T06": 2.6951617, + "2024-07-24T21": 2.6027397, + "2024-07-20T21": 2.7232521199999997, + "2024-07-21T15": 2.73390189, + "2024-07-20T09": 2.73850535, + "2024-07-25T14": 2.46111368, + "2024-07-19T11": 2.6394456, + "2024-07-23T20": 2.6095218, + "2024-07-25T03": 2.4965255699999997, + "2024-07-20T01": 2.733366, + "2024-07-25T23": 2.45823771, + "2024-07-20T16": 2.7875981226159183, + "2024-07-22T15": 2.69224228, + "2024-07-23T16": 2.5984416599999998, + "2024-07-22T02": 2.763, + "2024-07-21T04": 2.7727761600000003, + "2024-07-23T09": 2.717, + "2024-07-20T10": 2.73925948, + "2024-07-22T19": 2.713882282446509, + "2024-07-20T00": 2.7443714999999997, + "2024-07-20T19": 2.7162488999999996, + "2024-07-26T05": 2.5195212, + "2024-07-19T14": 2.675030000047191, + "2024-07-21T00": 2.76680214, + "2024-07-22T12": 2.7202176, + "2024-07-24T06": 2.61602616, + "2024-07-25T01": 2.52069748, + "2024-07-20T22": 2.7271721799999997, + "2024-07-19T15": 2.6770535399999997, + "2024-07-21T13": 2.71984289, + "2024-07-25T07": 2.50637325, + "2024-07-21T08": 2.72979141, + "2024-07-23T06": 2.64539675, + "2024-07-22T16": 2.70340545, + "2024-07-24T11": 2.652, + "2024-07-24T01": 2.6050520999999995, + "2024-07-23T00": 2.6778030999999998, + "2024-07-19T12": 2.64539142, + "2024-07-25T17": 2.4714808799999997, + "2024-07-25T19": 2.41529936, + "2024-07-19T21": 2.74239791, + "2024-07-23T08": 2.6780803399999997, + "2024-07-21T21": 2.7825285799999997, + "2024-07-21T11": 2.71273224, + "2024-07-22T14": 2.68540275, + "2024-07-20T23": 2.7307916999999997, + "2024-07-20T08": 2.733366, + "2024-07-20T02": 2.73422985, + "2024-07-24T05": 2.6072085600000006, + "2024-07-24T16": 2.6512385899999997, + "2024-07-21T01": 2.7770271199999996, + "2024-07-24T13": 2.662, + "2024-07-25T04": 2.5063738501025306, + "2024-07-19T13": 2.6554688000000004, + "2024-07-25T12": 2.4830967014893606, + "2024-07-19T22": 2.7393416200000003, + "2024-07-26T07": 2.5395174, + "2024-07-25T02": 2.50550869271579, + "2024-07-21T12": 2.721114630527391, + "2024-07-23T18": 2.58828468, + "2024-07-23T11": 2.6710534200000002, + "2024-07-19T10": 2.6384458100000003, + "2024-07-19T19": 2.7250896, + "2024-07-25T11": 2.48802929, + "2024-07-22T08": 2.6922103053031963, + "2024-07-23T19": 2.6138622899999997, + "2024-07-22T21": 2.70978561, + "2024-07-21T09": 2.7307644, + "2024-07-21T22": 2.80028, + "2024-07-22T04": 2.7517207314535783, + "2024-07-25T16": 2.47545528, + "2024-07-19T23": 2.741508526524545, + "2024-07-20T06": 2.7390952, + "2024-07-23T02": 2.7342187200000003, + "2024-07-23T14": 2.6664265599999997, + "2024-07-23T03": 2.71819026, + "2024-07-25T08": 2.50627297, + "2024-07-24T15": 2.66150559, + "2024-07-19T09": 2.6114776, + "2024-07-20T15": 2.7728593200000002, + "2024-07-23T23": 2.6022341799999995, + "2024-07-23T12": 2.6534775400000004, + "2024-07-22T10": 2.7050270500000004, + "2024-07-21T10": 2.72173467, + "2024-07-22T00": 2.8041402000000004, + "2024-07-24T22": 2.6045311, + "2024-07-24T19": 2.6209737900000003, + "2024-07-24T09": 2.654, + "2024-07-23T04": 2.6932693, + "2024-07-23T05": 2.6443586519999998, + "2024-07-25T18": 2.4335120235620984, + "2024-07-25T15": 2.4884524199999998, + "2024-07-26T01": 2.4835032, + "2024-07-22T01": 2.77733324, + "2024-07-26T02": 2.4965006, + "2024-07-24T18": 2.6385516722215283, + "2024-07-21T19": 2.7370670399999995, + "2024-07-25T05": 2.5103973600000002, + "2024-07-22T18": 2.7095418000000002, + "2024-07-24T00": 2.6133746129582267, + "2024-07-24T08": 2.65397346, + "2024-07-24T20": 2.6359736400000005, + "2024-07-24T23": 2.5975323599999998, + "2024-07-22T17": 2.6953773, + "2024-07-21T17": 2.7081640099999995, + "2024-07-24T12": 2.6692459158062167, + "2024-07-23T13": 2.6464233599999996, + "2024-07-21T05": 2.75277056, + "2024-07-20T05": 2.7420161177027707, + "2024-07-21T03": 2.77777756, + "2024-07-26T00": 2.4764798299999997, + "2024-07-20T20": 2.706082, + "2024-07-22T03": 2.76311052, + "2024-07-25T21": 2.43543972, + "2024-07-21T16": 2.72300714, + "2024-07-20T17": 2.7991192, + "2024-07-22T11": 2.7100812999999997, + "2024-07-25T00": 2.60253146, + "2024-07-20T13": 2.73714912, + "2024-07-23T07": 2.6522652, + "2024-07-22T05": 2.72416344, + "2024-07-20T07": 2.7452348, + "2024-07-21T18": 2.67314896, + "2024-07-23T17": 2.5662566, + "2024-07-20T14": 2.7570472800000005, + "2024-07-26T04": 2.5166476199999996, + "2024-07-24T10": 2.684, + "2024-07-20T18": 2.72136, + "2024-07-23T15": 2.657620628921004, + "2024-07-19T18": 2.7157058999999997, + "2024-07-25T09": 2.5030985599999998, + "latest": 2.09, + "2024-07-26T09": 2.53354388, + "2024-07-26T10": 2.527330548051504, + "2024-07-26T11": 2.5293928, + "2024-07-26T12": 2.5295699000000003, + "2024-07-26T13": 2.5295952, + "2024-07-26T14": 2.5347718500000003, + "2024-07-26T17": 2.56694866, + "2024-07-26T16": 2.5658716999999998, + "2024-07-26T15": 2.5467962400000004, + "2024-07-26T18": 2.5709999999999997, + "2024-07-27": 2.718259136853663, + "2024-07-28": 2.7079458400000003, + "2024-07-28T05": 2.6919730800000004, + "2024-07-26T21": 2.58, + "2024-07-27T02": 2.5980779399999996, + "2024-07-28T01": 2.7138159089772054, + "2024-07-27T10": 2.6292103200000003, + "2024-07-28T02": 2.7218639, + "2024-07-27T19": 2.7106775, + "2024-07-27T09": 2.6282365199999997, + "2024-07-27T06": 2.6290525799999998, + "2024-07-27T18": 2.7524128, + "2024-07-26T22": 2.59210368, + "2024-07-27T13": 2.6543450199999996, + "2024-07-27T12": 2.63744829, + "2024-07-27T16": 2.6632663, + "2024-07-27T05": 2.63105262, + "2024-07-26T23": 2.5951038, + "2024-07-26T20": 2.5789999999999997, + "2024-07-27T08": 2.64313215, + "2024-07-28T03": 2.7164709493169714, + "2024-07-27T01": 2.6041041600000003, + "2024-07-28T09": 2.73694526, + "2024-07-28T10": 2.727118184, + "2024-07-27T00": 2.60210408, + "2024-07-28T00": 2.69897301, + "2024-07-27T04": 2.61305226, + "2024-07-27T14": 2.655274560397309, + "2024-07-27T07": 2.638, + "2024-07-27T11": 2.6314472700000002, + "2024-07-27T22": 2.74775268, + "2024-07-27T03": 2.60802608, + "2024-07-27T20": 2.72313615, + "2024-07-27T23": 2.73080883, + "2024-07-28T08": 2.72594548, + "2024-07-27T21": 2.74191774, + "2024-07-28T07": 2.75394492, + "2024-07-27T15": 2.650265, + "2024-07-26T19": 2.583, + "2024-07-28T04": 2.7120372226082514, + "2024-07-28T06": 2.73194536, + "2024-07-27T17": 2.7283273599999993, + "2024-07-29": 2.7436508210089117, + "2024-07-28T20": 2.6797052, + "2024-07-28T16": 2.6589734099999998, + "2024-07-29T07": 2.7475053600000003, + "2024-07-28T23": 2.6865816011758845, + "2024-07-28T15": 2.6559734400000004, + "2024-07-28T18": 2.6877043199999995, + "2024-07-29T04": 2.7156740800000003, + "2024-07-29T06": 2.7356519603061002, + "2024-07-28T21": 2.6747324999999997, + "2024-07-29T03": 2.72370036, + "2024-07-28T12": 2.6929192100000003, + "2024-07-29T05": 2.7315779122069386, + "2024-07-28T17": 2.6697062999999996, + "2024-07-29T00": 2.715, + "2024-07-29T01": 2.708097544302115, + "2024-07-28T22": 2.6594044350985437, + "2024-07-28T19": 2.6867044300000003, + "2024-07-28T14": 2.661, + "2024-07-29T02": 2.71780974, + "2024-07-29T08": 2.7554488000000004, + "2024-07-28T11": 2.7148914, + "2024-07-28T13": 2.6749465, + "2024-07-29T09": 2.76139236, + "2024-07-29T10": 2.7694183, + "2024-07-29T11": 2.77741662, + "2024-07-29T12": 2.77575016, + "2024-07-29T13": 2.77874989, + "2024-07-30": 2.729412867410969, + "2024-07-29T23": 2.73264471, + "2024-07-29T18": 2.7364526000000002, + "2024-07-29T21": 2.72278216, + "2024-07-29T22": 2.73264471, + "2024-07-29T17": 2.72640006, + "2024-07-29T15": 2.749285, + "2024-07-30T01": 2.75639346, + "2024-07-29T19": 2.74956, + "2024-07-30T04": 2.764447, + "2024-07-29T14": 2.77058435, + "2024-07-29T20": 2.74769772, + "2024-07-30T03": 2.7546142999999996, + "2024-07-30T00": 2.7475328400000003, + "2024-07-29T16": 2.73812352, + "2024-07-30T02": 2.7394520000000004, + "2024-07-30T09": 2.74839522, + "2024-07-30T08": 2.75022972, + "2024-07-30T06": 2.75539368, + "2024-07-30T05": 2.7594755999999996, + "2024-07-30T07": 2.76028214, + "2024-07-30T10": 2.74553318, + "2024-07-30T11": 2.71642943, + "2024-07-30T12": 2.7234552, + "2024-07-30T13": 2.724340229368808, + "2024-07-31": 2.6743426113823676, + "2024-07-31T00": 2.667333, + "2024-07-31T05": 2.65041678, + "2024-07-30T23": 2.6747277959238684, + "2024-07-30T19": 2.66401395, + "2024-07-30T16": 2.7291264, + "2024-07-30T17": 2.6951642399999995, + "2024-07-30T18": 2.68713984, + "2024-07-30T20": 2.648057797456716, + "2024-07-30T15": 2.71607622, + "2024-07-31T03": 2.6774376199999996, + "2024-07-30T21": 2.64831126, + "2024-07-31T01": 2.685982082, + "2024-07-31T07": 2.7031617599999995, + "2024-07-31T06": 2.6942184499999997, + "2024-07-31T02": 2.689462, + "2024-07-30T22": 2.668407807857742, + "2024-07-30T14": 2.7074584, + "2024-07-31T04": 2.66444035, + "2024-07-31T08": 2.6967859, + "2024-07-31T11": 2.6665326, + "2024-07-31T09": 2.68795129, + "2024-07-31T10": 2.6767257853094613, + "2024-07-31T12": 2.6685048, + "2024-08-01": 2.4467014804564275, + "2024-07-31T14": 2.6667994000000004, + "2024-07-31T23": 2.57017728, + "2024-07-31T13": 2.6777408700000005, + "2024-07-31T21": 2.5780199799999997, + "2024-08-01T01": 2.56350246, + "2024-07-31T18": 2.6751169200000002, + "2024-07-31T19": 2.6041143, + "2024-07-31T16": 2.66795909, + "2024-08-01T02": 2.5586688, + "2024-07-31T22": 2.58819741, + "2024-07-31T20": 2.57199653, + "2024-07-31T17": 2.6711807615347762, + "2024-08-01T00": 2.5697517019999996, + "2024-07-31T15": 2.66390735, + "2024-08-01T07": 2.50587185, + "2024-08-01T06": 2.5187652000000003, + "2024-08-01T05": 2.52146097, + "2024-08-01T04": 2.5186896, + "2024-08-01T03": 2.5566442599999997, + "2024-08-01T08": 2.51069376, + "2024-08-01T09": 2.50754478, + "2024-08-01T10": 2.51266758, + "2024-08-01T11": 2.51766493, + "2024-08-01T12": 2.52768492, + "2024-08-01T13": 2.5187904, + "2024-08-01T14": 2.4869550400000002, + "2024-08-01T15": 2.4417785000000003, + "2024-08-02": 2.528353329744979, + "2024-08-02T00": 2.5257248, + "2024-08-01T20": 2.430248421174609, + "2024-08-01T21": 2.4737298773493044, + "2024-08-02T04": 2.48074047, + "2024-08-01T19": 2.4093468, + "2024-08-01T16": 2.4023171999999997, + "2024-08-02T02": 2.4758441399999995, + "2024-08-01T17": 2.38106977, + "2024-08-01T23": 2.52864617, + "2024-08-02T01": 2.49877411, + "2024-08-01T22": 2.52090591, + "2024-08-01T18": 2.3937956799999998, + "2024-08-02T03": 2.47572024, + "2024-08-02T05": 2.46485371, + "2024-08-02T06": 2.44514028, + "2024-08-02T07": 2.44202036, + "2024-08-02T08": 2.43497729, + "2024-08-02T09": 2.45089042, + "2024-08-02T10": 2.4571311600000003, + "2024-08-02T11": 2.464383460839038, + "2024-08-02T12": 2.4502835999999997, + "2024-08-02T13": 2.47007184, + "2024-08-02T14": 2.491549318475699, + "2024-08-02T15": 2.35369112, + "2024-08-03": 2.22526430325539, + "2024-08-02T16": 2.3727503854294194, + "2024-08-02T22": 2.33633354, + "2024-08-02T23": 2.3370048, + "2024-08-03T00": 2.3269477, + "2024-08-03T01": 2.28119068, + "2024-08-03T03": 2.31923682, + "2024-08-02T19": 2.35542978, + "2024-08-02T18": 2.369628, + "2024-08-02T21": 2.3279696999999997, + "2024-08-02T17": 2.3857314, + "2024-08-02T20": 2.35642869, + "2024-08-03T02": 2.30894816, + "2024-08-03T06": 2.33345376, + "2024-08-03T19": 2.17230428, + "2024-08-03T10": 2.3269504800000003, + "2024-08-03T09": 2.3239298600000002, + "2024-08-03T15": 2.27647374, + "2024-08-03T22": 2.21173859, + "2024-08-03T05": 2.3254159199999997, + "2024-08-03T08": 2.32674087, + "2024-08-03T14": 2.325387515, + "2024-08-03T18": 2.1754761, + "2024-08-03T17": 2.1884232, + "2024-08-03T21": 2.1806908, + "2024-08-03T12": 2.3243600670182394, + "2024-08-03T20": 2.16754677, + "2024-08-03T04": 2.32464973, + "2024-08-03T16": 2.2363215, + "2024-08-03T11": 2.32904196, + "2024-08-03T07": 2.3416917059999998, + "2024-08-03T13": 2.3231688978279106, + "2024-08-04": 2.151899567876284, + "2024-08-03T23": 2.1837764, + "2024-08-04T17": 2.07028024, + "2024-08-04T13": 2.2028980000000002, + "2024-08-04T06": 2.2236205, + "2024-08-04T12": 2.2028980000000002, + "2024-08-04T10": 2.1958575600000003, + "2024-08-04T16": 2.08949448, + "2024-08-04T15": 2.11458228, + "2024-08-04T00": 2.2007008200000002, + "2024-08-04T11": 2.202776011, + "2024-08-04T01": 2.19170613, + "2024-08-04T03": 2.2226211200000003, + "2024-08-04T04": 2.21964519, + "2024-08-04T07": 2.2106949200000003, + "2024-08-04T08": 2.19665922, + "2024-08-04T18": 2.077459993350623, + "2024-08-04T09": 2.203384346033559, + "2024-08-04T02": 2.2166691999999997, + "2024-08-04T05": 2.21964519, + "2024-08-04T14": 2.13208281, + "2024-08-05": 1.9413455764271443, + "2024-08-05T01": 2.042170359428117, + "2024-08-04T19": 2.118056374171132, + "2024-08-04T22": 2.1459424268954908, + "2024-08-05T03": 1.9673115681918822, + "2024-08-05T02": 1.9586234554173862, + "2024-08-04T23": 2.16127221059093, + "2024-08-05T00": 2.136207908012205, + "2024-08-05T04": 1.9291558096890566, + "2024-08-05T06": 1.9338895621943084, + "2024-08-04T20": 2.157604176219299, + "2024-08-05T05": 1.9429512024909217, + "2024-08-04T21": 2.157510209538136, + "2024-08-05T07": 1.8916564632082364, + "2024-08-05T08": 1.9811070920872127, + "2024-08-05T09": 1.9564172359352696, + "2024-08-05T10": 1.954058521013848, + "2024-08-05T11": 1.8392390699999999, + "2024-08-05T12": 1.8667248635748672, + "2024-08-05T13": 1.8179307997944427, + "2024-08-05T14": 1.97253244, + "2024-08-05T15": 2.01827071, + "2024-08-06": 2.056720705912597, + "2024-08-05T19": 1.97676401185944, + "2024-08-05T20": 1.9961996, + "2024-08-05T21": 2.00936162, + "2024-08-06T02": 2.05378014, + "2024-08-05T18": 1.9959177, + "2024-08-05T23": 2.0034006, + "2024-08-05T16": 2.0374252, + "2024-08-06T05": 2.0652177600000003, + "2024-08-05T17": 2.02919652, + "2024-08-06T00": 2.0554110000000003, + "2024-08-06T04": 2.0589261, + "2024-08-06T03": 2.05280028, + "2024-08-05T22": 2.01434238, + "2024-08-06T01": 2.0736219, + "2024-08-06T06": 2.083419787, + "2024-08-06T07": 2.07839159, + "2024-08-06T08": 2.0481882756847964, + "2024-08-06T09": 2.0346102, + "2024-08-06T10": 2.0316986306466696, + "2024-08-06T11": 2.02950725, + "2024-08-06T12": 2.02975073, + "2024-08-06T13": 2.0185866889641515, + "2024-08-06T14": 2.0185973660162535 + }, + "USD ravencoin": { + "2024-06-28": 0.019964794908110508, + "2024-06-30": 0.019408299574816955, + "2024-07-15": 0.019069347382812154, + "2024-07-18": 0.020139638205438376, + "2024-07-14": 0.01804613363730689, + "2024-07-11": 0.017700130551369344, + "2024-07-19": 0.020069987568850967, + "2024-07-12": 0.017482362258156373, + "2024-07-24": 0.01926077825107489, + "2024-07-08": 0.01685860778465075, + "2024-07-07": 0.017250179761570433, + "2024-07-13": 0.017673698817837213, + "2024-07-09": 0.017390023397257724, + "2024-07-02": 0.019604430344523204, + "2024-07-20": 0.02026972425948211, + "2024-06-29": 0.019389307771882025, + "2024-07-21": 0.02005659390401767, + "2024-07-23": 0.019653057849653523, + "2024-07-10": 0.01757000006844995, + "2024-07-01": 0.019886430060706405, + "2024-06-26": 0.0196840846017193, + "2024-07-17": 0.019974757475442213, + "2024-07-22": 0.01990299487742998, + "2024-07-04": 0.017597550955978276, + "2024-06-25": 0.01992048103145211, + "2024-07-26": 0.01895845045424675, + "2024-07-03": 0.018854862541392972, + "2024-07-05": 0.015607502400000002, + "2024-07-25": 0.018055855904341764, + "2024-07-16": 0.019477191700996738, + "2024-07-06": 0.017081708, + "2024-06-27": 0.01956040099279436, + "2024-07-22T13": 0.019902786000000002, + "2024-07-25T10": 0.0179835236, + "2024-07-26T06": 0.018906218, + "2024-07-24T14": 0.019522928000000002, + "2024-07-21T20": 0.0201156308, + "2024-07-21T07": 0.020035808699999998, + "2024-07-21T14": 0.020046813599999998, + "2024-07-22T23": 0.019525855999999998, + "2024-07-24T07": 0.019249422500000002, + "2024-07-20T11": 0.019989790200000003, + "2024-07-26T08": 0.018946968, + "2024-07-25T20": 0.0180356704, + "2024-07-21T02": 0.0203757036, + "2024-07-20T04": 0.0203395551, + "2024-07-20T03": 0.020329144000000004, + "2024-07-25T13": 0.0179742464, + "2024-07-21T06": 0.020105829, + "2024-07-20T12": 0.0201296576, + "2024-07-24T02": 0.0190201902, + "2024-07-24T17": 0.019239807600000002, + "2024-07-25T06": 0.0180353096, + "2024-07-25T22": 0.018465382500000002, + "2024-07-22T07": 0.0197929685, + "2024-07-22T22": 0.0196464812, + "2024-07-26T03": 0.018747, + "2024-07-23T01": 0.01980198, + "2024-07-24T03": 0.0191211472, + "2024-07-23T21": 0.0194129115, + "2024-07-19T20": 0.0204592025, + "2024-07-23T22": 0.0192434632, + "2024-07-21T23": 0.020321625600000004, + "2024-07-19T16": 0.020324064, + "2024-07-22T20": 0.0199675848, + "2024-07-23T10": 0.020099799, + "2024-07-19T17": 0.0202526325, + "2024-07-22T09": 0.01988, + "2024-07-24T04": 0.019101147642310825, + "2024-07-22T06": 0.0198911934, + "2024-07-24T21": 0.018728127, + "2024-07-20T21": 0.0201892828, + "2024-07-21T15": 0.020106633, + "2024-07-20T09": 0.0201810935, + "2024-07-25T14": 0.0178735632, + "2024-07-19T11": 0.019795842, + "2024-07-23T20": 0.019443888, + "2024-07-25T03": 0.018096561, + "2024-07-20T01": 0.020320155, + "2024-07-25T23": 0.018494265, + "2024-07-20T16": 0.020287347918386614, + "2024-07-22T15": 0.0198417856, + "2024-07-23T16": 0.0193732929, + "2024-07-22T02": 0.02037, + "2024-07-21T04": 0.020255670000000003, + "2024-07-23T09": 0.02004, + "2024-07-20T10": 0.0200892368, + "2024-07-22T19": 0.0199853946, + "2024-07-20T00": 0.02039185362213683, + "2024-07-20T19": 0.0203293472, + "2024-07-26T05": 0.018786429900000002, + "2024-07-19T14": 0.02017, + "2024-07-21T00": 0.020300391507754378, + "2024-07-22T12": 0.019961596800000002, + "2024-07-24T06": 0.019140191400000003, + "2024-07-25T01": 0.018097828, + "2024-07-20T22": 0.020288720399999998, + "2024-07-19T15": 0.020180532956631962, + "2024-07-21T13": 0.0199361783, + "2024-07-25T07": 0.01805633590049985, + "2024-07-21T08": 0.0200958261, + "2024-07-23T06": 0.019442916, + "2024-07-22T16": 0.019862979, + "2024-07-24T11": 0.01946, + "2024-07-24T01": 0.0190403808, + "2024-07-23T00": 0.019535859, + "2024-07-19T12": 0.0198054437, + "2024-07-25T17": 0.018196178, + "2024-07-25T19": 0.0180447655, + "2024-07-19T21": 0.0204704346, + "2024-07-23T08": 0.0199205976, + "2024-07-21T21": 0.0202438456, + "2024-07-21T11": 0.0200354081, + "2024-07-22T14": 0.019722958000000002, + "2024-07-20T23": 0.020275878299999998, + "2024-07-20T08": 0.020210099999999998, + "2024-07-20T02": 0.020299130500000002, + "2024-07-24T05": 0.0190115208, + "2024-07-24T16": 0.0191517235, + "2024-07-21T01": 0.020388012284876657, + "2024-07-24T13": 0.01968, + "2024-07-25T04": 0.017978503679338228, + "2024-07-19T13": 0.019866026, + "2024-07-25T12": 0.0180533178, + "2024-07-19T22": 0.020440010700000004, + "2024-07-26T07": 0.0190063881, + "2024-07-25T02": 0.018116376, + "2024-07-21T12": 0.020026006, + "2024-07-23T18": 0.0192621186, + "2024-07-23T11": 0.0199803996, + "2024-07-19T10": 0.0197758462, + "2024-07-19T19": 0.020388151999999996, + "2024-07-25T11": 0.0180429605, + "2024-07-22T08": 0.019831586400000004, + "2024-07-23T19": 0.0194364119, + "2024-07-22T21": 0.019825747799999998, + "2024-07-21T09": 0.020145639200000003, + "2024-07-21T22": 0.02040204, + "2024-07-22T04": 0.0202216176, + "2024-07-25T16": 0.0180360312, + "2024-07-19T23": 0.020450219999999998, + "2024-07-20T06": 0.020288111999999997, + "2024-07-23T02": 0.019911592800000003, + "2024-07-23T14": 0.019973195200000002, + "2024-07-23T03": 0.019811386700000003, + "2024-07-25T08": 0.018084753899999997, + "2024-07-24T15": 0.019303667, + "2024-07-19T09": 0.019686062, + "2024-07-20T15": 0.0202962899, + "2024-07-23T23": 0.0192625084662031, + "2024-07-23T12": 0.0199935982, + "2024-07-22T10": 0.0199601996, + "2024-07-21T10": 0.0200454108, + "2024-07-22T00": 0.0203910195, + "2024-07-24T22": 0.0187566232, + "2024-07-24T19": 0.018959810400000002, + "2024-07-24T09": 0.01949, + "2024-07-23T04": 0.019621962, + "2024-07-23T05": 0.019301158, + "2024-07-25T18": 0.0179853226, + "2024-07-25T15": 0.0181160136, + "2024-07-26T01": 0.018586282, + "2024-07-22T01": 0.0203324396, + "2024-07-26T02": 0.018626274, + "2024-07-24T18": 0.019081907999999998, + "2024-07-21T19": 0.019787714199999997, + "2024-07-25T05": 0.0179656872, + "2024-07-22T18": 0.019973994000000002, + "2024-07-24T00": 0.019021711799999997, + "2024-07-24T08": 0.0194498055, + "2024-07-24T20": 0.018959810400000002, + "2024-07-24T23": 0.018645973382561843, + "2024-07-22T17": 0.0199227888, + "2024-07-21T17": 0.019958578499999997, + "2024-07-24T12": 0.0195705871, + "2024-07-23T13": 0.0197731632, + "2024-07-21T05": 0.0201956532, + "2024-07-20T05": 0.020319748800000002, + "2024-07-21T03": 0.020325689600000002, + "2024-07-26T00": 0.0185361066, + "2024-07-20T20": 0.020268104, + "2024-07-22T03": 0.020381152549675336, + "2024-07-25T21": 0.018365774900000003, + "2024-07-21T16": 0.0200874296, + "2024-07-20T17": 0.020328128, + "2024-07-22T11": 0.0199705991, + "2024-07-25T00": 0.018696634000000004, + "2024-07-20T13": 0.0200984378, + "2024-07-23T07": 0.019511951, + "2024-07-22T05": 0.020101206, + "2024-07-20T07": 0.020289126, + "2024-07-21T18": 0.0195484022, + "2024-07-23T17": 0.019121912, + "2024-07-20T14": 0.020207676, + "2024-07-26T04": 0.0187273778, + "2024-07-24T10": 0.01953, + "2024-07-20T18": 0.020380185, + "2024-07-23T15": 0.019903383, + "2024-07-19T18": 0.020295275399999996, + "2024-07-25T09": 0.0181234732, + "latest": 0.01517878, + "2024-07-26T09": 0.018966585400000003, + "2024-07-26T10": 0.0189248889, + "2024-07-26T11": 0.0189854424, + "2024-07-26T12": 0.0189667751, + "2024-07-26T13": 0.0190069584, + "2024-07-26T14": 0.018970815988287103, + "2024-07-26T17": 0.019049619, + "2024-07-26T16": 0.019039048000000003, + "2024-07-26T15": 0.0189684824, + "2024-07-26T18": 0.01904, + "2024-07-27": 0.019151825780260357, + "2024-07-28": 0.019039619200000003, + "2024-07-28T05": 0.0190298097, + "2024-07-26T21": 0.01903, + "2024-07-27T02": 0.018990569699999998, + "2024-07-28T01": 0.0192886497, + "2024-07-27T10": 0.0190715256, + "2024-07-28T02": 0.019309034500000002, + "2024-07-27T19": 0.019124780000000004, + "2024-07-27T09": 0.0190717163, + "2024-07-27T06": 0.0190703814, + "2024-07-27T18": 0.019312896500000003, + "2024-07-26T22": 0.0190807632, + "2024-07-27T13": 0.019342514199999997, + "2024-07-27T12": 0.019233269100000002, + "2024-07-27T16": 0.019201919999999997, + "2024-07-27T05": 0.019090381799999997, + "2024-07-26T23": 0.019100764, + "2024-07-26T20": 0.01902, + "2024-07-27T08": 0.019040952000000003, + "2024-07-28T03": 0.019299614, + "2024-07-27T01": 0.0189907596, + "2024-07-28T09": 0.0190596188, + "2024-07-28T10": 0.019129426100000003, + "2024-07-27T00": 0.0190607624, + "2024-07-28T00": 0.0191298087, + "2024-07-27T04": 0.019050380999999998, + "2024-07-27T14": 0.019271926999999998, + "2024-07-27T07": 0.01914, + "2024-07-27T11": 0.0190932453, + "2024-07-27T22": 0.0193682567, + "2024-07-27T03": 0.019040190400000004, + "2024-07-27T20": 0.01907869965036629, + "2024-07-27T23": 0.019294174260497992, + "2024-07-28T08": 0.019099618, + "2024-07-27T21": 0.019369418899999997, + "2024-07-28T07": 0.019049619, + "2024-07-27T15": 0.019181918, + "2024-07-26T19": 0.0191, + "2024-07-28T04": 0.0191296174, + "2024-07-28T06": 0.0190696186, + "2024-07-27T17": 0.019112293199999998, + "2024-07-29": 0.01904757585284977, + "2024-07-28T20": 0.0187179408, + "2024-07-28T16": 0.0188198118, + "2024-07-29T07": 0.0191065602, + "2024-07-28T23": 0.0185796284, + "2024-07-28T15": 0.0188598114, + "2024-07-28T18": 0.018847926499999997, + "2024-07-29T04": 0.01899772, + "2024-07-29T06": 0.019147563976557685, + "2024-07-28T21": 0.018548145000000002, + "2024-07-29T03": 0.019067902299999998, + "2024-07-28T12": 0.0190694279, + "2024-07-29T05": 0.019037715200000003, + "2024-07-28T17": 0.018797932, + "2024-07-29T00": 0.01877, + "2024-07-29T01": 0.0188011142450563, + "2024-07-28T22": 0.018519444399999998, + "2024-07-28T19": 0.0188079309, + "2024-07-28T14": 0.0189, + "2024-07-29T02": 0.0189386742, + "2024-07-29T08": 0.019116176000000002, + "2024-07-28T11": 0.019179232799999998, + "2024-07-28T13": 0.019049619, + "2024-07-29T09": 0.019145787, + "2024-07-29T10": 0.0191259827, + "2024-07-29T11": 0.0191559764, + "2024-07-29T12": 0.019168274699999998, + "2024-07-29T13": 0.0192082711, + "2024-07-30": 0.018496021262675064, + "2024-07-29T23": 0.0186275781, + "2024-07-29T18": 0.018836231999999998, + "2024-07-29T21": 0.0187085032, + "2024-07-29T22": 0.018757561199999998, + "2024-07-29T17": 0.0188258574, + "2024-07-29T15": 0.018895086, + "2024-07-30T01": 0.0187258794, + "2024-07-29T19": 0.0188869776, + "2024-07-30T04": 0.018726254, + "2024-07-29T14": 0.019107133499999998, + "2024-07-29T20": 0.018847926499999997, + "2024-07-30T03": 0.0187573736, + "2024-07-30T00": 0.018596837999999997, + "2024-07-29T16": 0.019033907200000002, + "2024-07-30T02": 0.018616276, + "2024-07-30T09": 0.0186558948, + "2024-07-30T08": 0.0187347528, + "2024-07-30T06": 0.0186758904, + "2024-07-30T05": 0.0186464565, + "2024-07-30T07": 0.018765119799999997, + "2024-07-30T10": 0.0186568278, + "2024-07-30T11": 0.0186360856, + "2024-07-30T12": 0.018606278, + "2024-07-30T13": 0.018586282, + "2024-07-31": 0.018283780407262414, + "2024-07-31T00": 0.018195450000000002, + "2024-07-31T05": 0.018245985, + "2024-07-30T23": 0.0182247133, + "2024-07-30T19": 0.0181232919, + "2024-07-30T16": 0.01849408, + "2024-07-30T17": 0.0183543084, + "2024-07-30T18": 0.018264153600000003, + "2024-07-30T20": 0.0179952968662194, + "2024-07-30T15": 0.0184337304, + "2024-07-31T03": 0.018256165399999996, + "2024-07-30T21": 0.01799532, + "2024-07-31T01": 0.018295791000000002, + "2024-07-31T07": 0.0184842681, + "2024-07-31T06": 0.0184546466, + "2024-07-31T02": 0.018286342, + "2024-07-30T22": 0.0181647307, + "2024-07-30T14": 0.01844631, + "2024-07-31T04": 0.0182261717, + "2024-07-31T08": 0.018431702, + "2024-07-31T11": 0.0182999295, + "2024-07-31T09": 0.0184428045, + "2024-07-31T10": 0.018341192000000003, + "2024-07-31T12": 0.018339724, + "2024-08-01": 0.017550685456215222, + "2024-07-31T14": 0.01839172, + "2024-07-31T23": 0.0178742784, + "2024-07-31T13": 0.018451323800000002, + "2024-07-31T21": 0.0177632474, + "2024-08-01T01": 0.017893735, + "2024-07-31T18": 0.0181839973, + "2024-07-31T19": 0.018093846, + "2024-07-31T16": 0.018242882499999998, + "2024-08-01T02": 0.0178107336, + "2024-07-31T22": 0.0178644603, + "2024-07-31T20": 0.0177830619, + "2024-07-31T17": 0.0182028981, + "2024-08-01T00": 0.017864102899999998, + "2024-07-31T15": 0.0183324806, + "2024-08-01T07": 0.017462138500000002, + "2024-08-01T06": 0.0174314544, + "2024-08-01T05": 0.0174193677, + "2024-08-01T04": 0.017530879200000002, + "2024-08-01T03": 0.017790566, + "2024-08-01T08": 0.017540874, + "2024-08-01T09": 0.0176097804, + "2024-08-01T10": 0.017510714400000002, + "2024-08-01T11": 0.017590672, + "2024-08-01T12": 0.0179506608, + "2024-08-01T13": 0.01788650933726677, + "2024-08-01T14": 0.017662578600000003, + "2024-08-01T15": 0.017311339999999998, + "2024-08-02": 0.017534900797917613, + "2024-08-02T00": 0.018153647, + "2024-08-01T20": 0.017312496700000003, + "2024-08-01T21": 0.0177236792, + "2024-08-02T04": 0.017883711, + "2024-08-01T19": 0.017161102, + "2024-08-01T16": 0.017018079, + "2024-08-02T02": 0.0178244792, + "2024-08-01T17": 0.0169662462, + "2024-08-01T23": 0.018352915900000003, + "2024-08-02T01": 0.0179639978, + "2024-08-01T22": 0.0184047114, + "2024-08-01T18": 0.016934406, + "2024-08-02T03": 0.017883531999999997, + "2024-08-02T05": 0.0176945923, + "2024-08-02T06": 0.017536662, + "2024-08-02T07": 0.017616841545819453, + "2024-08-02T08": 0.0176353505, + "2024-08-02T09": 0.017824657600000002, + "2024-08-02T10": 0.017886396, + "2024-08-02T11": 0.0178549892, + "2024-08-02T12": 0.017737575, + "2024-08-02T13": 0.0176662096, + "2024-08-02T14": 0.017857525182872477, + "2024-08-02T15": 0.0169233988, + "2024-08-03": 0.016127420680081724, + "2024-08-02T16": 0.017125431, + "2024-08-02T22": 0.016611041799999997, + "2024-08-02T23": 0.0166386752, + "2024-08-03T00": 0.016478385, + "2024-08-03T01": 0.0162699633, + "2024-08-03T03": 0.0164504007, + "2024-08-02T19": 0.016841622599999998, + "2024-08-02T18": 0.0170829, + "2024-08-02T21": 0.01660338, + "2024-08-02T17": 0.017203641, + "2024-08-02T20": 0.0167217534, + "2024-08-03T02": 0.0164981936, + "2024-08-03T06": 0.0164620368, + "2024-08-03T19": 0.01554480789273249, + "2024-08-03T10": 0.016335612, + "2024-08-03T09": 0.016385404000000003, + "2024-08-03T15": 0.0159393135, + "2024-08-03T22": 0.0157809997, + "2024-08-03T05": 0.0164716961, + "2024-08-03T08": 0.016374101699999997, + "2024-08-03T14": 0.016199463499999997, + "2024-08-03T18": 0.015459170999999999, + "2024-08-03T17": 0.015488839999999999, + "2024-08-03T21": 0.01564284981813211, + "2024-08-03T12": 0.016357558799999998, + "2024-08-03T20": 0.015569561400000001, + "2024-08-03T04": 0.016483335000000002, + "2024-08-03T16": 0.015608285, + "2024-08-03T11": 0.016286308, + "2024-08-03T07": 0.0164723557, + "2024-08-03T13": 0.0162589364, + "2024-08-04": 0.015888462793663957, + "2024-08-03T23": 0.015791152000000003, + "2024-08-04T17": 0.014967566600000001, + "2024-08-04T13": 0.016361815, + "2024-08-04T06": 0.0161499808, + "2024-08-04T12": 0.016111939999999998, + "2024-08-04T10": 0.015971690400000002, + "2024-08-04T16": 0.0150991208, + "2024-08-04T15": 0.015389682000000002, + "2024-08-04T00": 0.016075418647441924, + "2024-08-04T11": 0.0160618043, + "2024-08-04T01": 0.0160105482, + "2024-08-04T03": 0.016179962200000002, + "2024-08-04T04": 0.0161701302, + "2024-08-04T07": 0.0159805659, + "2024-08-04T08": 0.015960258300000002, + "2024-08-04T18": 0.015110299926212002, + "2024-08-04T09": 0.015990880000000002, + "2024-08-04T02": 0.016200273999999997, + "2024-08-04T05": 0.0161401485, + "2024-08-04T14": 0.0160430985, + "2024-08-05": 0.013952483663657223, + "2024-08-05T01": 0.01481116105977905, + "2024-08-04T19": 0.015667294187285383, + "2024-08-04T22": 0.015696592701014735, + "2024-08-05T03": 0.014031030731355056, + "2024-08-05T02": 0.014029367517151635, + "2024-08-04T23": 0.01574515362952835, + "2024-08-05T00": 0.015461646360270129, + "2024-08-05T04": 0.013904502707581886, + "2024-08-05T06": 0.013789015196244257, + "2024-08-04T20": 0.0158304219254989, + "2024-08-05T05": 0.01399251688188734, + "2024-08-04T21": 0.015715882160823588, + "2024-08-05T07": 0.013442715339376961, + "2024-08-05T08": 0.014181329207378609, + "2024-08-05T09": 0.014019754419994397, + "2024-08-05T10": 0.014190392547326649, + "2024-08-05T11": 0.0134517485, + "2024-08-05T12": 0.013661850987726779, + "2024-08-05T13": 0.013251140529155008, + "2024-08-05T14": 0.014098371748561237, + "2024-08-05T15": 0.014809323999999999, + "2024-08-06": 0.015025265011789081, + "2024-08-05T19": 0.014525517600000001, + "2024-08-05T20": 0.014591459000000001, + "2024-08-05T21": 0.014702646, + "2024-08-06T02": 0.014975688600000002, + "2024-08-05T18": 0.014746780399999998, + "2024-08-05T23": 0.014642928, + "2024-08-05T16": 0.015030514, + "2024-08-06T05": 0.0150588795, + "2024-08-05T17": 0.014978832300000001, + "2024-08-06T00": 0.015113022, + "2024-08-06T04": 0.014956727500000001, + "2024-08-06T03": 0.014935822699999999, + "2024-08-05T22": 0.0147725109, + "2024-08-06T01": 0.015094526999999998, + "2024-08-06T06": 0.015191081399999999, + "2024-08-06T07": 0.015180163899999998, + "2024-08-06T08": 0.014858613000000001, + "2024-08-06T09": 0.014814443, + "2024-08-06T10": 0.014824742400000002, + "2024-08-06T11": 0.014783695000000001, + "2024-08-06T12": 0.0147954723, + "2024-08-06T13": 0.014664104800000001, + "2024-08-06T14": 0.014664251399999998 + }, + "USD ripple": { + "2024-06-28": 0.47578712082053526, + "2024-06-30": 0.47267402489020605, + "2024-07-15": 0.5310363129353027, + "2024-07-18": 0.5787703737182802, + "2024-07-14": 0.5274241120897214, + "2024-07-11": 0.44576880885755565, + "2024-07-19": 0.5558764006539939, + "2024-07-12": 0.4645768162945876, + "2024-07-24": 0.6192542587932082, + "2024-07-08": 0.42792730160743125, + "2024-07-07": 0.43373598524339974, + "2024-07-13": 0.5163178079245069, + "2024-07-09": 0.433965834164462, + "2024-07-02": 0.4819712407812696, + "2024-07-20": 0.5917469672227897, + "2024-06-29": 0.47379353057926415, + "2024-07-21": 0.5913060062291033, + "2024-07-23": 0.5985390014285974, + "2024-07-10": 0.4375444919717685, + "2024-07-01": 0.47842068889887035, + "2024-06-26": 0.47315445207491647, + "2024-07-17": 0.611912448574446, + "2024-07-22": 0.606645020191631, + "2024-07-04": 0.44972995329417126, + "2024-06-25": 0.47605283908632956, + "2024-07-26": 0.6007942582478313, + "2024-07-03": 0.4791277239000778, + "2024-07-05": 0.41608561123306886, + "2024-07-25": 0.6065793765732846, + "2024-07-16": 0.5574675329743143, + "2024-07-06": 0.4344382392909739, + "2024-06-27": 0.4700132842433223, + "2024-07-22T13": 0.6145555323271678, + "2024-07-25T10": 0.60328274, + "2024-07-26T06": 0.60547888, + "2024-07-24T14": 0.6304981491989027, + "2024-07-21T20": 0.5950989723000857, + "2024-07-21T07": 0.5915414972999999, + "2024-07-21T14": 0.5822278902000001, + "2024-07-22T23": 0.604071167, + "2024-07-24T07": 0.602181934, + "2024-07-20T11": 0.589888904, + "2024-07-26T08": 0.60140376, + "2024-07-25T20": 0.5905093007341379, + "2024-07-21T02": 0.5939662640000001, + "2024-07-20T04": 0.589777065, + "2024-07-20T03": 0.580080919, + "2024-07-25T13": 0.6119726117112567, + "2024-07-21T06": 0.5934720569999999, + "2024-07-20T12": 0.5939649664, + "2024-07-24T02": 0.5964059640000001, + "2024-07-24T17": 0.6226937730000001, + "2024-07-25T06": 0.6050155126732844, + "2024-07-25T22": 0.5965167352643421, + "2024-07-22T07": 0.5974896100000001, + "2024-07-22T22": 0.609801168, + "2024-07-26T03": 0.6050631744, + "2024-07-23T01": 0.60596059, + "2024-07-24T03": 0.6017361019999999, + "2024-07-23T21": 0.596789505, + "2024-07-19T20": 0.5754750890399748, + "2024-07-23T22": 0.598707748, + "2024-07-21T23": 0.597247776, + "2024-07-19T16": 0.5710819388549341, + "2024-07-22T20": 0.6172540098881727, + "2024-07-23T10": 0.604293957, + "2024-07-19T17": 0.5824127718991077, + "2024-07-22T09": 0.6011, + "2024-07-24T04": 0.603918117, + "2024-07-22T06": 0.5890353399999999, + "2024-07-24T21": 0.6179382, + "2024-07-20T21": 0.5919421682, + "2024-07-21T15": 0.586793578, + "2024-07-20T09": 0.59212549, + "2024-07-25T14": 0.6096057805523969, + "2024-07-19T11": 0.549384605, + "2024-07-23T20": 0.5958291419999999, + "2024-07-25T03": 0.6006228598917809, + "2024-07-20T01": 0.578449127915155, + "2024-07-25T23": 0.5982432600590101, + "2024-07-20T16": 0.590612544, + "2024-07-22T15": 0.6099283938302595, + "2024-07-23T16": 0.590500368, + "2024-07-22T02": 0.5967, + "2024-07-21T04": 0.5961368716000001, + "2024-07-23T09": 0.6018, + "2024-07-20T10": 0.5923723659999999, + "2024-07-22T19": 0.620067373, + "2024-07-20T00": 0.57820896, + "2024-07-20T19": 0.5923723659999999, + "2024-07-26T05": 0.6051450006, + "2024-07-19T14": 0.5645855450936506, + "2024-07-21T00": 0.5934720569999999, + "2024-07-22T12": 0.6128059838026748, + "2024-07-24T06": 0.599205992, + "2024-07-25T01": 0.6033916022161446, + "2024-07-20T22": 0.5954559359999999, + "2024-07-19T15": 0.562411248, + "2024-07-21T13": 0.579079459, + "2024-07-25T07": 0.60917812050893, + "2024-07-21T08": 0.5893408592999999, + "2024-07-23T06": 0.5986897900000001, + "2024-07-22T16": 0.6125322339543244, + "2024-07-24T11": 0.6295180880620024, + "2024-07-24T01": 0.59851197, + "2024-07-23T00": 0.6092128988746547, + "2024-07-19T12": 0.5545524236, + "2024-07-25T17": 0.6187932747622817, + "2024-07-25T19": 0.6007180490367301, + "2024-07-19T21": 0.5755944708277296, + "2024-07-23T08": 0.6000179999999999, + "2024-07-21T21": 0.599413867, + "2024-07-21T11": 0.58315741, + "2024-07-22T14": 0.6092612880284777, + "2024-07-20T23": 0.5952325674, + "2024-07-20T08": 0.5926962, + "2024-07-20T02": 0.5775397760000001, + "2024-07-24T05": 0.6002780184000001, + "2024-07-24T16": 0.6213959885326127, + "2024-07-21T01": 0.5928029582721417, + "2024-07-24T13": 0.6283874514782005, + "2024-07-25T04": 0.6019729371996844, + "2024-07-19T13": 0.5530893600000001, + "2024-07-25T12": 0.61877097, + "2024-07-19T22": 0.5756923779276041, + "2024-07-26T07": 0.6028354395, + "2024-07-25T02": 0.602877421101884, + "2024-07-21T12": 0.58357502, + "2024-07-23T18": 0.5933500567004487, + "2024-07-23T11": 0.596611932, + "2024-07-19T10": 0.547185067, + "2024-07-19T19": 0.5797340045987317, + "2024-07-25T11": 0.6070131725, + "2024-07-22T08": 0.595247616, + "2024-07-23T19": 0.5949962839999999, + "2024-07-22T21": 0.614978292, + "2024-07-21T09": 0.591365536, + "2024-07-21T22": 0.5989598899999999, + "2024-07-22T04": 0.5954476320000001, + "2024-07-25T16": 0.6146422007033757, + "2024-07-19T23": 0.5716857, + "2024-07-20T06": 0.5987394, + "2024-07-23T02": 0.608848704, + "2024-07-23T14": 0.598795792, + "2024-07-23T03": 0.6127428890000001, + "2024-07-25T08": 0.6084235060000001, + "2024-07-24T15": 0.6230929921156665, + "2024-07-19T09": 0.54649068, + "2024-07-20T15": 0.5922276884911993, + "2024-07-23T23": 0.597553775, + "2024-07-23T12": 0.5950070820000001, + "2024-07-22T10": 0.603306033, + "2024-07-21T10": 0.5904593810000001, + "2024-07-22T00": 0.5957297850000001, + "2024-07-24T22": 0.61338957, + "2024-07-24T19": 0.62199378, + "2024-07-24T09": 0.6142, + "2024-07-23T04": 0.60996099, + "2024-07-23T05": 0.598735922, + "2024-07-25T18": 0.6115011876530999, + "2024-07-25T15": 0.6177336082111882, + "2024-07-26T01": 0.60297938, + "2024-07-22T01": 0.5932711839999999, + "2024-07-26T02": 0.6029712874331553, + "2024-07-24T18": 0.6210621, + "2024-07-21T19": 0.5900300219999999, + "2024-07-25T05": 0.6008994673044653, + "2024-07-22T18": 0.6168782332306886, + "2024-07-24T00": 0.5958536219999999, + "2024-07-24T08": 0.608093919, + "2024-07-24T20": 0.626093739, + "2024-07-24T23": 0.6127896780000001, + "2024-07-22T17": 0.6107110735707981, + "2024-07-21T17": 0.5883929001999999, + "2024-07-24T12": 0.627621479702293, + "2024-07-23T13": 0.5927948319999999, + "2024-07-21T05": 0.6029387756000001, + "2024-07-20T05": 0.589082624, + "2024-07-21T03": 0.5941863256000001, + "2024-07-26T00": 0.6031697101042107, + "2024-07-20T20": 0.59453772, + "2024-07-22T03": 0.5970980896371307, + "2024-07-25T21": 0.5996196363851783, + "2024-07-21T16": 0.588117523, + "2024-07-20T17": 0.594557728, + "2024-07-22T11": 0.60793455346504, + "2024-07-25T00": 0.6197884180000001, + "2024-07-20T13": 0.589447464, + "2024-07-23T07": 0.598903398965555, + "2024-07-22T05": 0.5931355859999999, + "2024-07-20T07": 0.600169955, + "2024-07-21T18": 0.582950561, + "2024-07-23T17": 0.587145081885787, + "2024-07-20T14": 0.5920648992, + "2024-07-26T04": 0.60541523, + "2024-07-24T10": 0.6237, + "2024-07-20T18": 0.5914955999999999, + "2024-07-23T15": 0.601402221, + "2024-07-19T18": 0.5798582377318389, + "2024-07-25T09": 0.608081012, + "latest": 0.514339, + "2024-07-26T09": 0.601591694, + "2024-07-26T10": 0.599238162, + "2024-07-26T11": 0.599556072, + "2024-07-26T12": 0.5989981529999999, + "2024-07-26T13": 0.596304576, + "2024-07-26T14": 0.591346774, + "2024-07-26T17": 0.59548809, + "2024-07-26T16": 0.595090244, + "2024-07-26T15": 0.590652744, + "2024-07-26T18": 0.5971, + "2024-07-27": 0.5989383527547215, + "2024-07-28": 0.6020007740227368, + "2024-07-28T05": 0.6006139938, + "2024-07-26T21": 0.60287, + "2024-07-27T02": 0.595817874, + "2024-07-28T01": 0.59595828, + "2024-07-27T10": 0.600148008, + "2024-07-28T02": 0.599870005, + "2024-07-27T19": 0.593048225, + "2024-07-27T09": 0.6011540989999999, + "2024-07-27T06": 0.598311966, + "2024-07-27T18": 0.5961904818610595, + "2024-07-26T22": 0.60402416, + "2024-07-27T13": 0.606178793, + "2024-07-27T12": 0.601502238, + "2024-07-27T16": 0.59825982, + "2024-07-27T05": 0.598911978, + "2024-07-26T23": 0.603124124, + "2024-07-26T20": 0.59876, + "2024-07-27T08": 0.6016300800000001, + "2024-07-28T03": 0.601387972, + "2024-07-27T01": 0.5973638936, + "2024-07-28T09": 0.610787784, + "2024-07-28T10": 0.60698179, + "2024-07-27T00": 0.600024, + "2024-07-28T00": 0.5937640623, + "2024-07-27T04": 0.5988819773999999, + "2024-07-27T14": 0.603130307, + "2024-07-27T07": 0.60108, + "2024-07-27T11": 0.599401881, + "2024-07-27T22": 0.600545946, + "2024-07-27T03": 0.596605966, + "2024-07-27T20": 0.5929298253693229, + "2024-07-27T23": 0.5981481267, + "2024-07-28T08": 0.606687866, + "2024-07-27T21": 0.5989920297000001, + "2024-07-28T07": 0.6033679324, + "2024-07-27T15": 0.598519846, + "2024-07-26T19": 0.6008, + "2024-07-28T04": 0.60098798, + "2024-07-28T06": 0.602037959, + "2024-07-27T17": 0.5958732544052256, + "2024-07-29": 0.6057715715091085, + "2024-07-28T20": 0.600433945, + "2024-07-28T16": 0.603093969, + "2024-07-29T07": 0.609190326, + "2024-07-28T23": 0.5999580006, + "2024-07-28T15": 0.602693973, + "2024-07-28T18": 0.6043735116, + "2024-07-29T04": 0.606327232, + "2024-07-29T06": 0.6086039293118839, + "2024-07-28T21": 0.599650029, + "2024-07-29T03": 0.6071332079999999, + "2024-07-28T12": 0.602781916, + "2024-07-29T05": 0.6072171252, + "2024-07-28T17": 0.6015838185, + "2024-07-29T00": 0.6022, + "2024-07-29T01": 0.6028, + "2024-07-28T22": 0.599582012, + "2024-07-28T19": 0.6029836645, + "2024-07-28T14": 0.5991, + "2024-07-29T02": 0.6054791312059066, + "2024-07-29T08": 0.6088782, + "2024-07-28T11": 0.6055657764, + "2024-07-28T13": 0.6020979578, + "2024-07-29T09": 0.60686646, + "2024-07-29T10": 0.6072524502, + "2024-07-29T11": 0.609671942, + "2024-07-29T12": 0.609845109, + "2024-07-29T13": 0.608345244, + "2024-07-30": 0.6240430320622989, + "2024-07-29T23": 0.6020017296, + "2024-07-29T18": 0.60307936, + "2024-07-29T21": 0.603301732, + "2024-07-29T22": 0.603421545, + "2024-07-29T17": 0.6009977514, + "2024-07-29T15": 0.59684478, + "2024-07-30T01": 0.6010802583326903, + "2024-07-29T19": 0.603803376, + "2024-07-30T04": 0.59988, + "2024-07-29T14": 0.6024596175, + "2024-07-29T20": 0.607433175, + "2024-07-30T03": 0.60041593, + "2024-07-30T00": 0.6024475665, + "2024-07-29T16": 0.59580928, + "2024-07-30T02": 0.5972805200000001, + "2024-07-30T09": 0.604466988, + "2024-07-30T08": 0.5991022044, + "2024-07-30T06": 0.597568506, + "2024-07-30T05": 0.5978763819, + "2024-07-30T07": 0.59934413, + "2024-07-30T10": 0.622094226, + "2024-07-30T11": 0.6249508967256098, + "2024-07-30T12": 0.6314354248786646, + "2024-07-30T13": 0.6259064999411582, + "2024-07-31": 0.6274770190749058, + "2024-07-31T00": 0.631842, + "2024-07-31T05": 0.6412888846353966, + "2024-07-30T23": 0.62681817, + "2024-07-30T19": 0.6277473269890788, + "2024-07-30T16": 0.6295865497887821, + "2024-07-30T17": 0.6298085860978888, + "2024-07-30T18": 0.629527537185687, + "2024-07-30T20": 0.6232719349759663, + "2024-07-30T15": 0.6170397579313374, + "2024-07-31T03": 0.6500362147547999, + "2024-07-30T21": 0.6236245705278796, + "2024-07-31T01": 0.643351995, + "2024-07-31T07": 0.6462297926852536, + "2024-07-31T06": 0.6438394300004747, + "2024-07-31T02": 0.6520629489442303, + "2024-07-30T22": 0.628917561, + "2024-07-30T14": 0.6175771893134333, + "2024-07-31T04": 0.6490703902179894, + "2024-07-31T08": 0.6471428538910571, + "2024-07-31T11": 0.652341015, + "2024-07-31T09": 0.648946812, + "2024-07-31T10": 0.647888864, + "2024-07-31T12": 0.650035776, + "2024-08-01": 0.6057948878524115, + "2024-07-31T14": 0.6518065550000001, + "2024-07-31T23": 0.62579968, + "2024-07-31T13": 0.6487949230000001, + "2024-07-31T21": 0.6284295905048743, + "2024-08-01T01": 0.625101138, + "2024-07-31T18": 0.6403784198862715, + "2024-07-31T19": 0.6392289417513438, + "2024-07-31T16": 0.6417882778184317, + "2024-08-01T02": 0.614880096, + "2024-07-31T22": 0.6317255355704293, + "2024-07-31T20": 0.6285391656425248, + "2024-07-31T17": 0.6377804169695321, + "2024-08-01T00": 0.626193288, + "2024-07-31T15": 0.6535319420000001, + "2024-08-01T07": 0.6083766080355254, + "2024-08-01T06": 0.6083868610068092, + "2024-08-01T05": 0.6060678418933659, + "2024-08-01T04": 0.6041548218032285, + "2024-08-01T03": 0.6110259844999999, + "2024-08-01T08": 0.608083632, + "2024-08-01T09": 0.606248172, + "2024-08-01T10": 0.6071780250000001, + "2024-08-01T11": 0.60867723, + "2024-08-01T12": 0.611381916, + "2024-08-01T13": 0.607508256, + "2024-08-01T14": 0.600847538, + "2024-08-01T15": 0.589705, + "2024-08-02": 0.5964948653083605, + "2024-08-02T00": 0.59196675, + "2024-08-01T20": 0.5821937002190458, + "2024-08-01T21": 0.5915958422808887, + "2024-08-02T04": 0.5814503982000001, + "2024-08-01T19": 0.5803342874495798, + "2024-08-01T16": 0.5844417096798886, + "2024-08-02T02": 0.583591833, + "2024-08-01T17": 0.5804287904063656, + "2024-08-01T23": 0.5968544087, + "2024-08-02T01": 0.5881760570000001, + "2024-08-01T22": 0.596905629566733, + "2024-08-01T18": 0.5753408180368134, + "2024-08-02T03": 0.5848352099482044, + "2024-08-02T05": 0.5757986190000001, + "2024-08-02T06": 0.5636712840000001, + "2024-08-02T07": 0.5683471271223073, + "2024-08-02T08": 0.5713530412077388, + "2024-08-02T09": 0.5739380614933711, + "2024-08-02T10": 0.574221396711082, + "2024-08-02T11": 0.5754044506270909, + "2024-08-02T12": 0.5716048742613853, + "2024-08-02T13": 0.5737521240000001, + "2024-08-02T14": 0.5755307650755491, + "2024-08-02T15": 0.554095953056611, + "2024-08-03": 0.560822191677207, + "2024-08-02T16": 0.5584105460329736, + "2024-08-02T22": 0.563257154, + "2024-08-02T23": 0.5608511904000001, + "2024-08-03T00": 0.5578382733, + "2024-08-03T01": 0.5514933086329026, + "2024-08-03T03": 0.5621402561000001, + "2024-08-02T19": 0.5621120119574965, + "2024-08-02T18": 0.5621299069985317, + "2024-08-02T21": 0.5655543239847685, + "2024-08-02T17": 0.5629317221637615, + "2024-08-02T20": 0.5691458708886358, + "2024-08-03T02": 0.5595235993286115, + "2024-08-03T06": 0.5724853101, + "2024-08-03T19": 0.5489694755774421, + "2024-08-03T10": 0.5671304856, + "2024-08-03T09": 0.5680639727000001, + "2024-08-03T15": 0.560124465, + "2024-08-03T22": 0.5541679210987488, + "2024-08-03T05": 0.5700565341, + "2024-08-03T08": 0.567948555, + "2024-08-03T14": 0.57022911, + "2024-08-03T18": 0.5504761552962514, + "2024-08-03T17": 0.5535011919999999, + "2024-08-03T21": 0.5513614374086833, + "2024-08-03T12": 0.570965736, + "2024-08-03T20": 0.5472902836287755, + "2024-08-03T04": 0.5667270270000001, + "2024-08-03T16": 0.5600496475, + "2024-08-03T11": 0.5698750500736431, + "2024-08-03T07": 0.574784322, + "2024-08-03T13": 0.5693825564, + "2024-08-04": 0.5360290593741195, + "2024-08-03T23": 0.5555886959999999, + "2024-08-04T17": 0.5227423242014881, + "2024-08-04T13": 0.546736495, + "2024-08-04T06": 0.5547558380000001, + "2024-08-04T12": 0.5448274500000001, + "2024-08-04T10": 0.5466056172, + "2024-08-04T16": 0.52861912, + "2024-08-04T15": 0.5277961395, + "2024-08-04T00": 0.5546425677, + "2024-08-04T11": 0.5456415807999999, + "2024-08-04T01": 0.553073494, + "2024-08-04T03": 0.555755218, + "2024-08-04T04": 0.556760169, + "2024-08-04T07": 0.5486760900000001, + "2024-08-04T08": 0.5468007013615924, + "2024-08-04T18": 0.5232434713414601, + "2024-08-04T09": 0.548487184, + "2024-08-04T02": 0.55596622, + "2024-08-04T05": 0.5549112975, + "2024-08-04T14": 0.531571326, + "2024-08-05": 0.4736171474238443, + "2024-08-05T01": 0.47874086164636087, + "2024-08-04T19": 0.5344829515302996, + "2024-08-04T20": 0.5350221736140665, + "2024-08-04T22": 0.5299814683906191, + "2024-08-05T03": 0.4734871181276016, + "2024-08-05T02": 0.47220650046266976, + "2024-08-04T23": 0.5255244466, + "2024-08-05T00": 0.5117550180563573, + "2024-08-05T04": 0.4769260954186392, + "2024-08-05T05": 0.476524412976897, + "2024-08-04T21": 0.5298276673463918, + "2024-08-05T06": 0.46808512003150804, + "2024-08-05T07": 0.45644390551070846, + "2024-08-05T08": 0.4693115416260761, + "2024-08-05T09": 0.46671246788354964, + "2024-08-05T10": 0.46501630030002356, + "2024-08-05T11": 0.44591585234996306, + "2024-08-05T12": 0.45173050062090636, + "2024-08-05T13": 0.4392148390691676, + "2024-08-05T14": 0.466291539048445, + "2024-08-05T15": 0.4871740163320719, + "2024-08-06": 0.5104726552548858, + "2024-08-05T19": 0.4779093564973186, + "2024-08-05T20": 0.4858918528160187, + "2024-08-05T21": 0.4931191614445709, + "2024-08-06T02": 0.5106864413263871, + "2024-08-05T18": 0.48414662186499485, + "2024-08-05T23": 0.4932909248685221, + "2024-08-05T16": 0.49227983156648986, + "2024-08-06T05": 0.5111529660731247, + "2024-08-05T17": 0.4903333082885371, + "2024-08-06T00": 0.5080345849407052, + "2024-08-06T04": 0.509722478419435, + "2024-08-06T03": 0.5119735466695995, + "2024-08-05T22": 0.4949001112315781, + "2024-08-06T01": 0.511808816201512, + "2024-08-06T06": 0.5158414466768153, + "2024-08-06T07": 0.514644581, + "2024-08-06T08": 0.5077343152, + "2024-08-06T09": 0.50055012, + "2024-08-06T10": 0.500560128, + "2024-08-06T11": 0.502425575, + "2024-08-06T12": 0.503786332, + "2024-08-06T13": 0.5002303304087611, + "2024-08-06T14": 0.5002450289999999 + }, + "USD solana": { + "2024-06-28": 144.22095901988305, + "2024-06-30": 141.2399075092633, + "2024-07-15": 152.82719095318745, + "2024-07-18": 158.50415635266378, + "2024-07-14": 145.10964434939723, + "2024-07-11": 140.80362460352, + "2024-07-19": 164.41713918369447, + "2024-07-12": 136.69258017571224, + "2024-07-24": 177.56079559758552, + "2024-07-08": 137.58007638882842, + "2024-07-07": 138.97661513469637, + "2024-07-13": 139.72368678681542, + "2024-07-09": 141.32558690457228, + "2024-07-02": 148.87457753536492, + "2024-07-20": 170.00120311213877, + "2024-06-29": 141.64900081042543, + "2024-07-21": 174.30663001117313, + "2024-07-23": 175.43000481529808, + "2024-07-10": 141.7637203517348, + "2024-07-01": 147.47683934383747, + "2024-06-26": 136.96527197332048, + "2024-07-17": 160.72787219588676, + "2024-07-22": 180.05165510740602, + "2024-07-04": 134.51047963755633, + "2024-06-25": 136.98773315742696, + "2024-07-26": 178.8064043299791, + "2024-07-03": 143.56959077565654, + "2024-07-05": 128.23833708467987, + "2024-07-25": 170.45816241429048, + "2024-07-16": 157.61957500139138, + "2024-07-06": 139.07188345561624, + "2024-06-27": 147.10050811632738, + "2024-07-22T13": 180.01841577103596, + "2024-07-25T10": 168.0186596863525, + "2024-07-26T06": 177.35914396383637, + "2024-07-24T14": 179.83098207069523, + "2024-07-21T20": 182.45573328728645, + "2024-07-21T07": 171.57574254, + "2024-07-21T14": 173.29890160000002, + "2024-07-22T23": 178.48497760338924, + "2024-07-24T07": 174.05477820000002, + "2024-07-20T11": 168.39247190000003, + "2024-07-26T08": 177.49775435081023, + "2024-07-25T20": 167.45842208172192, + "2024-07-21T02": 174.54886000000002, + "2024-07-20T04": 170.0598906, + "2024-07-20T03": 170.556716, + "2024-07-25T13": 167.71190981175508, + "2024-07-21T06": 172.05988289999996, + "2024-07-20T12": 168.5008416, + "2024-07-24T02": 172.0049312104347, + "2024-07-24T17": 181.48012023925955, + "2024-07-25T06": 170.54856645083498, + "2024-07-25T22": 172.0583150051448, + "2024-07-22T07": 178.41344646678846, + "2024-07-22T22": 178.7238768523095, + "2024-07-26T03": 176.21584973591203, + "2024-07-23T01": 178.37406764564113, + "2024-07-24T03": 173.7870281516835, + "2024-07-23T21": 173.9234661109812, + "2024-07-19T20": 169.28942967272687, + "2024-07-23T22": 173.00575836680835, + "2024-07-21T23": 184.34648037344323, + "2024-07-19T16": 170.64307340584517, + "2024-07-22T20": 182.49652769695354, + "2024-07-23T10": 177.89519165755524, + "2024-07-19T17": 169.8297964628829, + "2024-07-22T09": 178.32187436501383, + "2024-07-24T04": 173.3434783797219, + "2024-07-22T06": 179.35040842890825, + "2024-07-24T21": 177.5631405367686, + "2024-07-20T21": 173.8430917552237, + "2024-07-21T15": 175.1596510708689, + "2024-07-20T09": 169.353093, + "2024-07-25T14": 169.62921517102856, + "2024-07-19T11": 162.36409874718785, + "2024-07-23T20": 173.1095293761019, + "2024-07-25T03": 170.23095267410145, + "2024-07-20T01": 170.03672243435003, + "2024-07-25T23": 171.86684725056918, + "2024-07-20T16": 169.87113159999998, + "2024-07-22T15": 178.37764212077897, + "2024-07-23T16": 174.70258166619914, + "2024-07-22T02": 182.527147331092, + "2024-07-21T04": 173.40854080000003, + "2024-07-23T09": 177.5951197644073, + "2024-07-20T10": 169.0177124, + "2024-07-22T19": 182.0812630505728, + "2024-07-20T00": 169.2951031780635, + "2024-07-20T19": 173.4969991955538, + "2024-07-26T05": 176.896869333923, + "2024-07-19T14": 167.9040536461162, + "2024-07-21T00": 173.46028889999997, + "2024-07-22T12": 180.48116625888449, + "2024-07-24T06": 173.81189594017516, + "2024-07-25T01": 174.1104366669378, + "2024-07-20T22": 173.95021738257412, + "2024-07-19T15": 168.2076766713975, + "2024-07-21T13": 172.35341300000002, + "2024-07-25T07": 170.83964402368136, + "2024-07-21T08": 171.64976399999998, + "2024-07-23T06": 175.18682628043243, + "2024-07-22T16": 179.8180783011966, + "2024-07-24T11": 177.83750664812726, + "2024-07-24T01": 172.3314382178157, + "2024-07-23T00": 179.77737584715055, + "2024-07-19T12": 163.14159411125283, + "2024-07-25T17": 170.43720247397894, + "2024-07-25T19": 167.94943781610684, + "2024-07-19T21": 169.1240622022409, + "2024-07-23T08": 177.1185787347124, + "2024-07-21T21": 182.74868923003916, + "2024-07-21T11": 172.58458526, + "2024-07-22T14": 178.83460374938676, + "2024-07-20T23": 173.92065881146183, + "2024-07-20T08": 168.84844488625882, + "2024-07-20T02": 170.896869, + "2024-07-24T05": 172.87904983566708, + "2024-07-24T16": 178.30553016500733, + "2024-07-21T01": 174.0943911, + "2024-07-24T13": 177.97122384141875, + "2024-07-25T04": 171.45574244157567, + "2024-07-19T13": 164.98592405994737, + "2024-07-25T12": 168.07282987428985, + "2024-07-19T22": 168.92161317749697, + "2024-07-26T07": 177.0184440013577, + "2024-07-25T02": 171.92848898513384, + "2024-07-21T12": 172.961873, + "2024-07-23T18": 173.5844137534008, + "2024-07-23T11": 175.78012056318062, + "2024-07-19T10": 162.32543072514216, + "2024-07-19T19": 170.27099482960088, + "2024-07-25T11": 168.78106798113237, + "2024-07-22T08": 178.3080643291753, + "2024-07-23T19": 172.58978410889048, + "2024-07-22T21": 180.54297318475412, + "2024-07-21T09": 172.12818240000001, + "2024-07-21T22": 183.71359996022244, + "2024-07-22T04": 181.2754603304166, + "2024-07-25T16": 170.78306402783585, + "2024-07-19T23": 169.34179958502384, + "2024-07-20T06": 169.75787599999998, + "2024-07-23T02": 178.58889961693896, + "2024-07-23T14": 176.95955325912414, + "2024-07-23T03": 179.42750815518139, + "2024-07-25T08": 169.80608367614673, + "2024-07-24T15": 179.27068555170035, + "2024-07-19T09": 162.37549001486093, + "2024-07-20T15": 169.2424489, + "2024-07-23T23": 172.6648445413774, + "2024-07-23T12": 175.2245562880193, + "2024-07-22T10": 179.3849066159681, + "2024-07-21T10": 172.65435274690924, + "2024-07-22T00": 183.8930111147824, + "2024-07-24T22": 178.54149553988975, + "2024-07-24T19": 179.0002239172892, + "2024-07-24T09": 176.3627172887295, + "2024-07-23T04": 176.9299300227687, + "2024-07-23T05": 174.53611193752002, + "2024-07-25T18": 168.97547091017861, + "2024-07-25T15": 170.8088938189823, + "2024-07-26T01": 173.33796065849828, + "2024-07-22T01": 182.46856525384598, + "2024-07-26T02": 174.89003925975155, + "2024-07-24T18": 179.60653599294344, + "2024-07-21T19": 176.85172967507106, + "2024-07-25T05": 171.57433914432795, + "2024-07-22T18": 181.50459269479225, + "2024-07-24T00": 173.05968150998967, + "2024-07-24T08": 176.54622625282462, + "2024-07-24T20": 179.16546919767603, + "2024-07-24T23": 177.08727313624058, + "2024-07-22T17": 180.454306061597, + "2024-07-21T17": 176.0516451798974, + "2024-07-24T12": 177.2344389386182, + "2024-07-23T13": 173.9009693876426, + "2024-07-21T05": 173.0884512, + "2024-07-20T05": 169.881504, + "2024-07-21T03": 173.62860240000003, + "2024-07-26T00": 172.78241726704655, + "2024-07-20T20": 173.75202880114762, + "2024-07-22T03": 181.99297336044478, + "2024-07-25T21": 171.28784111309332, + "2024-07-21T16": 175.7711758102563, + "2024-07-20T17": 171.9099732746751, + "2024-07-22T11": 180.1346452390265, + "2024-07-25T00": 178.7711885601717, + "2024-07-20T13": 167.92749994000002, + "2024-07-23T07": 175.72790502863984, + "2024-07-22T05": 180.30624599111184, + "2024-07-20T07": 169.09305765000002, + "2024-07-21T18": 174.91753457214767, + "2024-07-23T17": 172.29736042238585, + "2024-07-20T14": 168.73209384, + "2024-07-26T04": 176.63779813834148, + "2024-07-24T10": 176.98330571993347, + "2024-07-20T18": 173.74242604147503, + "2024-07-23T15": 176.7545911921983, + "2024-07-19T18": 169.3691303931773, + "2024-07-25T09": 170.3552407959223, + "latest": 144.4, + "2024-07-26T09": 178.95953498597726, + "2024-07-26T10": 179.00329123811082, + "2024-07-26T11": 178.519792090733, + "2024-07-26T12": 178.55417193709323, + "2024-07-26T13": 179.4254666504777, + "2024-07-26T14": 181.07052304395597, + "2024-07-26T15": 181.56911822903876, + "2024-07-26T16": 181.47729451560255, + "2024-07-26T17": 181.80630907527927, + "2024-07-27": 184.16239059682584, + "2024-07-28": 184.447944328903, + "2024-07-28T05": 182.04885769012125, + "2024-07-26T21": 181.95550317265352, + "2024-07-27T02": 182.2154663, + "2024-07-28T01": 185.96443959540926, + "2024-07-27T10": 185.689828714492, + "2024-07-28T02": 185.45341240869814, + "2024-07-27T19": 180.81757452544042, + "2024-07-27T09": 186.70264195847915, + "2024-07-27T06": 183.99967992, + "2024-07-27T18": 181.93824730129884, + "2024-07-26T22": 182.74730960000002, + "2024-07-27T13": 186.98093068103617, + "2024-07-27T12": 186.28478936419296, + "2024-07-27T16": 182.47827308355818, + "2024-07-27T05": 184.57069134, + "2024-07-26T23": 183.08732320000001, + "2024-07-26T20": 181.71604342875304, + "2024-07-27T08": 186.56283093900137, + "2024-07-28T03": 184.52110997672287, + "2024-07-27T01": 181.857274, + "2024-07-28T09": 183.99632, + "2024-07-28T10": 184.0544782, + "2024-07-27T00": 182.4472976, + "2024-07-28T00": 184.001117189299, + "2024-07-27T04": 183.25366499999998, + "2024-07-27T14": 185.875903668262, + "2024-07-26T18": 182.14741944629702, + "2024-07-27T07": 185.31, + "2024-07-27T11": 184.90666833925653, + "2024-07-27T22": 186.1868310145366, + "2024-07-27T03": 183.00183, + "2024-07-27T20": 180.315490478042, + "2024-07-27T23": 184.77193554425213, + "2024-07-28T08": 183.74632499999998, + "2024-07-27T21": 185.92615777932653, + "2024-07-28T07": 182.65934674000002, + "2024-07-27T15": 182.9402397863863, + "2024-07-26T19": 182.65990110614797, + "2024-07-28T04": 183.64268549774437, + "2024-07-28T06": 182.31638855796766, + "2024-07-27T17": 181.98321365348778, + "2024-07-29": 189.0639568748908, + "2024-07-28T20": 184.88766011999996, + "2024-07-28T16": 184.35484704020843, + "2024-07-29T07": 192.20431907515845, + "2024-07-28T23": 184.36631260000001, + "2024-07-28T15": 184.413855389873, + "2024-07-28T18": 184.8669302930603, + "2024-07-29T04": 192.8024231410095, + "2024-07-29T02": 189.86820867318286, + "2024-07-29T06": 193.07508435544133, + "2024-07-28T21": 184.38156, + "2024-07-29T03": 192.55824692534864, + "2024-07-28T12": 185.7744266, + "2024-07-29T05": 193.4022371721425, + "2024-07-28T17": 183.7042784613705, + "2024-07-29T00": 187.6941599115361, + "2024-07-29T01": 188.0858979002113, + "2024-07-28T22": 183.494495, + "2024-07-28T19": 185.05964120000002, + "2024-07-28T14": 185.08796175019728, + "2024-07-28T11": 185.3325864, + "2024-07-28T13": 186.0562788, + "2024-07-29T08": 191.8108400569573, + "2024-07-29T09": 191.64293993591068, + "2024-07-29T10": 191.72088514048642, + "2024-07-29T11": 191.00424903910692, + "2024-07-29T12": 191.9111064857115, + "2024-07-29T13": 191.69109257736307, + "2024-07-30": 180.88542132452105, + "2024-07-29T23": 182.86328848169012, + "2024-07-29T18": 186.47240040126474, + "2024-07-29T21": 184.51318950820777, + "2024-07-29T22": 183.94444267884603, + "2024-07-29T17": 185.83082349711958, + "2024-07-29T15": 186.73149351081852, + "2024-07-30T01": 182.6427218746246, + "2024-07-29T19": 186.11081022985587, + "2024-07-30T04": 182.59787120326112, + "2024-07-29T14": 189.08460118884778, + "2024-07-29T20": 186.34256493718442, + "2024-07-30T03": 181.9886641300743, + "2024-07-30T00": 182.88012445502207, + "2024-07-29T16": 185.1916217366703, + "2024-07-30T02": 180.45727512454968, + "2024-07-30T09": 181.58830353459558, + "2024-07-30T08": 181.75184624765433, + "2024-07-30T06": 182.3406436563275, + "2024-07-30T05": 182.08375288626465, + "2024-07-30T07": 182.87774376190566, + "2024-07-30T10": 180.85336974616112, + "2024-07-30T11": 180.53146795552118, + "2024-07-30T12": 180.58075486684007, + "2024-07-30T13": 181.70537155834936, + "2024-07-31": 179.0391933974778, + "2024-07-31T00": 179.004316622846, + "2024-07-31T05": 179.38716360787475, + "2024-07-30T23": 179.12721101004414, + "2024-07-30T19": 177.0756016567788, + "2024-07-30T16": 180.7954122701907, + "2024-07-30T17": 178.22076235182868, + "2024-07-30T18": 177.5602480918305, + "2024-07-30T20": 178.39932966416654, + "2024-07-30T15": 180.99320683429195, + "2024-07-31T03": 180.96199, + "2024-07-30T21": 179.28262172284744, + "2024-07-31T01": 180.72449923651547, + "2024-07-31T07": 183.30712675675943, + "2024-07-31T06": 182.8549672748807, + "2024-07-31T02": 181.13707277001302, + "2024-07-30T22": 178.96590238545983, + "2024-07-30T14": 180.5232595611592, + "2024-07-31T04": 179.4223134, + "2024-07-31T08": 183.4582594926948, + "2024-07-31T11": 181.8533123701974, + "2024-07-31T09": 183.69162459454745, + "2024-07-31T10": 182.83380865130852, + "2024-07-31T12": 181.9356474864839, + "2024-08-01": 167.87131993398756, + "2024-07-31T14": 180.85652228720141, + "2024-07-31T23": 172.38948102376423, + "2024-07-31T13": 182.52008651346858, + "2024-07-31T21": 173.7690526921752, + "2024-08-01T01": 171.39632088387913, + "2024-07-31T18": 180.32304820866565, + "2024-07-31T19": 177.7898273939097, + "2024-07-31T16": 180.202305951699, + "2024-08-01T02": 170.29254324885628, + "2024-07-31T22": 172.75989114737587, + "2024-07-31T20": 175.21403427709916, + "2024-07-31T17": 180.92798593967882, + "2024-08-01T00": 171.961206943625, + "2024-07-31T15": 180.36046099896404, + "2024-08-01T06": 168.84741929934196, + "2024-08-01T05": 168.72320596504818, + "2024-08-01T04": 167.5451882842533, + "2024-08-01T03": 169.20808891500386, + "2024-08-01T07": 168.5331825687034, + "2024-08-01T08": 168.8044146175024, + "2024-08-01T09": 169.1212507901763, + "2024-08-01T10": 168.56146267328296, + "2024-08-01T11": 169.20820924715346, + "2024-08-01T12": 169.6134956564675, + "2024-08-01T13": 170.8412578598634, + "2024-08-01T14": 169.71065121491577, + "2024-08-01T15": 163.15966377321863, + "2024-08-02": 167.8878366549297, + "2024-08-02T00": 167.87040486683034, + "2024-08-01T20": 162.58497123295672, + "2024-08-01T21": 165.63045004938442, + "2024-08-02T04": 164.21966240826615, + "2024-08-01T19": 160.979038890906, + "2024-08-01T16": 161.64322769137706, + "2024-08-02T02": 162.93133680166224, + "2024-08-01T17": 161.05650532466797, + "2024-08-01T23": 167.30549830985746, + "2024-08-02T01": 165.29805125226795, + "2024-08-01T22": 167.54911236218143, + "2024-08-01T18": 159.89041329973867, + "2024-08-02T03": 163.8824313516975, + "2024-08-02T05": 163.50595645347846, + "2024-08-02T06": 161.14114729187145, + "2024-08-02T07": 162.12946485615956, + "2024-08-02T08": 161.53080864675235, + "2024-08-02T09": 163.75637722013354, + "2024-08-02T10": 163.88364104344117, + "2024-08-02T11": 164.37532880688647, + "2024-08-02T12": 163.63331002120952, + "2024-08-02T13": 163.8457887057537, + "2024-08-02T14": 165.92082870464156, + "2024-08-02T15": 155.70314645000346, + "2024-08-03": 149.95206028092613, + "2024-08-02T16": 155.52674310654814, + "2024-08-02T22": 153.2442468678676, + "2024-08-02T23": 152.6336320030546, + "2024-08-03T00": 152.28142507259304, + "2024-08-03T01": 150.7964237668899, + "2024-08-03T03": 151.87690027387794, + "2024-08-02T19": 152.02833884882202, + "2024-08-02T18": 153.60012196046182, + "2024-08-02T21": 152.11852465291832, + "2024-08-02T17": 154.99380139826692, + "2024-08-02T20": 152.45649062403956, + "2024-08-03T02": 151.35589340751994, + "2024-08-03T06": 151.9348165011286, + "2024-08-03T19": 141.73458177731487, + "2024-08-03T10": 151.0784459384456, + "2024-08-03T09": 149.20465972129253, + "2024-08-03T15": 148.6931209933346, + "2024-08-03T22": 142.71292120821767, + "2024-08-03T05": 151.77208694698743, + "2024-08-03T08": 150.28662194710486, + "2024-08-03T14": 152.0852791417095, + "2024-08-03T18": 141.67788486414386, + "2024-08-03T17": 143.44371432961137, + "2024-08-03T21": 141.95097508061625, + "2024-08-03T12": 152.46812744680497, + "2024-08-03T20": 141.02312275142313, + "2024-08-03T04": 152.46424787391996, + "2024-08-03T16": 145.58630571660726, + "2024-08-03T11": 151.9350327559003, + "2024-08-03T07": 152.50039527704905, + "2024-08-03T13": 151.7815960761231, + "2024-08-04": 141.54095053233974, + "2024-08-03T23": 142.97942883426842, + "2024-08-04T17": 133.1512499453741, + "2024-08-04T13": 144.26348051015174, + "2024-08-04T06": 143.4499994376779, + "2024-08-04T12": 143.95787158402507, + "2024-08-04T10": 142.9783218256645, + "2024-08-04T16": 134.81316702936874, + "2024-08-04T15": 136.19102824862387, + "2024-08-04T00": 143.22392814752567, + "2024-08-04T11": 143.78611406288127, + "2024-08-04T01": 143.1696405219781, + "2024-08-04T03": 144.48099177137533, + "2024-08-04T04": 143.84110238168134, + "2024-08-04T07": 141.53170052470972, + "2024-08-04T08": 140.88660864878895, + "2024-08-04T18": 137.40139355284163, + "2024-08-04T09": 142.87993811738815, + "2024-08-04T02": 145.00669604741546, + "2024-08-04T05": 143.3554570962665, + "2024-08-04T14": 139.24753018978248, + "2024-08-05": 126.78081381999534, + "2024-08-05T01": 130.58068321099614, + "2024-08-04T19": 141.60636112365393, + "2024-08-04T22": 141.23706058416698, + "2024-08-05T03": 128.58428956979853, + "2024-08-05T02": 129.01581399847032, + "2024-08-04T23": 138.87519641696815, + "2024-08-05T00": 136.5165838617804, + "2024-08-05T04": 126.089500784407, + "2024-08-05T06": 119.3641415127018, + "2024-08-04T20": 142.48454074104833, + "2024-08-05T05": 120.4797484946809, + "2024-08-04T21": 140.9375707239208, + "2024-08-05T07": 117.53316142161636, + "2024-08-05T08": 122.81695051829561, + "2024-08-05T09": 120.88498892791196, + "2024-08-05T10": 119.93054548288617, + "2024-08-05T11": 113.73303242663209, + "2024-08-05T12": 115.84120400353721, + "2024-08-05T13": 111.74997970156541, + "2024-08-05T14": 123.1501798013706, + "2024-08-05T15": 130.31061859569925, + "2024-08-06": 138.75019516131593, + "2024-08-05T19": 128.92607737764084, + "2024-08-05T20": 129.00799630822945, + "2024-08-05T21": 131.4452183139311, + "2024-08-06T02": 138.73879173830025, + "2024-08-05T18": 134.1703201147248, + "2024-08-05T23": 132.30425910363667, + "2024-08-05T16": 130.3599172605833, + "2024-08-06T05": 141.1051087818413, + "2024-08-05T17": 131.8356930952493, + "2024-08-06T00": 129.66956947677073, + "2024-08-06T04": 138.69577774377242, + "2024-08-06T03": 139.77524268700404, + "2024-08-05T22": 131.13367447383163, + "2024-08-06T01": 138.80694168062016, + "2024-08-06T06": 142.57872004108316, + "2024-08-06T07": 141.3363733536993, + "2024-08-06T08": 141.86846097841666, + "2024-08-06T09": 137.68321248586508, + "2024-08-06T10": 138.85842777268945, + "2024-08-06T11": 139.26963299551616, + "2024-08-06T12": 139.61279935852772, + "2024-08-06T13": 137.90214494283262, + "2024-08-06T14": 138.0338299566946 + }, + "USD stacks": { + "2024-06-28": 1.7240988046044712, + "2024-06-30": 1.6570048491487839, + "2024-07-15": 1.8786077212340992, + "2024-07-18": 1.8709120293805332, + "2024-07-14": 1.68467617012567, + "2024-07-11": 1.6188005071578178, + "2024-07-19": 1.8384454093335503, + "2024-07-12": 1.6183920797206577, + "2024-07-24": 1.7840622692856007, + "2024-07-08": 1.345811204627176, + "2024-07-07": 1.4031773910458918, + "2024-07-13": 1.6783712331222298, + "2024-07-09": 1.3742254493516368, + "2024-07-02": 1.6876891329317727, + "2024-07-20": 1.9126861376333257, + "2024-06-29": 1.666599258643367, + "2024-07-21": 1.914734387563837, + "2024-07-23": 1.7873685264522734, + "2024-07-10": 1.482572979817935, + "2024-07-01": 1.7277972195603293, + "2024-06-26": 1.7245242646208947, + "2024-07-17": 1.9293427910392473, + "2024-07-22": 1.8759295876712396, + "2024-07-04": 1.460027313346589, + "2024-06-25": 1.709100157562782, + "2024-07-26": 1.8524065668941185, + "2024-07-03": 1.6004573756940326, + "2024-07-05": 1.3610204353911577, + "2024-07-25": 1.7038455622388844, + "2024-07-16": 1.8759814152570875, + "2024-07-06": 1.4156852777448437, + "2024-06-27": 1.7223092579187216, + "2024-07-22T13": 1.88126334, + "2024-07-25T10": 1.688942158364492, + "2024-07-26T06": 1.8589081440000002, + "2024-07-24T14": 1.8186227525000003, + "2024-07-21T20": 1.9636696736, + "2024-07-21T07": 1.8795062022490732, + "2024-07-21T14": 1.9118798182, + "2024-07-22T23": 1.845123371, + "2024-07-24T07": 1.7872563807, + "2024-07-20T11": 1.9131269731, + "2024-07-26T08": 1.8717004799999999, + "2024-07-25T20": 1.7226864560000001, + "2024-07-21T02": 1.925515052681605, + "2024-07-20T04": 1.910597559, + "2024-07-20T03": 1.9033261115000002, + "2024-07-25T13": 1.68146176, + "2024-07-21T06": 1.8825457799999998, + "2024-07-20T12": 1.90791536, + "2024-07-24T02": 1.7398173980000002, + "2024-07-24T17": 1.8080319195000003, + "2024-07-25T06": 1.6905603399999998, + "2024-07-25T22": 1.8079185602824555, + "2024-07-22T07": 1.8753812650000001, + "2024-07-22T22": 1.85461182, + "2024-07-26T03": 1.85770272, + "2024-07-23T01": 1.842114193, + "2024-07-24T03": 1.7611056600000001, + "2024-07-23T21": 1.7679151475000003, + "2024-07-19T20": 1.9437945338241884, + "2024-07-23T22": 1.7553426030800052, + "2024-07-21T23": 1.954256328, + "2024-07-19T16": 1.9203839999999999, + "2024-07-22T20": 1.8808144380000003, + "2024-07-23T10": 1.8009819900000001, + "2024-07-19T17": 1.93425142, + "2024-07-22T09": 1.869, + "2024-07-24T04": 1.7710531299999999, + "2024-07-22T06": 1.8791827442, + "2024-07-24T21": 1.7578242, + "2024-07-20T21": 1.912779474, + "2024-07-21T15": 1.9233244877, + "2024-07-20T09": 1.9180543500000002, + "2024-07-25T14": 1.6955793716, + "2024-07-19T11": 1.8190679155, + "2024-07-23T20": 1.7755550399999998, + "2024-07-25T03": 1.6724321775, + "2024-07-20T01": 1.8999495, + "2024-07-25T23": 1.80244107, + "2024-07-20T16": 1.921140585310761, + "2024-07-22T15": 1.8633376852999999, + "2024-07-23T16": 1.7530327223864126, + "2024-07-22T02": 1.9340000000000002, + "2024-07-21T04": 1.9125353600000001, + "2024-07-23T09": 1.8102, + "2024-07-20T10": 1.9207731494, + "2024-07-22T19": 1.8703948703, + "2024-07-20T00": 1.8967579049999999, + "2024-07-20T19": 1.9194925606, + "2024-07-26T05": 1.84664907, + "2024-07-19T14": 1.86491, + "2024-07-21T00": 1.90655274, + "2024-07-22T12": 1.8930814344000002, + "2024-07-24T06": 1.7775677755000001, + "2024-07-25T01": 1.6860976440000002, + "2024-07-20T22": 1.9138225899999999, + "2024-07-19T15": 1.8680373599999998, + "2024-07-21T13": 1.9003589287, + "2024-07-25T07": 1.7027394086894219, + "2024-07-21T08": 1.8905484413882125, + "2024-07-23T06": 1.7907685750000002, + "2024-07-22T16": 1.86327945, + "2024-07-24T11": 1.8123498600993813, + "2024-07-24T01": 1.7401605400295694, + "2024-07-23T00": 1.847884199, + "2024-07-19T12": 1.819981308, + "2024-07-25T17": 1.769816606871935, + "2024-07-25T19": 1.7371660757, + "2024-07-19T21": 1.9397587726999999, + "2024-07-23T08": 1.8065041935, + "2024-07-21T21": 1.964148025212497, + "2024-07-21T11": 1.9011831809, + "2024-07-22T14": 1.8563338305341768, + "2024-07-20T23": 1.9130215343204753, + "2024-07-20T08": 1.9199754258195403, + "2024-07-20T02": 1.9002647345, + "2024-07-24T05": 1.7582406480000001, + "2024-07-24T16": 1.792461307, + "2024-07-21T01": 1.90970633, + "2024-07-24T13": 1.8160783842645483, + "2024-07-25T04": 1.67776508, + "2024-07-19T13": 1.8416316000000001, + "2024-07-25T12": 1.683176994, + "2024-07-19T22": 1.918740843838432, + "2024-07-26T07": 1.86464565, + "2024-07-25T02": 1.6716656, + "2024-07-21T12": 1.907121965, + "2024-07-23T18": 1.784496273, + "2024-07-23T11": 1.788635772, + "2024-07-19T10": 1.8001730037812307, + "2024-07-19T19": 1.9434814853169693, + "2024-07-25T11": 1.6887211417999999, + "2024-07-22T08": 1.8651492, + "2024-07-23T19": 1.7805373834999998, + "2024-07-22T21": 1.8697720766999997, + "2024-07-21T09": 1.9057634644, + "2024-07-21T22": 1.977487729, + "2024-07-22T04": 1.9245239496000004, + "2024-07-25T16": 1.7538340716, + "2024-07-19T23": 1.910024535, + "2024-07-20T06": 1.912474684, + "2024-07-23T02": 1.8467577288000003, + "2024-07-23T14": 1.7922867199999999, + "2024-07-23T03": 1.85312971, + "2024-07-25T08": 1.698907174, + "2024-07-24T15": 1.7974914585, + "2024-07-19T09": 1.8029393400000002, + "2024-07-20T15": 1.9141958220105877, + "2024-07-23T23": 1.7534577969999998, + "2024-07-23T12": 1.7853213000000003, + "2024-07-22T10": 1.8853688535, + "2024-07-21T10": 1.9114759592, + "2024-07-22T00": 1.9560978000000002, + "2024-07-24T22": 1.7452757938, + "2024-07-24T19": 1.7632771605988713, + "2024-07-24T09": 1.811754913291574, + "2024-07-23T04": 1.8201819999999997, + "2024-07-23T05": 1.7924575409999999, + "2024-07-25T18": 1.7545437, + "2024-07-25T15": 1.735848937526842, + "2024-07-26T01": 1.809118104, + "2024-07-22T01": 1.9410328959999996, + "2024-07-26T02": 1.8436711920000002, + "2024-07-24T18": 1.7821782, + "2024-07-21T19": 1.9306426570999997, + "2024-07-25T05": 1.688894568, + "2024-07-22T18": 1.86767346, + "2024-07-24T00": 1.73715633, + "2024-07-24T08": 1.806450512152068, + "2024-07-24T20": 1.7753322465, + "2024-07-24T23": 1.73868698, + "2024-07-22T17": 1.86826152, + "2024-07-21T17": 1.9468067670999998, + "2024-07-24T12": 1.808354249, + "2024-07-23T13": 1.7745838879999998, + "2024-07-21T05": 1.8975311600000002, + "2024-07-20T05": 1.90791536, + "2024-07-21T03": 1.9166865220000002, + "2024-07-26T00": 1.8037011431999999, + "2024-07-20T20": 1.917336628, + "2024-07-22T03": 1.9352474067999998, + "2024-07-25T21": 1.7845211914830639, + "2024-07-21T16": 1.9301839039, + "2024-07-20T17": 1.9202177799999998, + "2024-07-22T11": 1.8848265431, + "2024-07-25T00": 1.7444859360000002, + "2024-07-20T13": 1.9017984200000002, + "2024-07-23T07": 1.7825345567516395, + "2024-07-22T05": 1.90911454, + "2024-07-20T07": 1.9208640000000001, + "2024-07-21T18": 1.9008169999999998, + "2024-07-23T17": 1.7471747, + "2024-07-20T14": 1.9129166322, + "2024-07-26T04": 1.8494810364, + "2024-07-24T10": 1.81477, + "2024-07-20T18": 1.9240715549999998, + "2024-07-23T15": 1.7907543764999998, + "2024-07-19T18": 1.9313855766000658, + "2024-07-25T09": 1.7049260056, + "latest": 1.32, + "2024-07-26T09": 1.8722629320000002, + "2024-07-26T10": 1.85849807, + "2024-07-26T11": 1.8558663595061706, + "2024-07-26T12": 1.8471289718793495, + "2024-07-26T13": 1.8567028799999998, + "2024-07-26T14": 1.849633518, + "2024-07-26T17": 1.854862902, + "2024-07-26T16": 1.8551972355000002, + "2024-07-26T15": 1.8576113792, + "2024-07-26T18": 1.8457599999999998, + "2024-07-27": 1.904423303429795, + "2024-07-28": 1.8905680955157802, + "2024-07-28T05": 1.8732047399929264, + "2024-07-26T21": 1.8422, + "2024-07-27T02": 1.86805604, + "2024-07-28T01": 1.9233576113634232, + "2024-07-27T10": 1.8694867282981278, + "2024-07-28T02": 1.91490425, + "2024-07-27T19": 1.916479, + "2024-07-27T09": 1.8651678499999997, + "2024-07-27T06": 1.8543770868, + "2024-07-27T18": 1.9345625468196663, + "2024-07-26T22": 1.8500740000000002, + "2024-07-27T13": 1.90824804, + "2024-07-27T12": 1.881419787, + "2024-07-27T16": 1.9191919, + "2024-07-27T05": 1.8580371599999999, + "2024-07-26T23": 1.852874112, + "2024-07-26T20": 1.8479, + "2024-07-27T08": 1.8680934, + "2024-07-28T03": 1.9061718758, + "2024-07-27T01": 1.87707508, + "2024-07-28T09": 1.8819623600000002, + "2024-07-28T10": 1.8939431800000002, + "2024-07-27T00": 1.8600744, + "2024-07-28T00": 1.9272107277000001, + "2024-07-27T04": 1.8477741427164958, + "2024-07-27T14": 1.9224002074119624, + "2024-07-27T07": 1.874, + "2024-07-27T11": 1.8719481771000002, + "2024-07-27T22": 2.0084792206, + "2024-07-27T03": 1.8460184600000002, + "2024-07-27T20": 1.8816040755000003, + "2024-07-27T23": 1.961362695, + "2024-07-28T08": 1.8826655924028517, + "2024-07-27T21": 1.95794126, + "2024-07-28T07": 1.8744425104000002, + "2024-07-27T15": 1.893669348, + "2024-07-26T19": 1.85111, + "2024-07-28T04": 1.8852722938, + "2024-07-28T06": 1.8798436973969903, + "2024-07-27T17": 1.926951846651331, + "2024-07-29": 1.920280597171877, + "2024-07-28T20": 1.8847926499999998, + "2024-07-28T16": 1.88898111, + "2024-07-29T07": 1.94215035, + "2024-07-28T23": 1.881362372, + "2024-07-28T15": 1.88798112, + "2024-07-28T18": 1.8970712991999998, + "2024-07-29T04": 1.917869828, + "2024-07-29T06": 1.9405531157025144, + "2024-07-28T21": 1.8775385367835153, + "2024-07-29T03": 1.9337872600000001, + "2024-07-28T12": 1.902542922, + "2024-07-29T05": 1.92876852, + "2024-07-28T17": 1.888692221, + "2024-07-29T00": 1.921, + "2024-07-29T01": 1.917, + "2024-07-28T22": 1.875443735, + "2024-07-28T19": 1.890922153474689, + "2024-07-28T14": 1.8820000000000001, + "2024-07-29T02": 1.9290657444118104, + "2024-07-29T08": 1.9488151218757264, + "2024-07-28T11": 1.90792368, + "2024-07-28T13": 1.8978312100733814, + "2024-07-29T09": 1.952660944338823, + "2024-07-29T10": 1.9485907099999997, + "2024-07-29T11": 1.9481314534862253, + "2024-07-29T12": 1.9458248599999999, + "2024-07-29T13": 1.9428851245999998, + "2024-07-30": 1.7993428663842443, + "2024-07-29T23": 1.839160878, + "2024-07-29T18": 1.8518699336154365, + "2024-07-29T21": 1.8398527999999998, + "2024-07-29T22": 1.8516216968848376, + "2024-07-29T17": 1.84259454, + "2024-07-29T15": 1.86201575, + "2024-07-30T01": 1.851792516, + "2024-07-29T19": 1.8557030399999999, + "2024-07-30T04": 1.85382916, + "2024-07-29T14": 1.9177123000000003, + "2024-07-29T20": 1.84679683, + "2024-07-30T03": 1.8448616832, + "2024-07-30T00": 1.8392272781999999, + "2024-07-29T16": 1.840210944, + "2024-07-30T02": 1.8336332000000002, + "2024-07-30T09": 1.8407128236130847, + "2024-07-30T08": 1.853023590217394, + "2024-07-30T06": 1.84859322, + "2024-07-30T05": 1.8438695982, + "2024-07-30T07": 1.8523982511999997, + "2024-07-30T10": 1.8291489918000001, + "2024-07-30T11": 1.7906238899999998, + "2024-07-30T12": 1.7862626760000002, + "2024-07-30T13": 1.79534086, + "2024-07-31": 1.792159642442884, + "2024-07-31T00": 1.7814245325000002, + "2024-07-31T05": 1.80560268, + "2024-07-30T23": 1.7845823209999998, + "2024-07-30T19": 1.77682509929856, + "2024-07-30T16": 1.8144192, + "2024-07-30T17": 1.7943435810000001, + "2024-07-30T18": 1.785328512, + "2024-07-30T20": 1.784114761869475, + "2024-07-30T15": 1.79139072, + "2024-07-31T03": 1.7797261789999999, + "2024-07-30T21": 1.77853746, + "2024-07-31T01": 1.7846678385181445, + "2024-07-31T07": 1.8278132022, + "2024-07-31T06": 1.8329726025771613, + "2024-07-31T02": 1.7766446000000002, + "2024-07-30T22": 1.7884811900000002, + "2024-07-30T14": 1.7861427, + "2024-07-31T04": 1.7889242469999997, + "2024-07-31T08": 1.8051873, + "2024-07-31T11": 1.792293696, + "2024-07-31T09": 1.8052090003560948, + "2024-07-31T10": 1.79363864, + "2024-07-31T12": 1.79999144, + "2024-08-01": 1.6962131452682268, + "2024-07-31T14": 1.8051873, + "2024-07-31T23": 1.7330352512, + "2024-07-31T13": 1.8150195350890082, + "2024-07-31T21": 1.7413380399999998, + "2024-08-01T01": 1.72439625, + "2024-07-31T18": 1.7995259604, + "2024-07-31T19": 1.7701779348, + "2024-07-31T16": 1.79330034, + "2024-08-01T02": 1.7114795676, + "2024-07-31T22": 1.7411600729999999, + "2024-07-31T20": 1.7393586434899149, + "2024-07-31T17": 1.7904214632, + "2024-08-01T00": 1.7292791494999997, + "2024-07-31T15": 1.80026159, + "2024-08-01T07": 1.6969405181894135, + "2024-08-01T06": 1.6900738429067677, + "2024-08-01T05": 1.6941359631011552, + "2024-08-01T04": 1.6886222835401592, + "2024-08-01T03": 1.7054856132999998, + "2024-08-01T08": 1.7032238628, + "2024-08-01T09": 1.7077789133999999, + "2024-08-01T10": 1.699198947, + "2024-08-01T11": 1.7025233422920267, + "2024-08-01T12": 1.7172265776, + "2024-08-01T13": 1.7244033234181901, + "2024-08-01T14": 1.69328852, + "2024-08-01T15": 1.65541188, + "2024-08-02": 1.7275236201653053, + "2024-08-02T00": 1.719740462800494, + "2024-08-01T20": 1.64733451, + "2024-08-01T21": 1.7002343439999998, + "2024-08-02T04": 1.6974679637452645, + "2024-08-01T19": 1.6431905, + "2024-08-01T16": 1.6298583, + "2024-08-02T02": 1.6884297869999998, + "2024-08-01T17": 1.6401803769, + "2024-08-01T23": 1.727591844, + "2024-08-02T01": 1.7054807699999999, + "2024-08-01T22": 1.7363975928, + "2024-08-01T18": 1.6181171321157564, + "2024-08-02T03": 1.69144244, + "2024-08-02T05": 1.6748894228272313, + "2024-08-02T06": 1.6540020024, + "2024-08-02T07": 1.6613532130000002, + "2024-08-02T08": 1.6645472781, + "2024-08-02T09": 1.6779157504, + "2024-08-02T10": 1.6798301089750605, + "2024-08-02T11": 1.685383088, + "2024-08-02T12": 1.673597661, + "2024-08-02T13": 1.6836857, + "2024-08-02T14": 1.6854315565634075, + "2024-08-02T15": 1.58744278, + "2024-08-03": 1.5248105114327002, + "2024-08-02T16": 1.59164595, + "2024-08-02T22": 1.5632158999999999, + "2024-08-02T23": 1.5765793920000002, + "2024-08-03T00": 1.5414809942511474, + "2024-08-03T01": 1.5197484074, + "2024-08-03T03": 1.5381674, + "2024-08-02T19": 1.5692076972, + "2024-08-02T18": 1.5784200000000002, + "2024-08-02T21": 1.5531735698361264, + "2024-08-02T17": 1.5864914, + "2024-08-02T20": 1.5749614188, + "2024-08-03T02": 1.52598304, + "2024-08-03T06": 1.5612963299999998, + "2024-08-03T19": 1.4588312234, + "2024-08-03T10": 1.541377184805103, + "2024-08-03T09": 1.5444619929806707, + "2024-08-03T15": 1.517705024784861, + "2024-08-03T22": 1.4961467099999999, + "2024-08-03T05": 1.5514359924, + "2024-08-03T08": 1.54649844, + "2024-08-03T14": 1.5534821268780055, + "2024-08-03T18": 1.4506367045286175, + "2024-08-03T17": 1.46994088, + "2024-08-03T21": 1.477083218, + "2024-08-03T12": 1.5510301268729996, + "2024-08-03T20": 1.468715301, + "2024-08-03T04": 1.5476552878, + "2024-08-03T16": 1.494878, + "2024-08-03T11": 1.5407047200000001, + "2024-08-03T07": 1.563025771, + "2024-08-03T13": 1.5490059592, + "2024-08-04": 1.5030945733535128, + "2024-08-03T23": 1.4941628, + "2024-08-04T17": 1.318404815, + "2024-08-04T13": 1.46596665, + "2024-08-04T06": 1.4885068212857668, + "2024-08-04T12": 1.468526336549363, + "2024-08-04T10": 1.4626590216, + "2024-08-04T16": 1.3405640984, + "2024-08-04T15": 1.3777462911000002, + "2024-08-04T00": 1.4902902097, + "2024-08-04T11": 1.4663317891999998, + "2024-08-04T01": 1.4811456081999999, + "2024-08-04T03": 1.4882766960000002, + "2024-08-04T04": 1.4839642293, + "2024-08-04T07": 1.47313034, + "2024-08-04T08": 1.466028156260881, + "2024-08-04T18": 1.3357818521721354, + "2024-08-04T09": 1.4634853376, + "2024-08-04T02": 1.4901054, + "2024-08-04T05": 1.4835145038000002, + "2024-08-04T14": 1.408294173, + "2024-08-05": 1.2113033263356836, + "2024-08-05T01": 1.320125666294165, + "2024-08-04T19": 1.3704899230878655, + "2024-08-04T22": 1.389843326762855, + "2024-08-05T03": 1.2597146288380368, + "2024-08-05T02": 1.2551003428536613, + "2024-08-04T23": 1.3838501751760461, + "2024-08-05T00": 1.3624117695047535, + "2024-08-05T04": 1.2195032657859854, + "2024-08-05T06": 1.1978042185021585, + "2024-08-04T20": 1.3998747697888498, + "2024-08-05T05": 1.2123702406215846, + "2024-08-04T21": 1.3949723208666227, + "2024-08-05T07": 1.16905223304506, + "2024-08-05T08": 1.2208482316854565, + "2024-08-05T09": 1.1602583777279314, + "2024-08-05T10": 1.1620054743147556, + "2024-08-05T11": 1.1141578522444746, + "2024-08-05T12": 1.10052602811378, + "2024-08-05T13": 1.0688810574018606, + "2024-08-05T14": 1.155455606372398, + "2024-08-05T15": 1.2407578575595017, + "2024-08-06": 1.321248769027556, + "2024-08-05T19": 1.2155517342, + "2024-08-05T20": 1.229612949, + "2024-08-05T21": 1.2409933386, + "2024-08-06T02": 1.32750426, + "2024-08-05T18": 1.2343775526, + "2024-08-05T23": 1.2389777459999998, + "2024-08-05T16": 1.2499231038534182, + "2024-08-06T05": 1.3232002278000001, + "2024-08-05T17": 1.2454566285079123, + "2024-08-06T00": 1.30201035, + "2024-08-06T04": 1.3163821055, + "2024-08-06T03": 1.316713318, + "2024-08-05T22": 1.2425411961, + "2024-08-06T01": 1.335690587, + "2024-08-06T06": 1.3391268494999997, + "2024-08-06T07": 1.3304608118999999, + "2024-08-06T08": 1.3016634271730165, + "2024-08-06T09": 1.2882263520000001, + "2024-08-06T10": 1.2856512768000001, + "2024-08-06T11": 1.282728318811967, + "2024-08-06T12": 1.2803835667, + "2024-08-06T13": 1.2685763659348324, + "2024-08-06T14": 1.2685777808999998 + }, + "USD stellar": { + "2024-06-28": 0.09212369596418775, + "2024-06-30": 0.09045226036411606, + "2024-07-15": 0.10353525129103565, + "2024-07-18": 0.10412051753271394, + "2024-07-14": 0.1037920466782439, + "2024-07-11": 0.08873171448891956, + "2024-07-19": 0.10293314237714624, + "2024-07-12": 0.09100808066956353, + "2024-07-24": 0.1036474908082809, + "2024-07-08": 0.08486543007733391, + "2024-07-07": 0.08840225939974374, + "2024-07-13": 0.10218294686847637, + "2024-07-09": 0.08751228305569522, + "2024-07-02": 0.09327378400364529, + "2024-07-20": 0.1052388022654652, + "2024-06-29": 0.09097466461704048, + "2024-07-21": 0.10449981918558912, + "2024-07-23": 0.10227103980082791, + "2024-07-10": 0.08765063147748486, + "2024-07-01": 0.09185442510168049, + "2024-06-26": 0.09109965041698419, + "2024-07-17": 0.1094785203307934, + "2024-07-22": 0.1045749926120948, + "2024-07-04": 0.08862337985981977, + "2024-06-25": 0.09081660343791965, + "2024-07-26": 0.102555, + "2024-07-03": 0.0913723870514645, + "2024-07-05": 0.08247016614408414, + "2024-07-25": 0.101504, + "2024-07-16": 0.10559173474132819, + "2024-07-06": 0.08748601341618961, + "2024-06-27": 0.09017319565589987, + "2024-07-22T13": 0.1056247854, + "2024-07-25T10": 0.10099236663408134, + "2024-07-26T06": 0.104268, + "2024-07-24T14": 0.10553249980175589, + "2024-07-21T20": 0.1045, + "2024-07-21T07": 0.104498, + "2024-07-21T14": 0.1035962164628633, + "2024-07-22T23": 0.103200951, + "2024-07-24T07": 0.102411, + "2024-07-20T11": 0.10457303825112821, + "2024-07-26T08": 0.102881, + "2024-07-25T20": 0.101024, + "2024-07-21T02": 0.105448, + "2024-07-20T04": 0.10557, + "2024-07-20T03": 0.104503, + "2024-07-25T13": 0.101153, + "2024-07-21T06": 0.104501, + "2024-07-20T12": 0.10464858599117186, + "2024-07-24T02": 0.101253, + "2024-07-24T17": 0.10432129927242367, + "2024-07-25T06": 0.1008137877781944, + "2024-07-25T22": 0.10179, + "2024-07-22T07": 0.10316547250000002, + "2024-07-22T22": 0.10371421439999999, + "2024-07-26T03": 0.103383, + "2024-07-23T01": 0.104501, + "2024-07-24T03": 0.10135, + "2024-07-23T21": 0.10085479623210389, + "2024-07-19T20": 0.10535508647238868, + "2024-07-23T22": 0.10046201155185003, + "2024-07-21T23": 0.10539328382108966, + "2024-07-19T16": 0.10431377556706142, + "2024-07-22T20": 0.105940242, + "2024-07-23T10": 0.10332629727265019, + "2024-07-19T17": 0.10456409334106018, + "2024-07-22T09": 0.10373, + "2024-07-24T04": 0.10189623731813083, + "2024-07-22T06": 0.1027961674, + "2024-07-24T21": 0.103106, + "2024-07-20T21": 0.1049261393118315, + "2024-07-21T15": 0.10410003079338775, + "2024-07-20T09": 0.10554, + "2024-07-25T14": 0.100833, + "2024-07-19T11": 0.101738, + "2024-07-23T20": 0.10132341116938665, + "2024-07-25T03": 0.101075, + "2024-07-20T01": 0.104609, + "2024-07-25T23": 0.10199710646626502, + "2024-07-20T16": 0.10546057118326599, + "2024-07-22T15": 0.10466941939999999, + "2024-07-23T16": 0.1009076149766765, + "2024-07-22T02": 0.1039, + "2024-07-21T04": 0.1052834471094492, + "2024-07-23T09": 0.10341447506227529, + "2024-07-20T10": 0.10540361609499449, + "2024-07-22T19": 0.105628512, + "2024-07-20T00": 0.10461357930053788, + "2024-07-20T19": 0.105533, + "2024-07-26T05": 0.103679442343006, + "2024-07-19T14": 0.10338836457894765, + "2024-07-21T00": 0.10522220902000701, + "2024-07-22T12": 0.10581846480000001, + "2024-07-24T06": 0.102399, + "2024-07-25T01": 0.10113329344752207, + "2024-07-20T22": 0.104931, + "2024-07-19T15": 0.103402, + "2024-07-21T13": 0.103449, + "2024-07-25T07": 0.10146, + "2024-07-21T08": 0.10445243098617839, + "2024-07-23T06": 0.10235948698726947, + "2024-07-22T16": 0.10482572150000001, + "2024-07-24T11": 0.105197, + "2024-07-24T01": 0.101085, + "2024-07-23T00": 0.10429917736578596, + "2024-07-19T12": 0.10217637333032883, + "2024-07-25T17": 0.10268, + "2024-07-25T19": 0.10162175460396151, + "2024-07-19T21": 0.105433, + "2024-07-23T08": 0.10328, + "2024-07-21T21": 0.10555, + "2024-07-21T11": 0.10364935761303781, + "2024-07-22T14": 0.10491573500000001, + "2024-07-20T23": 0.105288, + "2024-07-20T08": 0.105551, + "2024-07-20T02": 0.10445165424253271, + "2024-07-24T05": 0.10185226905191777, + "2024-07-24T16": 0.10394805685449256, + "2024-07-21T01": 0.105263, + "2024-07-24T13": 0.105326, + "2024-07-25T04": 0.100926, + "2024-07-19T13": 0.1025661235737817, + "2024-07-25T12": 0.10219, + "2024-07-19T22": 0.10545, + "2024-07-26T07": 0.10332982298875884, + "2024-07-25T02": 0.10147900532706533, + "2024-07-21T12": 0.10353401860705415, + "2024-07-23T18": 0.100693, + "2024-07-23T11": 0.10243484407038467, + "2024-07-19T10": 0.1017641537830992, + "2024-07-19T19": 0.1053, + "2024-07-25T11": 0.1011, + "2024-07-22T08": 0.10320825600000001, + "2024-07-23T19": 0.101349, + "2024-07-22T21": 0.10485305205779158, + "2024-07-21T09": 0.10451168102831268, + "2024-07-21T22": 0.10576804156390412, + "2024-07-22T04": 0.1037182968, + "2024-07-25T16": 0.101879, + "2024-07-19T23": 0.10524346080810942, + "2024-07-20T06": 0.106549, + "2024-07-23T02": 0.10440141837732982, + "2024-07-23T14": 0.102431, + "2024-07-23T03": 0.104479, + "2024-07-25T08": 0.10218016319028249, + "2024-07-24T15": 0.1045620362157669, + "2024-07-19T09": 0.10200924328256968, + "2024-07-20T15": 0.10546, + "2024-07-23T23": 0.101013, + "2024-07-23T12": 0.102231, + "2024-07-22T10": 0.10400104, + "2024-07-21T10": 0.10443307854190492, + "2024-07-22T00": 0.104745237, + "2024-07-24T22": 0.10303749884729824, + "2024-07-24T19": 0.10377, + "2024-07-24T09": 0.103451, + "2024-07-23T04": 0.10349341848058705, + "2024-07-23T05": 0.10239164070019255, + "2024-07-25T18": 0.10293908277941466, + "2024-07-25T15": 0.1022764257160226, + "2024-07-26T01": 0.10194, + "2024-07-22T01": 0.10448253639999998, + "2024-07-26T02": 0.102311, + "2024-07-24T18": 0.104282, + "2024-07-21T19": 0.10320326563988166, + "2024-07-25T05": 0.10119703546746742, + "2024-07-22T18": 0.10524104399999999, + "2024-07-24T00": 0.100406, + "2024-07-24T08": 0.10339321197666514, + "2024-07-24T20": 0.104116, + "2024-07-24T23": 0.10232201576268699, + "2024-07-22T17": 0.10473466079999999, + "2024-07-21T17": 0.10409182399014126, + "2024-07-24T12": 0.105227, + "2024-07-23T13": 0.10183641080027031, + "2024-07-21T05": 0.105633, + "2024-07-20T05": 0.10518605233499649, + "2024-07-21T03": 0.105241, + "2024-07-26T00": 0.102145, + "2024-07-20T20": 0.105643, + "2024-07-22T03": 0.10370414800000001, + "2024-07-25T21": 0.10207704627138253, + "2024-07-21T16": 0.10429419076829008, + "2024-07-20T17": 0.10532476384182804, + "2024-07-22T11": 0.10500314999999999, + "2024-07-25T00": 0.10326999843400016, + "2024-07-20T13": 0.1045, + "2024-07-23T07": 0.102328, + "2024-07-22T05": 0.1033762022, + "2024-07-20T07": 0.10661813536203524, + "2024-07-21T18": 0.10279, + "2024-07-23T17": 0.100379, + "2024-07-20T14": 0.1048644113109451, + "2024-07-26T04": 0.10355, + "2024-07-24T10": 0.10447, + "2024-07-20T18": 0.10532637243957502, + "2024-07-23T15": 0.10223, + "2024-07-19T18": 0.104684, + "2024-07-25T09": 0.1020801054084876, + "latest": 0.0907, + "2024-07-26T09": 0.102850132248693, + "2024-07-26T10": 0.1024, + "2024-07-26T11": 0.10249, + "2024-07-26T12": 0.10292545225426966, + "2024-07-26T13": 0.102622, + "2024-07-26T14": 0.102423, + "2024-07-26T17": 0.101923, + "2024-07-26T16": 0.10216101267715236, + "2024-07-26T15": 0.10221460094233797, + "2024-07-26T18": 0.102171, + "2024-07-27": 0.102213, + "2024-07-28": 0.100869, + "2024-07-28T05": 0.100082, + "2024-07-26T21": 0.102474, + "2024-07-27T02": 0.10228232061896045, + "2024-07-28T01": 0.101925, + "2024-07-27T10": 0.10234045083354629, + "2024-07-28T02": 0.10175, + "2024-07-27T19": 0.101147, + "2024-07-27T09": 0.10265317503432247, + "2024-07-27T06": 0.10287, + "2024-07-27T18": 0.10139602049985988, + "2024-07-26T22": 0.103186, + "2024-07-27T13": 0.10323, + "2024-07-27T12": 0.102615, + "2024-07-27T16": 0.10219025770155199, + "2024-07-27T05": 0.10293025027979091, + "2024-07-26T23": 0.1031910352727647, + "2024-07-26T20": 0.1022303053508519, + "2024-07-27T08": 0.10277032336717769, + "2024-07-28T03": 0.101439, + "2024-07-27T01": 0.102679, + "2024-07-28T09": 0.101978, + "2024-07-28T10": 0.10201915790114033, + "2024-07-27T00": 0.103012, + "2024-07-28T00": 0.10115, + "2024-07-27T04": 0.10264426269793882, + "2024-07-27T14": 0.10252, + "2024-07-27T07": 0.103141, + "2024-07-27T11": 0.102203, + "2024-07-27T22": 0.1021828455538196, + "2024-07-27T03": 0.10254, + "2024-07-27T20": 0.10153117146255414, + "2024-07-27T23": 0.10177660196412747, + "2024-07-28T08": 0.10114932108490599, + "2024-07-27T21": 0.10221995446541451, + "2024-07-28T07": 0.10115, + "2024-07-27T15": 0.1022, + "2024-07-26T19": 0.102766, + "2024-07-28T04": 0.100635, + "2024-07-28T06": 0.10115, + "2024-07-27T17": 0.10166413825347624, + "2024-07-29": 0.10053, + "2024-07-28T20": 0.100081, + "2024-07-28T16": 0.10044736067532178, + "2024-07-29T07": 0.101711, + "2024-07-28T23": 0.10013698116929556, + "2024-07-28T15": 0.10057823728031633, + "2024-07-28T18": 0.100421, + "2024-07-29T04": 0.101284, + "2024-07-29T06": 0.101687, + "2024-07-28T21": 0.10008, + "2024-07-29T03": 0.10139023416065227, + "2024-07-28T12": 0.10142703493492133, + "2024-07-29T05": 0.10134443922438474, + "2024-07-28T17": 0.10010722368325131, + "2024-07-29T00": 0.100719, + "2024-07-29T01": 0.10065, + "2024-07-28T22": 0.0998472190917765, + "2024-07-28T19": 0.10027, + "2024-07-28T14": 0.10085272113091377, + "2024-07-29T02": 0.10115, + "2024-07-29T08": 0.10182504343687745, + "2024-07-28T11": 0.10175988487079252, + "2024-07-28T13": 0.10159, + "2024-07-29T09": 0.10171926340385395, + "2024-07-29T10": 0.101489, + "2024-07-29T11": 0.10167985426844989, + "2024-07-29T12": 0.101701, + "2024-07-29T13": 0.10160739225483989, + "2024-07-30": 0.102134, + "2024-07-29T23": 0.09932253260356487, + "2024-07-29T18": 0.09988613855358189, + "2024-07-29T21": 0.09957943673191272, + "2024-07-29T22": 0.099888, + "2024-07-29T17": 0.09965262138030759, + "2024-07-29T15": 0.10011332252651489, + "2024-07-30T01": 0.09965493643870765, + "2024-07-29T19": 0.09984035194481812, + "2024-07-30T04": 0.09969825279849674, + "2024-07-29T14": 0.10069211878193485, + "2024-07-29T20": 0.10008, + "2024-07-30T03": 0.09948610575841008, + "2024-07-30T00": 0.09922832594434276, + "2024-07-29T16": 0.099113, + "2024-07-30T02": 0.099, + "2024-07-30T09": 0.100255, + "2024-07-30T08": 0.10015, + "2024-07-30T06": 0.10017485669001441, + "2024-07-30T05": 0.10013222956408632, + "2024-07-30T07": 0.1002092304978692, + "2024-07-30T10": 0.10219, + "2024-07-30T11": 0.102374, + "2024-07-30T12": 0.10303610143820305, + "2024-07-30T13": 0.10238031403754938, + "2024-07-31": 0.10446446432798918, + "2024-07-31T00": 0.1027743, + "2024-07-31T05": 0.1037671662, + "2024-07-30T23": 0.102338, + "2024-07-30T19": 0.102103, + "2024-07-30T16": 0.10273156513734197, + "2024-07-30T17": 0.10230949924106261, + "2024-07-30T18": 0.10227652329350709, + "2024-07-30T20": 0.10149590593613478, + "2024-07-30T15": 0.10170737257481743, + "2024-07-31T03": 0.1053878639, + "2024-07-30T21": 0.1012772805057273, + "2024-07-31T01": 0.10380611910000001, + "2024-07-31T07": 0.10496744999999999, + "2024-07-31T06": 0.1040998023, + "2024-07-31T02": 0.10567886, + "2024-07-30T22": 0.102211, + "2024-07-30T14": 0.10195519930946069, + "2024-07-31T04": 0.10528788489999999, + "2024-07-31T08": 0.10505270500000001, + "2024-07-31T11": 0.1054919475, + "2024-07-31T09": 0.10545885499999999, + "2024-07-31T10": 0.1051195184, + "2024-07-31T12": 0.10556085280000001, + "2024-08-01": 0.098127, + "2024-07-31T14": 0.104652885, + "2024-07-31T23": 0.10085878443435516, + "2024-07-31T13": 0.10514056070000001, + "2024-07-31T21": 0.10101160099999999, + "2024-08-01T01": 0.100479, + "2024-07-31T18": 0.1024761717, + "2024-07-31T19": 0.10137942668264154, + "2024-07-31T16": 0.1026699431, + "2024-08-01T02": 0.099549, + "2024-07-31T22": 0.1013985567, + "2024-07-31T20": 0.100760688, + "2024-07-31T17": 0.1026799392, + "2024-08-01T00": 0.1006652181465234, + "2024-07-31T15": 0.10415727799999999, + "2024-08-01T07": 0.09863, + "2024-08-01T06": 0.09906728576238383, + "2024-08-01T05": 0.09826, + "2024-08-01T04": 0.09872646814839796, + "2024-08-01T03": 0.09942723696453742, + "2024-08-01T08": 0.098538, + "2024-08-01T09": 0.098883, + "2024-08-01T10": 0.09902081914116409, + "2024-08-01T11": 0.099408, + "2024-08-01T12": 0.09935, + "2024-08-01T13": 0.0992199714520045, + "2024-08-01T14": 0.09844214596821878, + "2024-08-01T15": 0.09716306875269731, + "2024-08-02": 0.095823, + "2024-08-02T00": 0.09914011254898512, + "2024-08-01T20": 0.09763433295338589, + "2024-08-01T21": 0.098081, + "2024-08-02T04": 0.098498, + "2024-08-01T19": 0.09704, + "2024-08-01T16": 0.09619, + "2024-08-02T02": 0.098056, + "2024-08-01T17": 0.09688, + "2024-08-01T23": 0.0992703224606429, + "2024-08-02T01": 0.098606, + "2024-08-01T22": 0.099068, + "2024-08-01T18": 0.096273, + "2024-08-02T03": 0.09851225263291523, + "2024-08-02T05": 0.09794333082751631, + "2024-08-02T06": 0.09704, + "2024-08-02T07": 0.09750415939921199, + "2024-08-02T08": 0.097114, + "2024-08-02T09": 0.097553, + "2024-08-02T10": 0.09762652671016292, + "2024-08-02T11": 0.09749989936683104, + "2024-08-02T12": 0.09735483778994773, + "2024-08-02T13": 0.0978635589543228, + "2024-08-02T14": 0.09787390782336833, + "2024-08-02T15": 0.09455918304167815, + "2024-08-03": 0.09384, + "2024-08-02T16": 0.094322, + "2024-08-02T22": 0.09516917263198363, + "2024-08-02T23": 0.09564174387751828, + "2024-08-03T00": 0.095068, + "2024-08-03T01": 0.09384, + "2024-08-03T03": 0.094512, + "2024-08-02T19": 0.09440266841488418, + "2024-08-02T18": 0.09453, + "2024-08-02T21": 0.094802, + "2024-08-02T17": 0.094804, + "2024-08-02T20": 0.09535408215636915, + "2024-08-03T02": 0.09476304757798229, + "2024-08-03T06": 0.09549405956474952, + "2024-08-03T19": 0.09243980676025955, + "2024-08-03T10": 0.09529203215679687, + "2024-08-03T09": 0.09485, + "2024-08-03T15": 0.093859, + "2024-08-03T22": 0.093381, + "2024-08-03T05": 0.09578266608115306, + "2024-08-03T08": 0.09510182071111674, + "2024-08-03T14": 0.09536436737282208, + "2024-08-03T18": 0.091934, + "2024-08-03T17": 0.092428, + "2024-08-03T21": 0.09291443955907233, + "2024-08-03T12": 0.09553648670258251, + "2024-08-03T20": 0.09241037475599513, + "2024-08-03T04": 0.095213, + "2024-08-03T16": 0.093031, + "2024-08-03T11": 0.095272, + "2024-08-03T07": 0.09545929870243298, + "2024-08-03T13": 0.095341, + "2024-08-04": 0.08924, + "2024-08-03T23": 0.09355202119586213, + "2024-08-04T17": 0.087707, + "2024-08-04T13": 0.09144918672688943, + "2024-08-04T06": 0.09239196411589434, + "2024-08-04T12": 0.09168689434485117, + "2024-08-04T10": 0.09144011484599482, + "2024-08-04T16": 0.0886346868066429, + "2024-08-04T15": 0.08896, + "2024-08-04T00": 0.09298451638299005, + "2024-08-04T11": 0.09168046970659818, + "2024-08-04T01": 0.09257, + "2024-08-04T03": 0.09257, + "2024-08-04T04": 0.09254, + "2024-08-04T07": 0.0915, + "2024-08-04T08": 0.0915036529261815, + "2024-08-04T18": 0.08769811860324421, + "2024-08-04T09": 0.09197849761851634, + "2024-08-04T02": 0.092745, + "2024-08-04T05": 0.09227929170834544, + "2024-08-04T14": 0.09, + "2024-08-05": 0.082438, + "2024-08-05T01": 0.08495086882319842, + "2024-08-04T19": 0.08806322865545681, + "2024-08-04T22": 0.08847543122922896, + "2024-08-05T03": 0.08187184137463678, + "2024-08-05T02": 0.08135220718651767, + "2024-08-04T23": 0.08896021429787125, + "2024-08-05T00": 0.08827647975003282, + "2024-08-05T04": 0.08253944693940239, + "2024-08-05T06": 0.08284910038874888, + "2024-08-04T20": 0.08896258300962613, + "2024-08-05T05": 0.08323100351484583, + "2024-08-04T21": 0.08889456898834991, + "2024-08-05T07": 0.08046869554797251, + "2024-08-05T08": 0.08315211772733148, + "2024-08-05T09": 0.08224427294930392, + "2024-08-05T10": 0.08189383507786692, + "2024-08-05T11": 0.07785956277937611, + "2024-08-05T12": 0.07817311223279577, + "2024-08-05T13": 0.07676181024835704, + "2024-08-05T14": 0.081629847517919, + "2024-08-05T15": 0.086784, + "2024-08-06": 0.0901915040400697, + "2024-08-05T19": 0.08575, + "2024-08-05T20": 0.08693242612477958, + "2024-08-05T21": 0.08813445210830256, + "2024-08-06T02": 0.0900342, + "2024-08-05T18": 0.08668918120349861, + "2024-08-05T23": 0.088434, + "2024-08-05T16": 0.08751146780861074, + "2024-08-06T05": 0.09055339500000001, + "2024-08-05T17": 0.087777, + "2024-08-06T00": 0.08991798, + "2024-08-06T04": 0.09035063950000001, + "2024-08-06T03": 0.09028519749999998, + "2024-08-05T22": 0.08852544194639966, + "2024-08-06T01": 0.090657189, + "2024-08-06T06": 0.09146672199999999, + "2024-08-06T07": 0.09168138539999998, + "2024-08-06T08": 0.090652548, + "2024-08-06T09": 0.09012703, + "2024-08-06T10": 0.089378592, + "2024-08-06T11": 0.08902225, + "2024-08-06T12": 0.0896231483, + "2024-08-06T13": 0.088874878, + "2024-08-06T14": 0.0888757665 + }, + "USD tezos": { + "2024-06-28": 0.7670316402915892, + "2024-06-30": 0.7777297000402474, + "2024-07-15": 0.8001922330930612, + "2024-07-18": 0.8090854653436041, + "2024-07-14": 0.7859671396248349, + "2024-07-11": 0.7544225524252018, + "2024-07-19": 0.8069995001526025, + "2024-07-12": 0.7531017608919766, + "2024-07-24": 0.7603307219258691, + "2024-07-08": 0.6949426103399923, + "2024-07-07": 0.7270075760383595, + "2024-07-13": 0.7841641128004739, + "2024-07-09": 0.7350009889007721, + "2024-07-02": 0.7953626248791787, + "2024-07-20": 0.8043858985500304, + "2024-06-29": 0.7747735752307132, + "2024-07-21": 0.7936609278527491, + "2024-07-23": 0.7641188946805606, + "2024-07-10": 0.7490000029179859, + "2024-07-01": 0.7960564915274565, + "2024-06-26": 0.7787659677368886, + "2024-07-17": 0.8250965168498888, + "2024-07-22": 0.78411798914096, + "2024-07-04": 0.7264860616125046, + "2024-06-25": 0.7916217248825926, + "2024-07-26": 0.7681372172443224, + "2024-07-03": 0.772969470711767, + "2024-07-05": 0.65789472, + "2024-07-25": 0.7278329511827687, + "2024-07-16": 0.8092988231179435, + "2024-07-06": 0.7313731299999999, + "2024-06-27": 0.770228251554875, + "2024-07-22T13": 0.7871101800000001, + "2024-07-25T10": 0.725538712, + "2024-07-26T06": 0.7668466, + "2024-07-24T14": 0.7721158000000001, + "2024-07-21T20": 0.799923916, + "2024-07-21T07": 0.7922296799999999, + "2024-07-21T14": 0.7880799250968296, + "2024-07-22T23": 0.7722316, + "2024-07-24T07": 0.7639770800000001, + "2024-07-20T11": 0.8012924410000001, + "2024-07-26T08": 0.7688769599999999, + "2024-07-25T20": 0.7227265039999999, + "2024-07-21T02": 0.8082262400000001, + "2024-07-20T04": 0.806979102, + "2024-07-20T03": 0.8043618000000001, + "2024-07-25T13": 0.72376832, + "2024-07-21T06": 0.79523055, + "2024-07-20T12": 0.8003840000000001, + "2024-07-24T02": 0.7570075700000001, + "2024-07-24T17": 0.7640324753714602, + "2024-07-25T06": 0.732909394, + "2024-07-25T22": 0.7458135, + "2024-07-22T07": 0.7831174500000001, + "2024-07-22T22": 0.77425542, + "2024-07-26T03": 0.760478304, + "2024-07-23T01": 0.7830783, + "2024-07-24T03": 0.76104566, + "2024-07-23T21": 0.7601140000000001, + "2024-07-19T20": 0.81336585, + "2024-07-23T22": 0.755235918, + "2024-07-21T23": 0.8050644000000001, + "2024-07-19T16": 0.8231645999999999, + "2024-07-22T20": 0.78579849, + "2024-07-23T10": 0.77299227, + "2024-07-19T17": 0.8201065999999999, + "2024-07-22T09": 0.7855, + "2024-07-24T04": 0.7600228, + "2024-07-22T06": 0.786347178, + "2024-07-24T21": 0.74742525, + "2024-07-20T21": 0.8049701159999999, + "2024-07-21T15": 0.7928615579999999, + "2024-07-20T09": 0.8064433000000001, + "2024-07-25T14": 0.7237393599999999, + "2024-07-19T11": 0.80183158, + "2024-07-23T20": 0.7621524, + "2024-07-25T03": 0.725762079, + "2024-07-20T01": 0.804402, + "2024-07-25T23": 0.744669081, + "2024-07-20T16": 0.8052898, + "2024-07-22T15": 0.780970281, + "2024-07-23T16": 0.752927976, + "2024-07-22T02": 0.8031, + "2024-07-21T04": 0.8057255400000001, + "2024-07-23T09": 0.773, + "2024-07-20T10": 0.8048700699999999, + "2024-07-22T19": 0.7826112479999999, + "2024-07-20T00": 0.804402, + "2024-07-20T19": 0.8071711279999999, + "2024-07-26T05": 0.7611553529999999, + "2024-07-19T14": 0.819, + "2024-07-21T00": 0.8067338849999999, + "2024-07-22T12": 0.7890631200000001, + "2024-07-24T06": 0.7610076100000001, + "2024-07-25T01": 0.727812652, + "2024-07-20T22": 0.8050715633335269, + "2024-07-19T15": 0.8217164339999999, + "2024-07-21T13": 0.787744125, + "2024-07-25T07": 0.732916725, + "2024-07-21T08": 0.79322997, + "2024-07-23T06": 0.7581137000000001, + "2024-07-22T16": 0.7801170000000001, + "2024-07-24T11": 0.771, + "2024-07-24T01": 0.756615132, + "2024-07-23T00": 0.7762328, + "2024-07-19T12": 0.80581462, + "2024-07-25T17": 0.7328460699999999, + "2024-07-25T19": 0.7227903299999999, + "2024-07-19T21": 0.8084120800000001, + "2024-07-23T08": 0.7700231, + "2024-07-21T21": 0.8027524939999999, + "2024-07-21T11": 0.7932141100000001, + "2024-07-22T14": 0.78071709, + "2024-07-20T23": 0.8049333629999998, + "2024-07-20T08": 0.8094045, + "2024-07-20T02": 0.8043618000000001, + "2024-07-24T05": 0.7570605600000001, + "2024-07-24T16": 0.7594683459999999, + "2024-07-21T01": 0.8062982200000001, + "2024-07-24T13": 0.771, + "2024-07-25T04": 0.7268982199999999, + "2024-07-19T13": 0.8078384000000001, + "2024-07-25T12": 0.725531454, + "2024-07-19T22": 0.8083959200000002, + "2024-07-26T07": 0.7698537, + "2024-07-25T02": 0.7261547399999999, + "2024-07-21T12": 0.7912373, + "2024-07-23T18": 0.757683336, + "2024-07-23T11": 0.7694153879999999, + "2024-07-19T10": 0.7963781008915458, + "2024-07-19T19": 0.8043216, + "2024-07-25T11": 0.7261167040000001, + "2024-07-22T08": 0.7838627040000001, + "2024-07-23T19": 0.762951691, + "2024-07-22T21": 0.7811264609999999, + "2024-07-21T09": 0.7952226000000001, + "2024-07-21T22": 0.80678067, + "2024-07-22T04": 0.7967637360000001, + "2024-07-25T16": 0.728939598, + "2024-07-19T23": 0.808404, + "2024-07-20T06": 0.8112243599999999, + "2024-07-23T02": 0.7820625600000001, + "2024-07-23T14": 0.76812288, + "2024-07-23T03": 0.7800546, + "2024-07-25T08": 0.7300882129999999, + "2024-07-24T15": 0.76414516, + "2024-07-19T09": 0.8001528647242275, + "2024-07-20T15": 0.8042492400000001, + "2024-07-23T23": 0.75806822, + "2024-07-23T12": 0.7662378980000001, + "2024-07-22T10": 0.78700787, + "2024-07-21T10": 0.7958159525609375, + "2024-07-22T00": 0.8080404000000001, + "2024-07-24T22": 0.745565774, + "2024-07-24T19": 0.75299247, + "2024-07-24T09": 0.768, + "2024-07-23T04": 0.7690769000000001, + "2024-07-23T05": 0.759745582, + "2024-07-25T18": 0.724711526, + "2024-07-25T15": 0.7298394, + "2024-07-26T01": 0.7528494, + "2024-07-22T01": 0.8046965519999999, + "2024-07-26T02": 0.7550770573875972, + "2024-07-24T18": 0.7590759, + "2024-07-21T19": 0.7883073199999999, + "2024-07-25T05": 0.73182432, + "2024-07-22T18": 0.7831566, + "2024-07-24T00": 0.75906831, + "2024-07-24T08": 0.7679923200000001, + "2024-07-24T20": 0.754392456, + "2024-07-24T23": 0.74286626, + "2024-07-22T17": 0.7792090740000001, + "2024-07-21T17": 0.7865867409374628, + "2024-07-24T12": 0.769535992102776, + "2024-07-23T13": 0.763322112, + "2024-07-21T05": 0.8001239720000001, + "2024-07-20T05": 0.8083878400000001, + "2024-07-21T03": 0.807125932, + "2024-07-26T00": 0.747043088, + "2024-07-20T20": 0.80762292, + "2024-07-22T03": 0.79953198, + "2024-07-25T21": 0.7398298, + "2024-07-21T16": 0.7902923000000001, + "2024-07-20T17": 0.80552208, + "2024-07-22T11": 0.78802364, + "2024-07-25T00": 0.744166026, + "2024-07-20T13": 0.7923326400000001, + "2024-07-23T07": 0.7590759, + "2024-07-22T05": 0.79104746, + "2024-07-20T07": 0.8113649500000001, + "2024-07-21T18": 0.7763336799999999, + "2024-07-23T17": 0.7490749, + "2024-07-20T14": 0.8003040000000001, + "2024-07-26T04": 0.76189332, + "2024-07-24T10": 0.7691, + "2024-07-20T18": 0.810405, + "2024-07-23T15": 0.76613022, + "2024-07-19T18": 0.80921034, + "2024-07-25T09": 0.7297372, + "latest": 0.651465, + "2024-07-26T09": 0.7658621200000001, + "2024-07-26T10": 0.76379372, + "2024-07-26T11": 0.7640281138503642, + "2024-07-26T12": 0.7667696270000001, + "2024-07-26T13": 0.7688769599999999, + "2024-07-26T14": 0.7699307, + "2024-07-26T17": 0.77198456, + "2024-07-26T16": 0.771861405, + "2024-07-26T15": 0.77193824, + "2024-07-26T18": 0.772, + "2024-07-27": 0.7780741753024834, + "2024-07-28": 0.77198456, + "2024-07-28T05": 0.76599234, + "2024-07-26T21": 0.7767, + "2024-07-27T02": 0.776923307, + "2024-07-28T01": 0.77894547, + "2024-07-27T10": 0.7780622400000001, + "2024-07-28T02": 0.77816109, + "2024-07-27T19": 0.776694125, + "2024-07-27T09": 0.7787700829999998, + "2024-07-27T06": 0.77701554, + "2024-07-27T18": 0.7779166700000001, + "2024-07-26T22": 0.7788311520000001, + "2024-07-27T13": 0.7823016859999999, + "2024-07-27T12": 0.778232277, + "2024-07-27T16": 0.7809922659835766, + "2024-07-27T05": 0.7797155939999999, + "2024-07-26T23": 0.7788311520000001, + "2024-07-26T20": 0.778, + "2024-07-27T08": 0.7784558316717298, + "2024-07-28T03": 0.77598448, + "2024-07-27T01": 0.775031, + "2024-07-28T09": 0.771384572, + "2024-07-28T10": 0.77397678, + "2024-07-27T00": 0.7775311, + "2024-07-28T00": 0.7759922400000001, + "2024-07-27T04": 0.7776155519999999, + "2024-07-27T14": 0.7840784000000001, + "2024-07-27T07": 0.7794405597831835, + "2024-07-27T11": 0.77713209, + "2024-07-27T22": 0.782229593, + "2024-07-27T03": 0.77800778, + "2024-07-27T20": 0.77303865, + "2024-07-27T23": 0.7795454279999999, + "2024-07-28T08": 0.7699846, + "2024-07-27T21": 0.781176564, + "2024-07-28T07": 0.76898462, + "2024-07-27T15": 0.7789778900000001, + "2024-07-26T19": 0.7744, + "2024-07-28T04": 0.7717845640000001, + "2024-07-28T06": 0.76898462, + "2024-07-27T17": 0.776193132, + "2024-07-29": 0.782300438176885, + "2024-07-28T20": 0.77191508, + "2024-07-28T16": 0.770592294, + "2024-07-29T07": 0.7933571700000001, + "2024-07-28T23": 0.77098458, + "2024-07-28T15": 0.7706922930000001, + "2024-07-28T18": 0.77391486, + "2024-07-29T04": 0.7899052, + "2024-07-29T06": 0.7948988700450841, + "2024-07-28T21": 0.7689231, + "2024-07-29T03": 0.79191288, + "2024-07-28T12": 0.7789766300000001, + "2024-07-29T05": 0.79390472, + "2024-07-28T17": 0.7699153, + "2024-07-29T00": 0.78, + "2024-07-29T01": 0.7827298443584914, + "2024-07-28T22": 0.76897693, + "2024-07-28T19": 0.77391486, + "2024-07-28T14": 0.774, + "2024-07-29T02": 0.78794484, + "2024-07-29T08": 0.7918416, + "2024-07-28T11": 0.77796888, + "2024-07-28T13": 0.779084418, + "2024-07-29T09": 0.79282554, + "2024-07-29T10": 0.79183368, + "2024-07-29T11": 0.7906339319999999, + "2024-07-29T12": 0.7904288549999999, + "2024-07-29T13": 0.7899289, + "2024-07-30": 0.7538378395706485, + "2024-07-29T23": 0.75590172, + "2024-07-29T18": 0.7657525837503742, + "2024-07-29T21": 0.75593952, + "2024-07-29T22": 0.754001967, + "2024-07-29T17": 0.7659451570724285, + "2024-07-29T15": 0.7703064082928046, + "2024-07-30T01": 0.758533086, + "2024-07-29T19": 0.76287792, + "2024-07-30T04": 0.7588482, + "2024-07-29T14": 0.7838824000000001, + "2024-07-29T20": 0.7600163889999999, + "2024-07-30T03": 0.7598936, + "2024-07-30T00": 0.7556776238879388, + "2024-07-29T16": 0.76675456, + "2024-07-30T02": 0.7554488800000001, + "2024-07-30T09": 0.76583148, + "2024-07-30T08": 0.766585296, + "2024-07-30T06": 0.761032536, + "2024-07-30T05": 0.75885579, + "2024-07-30T07": 0.764601152, + "2024-07-30T10": 0.7625703410000001, + "2024-07-30T11": 0.76183998, + "2024-07-30T12": 0.7598480000000001, + "2024-07-30T13": 0.7588482, + "2024-07-31": 0.7509579557148065, + "2024-07-31T00": 0.750712275, + "2024-07-31T05": 0.7431717787313268, + "2024-07-30T23": 0.7511820939999999, + "2024-07-30T19": 0.74272509, + "2024-07-30T16": 0.75075968, + "2024-07-30T17": 0.7456807050476497, + "2024-07-30T18": 0.7447616, + "2024-07-30T20": 0.7437768, + "2024-07-30T15": 0.7522441499999999, + "2024-07-31T03": 0.7497425209999999, + "2024-07-30T21": 0.746005988, + "2024-07-31T01": 0.751627086, + "2024-07-31T07": 0.75376626, + "2024-07-31T06": 0.7539812819999999, + "2024-07-31T02": 0.75174962, + "2024-07-30T22": 0.7497825, + "2024-07-30T14": 0.7518496, + "2024-07-31T04": 0.7448435499999999, + "2024-07-31T08": 0.750162275, + "2024-07-31T11": 0.7465891499999999, + "2024-07-31T09": 0.749007773, + "2024-07-31T10": 0.747341104, + "2024-07-31T12": 0.748280728, + "2024-08-01": 0.7206175520461945, + "2024-07-31T14": 0.7496625, + "2024-07-31T23": 0.731665792, + "2024-07-31T13": 0.753445714, + "2024-07-31T21": 0.7356203579999999, + "2024-08-01T01": 0.7337431, + "2024-07-31T18": 0.7487528299999999, + "2024-07-31T19": 0.74374704, + "2024-07-31T16": 0.74770828, + "2024-08-01T02": 0.7357165062832756, + "2024-07-31T22": 0.73577184, + "2024-07-31T20": 0.736612609, + "2024-07-31T17": 0.747808241, + "2024-08-01T00": 0.7337577799999999, + "2024-07-31T15": 0.7486929099999999, + "2024-08-01T07": 0.7227186593730821, + "2024-08-01T06": 0.7237776870156126, + "2024-08-01T05": 0.7130199494395301, + "2024-08-01T04": 0.7270135650805511, + "2024-08-01T03": 0.7278349162829828, + "2024-08-01T08": 0.72562248, + "2024-08-01T09": 0.72657834, + "2024-08-01T10": 0.72361628, + "2024-08-01T11": 0.72261681, + "2024-08-01T12": 0.7251227400000001, + "2024-08-01T13": 0.7236524799999999, + "2024-08-01T14": 0.7166988599999999, + "2024-08-01T15": 0.7046475, + "2024-08-02": 0.7277124204006494, + "2024-08-02T00": 0.72644561, + "2024-08-01T20": 0.71128088, + "2024-08-01T21": 0.72033668, + "2024-08-02T04": 0.713150442, + "2024-08-01T19": 0.7049709857177172, + "2024-08-01T16": 0.69601245, + "2024-08-02T02": 0.712279777, + "2024-08-01T17": 0.69443705, + "2024-08-01T23": 0.729121286, + "2024-08-02T01": 0.7193592, + "2024-08-01T22": 0.72739576, + "2024-08-01T18": 0.6943605999999999, + "2024-08-02T03": 0.71334312, + "2024-08-02T05": 0.70738404, + "2024-08-02T06": 0.7032725670891078, + "2024-08-02T07": 0.7094249, + "2024-08-02T08": 0.70841153, + "2024-08-02T09": 0.71238682, + "2024-08-02T10": 0.713057664, + "2024-08-02T11": 0.7161978880000001, + "2024-08-02T12": 0.7125009, + "2024-08-02T13": 0.7154415199999999, + "2024-08-02T14": 0.70349312, + "2024-08-02T15": 0.6871259559999999, + "2024-08-03": 0.6864645605462295, + "2024-08-02T16": 0.693709845, + "2024-08-02T22": 0.6892134, + "2024-08-02T23": 0.6885175680000001, + "2024-08-03T00": 0.685201209, + "2024-08-03T01": 0.678564338, + "2024-08-03T03": 0.69117652, + "2024-08-02T19": 0.689347791, + "2024-08-02T18": 0.6929119538310409, + "2024-08-02T21": 0.6879114, + "2024-08-02T17": 0.6963378499999999, + "2024-08-02T20": 0.6932435399999999, + "2024-08-03T02": 0.6862928960000001, + "2024-08-03T06": 0.6952413599999999, + "2024-08-03T19": 0.669377478, + "2024-08-03T10": 0.703979952, + "2024-08-03T09": 0.7030135547677675, + "2024-08-03T15": 0.69453435, + "2024-08-03T22": 0.6786129700000001, + "2024-08-03T05": 0.6942285499999999, + "2024-08-03T08": 0.69832197, + "2024-08-03T14": 0.6995599555730682, + "2024-08-03T18": 0.67063023, + "2024-08-03T17": 0.6745140000000001, + "2024-08-03T21": 0.6700976999999999, + "2024-08-03T12": 0.7034649599999999, + "2024-08-03T20": 0.667652373, + "2024-08-03T04": 0.69429805, + "2024-08-03T16": 0.6834870000000001, + "2024-08-03T11": 0.702809144, + "2024-08-03T07": 0.700150037, + "2024-08-03T13": 0.6985246799999999, + "2024-08-04": 0.6686580635899834, + "2024-08-03T23": 0.6808266022494607, + "2024-08-04T17": 0.64746216, + "2024-08-04T13": 0.68875545, + "2024-08-04T06": 0.68757344, + "2024-08-04T12": 0.68935515, + "2024-08-04T10": 0.6866427600000001, + "2024-08-04T16": 0.651830344, + "2024-08-04T15": 0.662156058, + "2024-08-04T00": 0.6835964400000001, + "2024-08-04T11": 0.692146825, + "2024-08-04T01": 0.68559526, + "2024-08-04T03": 0.6845753000000001, + "2024-08-04T04": 0.68558154, + "2024-08-04T07": 0.686194906, + "2024-08-04T08": 0.684482211, + "2024-08-04T18": 0.6493660298835607, + "2024-08-04T09": 0.685309151, + "2024-08-04T02": 0.6865878, + "2024-08-04T05": 0.6855848685100572, + "2024-08-04T14": 0.67071147, + "2024-08-05": 0.5969062545140237, + "2024-08-05T01": 0.634589841531099, + "2024-08-04T19": 0.6549935560189263, + "2024-08-04T22": 0.6650901073149784, + "2024-08-05T03": 0.6041114725524265, + "2024-08-05T02": 0.6061446208128889, + "2024-08-04T23": 0.6686716798980864, + "2024-08-05T00": 0.6599349496632801, + "2024-08-05T04": 0.5970403935143587, + "2024-08-05T06": 0.588302039054544, + "2024-08-04T20": 0.6667447208707756, + "2024-08-05T05": 0.5965010388815255, + "2024-08-04T21": 0.66887363947823, + "2024-08-05T07": 0.5650005367304126, + "2024-08-05T08": 0.5974930839003747, + "2024-08-05T09": 0.5891085452025391, + "2024-08-05T10": 0.5866902071658759, + "2024-08-05T11": 0.5640733199999999, + "2024-08-05T12": 0.5710063645047566, + "2024-08-05T13": 0.5553699651847184, + "2024-08-05T14": 0.5933150722718583, + "2024-08-05T15": 0.6223918599999999, + "2024-08-06": 0.6399242390915799, + "2024-08-05T19": 0.610031724, + "2024-08-05T20": 0.61556155, + "2024-08-05T21": 0.6191114200000001, + "2024-08-06T02": 0.6382424400000001, + "2024-08-05T18": 0.619885016, + "2024-08-05T23": 0.61822362, + "2024-08-05T16": 0.62964044, + "2024-08-06T05": 0.6410780130000001, + "2024-08-05T17": 0.6281704020000001, + "2024-08-06T00": 0.6362448853101913, + "2024-08-06T04": 0.6382871, + "2024-08-06T03": 0.6412499899999999, + "2024-08-05T22": 0.6237060120000001, + "2024-08-06T01": 0.6441932, + "2024-08-06T06": 0.64947377, + "2024-08-06T07": 0.64843416, + "2024-08-06T08": 0.6403712, + "2024-08-06T09": 0.6341902, + "2024-08-06T10": 0.6332025600000001, + "2024-08-06T11": 0.6339597882163912, + "2024-08-06T12": 0.63423458, + "2024-08-06T13": 0.63217696, + "2024-08-06T14": 0.6321832799999999 + }, + "USD tron": { + "2024-06-28": 0.12245488252690773, + "2024-06-30": 0.1251046046917105, + "2024-07-15": 0.13812946819797156, + "2024-07-18": 0.13395140194395735, + "2024-07-14": 0.137977638794895, + "2024-07-11": 0.1343411435915244, + "2024-07-19": 0.1346622272134408, + "2024-07-12": 0.1363199031142246, + "2024-07-24": 0.13421315604718453, + "2024-07-08": 0.1251851711931907, + "2024-07-07": 0.12910607177548036, + "2024-07-13": 0.13983339313317353, + "2024-07-09": 0.12871562147547816, + "2024-07-02": 0.12812021945234664, + "2024-07-20": 0.1345468548078169, + "2024-06-29": 0.12497134470515599, + "2024-07-21": 0.13434603728393157, + "2024-07-23": 0.13262223808257803, + "2024-07-10": 0.13032972764153505, + "2024-07-01": 0.12805091602650864, + "2024-06-26": 0.12318660999863351, + "2024-07-17": 0.13436187000978447, + "2024-07-22": 0.13471573078896315, + "2024-07-04": 0.1275905190684483, + "2024-06-25": 0.12130315432981217, + "2024-07-26": 0.1368431918235906, + "2024-07-03": 0.12898161369373876, + "2024-07-05": 0.12593885516900505, + "2024-07-25": 0.13541447494175274, + "2024-07-16": 0.13406400505237165, + "2024-07-06": 0.12936163207115028, + "2024-06-27": 0.1228602035785068, + "2024-07-22T13": 0.13443881880000003, + "2024-07-25T10": 0.13595104, + "2024-07-26T06": 0.13667266, + "2024-07-24T14": 0.13469020050000002, + "2024-07-21T20": 0.13434360568, + "2024-07-21T07": 0.13400885129999998, + "2024-07-21T14": 0.13437567220000002, + "2024-07-22T23": 0.13253975, + "2024-07-24T07": 0.133895983, + "2024-07-20T11": 0.13407966686, + "2024-07-26T08": 0.1363481808, + "2024-07-25T20": 0.13521354096, + "2024-07-21T02": 0.134837744, + "2024-07-20T04": 0.1347132855, + "2024-07-20T03": 0.13464056100000002, + "2024-07-25T13": 0.13542465024, + "2024-07-21T06": 0.13425792351, + "2024-07-20T12": 0.1340443104, + "2024-07-24T02": 0.13403134030000002, + "2024-07-24T17": 0.13422765771, + "2024-07-25T06": 0.13536479599999998, + "2024-07-25T22": 0.1355661, + "2024-07-22T07": 0.136140418, + "2024-07-22T22": 0.1328738339, + "2024-07-26T03": 0.13657814399999998, + "2024-07-23T01": 0.13281328, + "2024-07-24T03": 0.13410804599999998, + "2024-07-23T21": 0.13342901135000002, + "2024-07-19T20": 0.13461955155000002, + "2024-07-23T22": 0.133924102, + "2024-07-21T23": 0.13424573880000001, + "2024-07-19T16": 0.13469693400000002, + "2024-07-22T20": 0.1332806274, + "2024-07-23T10": 0.1323686763, + "2024-07-19T17": 0.1345374876, + "2024-07-22T09": 0.1353, + "2024-07-24T04": 0.13400402, + "2024-07-22T06": 0.136208172, + "2024-07-24T21": 0.13421657699999998, + "2024-07-20T21": 0.13450084193999998, + "2024-07-21T15": 0.13458439819999998, + "2024-07-20T09": 0.13463400800000003, + "2024-07-25T14": 0.135251292, + "2024-07-19T11": 0.13472370208, + "2024-07-23T20": 0.13342668, + "2024-07-25T03": 0.13397454, + "2024-07-20T01": 0.13465729499999998, + "2024-07-25T23": 0.13540001298, + "2024-07-20T16": 0.13429032712, + "2024-07-22T15": 0.13391205099999998, + "2024-07-23T16": 0.13337266949999999, + "2024-07-22T02": 0.13623, + "2024-07-21T04": 0.13462072354080595, + "2024-07-23T09": 0.132243, + "2024-07-20T10": 0.13453085573999998, + "2024-07-22T19": 0.132835856, + "2024-07-20T00": 0.1346062695, + "2024-07-20T19": 0.13443981387999998, + "2024-07-26T05": 0.13656404789999999, + "2024-07-19T14": 0.13456, + "2024-07-21T00": 0.1348290891, + "2024-07-22T12": 0.1343907504, + "2024-07-24T06": 0.1337913379, + "2024-07-25T01": 0.13388393199999998, + "2024-07-20T22": 0.13459785219999998, + "2024-07-19T15": 0.13443968873999998, + "2024-07-21T13": 0.13429061719000002, + "2024-07-25T07": 0.13546612500000002, + "2024-07-21T08": 0.13407887159999998, + "2024-07-23T06": 0.13151972500000003, + "2024-07-22T16": 0.13397009250000003, + "2024-07-24T11": 0.13427, + "2024-07-24T01": 0.13394867892, + "2024-07-23T00": 0.13253975, + "2024-07-19T12": 0.13459903510000001, + "2024-07-25T17": 0.13567150299999997, + "2024-07-25T19": 0.135560676, + "2024-07-19T21": 0.1345986103, + "2024-07-23T08": 0.132103963, + "2024-07-21T21": 0.13439953106, + "2024-07-21T11": 0.1341962232, + "2024-07-22T14": 0.13397009250000003, + "2024-07-20T23": 0.1346890485, + "2024-07-20T08": 0.134777355, + "2024-07-20T02": 0.13466057, + "2024-07-24T05": 0.13391071200000002, + "2024-07-24T16": 0.1342420807, + "2024-07-21T01": 0.13489389227999998, + "2024-07-24T13": 0.134616, + "2024-07-25T04": 0.134281198, + "2024-07-19T13": 0.13457308, + "2024-07-25T12": 0.135849717, + "2024-07-19T22": 0.1346359393, + "2024-07-26T07": 0.1366640289, + "2024-07-25T02": 0.13381323199999998, + "2024-07-21T12": 0.1343382894, + "2024-07-23T18": 0.133114641, + "2024-07-23T11": 0.132302646, + "2024-07-19T10": 0.13485778489124137, + "2024-07-19T19": 0.134663844, + "2024-07-25T11": 0.13600393777, + "2024-07-22T08": 0.1357308576, + "2024-07-23T19": 0.1333339857, + "2024-07-22T21": 0.133138599, + "2024-07-21T09": 0.1341675564, + "2024-07-21T22": 0.134353434, + "2024-07-22T04": 0.1361008872, + "2024-07-25T16": 0.13547019000000002, + "2024-07-19T23": 0.13464729, + "2024-07-20T06": 0.1346678456, + "2024-07-23T02": 0.13271061600000003, + "2024-07-23T14": 0.13275023664000002, + "2024-07-23T03": 0.13250127444, + "2024-07-25T08": 0.13546070500000001, + "2024-07-24T15": 0.13432551699999998, + "2024-07-19T09": 0.13472305, + "2024-07-20T15": 0.13427161129999998, + "2024-07-23T23": 0.1340920672, + "2024-07-23T12": 0.13252385000000003, + "2024-07-22T10": 0.135301353, + "2024-07-21T10": 0.1342394972718318, + "2024-07-22T00": 0.13559677950000001, + "2024-07-24T22": 0.13443679702, + "2024-07-24T19": 0.13428965709, + "2024-07-24T09": 0.1339, + "2024-07-23T04": 0.132293228, + "2024-07-23T05": 0.1314678876, + "2024-07-25T18": 0.13570870656, + "2024-07-25T15": 0.1353952065, + "2024-07-26T01": 0.13608777700000002, + "2024-07-22T01": 0.1363763632, + "2024-07-26T02": 0.1364727, + "2024-07-24T18": 0.134243423, + "2024-07-21T19": 0.13417230679999997, + "2024-07-25T05": 0.134867624, + "2024-07-22T18": 0.13349512069934624, + "2024-07-24T00": 0.134112069, + "2024-07-24T08": 0.13420465794, + "2024-07-24T20": 0.134598654, + "2024-07-24T23": 0.13420883806, + "2024-07-22T17": 0.13371871800000001, + "2024-07-21T17": 0.1344778006, + "2024-07-24T12": 0.13436203074, + "2024-07-23T13": 0.1325212, + "2024-07-21T05": 0.1343776152, + "2024-07-20T05": 0.13469762384, + "2024-07-21T03": 0.1346576936, + "2024-07-26T00": 0.135871461, + "2024-07-20T20": 0.13461382400000002, + "2024-07-22T03": 0.1361154444, + "2024-07-25T21": 0.13596872000000002, + "2024-07-21T16": 0.13463679719000002, + "2024-07-20T17": 0.13439373599999999, + "2024-07-22T11": 0.13460403799999998, + "2024-07-25T00": 0.134525781, + "2024-07-20T13": 0.13400926026, + "2024-07-23T07": 0.13155315399999998, + "2024-07-22T05": 0.136308178, + "2024-07-20T07": 0.1347386051, + "2024-07-21T18": 0.1340176028, + "2024-07-23T17": 0.13294370593457033, + "2024-07-20T14": 0.1342910112, + "2024-07-26T04": 0.136680862, + "2024-07-24T10": 0.13404, + "2024-07-20T18": 0.134409171, + "2024-07-23T15": 0.1332626508, + "2024-07-19T18": 0.1346049882, + "2024-07-25T09": 0.13571212604, + "latest": 0.122884, + "2024-07-26T09": 0.1366853922, + "2024-07-26T10": 0.13682909850794103, + "2024-07-26T11": 0.136867144, + "2024-07-26T12": 0.13687472734, + "2024-07-26T13": 0.13697808, + "2024-07-26T14": 0.13706266325, + "2024-07-26T17": 0.13722625542, + "2024-07-26T16": 0.1374491272, + "2024-07-26T15": 0.137588992, + "2024-07-26T18": 0.1373, + "2024-07-27": 0.13727846977427863, + "2024-07-28": 0.13749725000000004, + "2024-07-28T05": 0.136898631, + "2024-07-26T21": 0.13738, + "2024-07-27T02": 0.1373841214, + "2024-07-28T01": 0.13755137072999998, + "2024-07-27T10": 0.13731098400000002, + "2024-07-28T02": 0.1374211286, + "2024-07-27T19": 0.13743435, + "2024-07-27T09": 0.1371723444, + "2024-07-27T06": 0.13700374002, + "2024-07-27T18": 0.1375706325, + "2024-07-26T22": 0.13745549799999998, + "2024-07-27T13": 0.1373778568, + "2024-07-27T12": 0.1373833512, + "2024-07-27T16": 0.13731373, + "2024-07-27T05": 0.1371427428, + "2024-07-26T23": 0.137405496, + "2024-07-26T20": 0.1374, + "2024-07-27T08": 0.13710685500000003, + "2024-07-28T03": 0.137397252, + "2024-07-27T01": 0.13750550000000003, + "2024-07-28T09": 0.137297254, + "2024-07-28T10": 0.1373558792, + "2024-07-27T00": 0.137380495, + "2024-07-28T00": 0.13728871410606652, + "2024-07-27T04": 0.137202744, + "2024-07-27T14": 0.13741374, + "2024-07-27T07": 0.13705500135506665, + "2024-07-27T11": 0.13750337159999998, + "2024-07-27T22": 0.13706466307, + "2024-07-27T03": 0.13716137160000003, + "2024-07-27T20": 0.13689684450000003, + "2024-07-27T23": 0.1371204009, + "2024-07-28T08": 0.137197256, + "2024-07-27T21": 0.137095887, + "2024-07-28T07": 0.137097258, + "2024-07-27T15": 0.13731373, + "2024-07-26T19": 0.137356, + "2024-07-28T04": 0.13726425466, + "2024-07-28T06": 0.1369272614, + "2024-07-27T17": 0.13751249952, + "2024-07-29": 0.13791135316139924, + "2024-07-28T20": 0.13898471, + "2024-07-28T16": 0.138398616, + "2024-07-29T07": 0.1388849962, + "2024-07-28T23": 0.13877822437999998, + "2024-07-28T15": 0.1379286207, + "2024-07-28T18": 0.138484765, + "2024-07-29T04": 0.138283404, + "2024-07-29T06": 0.1387823436003241, + "2024-07-28T21": 0.13908609, + "2024-07-29T03": 0.13841677248, + "2024-07-28T12": 0.13718888421, + "2024-07-29T05": 0.13863336199999998, + "2024-07-28T17": 0.13832478259999997, + "2024-07-29T00": 0.139, + "2024-07-29T01": 0.1392, + "2024-07-28T22": 0.13893583180000002, + "2024-07-28T19": 0.13868474299999997, + "2024-07-28T14": 0.1373, + "2024-07-29T02": 0.138790284, + "2024-07-29T08": 0.13912217, + "2024-07-28T11": 0.1372007269117523, + "2024-07-28T13": 0.13745725079999999, + "2024-07-29T09": 0.1390394046, + "2024-07-29T10": 0.136771272, + "2024-07-29T11": 0.13620139169999998, + "2024-07-29T12": 0.1359177663, + "2024-07-29T13": 0.136087751, + "2024-07-30": 0.13527867717765607, + "2024-07-29T23": 0.13779908379, + "2024-07-29T18": 0.13787242, + "2024-07-29T21": 0.13808895200000001, + "2024-07-29T22": 0.13810904349, + "2024-07-29T17": 0.13766770643999998, + "2024-07-29T15": 0.135264822, + "2024-07-30T01": 0.138069618, + "2024-07-29T19": 0.138127896, + "2024-07-30T04": 0.13747250000000003, + "2024-07-29T14": 0.1359796, + "2024-07-29T20": 0.13811480569999998, + "2024-07-30T03": 0.1375607388, + "2024-07-30T00": 0.1376565944, + "2024-07-29T16": 0.1375759616, + "2024-07-30T02": 0.138107373, + "2024-07-30T09": 0.1364899656, + "2024-07-30T08": 0.13689765792, + "2024-07-30T06": 0.1376397126, + "2024-07-30T05": 0.13756585752, + "2024-07-30T07": 0.13756422399999998, + "2024-07-30T10": 0.1357569174, + "2024-07-30T11": 0.13542155549999998, + "2024-07-30T12": 0.13527294, + "2024-07-30T13": 0.13487301999999998, + "2024-07-31": 0.1326582300921561, + "2024-07-31T00": 0.1327168125, + "2024-07-31T05": 0.13131010542000002, + "2024-07-30T23": 0.13296143, + "2024-07-30T19": 0.13282083809999998, + "2024-07-30T16": 0.13293044864, + "2024-07-30T17": 0.1328288103, + "2024-07-30T18": 0.13295744, + "2024-07-30T20": 0.13278915130000002, + "2024-07-30T15": 0.133554576, + "2024-07-31T03": 0.1312224375, + "2024-07-30T21": 0.1327954642, + "2024-07-31T01": 0.13154973660000002, + "2024-07-31T07": 0.13175514323999998, + "2024-07-31T06": 0.131561836, + "2024-07-31T02": 0.13101079259999998, + "2024-07-30T22": 0.13302841056999998, + "2024-07-30T14": 0.134293136, + "2024-07-31T04": 0.13131941712999998, + "2024-07-31T08": 0.131840645, + "2024-07-31T11": 0.1315376145, + "2024-07-31T09": 0.132048481, + "2024-07-31T10": 0.13174972976000002, + "2024-07-31T12": 0.13150531576, + "2024-08-01": 0.12874390122841167, + "2024-07-31T14": 0.1309215494123527, + "2024-07-31T23": 0.1287787776, + "2024-07-31T13": 0.131638101, + "2024-07-31T21": 0.12883102559999998, + "2024-08-01T01": 0.12895485, + "2024-07-31T18": 0.12975716599999998, + "2024-07-31T19": 0.12929602440000001, + "2024-07-31T16": 0.129749378, + "2024-08-01T02": 0.12902986955999998, + "2024-07-31T22": 0.12880005960000002, + "2024-07-31T20": 0.128849729, + "2024-07-31T17": 0.1299193117, + "2024-08-01T00": 0.1287674927, + "2024-07-31T15": 0.1299966795, + "2024-08-01T07": 0.128722049, + "2024-08-01T06": 0.1289767704, + "2024-08-01T05": 0.128821371, + "2024-08-01T04": 0.12879799020000002, + "2024-08-01T03": 0.12868975826, + "2024-08-01T08": 0.128832972, + "2024-08-01T09": 0.12907509299999997, + "2024-08-01T10": 0.12937139679999998, + "2024-08-01T11": 0.12953131199999998, + "2024-08-01T12": 0.129032868, + "2024-08-01T13": 0.1290080464, + "2024-08-01T14": 0.1290721851009407, + "2024-08-01T15": 0.1275362, + "2024-08-02": 0.12811958988431454, + "2024-08-02T00": 0.12809860739999998, + "2024-08-01T20": 0.1276809119, + "2024-08-01T21": 0.127982148, + "2024-08-02T04": 0.12751785306, + "2024-08-01T19": 0.12755953, + "2024-08-01T16": 0.127130946, + "2024-08-02T02": 0.12719324552, + "2024-08-01T17": 0.1271469275, + "2024-08-01T23": 0.12825860846, + "2024-08-02T01": 0.12805692781000003, + "2024-08-01T22": 0.12820150436, + "2024-08-01T18": 0.1273827, + "2024-08-02T03": 0.12724282879999999, + "2024-08-02T05": 0.12773391406162468, + "2024-08-02T06": 0.127702872, + "2024-08-02T07": 0.12759656300000002, + "2024-08-02T08": 0.12793372679999998, + "2024-08-02T09": 0.127290436, + "2024-08-02T10": 0.12710532648, + "2024-08-02T11": 0.12729298400000003, + "2024-08-02T12": 0.126181611, + "2024-08-02T13": 0.126201486, + "2024-08-02T14": 0.12635056036489925, + "2024-08-02T15": 0.12337897, + "2024-08-03": 0.12481727489701422, + "2024-08-02T16": 0.12309528, + "2024-08-02T22": 0.12335921, + "2024-08-02T23": 0.12340184320000001, + "2024-08-03T00": 0.12353395823999999, + "2024-08-03T01": 0.1234779351, + "2024-08-03T03": 0.123053392, + "2024-08-02T19": 0.1234253196, + "2024-08-02T18": 0.1235763, + "2024-08-02T21": 0.123224652, + "2024-08-02T17": 0.123562504, + "2024-08-02T20": 0.1235851452, + "2024-08-03T02": 0.12383632, + "2024-08-03T06": 0.12420247158, + "2024-08-03T19": 0.12492248439999999, + "2024-08-03T10": 0.12494994720000001, + "2024-08-03T09": 0.12509256844000002, + "2024-08-03T15": 0.1250261763, + "2024-08-03T22": 0.12521558641000002, + "2024-08-03T05": 0.12397223789999999, + "2024-08-03T08": 0.12492370634999998, + "2024-08-03T14": 0.12515759464999998, + "2024-08-03T18": 0.12501242999999998, + "2024-08-03T17": 0.124810072, + "2024-08-03T21": 0.12495498199999999, + "2024-08-03T12": 0.1245152964, + "2024-08-03T20": 0.12494622990000001, + "2024-08-03T04": 0.1232054367, + "2024-08-03T16": 0.125006175, + "2024-08-03T11": 0.12435545360000001, + "2024-08-03T07": 0.1245865496, + "2024-08-03T13": 0.12484204964, + "2024-08-04": 0.1267671985238712, + "2024-08-03T23": 0.1252098432, + "2024-08-04T17": 0.126295088, + "2024-08-04T13": 0.1281448955, + "2024-08-04T06": 0.127021198, + "2024-08-04T12": 0.12813590000000002, + "2024-08-04T10": 0.12836421588, + "2024-08-04T16": 0.12690856, + "2024-08-04T15": 0.126715044, + "2024-08-04T00": 0.125226073, + "2024-08-04T11": 0.12817859556, + "2024-08-04T01": 0.12519609069999998, + "2024-08-04T03": 0.12615173740000002, + "2024-08-04T04": 0.12607204911, + "2024-08-04T07": 0.12742477500000002, + "2024-08-04T08": 0.127722042, + "2024-08-04T18": 0.12610326603177488, + "2024-08-04T09": 0.12819088952, + "2024-08-04T02": 0.125604592, + "2024-08-04T05": 0.12619497408, + "2024-08-04T14": 0.12696238269, + "2024-08-05": 0.12120548615587992, + "2024-08-05T01": 0.123702787685702, + "2024-08-04T19": 0.12664113396589832, + "2024-08-04T22": 0.12659188039359337, + "2024-08-05T03": 0.12209680114983826, + "2024-08-05T02": 0.1223532032043277, + "2024-08-04T23": 0.126435049567114, + "2024-08-05T00": 0.12638966199390406, + "2024-08-05T04": 0.12156609954458647, + "2024-08-05T06": 0.1205591252701885, + "2024-08-04T20": 0.12693448483609307, + "2024-08-05T05": 0.1218339195044202, + "2024-08-04T21": 0.12671237352120204, + "2024-08-05T07": 0.119559639115835, + "2024-08-05T08": 0.12048344080497822, + "2024-08-05T09": 0.12094490802528443, + "2024-08-05T10": 0.12038407905159881, + "2024-08-05T11": 0.11921549599999999, + "2024-08-05T12": 0.1194248118927284, + "2024-08-05T13": 0.11754511224225513, + "2024-08-05T14": 0.12007000432642273, + "2024-08-05T15": 0.1216265765, + "2024-08-06": 0.12233798802026341, + "2024-08-05T19": 0.12093986591738172, + "2024-08-05T20": 0.12131213, + "2024-08-05T21": 0.12152187, + "2024-08-06T02": 0.122196417, + "2024-08-05T18": 0.12114570139999999, + "2024-08-05T23": 0.121704336, + "2024-08-05T16": 0.12208539999999998, + "2024-08-06T05": 0.12246921423000001, + "2024-08-05T17": 0.12197192100000001, + "2024-08-06T00": 0.12232446000000001, + "2024-08-06T04": 0.1223990548, + "2024-08-06T03": 0.12221764629999998, + "2024-08-05T22": 0.12171068730000001, + "2024-08-06T01": 0.12263678, + "2024-08-06T06": 0.1228996513, + "2024-08-06T07": 0.1231524569, + "2024-08-06T08": 0.122470992, + "2024-08-06T09": 0.122367095607748, + "2024-08-06T10": 0.122439168, + "2024-08-06T11": 0.12236358325, + "2024-08-06T12": 0.122745399, + "2024-08-06T13": 0.12273435600000002, + "2024-08-06T14": 0.122735583 + }, + "USD vechain": { + "2024-06-28": 0.02663786568229288, + "2024-06-30": 0.02588425975515619, + "2024-07-15": 0.031403929959442876, + "2024-07-18": 0.03127678109896992, + "2024-07-14": 0.029407467228108712, + "2024-07-11": 0.026063903684635518, + "2024-07-19": 0.030360238604046033, + "2024-07-12": 0.02649507357243935, + "2024-07-24": 0.02881405412260793, + "2024-07-08": 0.022569637780729974, + "2024-07-07": 0.02430186325839913, + "2024-07-13": 0.027120514559917742, + "2024-07-09": 0.024699443793567408, + "2024-07-02": 0.026728381297327082, + "2024-07-20": 0.031297648430126765, + "2024-06-29": 0.026615569193280106, + "2024-07-21": 0.030827664037207884, + "2024-07-23": 0.02947647494401528, + "2024-07-10": 0.025562429860662077, + "2024-07-01": 0.026710074773980748, + "2024-06-26": 0.02641186522817861, + "2024-07-17": 0.03166712677174701, + "2024-07-22": 0.030771445121532223, + "2024-07-04": 0.024896237353688497, + "2024-06-25": 0.02527151366228143, + "2024-07-26": 0.027328581909192726, + "2024-07-03": 0.026535129999310424, + "2024-07-05": 0.022370290447969562, + "2024-07-25": 0.027754224064173737, + "2024-07-16": 0.032422096035972084, + "2024-07-06": 0.023444094144051988, + "2024-06-27": 0.025922436669994924, + "2024-07-22T13": 0.030068244710248528, + "2024-07-25T10": 0.02708474911124261, + "2024-07-26T06": 0.02785571409714038, + "2024-07-24T14": 0.02854767105165787, + "2024-07-21T20": 0.030038060548398533, + "2024-07-21T07": 0.030110782076127832, + "2024-07-21T14": 0.029950471123476943, + "2024-07-22T23": 0.029535953580313617, + "2024-07-24T07": 0.02897139487237563, + "2024-07-20T11": 0.03126599447743275, + "2024-07-26T08": 0.028011279255225216, + "2024-07-25T20": 0.026867334405238023, + "2024-07-21T02": 0.030729396441707465, + "2024-07-20T04": 0.0312191960459425, + "2024-07-20T03": 0.031000767605332474, + "2024-07-25T13": 0.02681120299076534, + "2024-07-21T06": 0.030308919250867077, + "2024-07-20T12": 0.030945462293642968, + "2024-07-24T02": 0.028675090021377313, + "2024-07-24T17": 0.02872525439180673, + "2024-07-25T06": 0.027081715266502243, + "2024-07-25T22": 0.02745175894395811, + "2024-07-22T07": 0.029898912261580333, + "2024-07-22T22": 0.02974942079448719, + "2024-07-26T03": 0.02785365820656436, + "2024-07-23T01": 0.02955661820015829, + "2024-07-24T03": 0.028954888297833437, + "2024-07-23T21": 0.028758822810987735, + "2024-07-19T20": 0.031663140293221474, + "2024-07-23T22": 0.028887121811003225, + "2024-07-21T23": 0.03068652312880649, + "2024-07-19T16": 0.03123296759815242, + "2024-07-22T20": 0.030069613940091073, + "2024-07-23T10": 0.02944770285874552, + "2024-07-19T17": 0.03132794499875643, + "2024-07-22T09": 0.03003145781217825, + "2024-07-24T04": 0.029037116151996747, + "2024-07-22T06": 0.030085354262955784, + "2024-07-24T21": 0.028259695635519402, + "2024-07-20T21": 0.03091999362609269, + "2024-07-21T15": 0.030323591914056876, + "2024-07-20T09": 0.0311543978973406, + "2024-07-25T14": 0.026842226945404866, + "2024-07-19T11": 0.030349926542885073, + "2024-07-23T20": 0.028782552657680652, + "2024-07-25T03": 0.026971677740069287, + "2024-07-20T01": 0.030961871232310277, + "2024-07-25T23": 0.027437141994630723, + "2024-07-20T16": 0.031407868453573434, + "2024-07-22T15": 0.029635938670141446, + "2024-07-23T16": 0.02934246912851034, + "2024-07-22T02": 0.030638968564666882, + "2024-07-21T04": 0.03046245729626449, + "2024-07-23T09": 0.029494226960533578, + "2024-07-20T10": 0.03123925189389286, + "2024-07-22T19": 0.029861348337409784, + "2024-07-20T00": 0.031359093368479564, + "2024-07-20T19": 0.03118097324132011, + "2024-07-26T05": 0.027861047878162525, + "2024-07-19T14": 0.030644767771319845, + "2024-07-21T00": 0.03056032685589425, + "2024-07-22T12": 0.030243589931428488, + "2024-07-24T06": 0.028871860818510488, + "2024-07-25T01": 0.027625949707448527, + "2024-07-20T22": 0.030636060489548946, + "2024-07-19T15": 0.03085225891587144, + "2024-07-21T13": 0.030204812478118615, + "2024-07-25T07": 0.027230414309234105, + "2024-07-21T08": 0.030090086603468253, + "2024-07-23T06": 0.028851714583799468, + "2024-07-22T16": 0.029850977102895852, + "2024-07-24T11": 0.029243357598308522, + "2024-07-24T01": 0.028594310109074678, + "2024-07-23T00": 0.029406353313268244, + "2024-07-19T12": 0.03034942900770032, + "2024-07-25T17": 0.027449312265782334, + "2024-07-25T19": 0.02673879457839304, + "2024-07-19T21": 0.03154993696637161, + "2024-07-23T08": 0.02891245242814142, + "2024-07-21T21": 0.030480611470487327, + "2024-07-21T11": 0.030267787366876412, + "2024-07-22T14": 0.029818910912332477, + "2024-07-20T23": 0.030668351697318165, + "2024-07-20T08": 0.03130063605232187, + "2024-07-20T02": 0.030828165216879408, + "2024-07-24T05": 0.028944735259587663, + "2024-07-24T16": 0.028502245862850537, + "2024-07-21T01": 0.030640592518440327, + "2024-07-24T13": 0.028746173235224503, + "2024-07-25T04": 0.026951628094805658, + "2024-07-19T13": 0.03039902113866255, + "2024-07-25T12": 0.026955453205734867, + "2024-07-19T22": 0.03138209977507219, + "2024-07-26T07": 0.028029158334568857, + "2024-07-25T02": 0.02707193170406405, + "2024-07-21T12": 0.030161450973823622, + "2024-07-23T18": 0.028680023750877418, + "2024-07-23T11": 0.02924627940597756, + "2024-07-19T10": 0.0302748882466448, + "2024-07-19T19": 0.031443312098006264, + "2024-07-25T11": 0.026871579215890385, + "2024-07-22T08": 0.02990793922070267, + "2024-07-23T19": 0.028701758542883413, + "2024-07-22T21": 0.029965889129231094, + "2024-07-21T09": 0.03014834888428817, + "2024-07-21T22": 0.03078256141226682, + "2024-07-22T04": 0.030530125297177003, + "2024-07-25T16": 0.027173917442776818, + "2024-07-19T23": 0.03149329751940009, + "2024-07-20T06": 0.031229371779331584, + "2024-07-23T02": 0.029682475861474943, + "2024-07-23T14": 0.029016499025912433, + "2024-07-23T03": 0.029534015128137858, + "2024-07-25T08": 0.027079543167592014, + "2024-07-24T15": 0.028819039305838748, + "2024-07-19T09": 0.030639755765711013, + "2024-07-20T15": 0.031163106193336405, + "2024-07-23T23": 0.028764921341753614, + "2024-07-23T12": 0.02933701299253883, + "2024-07-22T10": 0.030064878132681497, + "2024-07-21T10": 0.03023305401460752, + "2024-07-22T00": 0.030766061972718348, + "2024-07-24T22": 0.027979717823807457, + "2024-07-24T19": 0.02826754999586004, + "2024-07-24T09": 0.029308934427853164, + "2024-07-23T04": 0.029280625197415207, + "2024-07-23T05": 0.02898593028490161, + "2024-07-25T18": 0.02729835661525032, + "2024-07-25T15": 0.02728315450616682, + "2024-07-26T01": 0.027502226530386524, + "2024-07-22T01": 0.03077799972988595, + "2024-07-26T02": 0.02753374090511271, + "2024-07-24T18": 0.02864953323790635, + "2024-07-21T19": 0.029660782359901796, + "2024-07-25T05": 0.027104643912333862, + "2024-07-22T18": 0.029897387607325535, + "2024-07-24T00": 0.02881405412260793, + "2024-07-24T08": 0.029276551962153483, + "2024-07-24T20": 0.02822833196349086, + "2024-07-24T23": 0.027765817663483173, + "2024-07-22T17": 0.029757952771729247, + "2024-07-21T17": 0.030188060765380876, + "2024-07-24T12": 0.029057086360082127, + "2024-07-23T13": 0.02923004654853996, + "2024-07-21T05": 0.03040326412830834, + "2024-07-20T05": 0.031241218613467327, + "2024-07-21T03": 0.03053853592472741, + "2024-07-26T00": 0.027338782786091188, + "2024-07-20T20": 0.030895919269544662, + "2024-07-22T03": 0.030691947622070354, + "2024-07-25T21": 0.027193697594035574, + "2024-07-21T16": 0.030370754885111803, + "2024-07-20T17": 0.031128692020949762, + "2024-07-22T11": 0.030140984791160712, + "2024-07-25T00": 0.027676248787475103, + "2024-07-20T13": 0.031003878720572645, + "2024-07-23T07": 0.02884771673665659, + "2024-07-22T05": 0.03035515764153119, + "2024-07-20T07": 0.031199447656815347, + "2024-07-21T18": 0.029730612371385554, + "2024-07-23T17": 0.028597932881290068, + "2024-07-20T14": 0.030818837098983358, + "2024-07-26T04": 0.027879366515823244, + "2024-07-24T10": 0.02932254402513883, + "2024-07-20T18": 0.031311717825280014, + "2024-07-23T15": 0.02975561616616916, + "2024-07-19T18": 0.031584492202892105, + "2024-07-25T09": 0.027074179229257422, + "latest": 0.02255457, + "2024-07-26T09": 0.028041468180631947, + "2024-07-26T10": 0.02804072818709189, + "2024-07-26T11": 0.027910878113063108, + "2024-07-26T12": 0.027830521508541643, + "2024-07-26T13": 0.02772671758918928, + "2024-07-26T14": 0.027999942911716643, + "2024-07-26T17": 0.027922043868739328, + "2024-07-26T16": 0.027917043818081626, + "2024-07-26T15": 0.027813945417751635, + "2024-07-26T18": 0.02787114641276593, + "2024-07-27": 0.028588777590839394, + "2024-07-28": 0.027898200460572956, + "2024-07-28T05": 0.027606026990619932, + "2024-07-26T21": 0.02797224741192457, + "2024-07-27T02": 0.028581819622369983, + "2024-07-28T01": 0.02799938561516713, + "2024-07-27T10": 0.02857144478473643, + "2024-07-28T02": 0.02803208878558477, + "2024-07-27T19": 0.028149213428905754, + "2024-07-27T09": 0.028479464981805258, + "2024-07-27T06": 0.028402801333033176, + "2024-07-27T18": 0.028166553503094674, + "2024-07-26T22": 0.02814109283764825, + "2024-07-27T13": 0.028559729531732494, + "2024-07-27T12": 0.028512900012056867, + "2024-07-27T16": 0.028241186338555012, + "2024-07-27T05": 0.02836731857781294, + "2024-07-26T23": 0.028504775086418896, + "2024-07-26T20": 0.02823016585375487, + "2024-07-27T08": 0.028444644922600806, + "2024-07-28T03": 0.02790081948223947, + "2024-07-27T01": 0.02866994755856015, + "2024-07-28T09": 0.02774430380876969, + "2024-07-28T10": 0.02781272469053802, + "2024-07-27T00": 0.028499647692001705, + "2024-07-28T00": 0.02807454420878663, + "2024-07-27T04": 0.028331031455720454, + "2024-07-27T14": 0.028829592611280132, + "2024-07-27T07": 0.028446455688702733, + "2024-07-27T11": 0.028421936139133557, + "2024-07-27T22": 0.02844674386196342, + "2024-07-27T03": 0.028663755839826794, + "2024-07-27T20": 0.02813524353497024, + "2024-07-27T23": 0.02844105465680577, + "2024-07-28T08": 0.027737961372322546, + "2024-07-27T21": 0.027936119948071797, + "2024-07-28T07": 0.02766436019079399, + "2024-07-27T15": 0.02856915321571085, + "2024-07-26T19": 0.028061764850347927, + "2024-07-28T04": 0.027859954352223274, + "2024-07-28T06": 0.02759364378849823, + "2024-07-27T17": 0.028219794142142506, + "2024-07-29": 0.02743149721178253, + "2024-07-28T20": 0.027345738131786354, + "2024-07-28T16": 0.02741948171076622, + "2024-07-29T07": 0.028587379764630258, + "2024-07-28T23": 0.027207682155713835, + "2024-07-28T15": 0.027410314902915983, + "2024-07-28T18": 0.027490962204117807, + "2024-07-29T04": 0.02821096143224153, + "2024-07-29T06": 0.028430933320502495, + "2024-07-28T21": 0.02730544084853994, + "2024-07-29T03": 0.028247882861523337, + "2024-07-28T12": 0.02768542716481749, + "2024-07-29T05": 0.028367273726648733, + "2024-07-28T17": 0.02731204384046316, + "2024-07-29T00": 0.02735471856711605, + "2024-07-29T01": 0.027635188983703558, + "2024-07-28T22": 0.02723805937041086, + "2024-07-28T19": 0.027436844041117108, + "2024-07-28T14": 0.027730176423968116, + "2024-07-29T02": 0.02763385742427523, + "2024-07-29T08": 0.028605456351346484, + "2024-07-28T11": 0.027783590045462235, + "2024-07-28T13": 0.027777721902716816, + "2024-07-29T09": 0.028484893442834405, + "2024-07-29T10": 0.02849689748576036, + "2024-07-29T11": 0.02853759465842015, + "2024-07-29T12": 0.028392710762370415, + "2024-07-29T13": 0.028487889235385064, + "2024-07-30": 0.027030530271644627, + "2024-07-29T23": 0.027305071540567716, + "2024-07-29T18": 0.027389580135444985, + "2024-07-29T21": 0.027280656317517117, + "2024-07-29T22": 0.027289724178024565, + "2024-07-29T17": 0.027205020812770743, + "2024-07-29T15": 0.0278105845083216, + "2024-07-30T01": 0.027158010868391067, + "2024-07-29T19": 0.027335335719853672, + "2024-07-30T04": 0.027329698850106256, + "2024-07-29T14": 0.028445838047368045, + "2024-07-29T20": 0.0273649482619015, + "2024-07-30T03": 0.02711237288453497, + "2024-07-30T00": 0.02717476763422438, + "2024-07-29T16": 0.02761185671176245, + "2024-07-30T02": 0.026999693683381735, + "2024-07-30T09": 0.027303180885830704, + "2024-07-30T08": 0.027406442628338922, + "2024-07-30T06": 0.027154794654860953, + "2024-07-30T05": 0.02726503658308246, + "2024-07-30T07": 0.027341688702423435, + "2024-07-30T10": 0.027354709685026155, + "2024-07-30T11": 0.027289401828334628, + "2024-07-30T12": 0.027350963985695455, + "2024-07-30T13": 0.027306588897678223, + "2024-07-31": 0.0263871455441411, + "2024-07-31T00": 0.026566431122156293, + "2024-07-31T05": 0.02666247983811147, + "2024-07-30T23": 0.026757780517149613, + "2024-07-30T19": 0.02688923609310874, + "2024-07-30T16": 0.02726211312279987, + "2024-07-30T17": 0.02724192508581738, + "2024-07-30T18": 0.027059754558693753, + "2024-07-30T20": 0.02656576401226338, + "2024-07-30T15": 0.02704848982555695, + "2024-07-31T03": 0.026819396955065192, + "2024-07-30T21": 0.02656231096840408, + "2024-07-31T01": 0.026725802482401122, + "2024-07-31T07": 0.027217516294608685, + "2024-07-31T06": 0.026943059987683014, + "2024-07-31T02": 0.026840316240720464, + "2024-07-30T22": 0.026606681466725894, + "2024-07-30T14": 0.02711617544907434, + "2024-07-31T04": 0.026809625515196462, + "2024-07-31T08": 0.027173899692916906, + "2024-07-31T11": 0.027027352680427667, + "2024-07-31T09": 0.027170624298435902, + "2024-07-31T10": 0.027145286024952916, + "2024-07-31T12": 0.027138357911808388, + "2024-08-01": 0.026257417044367428, + "2024-07-31T14": 0.027243789283399555, + "2024-07-31T23": 0.026511283696869847, + "2024-07-31T13": 0.027278169979023197, + "2024-07-31T21": 0.026209149860465675, + "2024-08-01T01": 0.02637964290579991, + "2024-07-31T18": 0.02712179042158056, + "2024-07-31T19": 0.02712760477037439, + "2024-07-31T16": 0.027150956488555995, + "2024-08-01T02": 0.02618482920664609, + "2024-07-31T22": 0.02649762909471578, + "2024-07-31T20": 0.026439845475319624, + "2024-07-31T17": 0.02707069074243961, + "2024-08-01T00": 0.026257417044367428, + "2024-07-31T15": 0.027220567368244214, + "2024-08-01T07": 0.026096566128456126, + "2024-08-01T06": 0.02621138503316727, + "2024-08-01T05": 0.025858237914856787, + "2024-08-01T04": 0.026328268722894982, + "2024-08-01T03": 0.026251432501460892, + "2024-08-01T08": 0.02611878543241943, + "2024-08-01T09": 0.026476680350469465, + "2024-08-01T10": 0.026316668448049016, + "2024-08-01T11": 0.02643638968977824, + "2024-08-01T12": 0.0262766633212894, + "2024-08-01T13": 0.026513090869556884, + "2024-08-01T14": 0.026424217605859727, + "2024-08-01T15": 0.025964966079258765, + "2024-08-02": 0.026378438431412375, + "2024-08-02T00": 0.026368121518976773, + "2024-08-01T20": 0.025621939778622566, + "2024-08-01T21": 0.02603393983651939, + "2024-08-02T04": 0.025898121623366722, + "2024-08-01T19": 0.025240429797075335, + "2024-08-01T16": 0.02552421580046176, + "2024-08-02T02": 0.026032632189326044, + "2024-08-01T17": 0.02532601388857474, + "2024-08-01T23": 0.026343800851115515, + "2024-08-02T01": 0.02618490765663621, + "2024-08-01T22": 0.02606014237066658, + "2024-08-01T18": 0.02549105282245875, + "2024-08-02T03": 0.025745567853273612, + "2024-08-02T05": 0.025762273217379807, + "2024-08-02T06": 0.025403919245091267, + "2024-08-02T07": 0.0254321983543786, + "2024-08-02T08": 0.025447926828941078, + "2024-08-02T09": 0.025492763256159814, + "2024-08-02T10": 0.025407745090750524, + "2024-08-02T11": 0.025465958116644927, + "2024-08-02T12": 0.02533981436057624, + "2024-08-02T13": 0.02547291322984202, + "2024-08-02T14": 0.025762414288366127, + "2024-08-02T15": 0.024765190780987937, + "2024-08-03": 0.024502866041718176, + "2024-08-02T16": 0.02504199079634024, + "2024-08-02T22": 0.02466454796926892, + "2024-08-02T23": 0.024473668830124903, + "2024-08-03T00": 0.024481665520910148, + "2024-08-03T01": 0.024144225567626316, + "2024-08-03T03": 0.024336986887458743, + "2024-08-02T19": 0.024603944269257837, + "2024-08-02T18": 0.02483481739969866, + "2024-08-02T21": 0.024936448655680385, + "2024-08-02T17": 0.025044920222475193, + "2024-08-02T20": 0.02475192031282355, + "2024-08-03T02": 0.024219966451250043, + "2024-08-03T06": 0.024723635765470892, + "2024-08-03T19": 0.0231362407813425, + "2024-08-03T10": 0.024527486057037137, + "2024-08-03T09": 0.024604883052622137, + "2024-08-03T15": 0.02444590690624659, + "2024-08-03T22": 0.023456577231554324, + "2024-08-03T05": 0.02451398729828296, + "2024-08-03T08": 0.024750984996633935, + "2024-08-03T14": 0.0244784093855383, + "2024-08-03T18": 0.023097052167072363, + "2024-08-03T17": 0.02355314938119971, + "2024-08-03T21": 0.023103485300905828, + "2024-08-03T12": 0.02440798803762151, + "2024-08-03T20": 0.023048271766369186, + "2024-08-03T04": 0.02452626343904868, + "2024-08-03T16": 0.02367636231227472, + "2024-08-03T11": 0.0244668329042241, + "2024-08-03T07": 0.02485891535747083, + "2024-08-03T13": 0.024536993996089516, + "2024-08-04": 0.023578157382087364, + "2024-08-03T23": 0.02350904517592936, + "2024-08-04T17": 0.022120600664296868, + "2024-08-04T13": 0.02379031321674268, + "2024-08-04T06": 0.023828184048433308, + "2024-08-04T12": 0.023720070426405983, + "2024-08-04T10": 0.0237418762052516, + "2024-08-04T16": 0.022478710775424564, + "2024-08-04T15": 0.022812370206162214, + "2024-08-04T00": 0.02366594691000537, + "2024-08-04T11": 0.023753187431209955, + "2024-08-04T01": 0.023706516883057464, + "2024-08-04T03": 0.023841435834557265, + "2024-08-04T04": 0.023765080615360406, + "2024-08-04T07": 0.02391243388627049, + "2024-08-04T08": 0.023620832439784464, + "2024-08-04T18": 0.022208180839709428, + "2024-08-04T09": 0.023699229805884882, + "2024-08-04T02": 0.023637269518023262, + "2024-08-04T05": 0.023771833257057114, + "2024-08-04T14": 0.023655643691208213, + "2024-08-05": 0.022333234465736134, + "2024-08-05T01": 0.021412764695916905, + "2024-08-04T19": 0.02252144095202236, + "2024-08-04T22": 0.0227372983488153, + "2024-08-05T03": 0.020782109256127612, + "2024-08-05T02": 0.020629642090779256, + "2024-08-04T23": 0.022731062554575267, + "2024-08-05T00": 0.022333234465736134, + "2024-08-05T04": 0.020793267191500625, + "2024-08-05T06": 0.02077784126399099, + "2024-08-04T20": 0.022804759670449634, + "2024-08-05T05": 0.020944017437812688, + "2024-08-04T21": 0.022713559158940213, + "2024-08-05T07": 0.019798290637489082, + "2024-08-05T08": 0.020982105353600376, + "2024-08-05T09": 0.020586319040218886, + "2024-08-05T10": 0.020376091889531687, + "2024-08-05T11": 0.01980207291201298, + "2024-08-05T12": 0.019743278944719, + "2024-08-05T13": 0.019324772647771483, + "2024-08-05T14": 0.020417508696248237, + "2024-08-05T15": 0.02151423649166337, + "2024-08-06": 0.021574547361611567, + "2024-08-05T19": 0.021199187273395557, + "2024-08-05T20": 0.021509026182513085, + "2024-08-05T21": 0.02181915405176046, + "2024-08-06T02": 0.02226778099406905, + "2024-08-05T18": 0.021924290689330484, + "2024-08-05T23": 0.021834684346590402, + "2024-08-05T16": 0.021978784162494422, + "2024-08-06T05": 0.022327495641168177, + "2024-08-05T17": 0.022135897188388584, + "2024-08-06T00": 0.021574547361611567, + "2024-08-06T04": 0.022236984791466564, + "2024-08-06T03": 0.02229438825584485, + "2024-08-05T22": 0.02165905716590151, + "2024-08-06T01": 0.02236379529345754, + "2024-08-06T06": 0.02263647306029793, + "2024-08-06T07": 0.022698610600184403, + "2024-08-06T08": 0.022793220261349043, + "2024-08-06T09": 0.02229195019824569, + "2024-08-06T10": 0.022226234625587173, + "2024-08-06T11": 0.022075505786136613, + "2024-08-06T12": 0.022176250388042676, + "2024-08-06T13": 0.022067376745798777, + "2024-08-06T14": 0.02204005171342157 + }, + "USD zcash": { + "2024-06-28": 20.894968575576932, + "2024-06-30": 20.643980848735016, + "2024-07-15": 29.271649393964662, + "2024-07-18": 31.04960508849623, + "2024-07-14": 28.411043862932043, + "2024-07-11": 23.740188519692882, + "2024-07-19": 29.73918000330154, + "2024-07-12": 23.725539387959614, + "2024-07-24": 29.841521698311535, + "2024-07-08": 19.67222924712473, + "2024-07-07": 19.75020581397194, + "2024-07-13": 25.959331961745793, + "2024-07-09": 21.949488078359472, + "2024-07-02": 20.935603069214654, + "2024-07-20": 29.310707210766417, + "2024-06-29": 20.70031224923651, + "2024-07-21": 31.635916814214006, + "2024-07-23": 30.44896334176399, + "2024-07-10": 23.133550673206788, + "2024-07-01": 21.179671551858878, + "2024-06-26": 19.968135952215878, + "2024-07-17": 31.070436918775176, + "2024-07-22": 31.821614859426578, + "2024-07-04": 19.616314182195726, + "2024-06-25": 20.047789990644482, + "2024-07-26": 32.1215765500929, + "2024-07-03": 20.55101326746043, + "2024-07-05": 17.2787607644544, + "2024-07-25": 29.73153176315912, + "2024-07-16": 29.358862624128, + "2024-07-06": 19.0019, + "2024-06-27": 20.223546026464426, + "2024-07-22T13": 31.726697875187114, + "2024-07-25T10": 29.88815438347279, + "2024-07-26T06": 32.49402935002171, + "2024-07-24T14": 29.964887245373504, + "2024-07-21T20": 32.13941575456484, + "2024-07-21T07": 29.76396661094559, + "2024-07-21T14": 32.0262053640681, + "2024-07-22T23": 30.97721112221833, + "2024-07-24T07": 29.95034538529726, + "2024-07-20T11": 29.147581818688433, + "2024-07-26T08": 32.34757245705415, + "2024-07-25T20": 28.722789067296166, + "2024-07-21T02": 30.28037945504966, + "2024-07-20T04": 29.784386968420584, + "2024-07-20T03": 29.774901194749674, + "2024-07-25T13": 30.173299650468405, + "2024-07-21T06": 29.75733251608058, + "2024-07-20T12": 29.05088603836743, + "2024-07-24T02": 29.54830897813887, + "2024-07-24T17": 29.814013046813265, + "2024-07-25T06": 29.775299654181545, + "2024-07-25T22": 29.472026825189822, + "2024-07-22T07": 31.522364369210095, + "2024-07-22T22": 31.97301621299726, + "2024-07-26T03": 31.86052829026776, + "2024-07-23T01": 31.013101000000002, + "2024-07-24T03": 29.73548153226201, + "2024-07-23T21": 29.764464000000004, + "2024-07-19T20": 29.71794253942529, + "2024-07-23T22": 29.715347800000004, + "2024-07-21T23": 32.174741636243944, + "2024-07-19T16": 29.535906, + "2024-07-22T20": 32.249773187298324, + "2024-07-23T10": 30.794692050000002, + "2024-07-19T17": 29.503835, + "2024-07-22T09": 31.554540450327718, + "2024-07-24T04": 29.676385714783827, + "2024-07-22T06": 31.613920856774342, + "2024-07-24T21": 29.985322799407058, + "2024-07-20T21": 29.062906044722894, + "2024-07-21T15": 32.141628694878804, + "2024-07-20T09": 29.405868204148266, + "2024-07-25T14": 29.728939279746267, + "2024-07-19T11": 29.593784, + "2024-07-23T20": 29.975993999999996, + "2024-07-25T03": 29.424538594583222, + "2024-07-20T01": 29.610223984674718, + "2024-07-25T23": 30.10082743150815, + "2024-07-20T16": 29.196008016415682, + "2024-07-22T15": 31.54647335311262, + "2024-07-23T16": 29.955091499999998, + "2024-07-22T02": 31.972401676988586, + "2024-07-21T04": 29.94708105033346, + "2024-07-23T09": 31.24, + "2024-07-20T10": 29.651044029560545, + "2024-07-22T19": 32.18292188441907, + "2024-07-20T00": 29.697049040557058, + "2024-07-20T19": 29.043417662277758, + "2024-07-26T05": 32.281982813035384, + "2024-07-19T14": 29.26, + "2024-07-21T00": 29.579103103423883, + "2024-07-22T12": 32.198618903749654, + "2024-07-24T06": 29.726519431414687, + "2024-07-25T01": 29.522723857601093, + "2024-07-20T22": 29.25932941802945, + "2024-07-19T15": 29.340586799999997, + "2024-07-21T13": 31.55610487021668, + "2024-07-25T07": 29.925007878002976, + "2024-07-21T08": 29.821753063013148, + "2024-07-23T06": 30.504575000000003, + "2024-07-22T16": 31.673396062096497, + "2024-07-24T11": 30.322648752985458, + "2024-07-24T01": 29.582817690475913, + "2024-07-23T00": 30.379111, + "2024-07-19T12": 29.5432035, + "2024-07-25T17": 30.11349114985353, + "2024-07-25T19": 29.232787813787926, + "2024-07-19T21": 29.6251011, + "2024-07-23T08": 30.9609288, + "2024-07-21T21": 32.12128576037385, + "2024-07-21T11": 31.707968159383555, + "2024-07-22T14": 31.519353919735675, + "2024-07-20T23": 29.401189991377333, + "2024-07-20T08": 29.776113749143178, + "2024-07-20T02": 29.71274608943313, + "2024-07-24T05": 29.709759985664157, + "2024-07-24T16": 29.615436998604633, + "2024-07-21T01": 29.738931629056463, + "2024-07-24T13": 30.17326001972795, + "2024-07-25T04": 29.46505655420189, + "2024-07-19T13": 29.254148, + "2024-07-25T12": 30.174862464238558, + "2024-07-19T22": 29.514455, + "2024-07-26T07": 32.44045005164824, + "2024-07-25T02": 29.601420827750385, + "2024-07-21T12": 31.738490434542097, + "2024-07-23T18": 29.803278000000002, + "2024-07-23T11": 30.560639746077293, + "2024-07-19T10": 29.893720999999996, + "2024-07-19T19": 29.751896, + "2024-07-25T11": 29.975781934741224, + "2024-07-22T08": 31.498933534460992, + "2024-07-23T19": 30.0199033, + "2024-07-22T21": 32.06699114658475, + "2024-07-21T09": 30.322370899681548, + "2024-07-21T22": 32.34821849733319, + "2024-07-22T04": 31.88603985249549, + "2024-07-25T16": 30.050510829770523, + "2024-07-19T23": 29.594789999999996, + "2024-07-20T06": 29.765838815576988, + "2024-07-23T02": 31.3325064, + "2024-07-23T14": 30.254839999999998, + "2024-07-23T03": 30.9521665, + "2024-07-25T08": 29.81145956391859, + "2024-07-24T15": 29.60941072615819, + "2024-07-19T09": 30.073984, + "2024-07-20T15": 29.232692338718746, + "2024-07-23T23": 29.737061562499086, + "2024-07-23T12": 30.50549, + "2024-07-22T10": 31.688318685266687, + "2024-07-21T10": 30.815081866598117, + "2024-07-22T00": 32.29143501868278, + "2024-07-24T22": 30.034449552102146, + "2024-07-24T19": 29.786776546929318, + "2024-07-24T09": 29.909170617744536, + "2024-07-23T04": 30.683068, + "2024-07-23T05": 30.3218192, + "2024-07-25T18": 29.975964065197907, + "2024-07-25T15": 30.120036492595215, + "2024-07-26T01": 31.651378959419915, + "2024-07-22T01": 31.865177545408407, + "2024-07-26T02": 31.990294492874753, + "2024-07-24T18": 29.858079881115717, + "2024-07-21T19": 32.101544296916586, + "2024-07-25T05": 29.766003095700047, + "2024-07-22T18": 31.925228728390245, + "2024-07-24T00": 29.579796219137787, + "2024-07-24T08": 29.829843312592967, + "2024-07-24T20": 29.99950879687871, + "2024-07-24T23": 29.963145426311485, + "2024-07-22T17": 31.824618304108984, + "2024-07-21T17": 32.254576365958314, + "2024-07-24T12": 30.24979446487342, + "2024-07-23T13": 30.364857599999997, + "2024-07-21T05": 29.89653076421155, + "2024-07-20T05": 29.69141664500694, + "2024-07-21T03": 30.377617542691024, + "2024-07-26T00": 30.858166778947258, + "2024-07-20T20": 29.142305475671247, + "2024-07-22T03": 31.847100672071154, + "2024-07-25T21": 28.971973987501887, + "2024-07-21T16": 32.176523980742154, + "2024-07-20T17": 29.10066625886507, + "2024-07-22T11": 31.826720799268035, + "2024-07-25T00": 30.015717717231958, + "2024-07-20T13": 29.19936415775049, + "2024-07-23T07": 30.533053000000002, + "2024-07-22T05": 31.755512767365836, + "2024-07-20T07": 29.747691638884028, + "2024-07-21T18": 31.860314898316496, + "2024-07-23T17": 29.60305444084087, + "2024-07-20T14": 29.343477676787646, + "2024-07-26T04": 31.891341510743565, + "2024-07-24T10": 30.355632467888082, + "2024-07-20T18": 29.19974124903975, + "2024-07-23T15": 30.355159500000003, + "2024-07-19T18": 29.737729799999997, + "2024-07-25T09": 29.93322518028712, + "latest": 31.56, + "2024-07-26T09": 32.183954773047255, + "2024-07-26T10": 32.094793049546475, + "2024-07-26T11": 32.02060651670761, + "2024-07-26T12": 31.950769197802558, + "2024-07-26T13": 31.640845652838674, + "2024-07-26T14": 31.502464440203056, + "2024-07-26T17": 32.31976290041581, + "2024-07-26T16": 31.759551283472, + "2024-07-26T15": 31.528068014317245, + "2024-07-26T18": 32.33089831765596, + "2024-07-27": 31.48300133486141, + "2024-07-28": 31.837653252984882, + "2024-07-28T05": 31.251359146220004, + "2024-07-26T21": 32.36198452032169, + "2024-07-27T02": 31.6609498, + "2024-07-28T01": 31.84954069542731, + "2024-07-27T10": 31.172493600000003, + "2024-07-28T02": 31.842519677186786, + "2024-07-27T19": 31.327830000000002, + "2024-07-27T09": 31.475832569999998, + "2024-07-27T06": 31.240624799999996, + "2024-07-27T18": 31.554732500000004, + "2024-07-26T22": 32.36158121895805, + "2024-07-27T13": 31.0440352, + "2024-07-27T12": 31.00527, + "2024-07-27T16": 31.603160000000003, + "2024-07-27T05": 31.350627, + "2024-07-26T23": 32.43092479610605, + "2024-07-26T20": 32.079135221569835, + "2024-07-27T08": 31.201560000000004, + "2024-07-28T03": 31.57707971727076, + "2024-07-27T01": 32.031601030134034, + "2024-07-28T09": 31.239280098279306, + "2024-07-28T10": 31.334475844853568, + "2024-07-27T00": 32.4112964, + "2024-07-28T00": 31.628769168996648, + "2024-07-27T04": 31.360627199999996, + "2024-07-27T14": 31.423142000000002, + "2024-07-27T07": 31.17, + "2024-07-27T11": 30.865246199999998, + "2024-07-27T22": 31.697146999999998, + "2024-07-27T03": 31.480314800000002, + "2024-07-27T20": 31.531576500000003, + "2024-07-27T23": 31.677782399999998, + "2024-07-28T08": 31.344550779027294, + "2024-07-27T21": 31.6590502, + "2024-07-28T07": 31.34211732007275, + "2024-07-27T15": 31.473146999999997, + "2024-07-26T19": 32.19171465119711, + "2024-07-28T04": 31.45912634272865, + "2024-07-28T06": 31.34207861478097, + "2024-07-27T17": 31.633795599999996, + "2024-07-29": 32.61341425858336, + "2024-07-28T20": 32.783038427245764, + "2024-07-28T16": 32.7798613736383, + "2024-07-29T07": 31.900051018413865, + "2024-07-28T23": 32.10907918961868, + "2024-07-28T15": 32.82698863728907, + "2024-07-28T18": 32.895352397325595, + "2024-07-29T04": 32.12779374795622, + "2024-07-29T02": 32.31171414132521, + "2024-07-29T06": 31.99107492920513, + "2024-07-28T21": 32.6590383544036, + "2024-07-29T03": 32.32670647948958, + "2024-07-28T12": 31.875026493391744, + "2024-07-29T05": 31.794154606191118, + "2024-07-28T17": 32.773956077151816, + "2024-07-29T00": 32.50090153685165, + "2024-07-29T01": 32.00239785063726, + "2024-07-28T22": 32.07202456685249, + "2024-07-28T19": 32.904589623506624, + "2024-07-28T14": 32.45149729617353, + "2024-07-28T11": 31.863413933131856, + "2024-07-28T13": 32.098456345013744, + "2024-07-29T08": 31.894049935211807, + "2024-07-29T09": 31.834740695932748, + "2024-07-29T10": 31.67483715438706, + "2024-07-29T11": 32.155295199726794, + "2024-07-29T12": 33.09178085100318, + "2024-07-29T13": 33.29498423209316, + "2024-07-30": 32.15782395643693, + "2024-07-29T23": 33.10404251739688, + "2024-07-29T18": 33.07847540807467, + "2024-07-29T21": 32.8757683120072, + "2024-07-29T22": 33.19931866462265, + "2024-07-29T17": 32.92094861206909, + "2024-07-29T15": 33.174377579066245, + "2024-07-30T01": 32.999675477363816, + "2024-07-29T19": 33.018774549262154, + "2024-07-30T04": 33.21995969309881, + "2024-07-29T14": 33.29013662853327, + "2024-07-29T20": 33.000174742093705, + "2024-07-30T03": 32.81356157558411, + "2024-07-30T00": 32.82425818336723, + "2024-07-29T16": 32.82344329439696, + "2024-07-30T02": 32.914183173758346, + "2024-07-30T09": 31.884334959983978, + "2024-07-30T08": 32.11765225205502, + "2024-07-30T06": 32.1441164662025, + "2024-07-30T05": 32.97780919863695, + "2024-07-30T07": 31.964620036916283, + "2024-07-30T10": 32.04382875259262, + "2024-07-30T11": 32.26093910750318, + "2024-07-30T12": 32.14247818720824, + "2024-07-30T13": 32.42521771851348, + "2024-07-31": 32.04664548874925, + "2024-07-31T00": 31.95201, + "2024-07-31T05": 31.6630326, + "2024-07-30T23": 31.980756052449998, + "2024-07-30T19": 31.6119275260922, + "2024-07-30T16": 31.53803060677462, + "2024-07-30T17": 31.49018675687818, + "2024-07-30T18": 31.49100486315603, + "2024-07-30T20": 31.862283556399632, + "2024-07-30T15": 32.0893191753107, + "2024-07-31T03": 31.573368199999997, + "2024-07-30T21": 31.840424931538898, + "2024-07-31T01": 31.99264, + "2024-07-31T07": 31.5302226, + "2024-07-31T06": 31.7707838, + "2024-07-31T02": 31.84363, + "2024-07-30T22": 31.930907477504274, + "2024-07-30T14": 32.40489916410227, + "2024-07-31T04": 31.573368199999997, + "2024-07-31T08": 31.465834, + "2024-07-31T11": 31.502664, + "2024-07-31T09": 31.623108149557364, + "2024-07-31T10": 31.4948752, + "2024-07-31T12": 31.82316904, + "2024-08-01": 32.33752025390298, + "2024-07-31T14": 31.855658500000004, + "2024-07-31T23": 33.5692544, + "2024-07-31T13": 31.9649694, + "2024-07-31T21": 32.64758919999999, + "2024-08-01T01": 33.06712559594116, + "2024-07-31T18": 31.606463619772427, + "2024-07-31T19": 31.299354599999997, + "2024-07-31T16": 31.8575707, + "2024-08-01T02": 33.544921802544884, + "2024-07-31T22": 33.12012709780084, + "2024-07-31T20": 31.85567323476699, + "2024-07-31T17": 31.7576097, + "2024-08-01T00": 33.18828425752973, + "2024-07-31T15": 31.647019399999998, + "2024-08-01T06": 32.82117761064896, + "2024-08-01T05": 32.60114950022817, + "2024-08-01T04": 32.669890663834146, + "2024-08-01T03": 33.20191400454436, + "2024-08-01T07": 32.8706819220347, + "2024-08-01T08": 32.753768108374544, + "2024-08-01T09": 32.59711909871846, + "2024-08-01T10": 32.582751793619664, + "2024-08-01T11": 32.55701829067669, + "2024-08-01T12": 32.43201791759448, + "2024-08-01T13": 32.65999464050987, + "2024-08-01T14": 32.449508776258575, + "2024-08-01T15": 31.526004825402566, + "2024-08-02": 32.47214698526737, + "2024-08-02T00": 32.570660000000004, + "2024-08-01T20": 31.541228688791875, + "2024-08-01T21": 31.77315371501289, + "2024-08-02T04": 29.9926818, + "2024-08-01T19": 31.32104939254206, + "2024-08-01T16": 31.283468051593093, + "2024-08-02T02": 30.923073499999997, + "2024-08-01T17": 31.313242945278933, + "2024-08-01T23": 32.18183011654861, + "2024-08-02T01": 31.751715800000003, + "2024-08-01T22": 32.04580297991665, + "2024-08-01T18": 31.118203930200693, + "2024-08-02T03": 29.892473600000002, + "2024-08-02T05": 29.8839783, + "2024-08-02T06": 29.9772, + "2024-08-02T07": 30.22916245523265, + "2024-08-02T08": 31.3139878, + "2024-08-02T09": 31.7426778, + "2024-08-02T10": 32.3953608, + "2024-08-02T11": 33.5917592, + "2024-08-02T12": 33.94575771716666, + "2024-08-02T13": 34.1833162, + "2024-08-02T14": 34.1089612359708, + "2024-08-02T15": 32.957669800000005, + "2024-08-03": 32.76642938237937, + "2024-08-02T16": 32.882026499999995, + "2024-08-02T22": 32.6327562, + "2024-08-02T23": 32.618195199999995, + "2024-08-03T00": 32.6771368, + "2024-08-03T01": 32.2902341, + "2024-08-03T03": 32.461325, + "2024-08-02T19": 33.3136485, + "2024-08-02T18": 33.51645, + "2024-08-02T21": 32.767199999999995, + "2024-08-02T17": 33.548099, + "2024-08-02T20": 33.1738011, + "2024-08-03T02": 32.3663920226147, + "2024-08-03T06": 33.2037684, + "2024-08-03T19": 32.0449854, + "2024-08-03T10": 33.210748800000005, + "2024-08-03T09": 33.470185, + "2024-08-03T15": 33.397608600000005, + "2024-08-03T22": 32.34755138, + "2024-08-03T05": 32.3440582, + "2024-08-03T08": 33.3975729, + "2024-08-03T14": 33.758043, + "2024-08-03T18": 32.447271, + "2024-08-03T17": 32.6464776, + "2024-08-03T21": 32.200668, + "2024-08-03T12": 33.4845324, + "2024-08-03T20": 32.1184662, + "2024-08-03T04": 32.2274174, + "2024-08-03T16": 33.065182500000006, + "2024-08-03T11": 33.15509493702379, + "2024-08-03T07": 33.3542727, + "2024-08-03T13": 32.91460284, + "2024-08-04": 31.5257872771645, + "2024-08-03T23": 31.9221136, + "2024-08-04T17": 30.434718200000002, + "2024-08-04T13": 32.013985000000005, + "2024-08-04T06": 32.429881, + "2024-08-04T12": 31.974005000000002, + "2024-08-04T10": 31.5635784, + "2024-08-04T16": 30.787816799999998, + "2024-08-04T15": 30.95355342285449, + "2024-08-04T00": 31.60154522943539, + "2024-08-04T11": 31.630942720958558, + "2024-08-04T01": 31.471865376946152, + "2024-08-04T03": 31.9601724, + "2024-08-04T04": 32.0404434, + "2024-08-04T07": 32.1010492, + "2024-08-04T08": 31.760614200000003, + "2024-08-04T18": 30.556987625026174, + "2024-08-04T09": 31.581988000000003, + "2024-08-04T02": 32.090734, + "2024-08-04T05": 32.080419, + "2024-08-04T14": 31.3365195, + "2024-08-05": 28.769609871785725, + "2024-08-05T01": 29.99981586524743, + "2024-08-04T19": 30.56281134203154, + "2024-08-04T22": 31.39958659198208, + "2024-08-05T03": 28.323458191613184, + "2024-08-05T02": 28.390014132769707, + "2024-08-04T23": 31.29694686784057, + "2024-08-05T00": 30.798152899854163, + "2024-08-05T04": 27.753238371257815, + "2024-08-05T06": 26.77596312225373, + "2024-08-04T20": 31.147963172078253, + "2024-08-05T05": 27.543509742134, + "2024-08-04T21": 31.698866744094918, + "2024-08-05T07": 27.65633403698673, + "2024-08-05T08": 29.1401434701594, + "2024-08-05T09": 28.90896014172427, + "2024-08-05T10": 28.732679518303367, + "2024-08-05T11": 27.193790615614322, + "2024-08-05T12": 27.761317414401102, + "2024-08-05T13": 27.085156121704873, + "2024-08-05T14": 27.905642762611738, + "2024-08-05T15": 30.1990134, + "2024-08-06": 29.878297240583485, + "2024-08-05T19": 30.0414114, + "2024-08-05T20": 30.353035000000002, + "2024-08-05T21": 30.5188796665291, + "2024-08-06T02": 29.5412214, + "2024-08-05T18": 30.966838353124004, + "2024-08-05T23": 30.31675871086916, + "2024-08-05T16": 31.351930999999997, + "2024-08-06T05": 29.607458100000002, + "2024-08-05T17": 31.678870763656878, + "2024-08-06T00": 30.096018, + "2024-08-06T04": 29.6033155, + "2024-08-06T03": 29.841633699999996, + "2024-08-05T22": 30.7352241, + "2024-08-06T01": 29.768928, + "2024-08-06T06": 29.888793139785093, + "2024-08-06T07": 30.0201, + "2024-08-06T08": 29.593208315763114, + "2024-08-06T09": 29.448832, + "2024-08-06T10": 30.230238776262862, + "2024-08-06T11": 30.889907791002972, + "2024-08-06T12": 31.7317364, + "2024-08-06T13": 31.208736000000002, + "2024-08-06T14": 31.209047999999996 + }, + "USD zilliqa": { + "2024-06-28": 0.01779753102864078, + "2024-06-30": 0.0174115609354325, + "2024-07-15": 0.016808238954692956, + "2024-07-18": 0.017449686528545165, + "2024-07-14": 0.016315545433729234, + "2024-07-11": 0.015730116021075696, + "2024-07-19": 0.01759998909874325, + "2024-07-12": 0.015482091976902786, + "2024-07-24": 0.017050688950198695, + "2024-07-08": 0.014758781192256527, + "2024-07-07": 0.015060156939802024, + "2024-07-13": 0.016033355520652545, + "2024-07-09": 0.015134020361937804, + "2024-07-02": 0.017277465357119277, + "2024-07-20": 0.017918596322177915, + "2024-06-29": 0.01754223159381911, + "2024-07-21": 0.01789588353829806, + "2024-07-23": 0.017222679703360493, + "2024-07-10": 0.015690000061125767, + "2024-07-01": 0.017579164694547098, + "2024-06-26": 0.01776466142064764, + "2024-07-17": 0.017734223837736124, + "2024-07-22": 0.01769266228048926, + "2024-07-04": 0.015998682044588996, + "2024-06-25": 0.017681550900471042, + "2024-07-26": 0.016888619629336896, + "2024-07-03": 0.01708721917813738, + "2024-07-05": 0.014307710400000001, + "2024-07-25": 0.016106303356530776, + "2024-07-16": 0.017286382773149644, + "2024-07-06": 0.015071507, + "2024-06-27": 0.017902062604232633, + "2024-07-22T13": 0.017792490600000002, + "2024-07-25T10": 0.016104200399999997, + "2024-07-26T06": 0.016802537122588692, + "2024-07-24T14": 0.017406648238980683, + "2024-07-21T20": 0.01800504, + "2024-07-21T07": 0.01780312342480944, + "2024-07-21T14": 0.017866072400000002, + "2024-07-22T23": 0.017355205, + "2024-07-24T07": 0.016979490599999997, + "2024-07-20T11": 0.017878756300000003, + "2024-07-26T08": 0.016897296, + "2024-07-25T20": 0.015696231999999997, + "2024-07-21T02": 0.018105068000000002, + "2024-07-20T04": 0.0179584365, + "2024-07-20T03": 0.0179380685, + "2024-07-25T13": 0.0159848832, + "2024-07-21T06": 0.0179652084, + "2024-07-20T12": 0.017848563200000004, + "2024-07-24T02": 0.0168701687, + "2024-07-24T17": 0.0172198278, + "2024-07-25T06": 0.0161657958, + "2024-07-25T22": 0.0162859275, + "2024-07-22T07": 0.017512626500000003, + "2024-07-22T22": 0.017443612351197457, + "2024-07-26T03": 0.016647338286650833, + "2024-07-23T01": 0.017661766, + "2024-07-24T03": 0.016971018199999997, + "2024-07-23T21": 0.017035859084307724, + "2024-07-19T20": 0.018048118000000002, + "2024-07-23T22": 0.016873036600000002, + "2024-07-21T23": 0.0180814464, + "2024-07-19T16": 0.018003599999999998, + "2024-07-22T20": 0.0177267336, + "2024-07-23T10": 0.0174798252, + "2024-07-19T17": 0.0180623478, + "2024-07-22T09": 0.01757, + "2024-07-24T04": 0.0169505085, + "2024-07-22T06": 0.017601056, + "2024-07-24T21": 0.016938306, + "2024-07-20T21": 0.017858211, + "2024-07-21T15": 0.0178558905, + "2024-07-20T09": 0.017957725223951157, + "2024-07-25T14": 0.0160642148, + "2024-07-19T11": 0.017376350199999998, + "2024-07-23T20": 0.017083416, + "2024-07-25T03": 0.015896979000000002, + "2024-07-20T01": 0.01790895, + "2024-07-25T23": 0.0163049439, + "2024-07-20T16": 0.0179364548, + "2024-07-22T15": 0.017641587599999998, + "2024-07-23T16": 0.01700289, + "2024-07-22T02": 0.01801, + "2024-07-21T04": 0.017974834650017354, + "2024-07-23T09": 0.01758, + "2024-07-20T10": 0.017968261599999997, + "2024-07-22T19": 0.017754792499999998, + "2024-07-20T00": 0.01788894, + "2024-07-20T19": 0.017928243199999996, + "2024-07-26T05": 0.0167468175, + "2024-07-19T14": 0.01778, + "2024-07-21T00": 0.0180152229, + "2024-07-22T12": 0.017871429600000002, + "2024-07-24T06": 0.016900169, + "2024-07-25T01": 0.0161780584, + "2024-07-20T22": 0.0178776841, + "2024-07-19T15": 0.017820356399999997, + "2024-07-21T13": 0.017825524199999998, + "2024-07-25T07": 0.016205947499999998, + "2024-07-21T08": 0.0178551765, + "2024-07-23T06": 0.017102565000000004, + "2024-07-22T16": 0.0176126415, + "2024-07-24T11": 0.017196298996751944, + "2024-07-24T01": 0.016870337399999998, + "2024-07-23T00": 0.017385214, + "2024-07-19T12": 0.017395998, + "2024-07-25T17": 0.0161566064, + "2024-07-25T19": 0.0158054151, + "2024-07-19T21": 0.01800918, + "2024-07-23T08": 0.01740366276219886, + "2024-07-21T21": 0.018033425699999998, + "2024-07-21T11": 0.0179148357, + "2024-07-22T14": 0.017602640000000003, + "2024-07-20T23": 0.01791247787605188, + "2024-07-20T08": 0.017978985, + "2024-07-20T02": 0.017908055, + "2024-07-24T05": 0.016861348800000002, + "2024-07-24T16": 0.0171715453, + "2024-07-21T01": 0.018086689599999997, + "2024-07-24T13": 0.01729, + "2024-07-25T04": 0.0160577516, + "2024-07-19T13": 0.017566486, + "2024-07-25T12": 0.016035756999729502, + "2024-07-19T22": 0.017908771, + "2024-07-26T07": 0.016886790899999997, + "2024-07-25T02": 0.015956808, + "2024-07-21T12": 0.017895367, + "2024-07-23T18": 0.016911860100000002, + "2024-07-23T11": 0.017360347199999997, + "2024-07-19T10": 0.0173363586, + "2024-07-19T19": 0.018037212, + "2024-07-25T11": 0.0160837249, + "2024-07-22T08": 0.017531402400000003, + "2024-07-23T19": 0.017075633099999998, + "2024-07-22T21": 0.0176151069, + "2024-07-21T09": 0.0179650288, + "2024-07-21T22": 0.0181288127, + "2024-07-22T04": 0.0179214336, + "2024-07-25T16": 0.016146447, + "2024-07-19T23": 0.01786893, + "2024-07-20T06": 0.017967184, + "2024-07-23T02": 0.0176614128, + "2024-07-23T14": 0.0173427744, + "2024-07-23T03": 0.017601232, + "2024-07-25T08": 0.0161853049, + "2024-07-24T15": 0.017233273699999996, + "2024-07-19T09": 0.017446510000000002, + "2024-07-20T15": 0.0178855428, + "2024-07-23T23": 0.016891520099999998, + "2024-07-23T12": 0.017333119400000003, + "2024-07-22T10": 0.017710177100000002, + "2024-07-21T10": 0.0179648492, + "2024-07-22T00": 0.018190909500000005, + "2024-07-24T22": 0.0168169724, + "2024-07-24T19": 0.0170398296, + "2024-07-24T09": 0.01716, + "2024-07-23T04": 0.017541754, + "2024-07-23T05": 0.017161029600000002, + "2024-07-25T18": 0.015895866, + "2024-07-25T15": 0.016246425000000002, + "2024-07-26T01": 0.016406718, + "2024-07-22T01": 0.018092170799999998, + "2024-07-26T02": 0.016554253975232282, + "2024-07-24T18": 0.01710171, + "2024-07-21T19": 0.0176468796, + "2024-07-25T05": 0.0162361024, + "2024-07-22T18": 0.017693538, + "2024-07-24T00": 0.016881519199999997, + "2024-07-24T08": 0.0170698293, + "2024-07-24T20": 0.0171198288, + "2024-07-24T23": 0.016746985000000002, + "2024-07-22T17": 0.017602464, + "2024-07-21T17": 0.017808040729170953, + "2024-07-24T12": 0.01718651558, + "2024-07-23T13": 0.017202751999999998, + "2024-07-21T05": 0.0178750036, + "2024-07-20T05": 0.0179386064, + "2024-07-21T03": 0.0180650568, + "2024-07-26T00": 0.016396556, + "2024-07-20T20": 0.017877705443991043, + "2024-07-22T03": 0.017995575398141932, + "2024-07-25T21": 0.0161162924, + "2024-07-21T16": 0.017842592023317737, + "2024-07-20T17": 0.017967184, + "2024-07-22T11": 0.017760532800000003, + "2024-07-25T00": 0.016786977800000002, + "2024-07-20T13": 0.017757455, + "2024-07-23T07": 0.017131713, + "2024-07-22T05": 0.0177310638, + "2024-07-20T07": 0.018028109000000004, + "2024-07-21T18": 0.017407482, + "2024-07-23T17": 0.016831683, + "2024-07-20T14": 0.017786756400000003, + "2024-07-26T04": 0.016668086966217768, + "2024-07-24T10": 0.01718, + "2024-07-20T18": 0.018019005, + "2024-07-23T15": 0.0172729359, + "2024-07-19T18": 0.0180246852, + "2024-07-25T09": 0.016174175199999998, + "latest": 0.013101, + "2024-07-26T09": 0.0169369508, + "2024-07-26T10": 0.0169254289, + "2024-07-26T11": 0.0168759488, + "2024-07-26T12": 0.016907125300000003, + "2024-07-26T13": 0.0169072944, + "2024-07-26T14": 0.016948474499999998, + "2024-07-26T17": 0.016949660999999998, + "2024-07-26T16": 0.016919154000000002, + "2024-07-26T15": 0.0168786496, + "2024-07-26T18": 0.01696, + "2024-07-27": 0.017241643678939347, + "2024-07-28": 0.017089658200000003, + "2024-07-28T05": 0.0170198298, + "2024-07-26T21": 0.01699, + "2024-07-27T02": 0.0171905157, + "2024-07-28T01": 0.0173387862, + "2024-07-27T10": 0.017261380800000004, + "2024-07-28T02": 0.0172691365, + "2024-07-27T19": 0.017164290000000002, + "2024-07-27T09": 0.0172615534, + "2024-07-27T06": 0.0171903438, + "2024-07-27T18": 0.017202580000000002, + "2024-07-26T22": 0.017100684, + "2024-07-27T13": 0.0174322659, + "2024-07-27T12": 0.0173729529, + "2024-07-27T16": 0.017251725000000002, + "2024-07-27T05": 0.017240344799999998, + "2024-07-26T23": 0.0172106884, + "2024-07-26T20": 0.01698, + "2024-07-27T08": 0.017260863, + "2024-07-28T03": 0.0172396552, + "2024-07-27T01": 0.017160686400000003, + "2024-07-28T09": 0.017199656, + "2024-07-28T10": 0.01718082966757135, + "2024-07-27T00": 0.0172306892, + "2024-07-28T00": 0.017249827500000002, + "2024-07-27T04": 0.0171603432, + "2024-07-27T14": 0.01747074786737768, + "2024-07-27T07": 0.01726, + "2024-07-27T11": 0.0173429478, + "2024-07-27T22": 0.0174384304, + "2024-07-27T03": 0.01716322681102712, + "2024-07-27T20": 0.017180859000000003, + "2024-07-27T23": 0.0173587848, + "2024-07-28T08": 0.017159656800000003, + "2024-07-27T21": 0.017399478, + "2024-07-28T07": 0.017099658, + "2024-07-27T15": 0.017301729999999998, + "2024-07-26T19": 0.01705, + "2024-07-28T04": 0.0171396572, + "2024-07-28T06": 0.017129657399999998, + "2024-07-27T17": 0.017172060399999998, + "2024-07-29": 0.017292712737210107, + "2024-07-28T20": 0.017009698720223617, + "2024-07-28T16": 0.0169698303, + "2024-07-29T07": 0.01749685, + "2024-07-28T23": 0.017039659199999998, + "2024-07-28T15": 0.016989830100000002, + "2024-07-28T18": 0.017048124499999998, + "2024-07-29T04": 0.0174079108, + "2024-07-29T06": 0.017457778957216563, + "2024-07-28T21": 0.016978301999999997, + "2024-07-29T03": 0.017478077199999997, + "2024-07-28T12": 0.0171494855, + "2024-07-29T05": 0.0174179096, + "2024-07-28T17": 0.0169781322, + "2024-07-29T00": 0.01721, + "2024-07-29T01": 0.01721, + "2024-07-28T22": 0.0169394918, + "2024-07-28T19": 0.0170881201, + "2024-07-28T14": 0.01703, + "2024-07-29T02": 0.0173587848, + "2024-07-29T08": 0.017486501999999998, + "2024-07-28T11": 0.0171893124, + "2024-07-28T13": 0.017149657, + "2024-07-29T09": 0.0174561588, + "2024-07-29T10": 0.0174463355, + "2024-07-29T11": 0.0174363376, + "2024-07-29T12": 0.0174384304, + "2024-07-29T13": 0.0174484295, + "2024-07-30": 0.01710632020564164, + "2024-07-29T23": 0.0172177614, + "2024-07-29T18": 0.017086582000000003, + "2024-07-29T21": 0.017258619200000002, + "2024-07-29T22": 0.0173477445, + "2024-07-29T17": 0.017046249, + "2024-07-29T15": 0.0169855826, + "2024-07-30T01": 0.017256202800000002, + "2024-07-29T19": 0.01710749087236977, + "2024-07-30T04": 0.017306538, + "2024-07-29T14": 0.017257411, + "2024-07-29T20": 0.0172081069, + "2024-07-30T03": 0.017245639266803548, + "2024-07-30T00": 0.0171370862, + "2024-07-29T16": 0.0169645696, + "2024-07-30T02": 0.017166566, + "2024-07-30T09": 0.0173261874, + "2024-07-30T08": 0.0173151504, + "2024-07-30T06": 0.0172761984, + "2024-07-30T05": 0.0172167282, + "2024-07-30T07": 0.0173254942, + "2024-07-30T10": 0.0172670641, + "2024-07-30T11": 0.01720099277877079, + "2024-07-30T12": 0.017176564000000002, + "2024-07-30T13": 0.017166566, + "2024-07-31": 0.01670927855141354, + "2024-07-31T00": 0.01675581, + "2024-07-31T05": 0.016556356799999998, + "2024-07-30T23": 0.0168051251, + "2024-07-30T19": 0.016733806200000003, + "2024-07-30T16": 0.017144511999999997, + "2024-07-30T17": 0.01699473, + "2024-07-30T18": 0.0168646016, + "2024-07-30T20": 0.016605017, + "2024-07-30T15": 0.017074192800000002, + "2024-07-31T03": 0.016786474099999997, + "2024-07-30T21": 0.01664558441028102, + "2024-07-31T01": 0.0168761176, + "2024-07-31T07": 0.016927008726415, + "2024-07-31T06": 0.016915093200000002, + "2024-07-31T02": 0.016876624, + "2024-07-30T22": 0.016775133799999998, + "2024-07-30T14": 0.017086582000000003, + "2024-07-31T04": 0.0166864951, + "2024-07-31T08": 0.016823468358473367, + "2024-07-31T11": 0.0166608315, + "2024-07-31T09": 0.0167534636, + "2024-07-31T10": 0.0166819888, + "2024-07-31T12": 0.016670779289723936, + "2024-08-01": 0.01588157129266856, + "2024-07-31T14": 0.0168224265, + "2024-07-31T23": 0.016344768, + "2024-07-31T13": 0.01681672643820717, + "2024-07-31T21": 0.0163137984, + "2024-08-01T01": 0.016314288000000003, + "2024-07-31T18": 0.016785607440006504, + "2024-07-31T19": 0.016574362800000002, + "2024-07-31T16": 0.0168034441, + "2024-08-01T02": 0.0162615396, + "2024-07-31T22": 0.0163649253, + "2024-07-31T20": 0.0163836079, + "2024-07-31T17": 0.016792788981949167, + "2024-08-01T00": 0.016374594599999997, + "2024-07-31T15": 0.01680928818052623, + "2024-08-01T07": 0.0159428225, + "2024-08-01T06": 0.015992160000000002, + "2024-08-01T05": 0.015960258300000002, + "2024-08-01T04": 0.015961695600000003, + "2024-08-01T03": 0.0162213981, + "2024-08-01T08": 0.01597184668843116, + "2024-08-01T09": 0.0160506852, + "2024-08-01T10": 0.01602050463, + "2024-08-01T11": 0.0160814723, + "2024-08-01T12": 0.01621456404, + "2024-08-01T13": 0.0161822288, + "2024-08-01T14": 0.016132869501595384, + "2024-08-01T15": 0.015682155, + "2024-08-02": 0.016110610537489235, + "2024-08-02T00": 0.01608551, + "2024-08-01T20": 0.0154044258, + "2024-08-01T21": 0.0157455008, + "2024-08-02T04": 0.0158355765, + "2024-08-01T19": 0.015303148, + "2024-08-01T16": 0.015329262, + "2024-08-02T02": 0.015766271399999997, + "2024-08-01T17": 0.0152176637, + "2024-08-01T23": 0.016124989800000003, + "2024-08-02T01": 0.015955786700000002, + "2024-08-01T22": 0.0160366785, + "2024-08-01T18": 0.015086108, + "2024-08-02T03": 0.0158454088, + "2024-08-02T05": 0.015676349699999998, + "2024-08-02T06": 0.015538182, + "2024-08-02T07": 0.0155573883, + "2024-08-02T08": 0.0155171101, + "2024-08-02T09": 0.0156665152, + "2024-08-02T10": 0.0156580908, + "2024-08-02T11": 0.015726778400000002, + "2024-08-02T12": 0.015609066, + "2024-08-02T13": 0.0157277228, + "2024-08-02T14": 0.015499892666481028, + "2024-08-02T15": 0.0150252608, + "2024-08-03": 0.014598613143494048, + "2024-08-02T16": 0.01521514621651023, + "2024-08-02T22": 0.015012865799999999, + "2024-08-02T23": 0.015024843163794413, + "2024-08-03T00": 0.014980349999999998, + "2024-08-03T01": 0.0147318575, + "2024-08-03T03": 0.0149721619, + "2024-08-02T19": 0.015033595499999998, + "2024-08-02T18": 0.01514484, + "2024-08-02T21": 0.014985, + "2024-08-02T17": 0.015285465, + "2024-08-02T20": 0.0151334865, + "2024-08-03T02": 0.014930266, + "2024-08-03T06": 0.0151734429, + "2024-08-03T19": 0.014109006667343377, + "2024-08-03T10": 0.0150267648, + "2024-08-03T09": 0.015106543200000001, + "2024-08-03T15": 0.0148500438, + "2024-08-03T22": 0.014191906, + "2024-08-03T05": 0.0151032168, + "2024-08-03T08": 0.015115323899999998, + "2024-08-03T14": 0.015090185, + "2024-08-03T18": 0.014200053, + "2024-08-03T17": 0.0143296752, + "2024-08-03T21": 0.01409154, + "2024-08-03T12": 0.0150785316, + "2024-08-03T20": 0.014020599900000002, + "2024-08-03T04": 0.015054543094479473, + "2024-08-03T16": 0.014559072499999999, + "2024-08-03T11": 0.015007383200000002, + "2024-08-03T07": 0.0152236932, + "2024-08-03T13": 0.015068782023147518, + "2024-08-04": 0.014221149207401371, + "2024-08-03T23": 0.0142020424, + "2024-08-04T17": 0.01328671659664126, + "2024-08-04T13": 0.014262865000000001, + "2024-08-04T06": 0.0143311092, + "2024-08-04T12": 0.01423288, + "2024-08-04T10": 0.0142226004, + "2024-08-04T16": 0.013540243999999998, + "2024-08-04T15": 0.013660841100000001, + "2024-08-04T00": 0.014211027770050507, + "2024-08-04T11": 0.0142527274, + "2024-08-04T01": 0.014191622000000001, + "2024-08-04T03": 0.014351096800000001, + "2024-08-04T04": 0.0143512404, + "2024-08-04T07": 0.014251586600000001, + "2024-08-04T08": 0.0142213197, + "2024-08-04T18": 0.013393773379857497, + "2024-08-04T09": 0.0142718604, + "2024-08-04T02": 0.014281426, + "2024-08-04T05": 0.0143112648, + "2024-08-04T14": 0.0138740316, + "2024-08-05": 0.011921731629286732, + "2024-08-05T01": 0.012960712494211976, + "2024-08-04T19": 0.013537740055029649, + "2024-08-04T22": 0.013678221162858767, + "2024-08-05T03": 0.012110883096249908, + "2024-08-05T02": 0.01203744962542563, + "2024-08-04T23": 0.013728837488003184, + "2024-08-05T00": 0.0135195675874893, + "2024-08-05T04": 0.011848368786679594, + "2024-08-05T06": 0.01175491570418649, + "2024-08-04T20": 0.0137489646600968, + "2024-08-05T05": 0.011955129753930396, + "2024-08-04T21": 0.013719028161014845, + "2024-08-05T07": 0.011366835544373816, + "2024-08-05T08": 0.011813948052011691, + "2024-08-05T09": 0.011666178897905327, + "2024-08-05T10": 0.011619028281351373, + "2024-08-05T11": 0.0111514495, + "2024-08-05T12": 0.011322679987662822, + "2024-08-05T13": 0.011091604648039903, + "2024-08-05T14": 0.011786805435115533, + "2024-08-05T15": 0.012417893032346125, + "2024-08-06": 0.012929009558901385, + "2024-08-05T19": 0.012344689200000002, + "2024-08-05T20": 0.012431243, + "2024-08-05T21": 0.012452241, + "2024-08-06T02": 0.012914926094081338, + "2024-08-05T18": 0.012455726999999998, + "2024-08-05T23": 0.012462492, + "2024-08-05T16": 0.012588805999999998, + "2024-08-06T05": 0.013037687700000002, + "2024-08-05T17": 0.0125373927, + "2024-08-06T00": 0.012912581999999999, + "2024-08-06T04": 0.012910446248883968, + "2024-08-06T03": 0.012905030999999999, + "2024-08-05T22": 0.012502125000000001, + "2024-08-06T01": 0.013083923999999999, + "2024-08-06T06": 0.013169606799999999, + "2024-08-06T07": 0.01312134963269303, + "2024-08-06T08": 0.0128774646, + "2024-08-06T09": 0.012833849, + "2024-08-06T10": 0.01285191182728006, + "2024-08-06T11": 0.0128132025, + "2024-08-06T12": 0.0128147397, + "2024-08-06T13": 0.012757039954565865, + "2024-08-06T14": 0.012757119750776653 + }, + "USD ethereum/erc20/aragon_network_token": { + "2023-07-30": 4.36750588804025, + "2023-10-23": 4.951480832819127, + "2023-07-27": 4.113256436910046, + "2023-08-20": 4.430156940000001, + "2024-02-23": 7.441379390212608, + "2024-04-05": 10.441127328160851, + "2023-12-19": 5.616541726577723, + "2024-05-17": 7.703826961355662, + "2023-08-06": 4.137836615077047, + "2023-12-02": 5.3152698964800145, + "2024-06-11": 8.899786486333326, + "2024-01-08": 5.616937068306572, + "2023-10-31": 4.838470459795654, + "2023-08-29": 4.135282247132531, + "2023-09-09": 4.34572285295061, + "2023-10-01": 5.132324487848817, + "2024-03-07": 9.639941400757305, + "2023-10-12": 4.62166997130834, + "2024-04-22": 8.361442298299185, + "2023-07-29": 4.321914777226909, + "2024-04-26": 7.9599037799975285, + "2024-06-24": 8.369547655187805, + "2023-09-26": 4.937817066593888, + "2023-08-24": 4.225158938952076, + "2023-12-05": 5.690362963012716, + "2024-02-19": 7.3758414426444014, + "2024-01-07": 5.671941802542805, + "2024-04-28": 8.405141178383527, + "2023-07-31": 4.361667781630601, + "2023-10-18": 4.574684941897229, + "2023-10-07": 4.799042811976364, + "2024-06-28": 8.71200129982231, + "2024-05-19": 7.836747295271005, + "2024-05-12": 7.426505129250678, + "2024-04-29": 8.053015611267806, + "2023-09-16": 4.32744592327562, + "2023-08-25": 4.225669652029104, + "2024-03-09": 9.923120666908595, + "2023-09-05": 4.2924659135223715, + "2024-04-25": 7.9848392768557375, + "2023-08-12": 4.145164219011701, + "2024-06-12": 8.956952053919142, + "2023-09-01": 4.237202771881505, + "2024-05-30": 9.511273461584967, + "2024-06-05": 9.684, + "2023-09-08": 4.329268118111007, + "2024-03-22": 8.615024248376193, + "2023-08-10": 4.420430865735294, + "2023-11-18": 4.999537638458717, + "2023-09-13": 4.183610730922012, + "2023-12-07": 5.754737005464671, + "2024-06-30": 8.606442720406871, + "2024-06-20": 8.974313174563417, + "2024-07-08": 7.570374824293642, + "2024-07-07": 7.615088749092025, + "2023-09-07": 4.330041563396337, + "2024-03-26": 9.11752391566698, + "2024-05-14": 7.357743734622892, + "2024-06-16": 9.07483421662633, + "2024-02-22": 7.546724608579115, + "2024-04-15": 9.311487670308527, + "2023-12-30": 5.839966148871494, + "2023-09-17": 4.309449396788691, + "2024-04-17": 8.068335776905109, + "2024-02-12": 6.461615, + "2023-10-26": 4.836240666292772, + "2024-01-03": 5.632927098094253, + "2024-05-07": 7.796848412102565, + "2024-01-22": 6.03551739328918, + "2024-07-13": 7.957365347202462, + "2023-10-03": 4.974048662668796, + "2024-05-26": 9.680513759999998, + "2024-04-30": 7.630354867851791, + "2024-07-09": 7.762110443464876, + "2023-12-24": 5.821638142463314, + "2023-09-24": 4.8302898, + "2024-01-16": 6.4346194665113865, + "2023-10-17": 4.615085097707868, + "2024-04-24": 8.258349882532436, + "2024-03-18": 8.980152490286171, + "2024-02-17": 7.04077614222789, + "2023-12-27": 5.878378680613886, + "2023-09-03": 4.229930057915404, + "2024-02-24": 7.495927730437691, + "2024-01-06": 5.684900868735704, + "2024-03-20": 8.220303041326712, + "2023-11-21": 5.08988134479972, + "2023-12-25": 5.794063930992233, + "2023-09-22": 4.348262526475318, + "2024-03-01": 8.681425533198347, + "2023-10-02": 5.074050063267193, + "2024-03-27": 9.011373597233364, + "2024-05-06": 7.850463294752514, + "2024-06-19": 8.929584357599209, + "2023-08-30": 4.240690046534991, + "2023-10-06": 4.850561223659412, + "2023-10-13": 4.620379878926767, + "2024-02-05": 5.83709601930256, + "2023-12-10": 5.9575085755755355, + "2023-11-23": 5.241001001614955, + "2023-08-04": 4.03174220809123, + "2024-05-13": 7.444137176716059, + "2024-01-13": 6.4666084343101895, + "2024-03-28": 9.05523126801477, + "2023-08-05": 4.072957762661114, + "2024-02-09": 6.311124829504699, + "2023-10-09": 4.642919522777497, + "2024-01-09": 5.82890703773174, + "2024-05-10": 7.459040280466971, + "2023-08-18": 4.1966930535711855, + "2023-11-05": 4.786469924953107, + "2024-04-18": 8.084185979654979, + "2023-10-22": 4.8561679388254, + "2023-11-01": 4.8118480137094775, + "2024-05-20": 7.865393250000001, + "2023-12-08": 5.989068023004449, + "2024-04-12": 8.544991067235939, + "2024-03-12": 10.100959031385123, + "2024-07-02": 8.695687274873098, + "2023-09-11": 4.215376676280577, + "2024-07-20": 9.5795, + "2024-03-03": 8.675309042295476, + "2024-02-04": 5.823785556987136, + "2024-01-28": 5.7774222, + "2023-11-07": 4.903046057800562, + "2023-11-25": 5.2959540635419975, + "2024-06-29": 8.609072303017875, + "2024-07-21": 9.1088, + "2024-02-25": 7.756685701467173, + "2023-12-01": 5.280120690583483, + "2024-01-26": 5.7153453426832534, + "2023-08-03": 4.41470631044649, + "2024-02-28": 8.405471741147961, + "2023-09-15": 4.1233760731971465, + "2023-12-21": 5.683149709920482, + "2024-06-01": 9.565836476062167, + "2024-03-06": 9.653249720560346, + "2024-07-15": 8.475154337869977, + "2023-09-30": 5.028249286131687, + "2023-12-12": 5.631523606865678, + "2023-10-04": 4.9141935203477525, + "2024-02-13": 6.714734916470694, + "2023-09-20": 4.408908711054882, + "2024-04-16": 8.589262466247222, + "2023-09-19": 4.377990745940142, + "2023-09-29": 5.106263819344592, + "2023-09-12": 4.205941387132992, + "2024-03-02": 8.692147602068923, + "2024-06-02": 9.600181576987865, + "2023-10-08": 4.805415214010487, + "2023-11-20": 5.1578135949059565, + "2023-12-20": 5.598646431065355, + "2023-12-31": 5.817292073835992, + "2023-11-06": 4.831946203507244, + "2023-08-22": 4.33939922062357, + "2024-05-29": 9.658728316032374, + "2024-03-17": 9.051660537779899, + "2024-07-23": 9.051431229985159, + "2024-07-10": 7.862519138393638, + "2023-09-18": 4.318736373937901, + "2024-07-01": 8.785587082570242, + "2024-04-01": 8.880723064588484, + "2024-05-21": 9.56206185079304, + "2024-01-19": 6.259296014110937, + "2023-11-11": 5.289484367725421, + "2023-09-23": 4.579999942704918, + "2023-08-15": 4.231427091996583, + "2024-07-18": 9.717352570866002, + "2023-11-19": 5.011886667947926, + "2024-01-25": 5.617336724589558, + "2024-03-13": 10.13678071899379, + "2024-01-21": 6.252236759362715, + "2024-02-01": 5.759615373061707, + "2024-03-15": 9.365768860720111, + "2024-03-16": 9.268868384623934, + "2024-06-23": 8.824575293188346, + "2023-11-27": 5.129866716396342, + "2024-01-10": 6.184269827333605, + "2024-06-03": 9.646, + "2024-01-02": 6.046160692327974, + "2024-07-14": 8.078145652700004, + "2023-10-25": 5.0433041117056545, + "2024-01-01": 5.860128725433307, + "2024-02-14": 6.965290568656087, + "2023-09-04": 4.304326042357999, + "2023-09-06": 4.322783541863089, + "2024-04-03": 8.503382491932175, + "2024-06-15": 8.913734657372391, + "2023-11-28": 5.134355201593897, + "2023-12-03": 5.312045587964787, + "2023-08-02": 4.472925489265021, + "2024-07-11": 7.903058290817624, + "2023-08-27": 4.198995978512811, + "2024-04-11": 9.43687941010307, + "2023-10-20": 4.691311175281268, + "2023-10-10": 4.666381839305403, + "2024-05-03": 7.73360496708016, + "2024-03-08": 9.962378744878604, + "2024-01-14": 6.436293300880006, + "2023-12-15": 5.731226706915526, + "2023-10-19": 4.5814462234990465, + "2024-02-08": 6.154578696321749, + "2023-11-12": 5.312575578808469, + "2023-12-22": 5.84762654609723, + "2024-06-21": 8.847741536564676, + "2024-03-23": 8.542757572039296, + "2023-09-27": 4.939532008224803, + "2024-03-04": 8.971953631347, + "2023-09-10": 4.285528820258695, + "2024-04-13": 8.128524964328543, + "2024-02-29": 8.654673093969725, + "2023-09-21": 4.347886737560089, + "2024-04-21": 8.229827643794009, + "2023-11-08": 4.873542857941461, + "2024-07-19": 9.790068486661196, + "2023-12-29": 5.943122717985641, + "2023-12-04": 5.682389602779556, + "2024-04-10": 9.322336374599962, + "2024-05-08": 7.627774897514434, + "2023-10-11": 4.616205880766147, + "2024-05-05": 7.963149821686251, + "2024-03-21": 8.930222600223265, + "2024-05-23": 9.532849489863178, + "2024-04-08": 9.22390776678595, + "2024-05-18": 7.961228560487618, + "2024-06-10": 9.298517413168758, + "2023-10-05": 4.881972731199514, + "2023-10-16": 4.669729612136854, + "2024-05-22": 9.475228503674156, + "2024-02-10": 6.324396897952368, + "2024-04-07": 9.275044576126191, + "2024-02-20": 7.420020925216888, + "2023-11-17": 5.021408649139756, + "2023-12-11": 5.654302616292511, + "2023-11-26": 5.265727646506028, + "2023-10-27": 4.774260783398136, + "2024-02-02": 5.849511741873352, + "2023-09-14": 4.124159050809883, + "2024-01-27": 5.760323284332809, + "2024-03-30": 8.899155692316967, + "2023-11-22": 5.163493970708778, + "2023-09-28": 5.056777100205641, + "2024-06-04": 9.571765225435033, + "2023-11-16": 5.203740417492972, + "2024-06-26": 8.526837541996171, + "2024-01-18": 6.355154869788314, + "2023-08-26": 4.215732975954644, + "2024-02-15": 7.1244721604034575, + "2024-07-17": 8.717476279492692, + "2023-10-28": 4.933263320228302, + "2024-03-24": 8.531905520748948, + "2024-07-04": 7.938990967670574, + "2024-04-27": 7.999338424340929, + "2023-12-06": 5.754410151794899, + "2024-01-30": 5.8766147390910755, + "2023-11-14": 5.22675633875138, + "2023-08-09": 4.38872907403454, + "2024-07-22": 8.7659, + "2024-06-06": 9.717113179229944, + "2024-05-15": 7.477196120732608, + "2023-11-10": 5.372647430043958, + "2024-01-23": 5.637360103144275, + "2024-01-31": 5.8986396, + "2024-05-11": 7.390934222377205, + "2024-01-11": 6.589373619264773, + "2024-02-18": 7.135483701542652, + "2024-07-12": 7.8376590430359405, + "2023-10-30": 4.812396977290181, + "2023-12-17": 5.6255154052338385, + "2024-02-26": 7.9096303378904365, + "2024-06-17": 9.102171731029536, + "2024-01-05": 5.675322311653548, + "2024-06-14": 8.8798, + "2023-08-23": 4.180528359163527, + "2024-06-13": 8.831214213522209, + "2023-08-28": 4.119188028419741, + "2024-03-11": 10.176933287728932, + "2023-08-01": 4.4510832678331, + "2024-03-14": 9.86264843098395, + "2024-02-21": 7.383, + "2023-12-13": 5.554471835606206, + "2024-02-27": 8.221851780105203, + "2023-08-13": 4.402232420086488, + "2024-03-31": 9.170179943685307, + "2023-12-09": 5.992871863659302, + "2024-04-02": 8.480453854489816, + "2024-02-06": 5.887433086020383, + "2024-05-31": 9.527389156813602, + "2024-04-09": 9.224190118634722, + "2024-05-25": 9.45299001885798, + "2023-11-04": 4.6713345, + "2024-04-20": 8.29935402275008, + "2024-01-15": 6.394768249334234, + "2023-12-28": 6.052573294839638, + "2024-06-09": 9.298552934801792, + "2024-02-07": 6.013655178395981, + "2023-09-25": 4.92514009050932, + "2024-03-19": 8.392565067803812, + "2024-03-10": 9.913812799999999, + "2024-05-02": 7.533811642339428, + "2023-09-02": 4.263134741238248, + "2024-07-24": 8.944270952898636, + "2024-01-12": 6.6196922356685235, + "2024-04-19": 8.067528485809284, + "2023-11-29": 5.1670491506954, + "2023-10-15": 4.617547053613803, + "2024-05-28": 9.754519857866795, + "2023-11-30": 5.1591531648832465, + "2024-01-24": 5.664589730578357, + "2023-08-11": 4.440978209485504, + "2024-02-11": 6.376422212040974, + "2024-06-08": 9.317731364428798, + "2023-11-15": 5.191948878057335, + "2023-12-16": 5.693594578520081, + "2024-03-29": 8.95158518077122, + "2024-04-04": 10.350480403997459, + "2024-06-25": 8.567333714284711, + "2024-07-26": 8.23042729609443, + "2023-07-28": 4.256747617500055, + "2024-01-20": 6.254681290000001, + "2023-10-21": 4.817635896498952, + "2023-08-16": 4.176647656162026, + "2024-05-24": 9.330169098667431, + "2023-11-03": 4.541122146318323, + "2023-08-31": 4.247577889671688, + "2024-05-27": 9.893865618974049, + "2024-01-04": 5.683079155176446, + "2023-07-26": 4.026999315970466, + "2023-11-13": 5.2901413986000945, + "2023-10-24": 5.078066255742953, + "2024-07-16": 8.675845097385103, + "2023-10-29": 4.919084786098996, + "2024-01-29": 5.763312106570188, + "2024-07-03": 8.369841258443564, + "2024-05-04": 7.928551741628526, + "2023-11-02": 4.762433913583885, + "2023-12-18": 5.48360646773367, + "2023-11-24": 5.304281122449645, + "2023-08-21": 4.226968602186234, + "2024-07-05": 7.531674177046272, + "2024-03-25": 8.859820896081425, + "2023-08-07": 4.288276653230375, + "2024-07-25": 8.0293, + "2023-07-25": 4.107772267472927, + "2024-05-16": 7.544056177274585, + "2024-06-07": 9.406405124895965, + "2023-08-14": 4.445888745117937, + "2024-06-18": 8.763221949196206, + "2024-05-01": 7.33167200661792, + "2024-02-16": 7.147493195705491, + "2024-06-22": 8.907327236776624, + "2024-07-06": 7.62766269, + "2024-03-05": 9.366491022975952, + "2024-04-06": 9.502843969714933, + "2023-12-23": 5.827282858659245, + "2023-12-14": 5.793910996731679, + "2024-02-03": 5.877598267608518, + "2024-06-27": 8.604378638965159, + "2023-12-26": 5.644466738781957, + "2023-11-09": 5.084844289391736, + "2023-10-14": 4.602353167493725, + "2023-08-19": 4.435850876120538, + "2024-05-09": 7.598537001896152, + "2024-01-17": 6.459088865480847, + "2024-04-23": 8.281225400640984, + "2023-08-08": 4.289309615072781, + "2023-08-17": 4.232570476766445, + "2024-04-14": 7.723853060327311, + "2024-07-22T13": 8.993692020336972, + "2024-07-25T10": 7.916603556870577, + "2024-07-26T06": 8.176141238343156, + "2024-07-24T14": 8.6427, + "2024-07-21T20": 8.987127768226669, + "2024-07-21T07": 9.39906182056846, + "2024-07-21T14": 9.15374697344598, + "2024-07-22T23": 8.7658, + "2024-07-24T07": 9.189329704331627, + "2024-07-20T11": 9.573609281830262, + "2024-07-26T08": 8.333400591394863, + "2024-07-25T20": 8.0039, + "2024-07-21T02": 9.2239, + "2024-07-20T04": 9.6, + "2024-07-20T03": 9.6, + "2024-07-25T13": 7.9001, + "2024-07-21T06": 9.3993, + "2024-07-20T12": 9.5718, + "2024-07-24T02": 9.419994199000001, + "2024-07-24T17": 8.677813221, + "2024-07-25T06": 8.4001, + "2024-07-25T22": 7.9854, + "2024-07-22T07": 9.186604873841919, + "2024-07-22T22": 8.6908, + "2024-07-26T03": 8.093624949290959, + "2024-07-23T01": 8.79770006385953, + "2024-07-24T03": 9.5322865241558, + "2024-07-23T21": 9.231687004609316, + "2024-07-19T20": 9.693477275274569, + "2024-07-23T22": 9.17539127036263, + "2024-07-21T23": 8.98770719219131, + "2024-07-19T16": 9.590326391433061, + "2024-07-22T20": 8.690863243260505, + "2024-07-23T10": 8.8399116, + "2024-07-19T17": 9.793176989767778, + "2024-07-22T09": 9.1589, + "2024-07-24T04": 9.448655252006452, + "2024-07-22T06": 9.19785949003331, + "2024-07-24T21": 8.63573634, + "2024-07-20T21": 9.4, + "2024-07-21T15": 9.138226756495971, + "2024-07-20T09": 9.5789, + "2024-07-25T14": 7.9, + "2024-07-19T11": 9.797884341655399, + "2024-07-23T20": 9.34546872, + "2024-07-25T03": 8.4001, + "2024-07-20T01": 9.6, + "2024-07-25T23": 7.9166, + "2024-07-20T16": 9.437855601847984, + "2024-07-22T15": 8.9317, + "2024-07-23T16": 9.210365496, + "2024-07-22T02": 9.058902613422017, + "2024-07-21T04": 9.223941175289035, + "2024-07-23T09": 8.4461, + "2024-07-20T10": 9.574816580321134, + "2024-07-22T19": 8.69084211569409, + "2024-07-20T00": 9.6, + "2024-07-20T19": 9.4, + "2024-07-26T05": 8.197593861767597, + "2024-07-19T14": 9.624787474471665, + "2024-07-21T00": 9.223942254801443, + "2024-07-22T12": 9.0093, + "2024-07-24T06": 9.255615219566115, + "2024-07-25T01": 8.467286236738891, + "2024-07-20T22": 9.4, + "2024-07-19T15": 9.58156206630365, + "2024-07-21T13": 9.16608229970575, + "2024-07-25T07": 8.400038037961881, + "2024-07-21T08": 9.3993, + "2024-07-23T06": 8.658559289887156, + "2024-07-22T16": 8.9001, + "2024-07-24T11": 8.8403, + "2024-07-24T01": 9.388110257324593, + "2024-07-23T00": 8.64799362, + "2024-07-19T12": 9.579452834183765, + "2024-07-25T17": 7.854963046888724, + "2024-07-25T19": 7.984673009761734, + "2024-07-19T21": 9.640511229978927, + "2024-07-23T08": 8.742260477519068, + "2024-07-21T21": 8.987339039540295, + "2024-07-21T11": 9.241961138236086, + "2024-07-22T14": 8.981, + "2024-07-20T23": 9.223929330510536, + "2024-07-20T08": 9.578738114047203, + "2024-07-20T02": 9.6, + "2024-07-24T05": 9.21062813690106, + "2024-07-24T16": 8.830884445266944, + "2024-07-21T01": 9.227477191004656, + "2024-07-24T13": 8.741526416105618, + "2024-07-25T04": 8.4001, + "2024-07-19T13": 9.43278472077416, + "2024-07-25T12": 7.9001, + "2024-07-19T22": 9.53298484435086, + "2024-07-26T07": 8.424634882907093, + "2024-07-25T02": 8.400202174208768, + "2024-07-21T12": 9.131564594906951, + "2024-07-23T18": 9.165069362562459, + "2024-07-23T11": 8.840176799999998, + "2024-07-19T10": 9.793379164125817, + "2024-07-19T19": 9.680853056763032, + "2024-07-25T11": 7.907916016400401, + "2024-07-22T08": 9.179940660055436, + "2024-07-23T19": 9.164423262, + "2024-07-22T21": 8.6908, + "2024-07-21T09": 9.3993, + "2024-07-21T22": 8.987153776517033, + "2024-07-22T04": 9.112003546211632, + "2024-07-25T16": 7.8503235492290795, + "2024-07-19T23": 9.569882549999999, + "2024-07-26T09": 8.333366448, + "2024-07-20T06": 9.4872, + "2024-07-23T02": 8.806405776768228, + "2024-07-23T14": 8.989760503475695, + "2024-07-23T03": 8.821402701496973, + "2024-07-25T08": 8.27174095586232, + "2024-07-24T15": 8.854682069999999, + "2024-07-19T09": 9.69692446844395, + "2024-07-20T15": 9.569629909919406, + "2024-07-23T23": 9.237031258, + "2024-07-23T12": 8.900662574913383, + "2024-07-22T10": 9.13456420577236, + "2024-07-21T10": 9.325816443912595, + "2024-07-22T00": 8.997323128498394, + "2024-07-24T22": 8.584854448, + "2024-07-24T19": 8.75475195976147, + "2024-07-24T09": 9.0108, + "2024-07-23T04": 8.74504279599836, + "2024-07-23T05": 8.675820518, + "2024-07-25T18": 7.86, + "2024-07-25T15": 7.86, + "2024-07-26T01": 8.039449309335934, + "2024-07-22T01": 9.013047988526338, + "2024-07-26T02": 8.064575385063327, + "2024-07-24T18": 8.684647231083643, + "2024-07-21T19": 9.080397541379039, + "2024-07-25T05": 8.4001, + "2024-07-22T18": 8.690803635861482, + "2024-07-24T00": 9.383783368095592, + "2024-07-24T08": 9.184234102185751, + "2024-07-24T20": 8.670142486410633, + "2024-07-24T23": 8.551199773744953, + "2024-07-22T17": 8.690499283063312, + "2024-07-21T17": 9.133652219328441, + "2024-07-24T12": 8.825364752999999, + "2024-07-23T13": 8.834975691163567, + "2024-07-21T05": 9.399975193756163, + "2024-07-20T05": 9.6, + "2024-07-21T03": 9.2239, + "2024-07-26T00": 8.071183740573428, + "2024-07-20T20": 9.4, + "2024-07-22T03": 9.0589, + "2024-07-25T21": 8.0039, + "2024-07-21T16": 9.133123524343997, + "2024-07-20T17": 9.4, + "2024-07-22T11": 9.08, + "2024-07-25T00": 8.467929294698457, + "2024-07-20T13": 9.5918, + "2024-07-23T07": 8.663566269999999, + "2024-07-22T05": 9.11049941028068, + "2024-07-20T07": 9.5721, + "2024-07-21T18": 9.1073, + "2024-07-23T17": 9.267663944820013, + "2024-07-20T14": 9.5712, + "2024-07-26T04": 8.107424246790217, + "2024-07-24T10": 8.837507727841032, + "2024-07-20T18": 9.4, + "2024-07-23T15": 8.9615232, + "2024-07-19T18": 9.645769376190536, + "2024-07-25T09": 8.2265, + "latest": 7.04, + "2024-07-26T10": 8.295639929403702, + "2024-07-26T11": 8.248564745744162, + "2024-07-26T12": 8.261794519735828, + "2024-07-26T13": 8.268404346099203, + "2024-07-26T14": 8.200661874, + "2024-07-26T17": 8.308210483036797, + "2024-07-26T16": 8.276380225855146, + "2024-07-26T15": 8.229996932762937, + "2024-07-26T18": 8.259176498008635, + "2024-07-27": 8.20338204413387, + "2024-07-28": 8.0727, + "2024-07-28T05": 8.118, + "2024-07-26T21": 8.136663852968082, + "2024-07-27T02": 8.193576337439843, + "2024-07-28T01": 8.0951, + "2024-07-27T10": 8.179365630675008, + "2024-07-28T02": 8.095, + "2024-07-27T19": 8.183905777774681, + "2024-07-27T09": 8.210080273449435, + "2024-07-27T06": 8.189681894602831, + "2024-07-27T18": 8.200329865, + "2024-07-26T22": 8.139225556, + "2024-07-27T13": 8.238691347036443, + "2024-07-27T12": 8.172589104, + "2024-07-27T16": 8.250810896457613, + "2024-07-27T05": 8.1841557626165, + "2024-07-26T23": 8.202328080000001, + "2024-07-26T20": 8.18432491600769, + "2024-07-27T08": 8.2184109, + "2024-07-28T03": 8.095044614274428, + "2024-07-27T01": 8.220268613312307, + "2024-07-28T09": 8.169375694728277, + "2024-07-28T10": 8.0934, + "2024-07-27T00": 8.202201537426426, + "2024-07-28T00": 8.095025353204825, + "2024-07-27T04": 8.182663649999999, + "2024-07-27T14": 8.284028320000001, + "2024-07-27T07": 8.216044506678234, + "2024-07-27T11": 8.187691671, + "2024-07-27T22": 8.23825849, + "2024-07-27T03": 8.193810490836736, + "2024-07-27T20": 8.180709015000001, + "2024-07-27T23": 8.237049504964641, + "2024-07-28T08": 8.169544124595207, + "2024-07-27T21": 8.195554126000001, + "2024-07-28T07": 8.118, + "2024-07-27T15": 8.251927225386035, + "2024-07-26T19": 8.219584260721543, + "2024-07-28T04": 8.092145590035964, + "2024-07-28T06": 8.118, + "2024-07-27T17": 8.198983759999999, + "2024-07-29": 9.061846716765222, + "2024-07-28T20": 8.004312265120102, + "2024-07-28T16": 8.048, + "2024-07-29T07": 8.395988754125186, + "2024-07-28T23": 8.0735, + "2024-07-28T15": 8.1003, + "2024-07-28T18": 8.004027578729719, + "2024-07-29T04": 8.267765036905862, + "2024-07-29T06": 8.312774903667398, + "2024-07-28T21": 8.004312265120102, + "2024-07-29T03": 8.231594424999999, + "2024-07-28T12": 8.100315721586245, + "2024-07-29T05": 8.282605968, + "2024-07-28T17": 8.004021893364662, + "2024-07-29T00": 8.1379, + "2024-07-29T01": 8.138, + "2024-07-28T22": 8.103503235071582, + "2024-07-28T19": 8.004, + "2024-07-28T14": 8.100350662961894, + "2024-07-29T02": 8.137230354, + "2024-07-29T08": 8.419832865001569, + "2024-07-28T11": 8.0039, + "2024-07-28T13": 8.100397965118784, + "2024-07-29T09": 8.434890052882343, + "2024-07-29T10": 9.098089, + "2024-07-29T11": 9.384828771999999, + "2024-07-29T12": 9.638480444697771, + "2024-07-29T13": 9.354207527558149, + "2024-07-30": 8.80930721406812, + "2024-07-29T23": 8.814322846255777, + "2024-07-29T18": 8.561995101948588, + "2024-07-29T21": 9.264069801485622, + "2024-07-29T22": 8.865456395668561, + "2024-07-29T17": 8.691487452, + "2024-07-29T15": 8.798682627294733, + "2024-07-30T01": 8.8, + "2024-07-29T19": 8.448645705614325, + "2024-07-30T04": 8.67850119751887, + "2024-07-29T14": 9.077238209999999, + "2024-07-29T20": 8.989011099999999, + "2024-07-30T03": 8.792347730687114, + "2024-07-30T00": 8.97690901048922, + "2024-07-29T16": 8.751617022823279, + "2024-07-30T02": 8.792324090379246, + "2024-07-30T09": 9.1318, + "2024-07-30T08": 9.1318, + "2024-07-30T06": 8.6785, + "2024-07-30T05": 8.6785, + "2024-07-30T07": 9.119970878555225, + "2024-07-30T10": 9.121409442427598, + "2024-07-30T11": 8.8744, + "2024-07-30T12": 8.789763443071285, + "2024-07-30T13": 8.787731350456365, + "2024-07-31": 8.3172, + "2024-07-31T00": 8.435589602603615, + "2024-07-31T05": 8.3429, + "2024-07-30T23": 8.435589602603615, + "2024-07-30T19": 8.874339616436071, + "2024-07-30T16": 8.5764, + "2024-07-30T17": 8.5485, + "2024-07-30T18": 8.4298, + "2024-07-30T20": 8.860713807186645, + "2024-07-30T15": 8.576713710565201, + "2024-07-31T03": 8.433529999123097, + "2024-07-30T21": 8.79, + "2024-07-31T01": 8.435584846086137, + "2024-07-31T07": 8.417591052410739, + "2024-07-31T06": 8.3429, + "2024-07-31T02": 8.435551073729005, + "2024-07-30T22": 8.79, + "2024-07-30T14": 8.78288241029342, + "2024-07-31T04": 8.421462020609432, + "2024-07-31T08": 8.479495456285305, + "2024-07-31T11": 8.540053426892591, + "2024-07-31T09": 8.5491521890347, + "2024-07-31T10": 8.54383188909522, + "2024-07-31T12": 8.5383, + "2024-08-01": 7.884491015740321, + "2024-07-31T14": 8.411077551523736, + "2024-07-31T23": 8.11764025929907, + "2024-07-31T13": 8.41544046277927, + "2024-07-31T21": 8.255392191134064, + "2024-08-01T01": 8.1177, + "2024-07-31T18": 8.394690129588966, + "2024-07-31T19": 8.3895, + "2024-07-31T16": 8.362957408971443, + "2024-08-01T02": 8.11773705181379, + "2024-07-31T22": 8.1176, + "2024-07-31T20": 8.287432378835632, + "2024-07-31T17": 8.348397047387346, + "2024-08-01T00": 8.1177, + "2024-07-31T15": 8.362732242368828, + "2024-08-01T07": 8.179108852099336, + "2024-08-01T06": 8.201043297251246, + "2024-08-01T05": 8.222, + "2024-08-01T04": 8.221319248732364, + "2024-08-01T03": 8.117742062526535, + "2024-08-01T08": 8.176265137619641, + "2024-08-01T09": 8.176505659023263, + "2024-08-01T10": 8.122929429824604, + "2024-08-01T11": 8.1228, + "2024-08-01T12": 8.09, + "2024-08-01T13": 8.09, + "2024-08-01T14": 8.09, + "2024-08-01T15": 8.037451960642002, + "2024-08-02": 8.374824012289224, + "2024-08-02T00": 8.028168139999998, + "2024-08-01T20": 7.6087, + "2024-08-01T21": 7.608733037617165, + "2024-08-02T04": 8.025258714343927, + "2024-08-01T19": 7.6087, + "2024-08-01T16": 7.937588849361946, + "2024-08-02T02": 8.023646002417044, + "2024-08-01T17": 7.937570182103382, + "2024-08-01T23": 7.6703, + "2024-08-02T01": 8.022325323057139, + "2024-08-01T22": 7.669320657477973, + "2024-08-01T18": 7.933515644920313, + "2024-08-02T03": 8.02316916335146, + "2024-08-02T05": 8.026926543976872, + "2024-08-02T06": 7.997317416, + "2024-08-02T07": 8.320312377009676, + "2024-08-02T08": 8.880671225449476, + "2024-08-02T09": 8.746896098634872, + "2024-08-02T10": 8.660859772333401, + "2024-08-02T11": 8.599471728338806, + "2024-08-02T12": 8.526749968564596, + "2024-08-02T13": 8.439925201267647, + "2024-08-02T14": 8.438821541386325, + "2024-08-02T15": 8.18590890380698, + "2024-08-03": 7.8853, + "2024-08-02T16": 8.227175579647803, + "2024-08-02T22": 8.295232642, + "2024-08-02T23": 8.189903952876627, + "2024-08-03T00": 8.004, + "2024-08-03T01": 8.004, + "2024-08-03T03": 8.004, + "2024-08-02T19": 8.171783036999999, + "2024-08-02T18": 8.222552259267216, + "2024-08-02T21": 8.322642144594543, + "2024-08-02T17": 8.21637591963475, + "2024-08-02T20": 8.085676995, + "2024-08-03T02": 8.004, + "2024-08-03T06": 8.3513, + "2024-08-03T19": 7.4829, + "2024-08-03T10": 8.127196497500265, + "2024-08-03T09": 8.1279, + "2024-08-03T15": 8.0646, + "2024-08-03T22": 7.566508441830495, + "2024-08-03T05": 8.351450199516352, + "2024-08-03T08": 8.350708731541214, + "2024-08-03T14": 8.1242, + "2024-08-03T18": 7.458634643335503, + "2024-08-03T17": 7.7959, + "2024-08-03T21": 7.5540830729085915, + "2024-08-03T12": 8.1242, + "2024-08-03T20": 7.552916639138179, + "2024-08-03T04": 8.263373672130657, + "2024-08-03T16": 7.8852, + "2024-08-03T11": 8.1242, + "2024-08-03T07": 8.351160776681063, + "2024-08-03T13": 8.1242, + "2024-08-04": 7.703316954412756, + "2024-08-03T23": 7.566522626245862, + "2024-08-04T17": 7.677134011289875, + "2024-08-04T13": 8.2438, + "2024-08-04T06": 7.5555, + "2024-08-04T12": 7.700674889423082, + "2024-08-04T10": 7.700414935197129, + "2024-08-04T16": 7.789431693588013, + "2024-08-04T15": 8.0156, + "2024-08-04T00": 7.5588999999999995, + "2024-08-04T11": 7.7007, + "2024-08-04T01": 7.6018886863922255, + "2024-08-04T03": 7.563715982323251, + "2024-08-04T04": 7.517700340840728, + "2024-08-04T07": 7.588013043028753, + "2024-08-04T08": 7.579288504753407, + "2024-08-04T18": 7.674191047662157, + "2024-08-04T09": 7.579257315044022, + "2024-08-04T02": 7.574806147779268, + "2024-08-04T05": 7.517614982407956, + "2024-08-04T14": 8.0156, + "2024-08-05": 6.614330603716012, + "2024-08-05T01": 7.511939793418412, + "2024-08-04T19": 7.5927153244235415, + "2024-08-04T22": 7.589487472174549, + "2024-08-05T03": 7.262053389355976, + "2024-08-05T02": 7.321457901959945, + "2024-08-04T23": 7.608318664558676, + "2024-08-05T00": 7.512729476606623, + "2024-08-05T04": 7.222524780909688, + "2024-08-05T06": 6.596110795316215, + "2024-08-04T20": 7.602703693173278, + "2024-08-05T05": 6.5026219095126425, + "2024-08-04T21": 7.6077793582671065, + "2024-08-05T07": 6.190701555214627, + "2024-08-05T08": 6.270206675909605, + "2024-08-05T09": 6.2702, + "2024-08-05T10": 6.2389734583577034, + "2024-08-05T11": 6.168639284749479, + "2024-08-05T12": 6.023234565038368, + "2024-08-05T13": 6.18116759897365, + "2024-08-05T14": 6.268818905338473, + "2024-08-05T15": 6.6443, + "2024-08-06": 6.797806182069814, + "2024-08-05T19": 6.509275074882458, + "2024-08-05T20": 6.509275074882458, + "2024-08-05T21": 6.478773916662158, + "2024-08-06T02": 6.765098365932751, + "2024-08-05T18": 6.69288289940468, + "2024-08-05T23": 6.453475114847759, + "2024-08-05T16": 6.645201165986683, + "2024-08-06T05": 6.85, + "2024-08-05T17": 6.7037428563394466, + "2024-08-06T00": 6.453167181628606, + "2024-08-06T04": 6.849487828738651, + "2024-08-06T03": 6.797806182069814, + "2024-08-05T22": 6.4534601351116825, + "2024-08-06T01": 6.548520646605622, + "2024-08-06T06": 6.980529482092194, + "2024-08-06T07": 6.979718150367445, + "2024-08-06T08": 6.979336204821987, + "2024-08-06T09": 6.9793, + "2024-08-06T10": 6.948223375410615, + "2024-08-06T11": 6.851647543408379, + "2024-08-06T12": 6.871743763369135, + "2024-08-06T13": 6.872730921597015, + "2024-08-06T14": 6.872730921597015 + }, + "USD ethereum/erc20/dai_stablecoin_v2_0": { + "2023-07-30": 1.000031135786048, + "2023-10-23": 1.0004200213058725, + "2023-07-27": 0.9993144358371313, + "2023-08-20": 0.9977002200000001, + "2024-02-23": 0.9997822639006595, + "2024-04-05": 1.0000995899843648, + "2023-12-19": 0.9995625269498429, + "2024-05-17": 1.0002728909421799, + "2023-08-06": 1.0015018723690052, + "2023-12-02": 0.9988265508461597, + "2024-06-11": 0.9993491761111071, + "2024-01-08": 1.00070141961635, + "2023-10-31": 1.0002087779737698, + "2023-08-29": 1.0000264673661352, + "2023-09-09": 0.9995062591166369, + "2023-10-01": 1.0000800787414637, + "2024-03-07": 1.0005763212286864, + "2023-10-12": 0.9996908111562326, + "2024-04-22": 1.0003999323352684, + "2023-07-29": 1.000080289664068, + "2024-04-26": 0.9998623012181294, + "2024-06-24": 0.9995645530340255, + "2023-09-26": 0.9999834934765315, + "2023-08-24": 0.9995644570806705, + "2023-12-05": 0.9965635663694503, + "2024-02-19": 1.000180169529174, + "2024-01-07": 1.0005189329510755, + "2024-04-28": 0.9998410604622137, + "2023-07-31": 0.9991693557020878, + "2023-10-18": 0.9999423472883631, + "2023-10-07": 1.0001507487476964, + "2024-06-28": 0.9991387704711953, + "2024-05-19": 0.9997954283024695, + "2024-05-12": 0.999623804295247, + "2024-04-29": 0.9997777986377927, + "2023-09-16": 1.0000311744644983, + "2023-08-25": 0.9997555091179995, + "2024-03-09": 1.0021329697948491, + "2023-09-05": 0.9995294527697915, + "2024-04-25": 0.9998112875820022, + "2023-08-12": 1.0002333405547186, + "2024-06-12": 0.9998830156194622, + "2023-09-01": 0.9994996465130853, + "2024-05-30": 0.9997903476483105, + "2024-06-05": 1, + "2023-09-08": 1.0000001196763642, + "2024-03-22": 1.00000281466932, + "2023-08-10": 0.9984805184283868, + "2023-11-18": 1.0001907461990338, + "2023-09-13": 0.9998857150275351, + "2023-12-07": 0.9999280601431313, + "2024-06-30": 0.9997689962870322, + "2024-06-20": 0.9997558603095325, + "2024-07-08": 1.0000174266922983, + "2024-07-07": 0.9998104588688309, + "2023-09-07": 1.0001400014042257, + "2024-03-26": 1.0000780407094425, + "2024-05-14": 0.9994897418492008, + "2024-06-16": 0.999605725769139, + "2024-02-22": 0.9996986037281507, + "2024-04-15": 1.0005046283093282, + "2023-12-30": 0.999994203573886, + "2023-09-17": 1.0000203102957717, + "2024-04-17": 1.000189564096542, + "2024-02-12": 1.0003500350035004, + "2023-10-26": 1.0000756674232156, + "2024-01-03": 1.0003198468821783, + "2024-05-07": 1.0005758766740556, + "2024-01-22": 0.9995922271745374, + "2024-07-13": 1.000009325534842, + "2023-10-03": 1.0000009951530573, + "2024-05-26": 0.9995400459954004, + "2024-04-30": 0.9997534363487168, + "2024-07-09": 0.9999013453086831, + "2023-12-24": 1.0005049482639274, + "2023-09-24": 0.9999599939999999, + "2024-01-16": 0.9992255098719445, + "2023-10-17": 1.000228557185926, + "2024-04-24": 0.9999212837549867, + "2024-03-18": 0.9997087176762611, + "2024-02-17": 1.000247249282116, + "2023-12-27": 1.0002345891805149, + "2023-09-03": 0.9997652913153557, + "2024-02-24": 0.9996570021197284, + "2024-01-06": 1.0002863771146293, + "2024-03-20": 1.0001152452028796, + "2023-11-21": 0.9992461841697612, + "2023-12-25": 1.0000836496692525, + "2023-09-22": 0.9999223949030303, + "2024-03-01": 1.000120130741181, + "2023-10-02": 1.0002480039661916, + "2024-03-27": 0.9998195492325934, + "2024-05-06": 1.00014674914821, + "2024-06-19": 0.9996176377028108, + "2023-08-30": 0.9999756368807199, + "2023-10-06": 1.0001966975629932, + "2023-10-13": 0.9996494509050913, + "2024-02-05": 0.9997893949769708, + "2023-12-10": 0.9999078173566442, + "2023-11-23": 0.9977903695126654, + "2023-08-04": 1.0004686653296937, + "2024-05-13": 0.9997498222825758, + "2024-01-13": 0.9998848400342436, + "2024-03-28": 0.9998512382821703, + "2023-08-05": 1.0002616967398494, + "2024-02-09": 1.0000197796711614, + "2023-10-09": 0.9998804988658441, + "2024-01-09": 1.0005152796251895, + "2024-05-10": 0.9997739068178294, + "2023-08-18": 0.9996004758031231, + "2023-11-05": 1.0006054586343867, + "2024-04-18": 1.0004849872228492, + "2023-10-22": 1.0001466069965328, + "2023-11-01": 1.0000022789385563, + "2024-05-20": 1.00005, + "2023-12-08": 0.9993403911042185, + "2024-04-12": 0.9999989511377606, + "2024-03-12": 0.9998802065540862, + "2024-07-02": 0.9994970066198827, + "2023-09-11": 0.99990642233048, + "2024-07-20": 0.9999297093356068, + "2024-03-03": 1.0001968896466888, + "2024-02-04": 0.9997198653523577, + "2024-01-28": 0.9999, + "2023-11-07": 1.000218762400173, + "2023-11-25": 0.9996953795504855, + "2024-06-29": 0.9983197237373083, + "2024-07-21": 0.9998287085818286, + "2024-02-25": 0.9997594900511642, + "2023-12-01": 0.9999622420930651, + "2024-01-26": 0.999735643888036, + "2023-08-03": 1.002154836847167, + "2024-02-28": 1.0000322706338725, + "2023-09-15": 1.0000227268640653, + "2023-12-21": 1.0000263434665637, + "2024-06-01": 0.9993471930298078, + "2024-03-06": 1.000369526828603, + "2024-07-15": 1.0003903797874227, + "2023-09-30": 1.0001397329609922, + "2023-12-12": 0.9997757388289158, + "2023-10-04": 1.0000639230245776, + "2024-02-13": 1.0001584254609983, + "2023-09-20": 1.0000700247368512, + "2024-04-16": 1.0003799751044982, + "2023-09-19": 1.0001806510874856, + "2023-09-29": 0.9998900053738049, + "2023-09-12": 1.0000483832178393, + "2024-03-02": 1.0012775070507212, + "2024-06-02": 0.9993901897708347, + "2023-10-08": 1.0000860574764714, + "2023-11-20": 0.9998690659716944, + "2023-12-20": 0.9999987304888897, + "2023-12-31": 0.999706490105218, + "2023-11-06": 1.0000199385626267, + "2023-08-22": 0.9999312211593839, + "2024-05-29": 0.9990409923611347, + "2024-03-17": 0.999900065649889, + "2024-07-23": 1.0002895440073734, + "2024-07-10": 1.0000000038958423, + "2023-09-18": 1.000170535881867, + "2024-07-01": 0.9996158685213568, + "2024-04-01": 1.0003067204988154, + "2024-05-21": 0.9996973799700745, + "2024-01-19": 0.9990551907525531, + "2023-11-11": 1.0001238590857764, + "2023-09-23": 1.000015380326262, + "2023-08-15": 0.9999199038846617, + "2024-07-18": 0.9998820378161782, + "2023-11-19": 1.00051, + "2024-01-25": 0.9999259187812033, + "2024-03-13": 1.0005706170850905, + "2024-01-21": 0.9998984081815067, + "2024-02-01": 0.9997086832940169, + "2024-03-15": 0.9996551244231094, + "2024-03-16": 0.9999553767204029, + "2024-06-23": 0.9996971905695466, + "2023-11-27": 0.9969684427576281, + "2024-01-10": 1.0003454512560883, + "2024-06-03": 0.9997704850708495, + "2024-01-02": 1.000488490597403, + "2024-07-14": 1.0004400460726166, + "2023-10-25": 1.0001135692661165, + "2024-01-01": 0.9999219721795727, + "2024-02-14": 1.0003725997700692, + "2023-09-04": 0.9998766042540335, + "2023-09-06": 0.9996180839644558, + "2024-04-03": 1.0003249369312028, + "2024-06-15": 0.9995283835146545, + "2023-11-28": 0.9969854803733972, + "2023-12-03": 0.9986657709770527, + "2023-08-02": 0.9997292003561746, + "2024-07-11": 1.000107386522231, + "2023-08-27": 0.9999227747927198, + "2024-04-11": 0.9999872265850132, + "2023-10-20": 1.00044, + "2023-10-10": 0.9999817973978562, + "2024-05-03": 1.0002075746353025, + "2024-03-08": 1.0015455350576088, + "2024-01-14": 0.9999348892580638, + "2023-12-15": 1.0000395587388555, + "2023-10-19": 1.0002167104011677, + "2024-02-08": 0.9997691188750373, + "2023-11-12": 1.0000877578689293, + "2023-12-22": 1.0001782144907694, + "2024-06-21": 0.9994608072286728, + "2024-03-23": 1.0000782916425548, + "2023-09-27": 1.0000218016249214, + "2024-03-04": 1.0001639411553427, + "2023-09-10": 0.999650134693386, + "2024-04-13": 1.0001106988165298, + "2024-02-29": 0.9999933555378054, + "2023-09-21": 0.9999509527287986, + "2024-04-21": 1.0000828936362844, + "2023-11-08": 1.0002799441235242, + "2024-07-19": 0.9997993807342899, + "2023-12-29": 1.000225642405871, + "2023-12-04": 0.9985441894833358, + "2024-04-10": 0.9999288182632098, + "2024-05-08": 0.9998656272958308, + "2023-10-11": 0.9999645474416616, + "2024-05-05": 0.9999438217863595, + "2024-03-21": 0.9999096115910283, + "2024-05-23": 0.9994600058058343, + "2024-04-08": 0.9999900007356841, + "2024-05-18": 1.0001799870883143, + "2024-06-10": 0.9997118876826503, + "2023-10-05": 1.0001243390933379, + "2023-10-16": 1.0001990826520295, + "2024-05-22": 0.9998131613154323, + "2024-02-10": 1.000537403824948, + "2024-04-07": 1.0001738888033014, + "2024-02-20": 0.9999028198280818, + "2023-11-17": 0.9998625788003728, + "2023-12-11": 0.9998296151177002, + "2023-11-26": 0.9973408615727211, + "2023-10-27": 1.0000977238602806, + "2024-02-02": 0.9998893605923107, + "2023-09-14": 1.0001570115422174, + "2024-01-27": 1.0001824980672174, + "2024-03-30": 1.000328597559862, + "2023-11-22": 0.9993770215623783, + "2023-09-28": 0.9996005373950799, + "2024-06-04": 1.0000038722246145, + "2023-11-16": 1.0001897054967113, + "2024-06-26": 0.9997995434321724, + "2024-01-18": 0.9996237966684058, + "2023-08-26": 0.9990627507738886, + "2024-02-15": 1.0006685233976687, + "2024-07-17": 0.9997383619378198, + "2023-10-28": 0.9999500099980005, + "2024-03-24": 1.0001061447367188, + "2024-07-04": 0.9997929661013513, + "2024-04-27": 0.9993920051563889, + "2023-12-06": 0.999971284031642, + "2024-01-30": 0.999934445991335, + "2023-11-14": 1.0001997453786886, + "2023-08-09": 0.9996599930390168, + "2024-07-22": 0.9998304481944322, + "2024-06-06": 0.9998029822766168, + "2024-05-15": 0.9998798226742073, + "2023-11-10": 1.0002138579250022, + "2024-01-23": 1.000000550460841, + "2024-01-31": 0.9996999699969996, + "2024-05-11": 0.9996206144808494, + "2024-01-11": 1.0002260491149697, + "2024-02-18": 1.0004080177015644, + "2024-07-12": 1.0001351406267949, + "2023-10-30": 1.0001892215123431, + "2023-12-17": 0.9992258450329451, + "2024-02-26": 1.0002797547612237, + "2024-06-17": 0.9995600054386738, + "2024-01-05": 1.0002620470145014, + "2024-06-14": 0.9992845307034767, + "2023-08-23": 1.001126491062021, + "2024-06-13": 0.9999978274294289, + "2023-08-28": 1.0001391434806841, + "2024-03-11": 1.0000811823666091, + "2023-08-01": 0.9999268688731806, + "2024-03-14": 1.0000657504546695, + "2024-02-21": 1.00007872172479, + "2023-12-13": 0.9998634010108475, + "2024-02-27": 1.0006687941666126, + "2023-08-13": 1.0001233486262964, + "2024-03-31": 1.0002294169779136, + "2023-12-09": 0.9995813001568227, + "2024-04-02": 1.000289437896888, + "2024-02-06": 0.9991552499930771, + "2024-05-31": 0.9994090487119316, + "2024-04-09": 1.0000256306220139, + "2024-05-25": 0.9997979953376748, + "2023-11-04": 1.0004999999999997, + "2024-04-20": 1.000339906548852, + "2024-01-15": 0.9998948390444384, + "2023-12-28": 1.0001253003999027, + "2024-06-09": 0.9998934835577764, + "2024-02-07": 0.9998246146786016, + "2023-09-25": 1.0001440102349226, + "2024-03-19": 0.9998690753255709, + "2024-03-10": 1.0017999999999998, + "2024-05-02": 0.9999749989831999, + "2023-09-02": 1.0001971570143646, + "2024-07-24": 0.99984039955476, + "2024-01-12": 0.9999535099197165, + "2024-04-19": 1.0004697649087158, + "2023-11-29": 0.9970726065102885, + "2023-10-15": 1.0000770851725518, + "2024-05-28": 0.9990393005155943, + "2023-11-30": 0.9980650491900418, + "2024-01-24": 0.9998982769017226, + "2023-08-11": 0.9979007261303235, + "2024-02-11": 1.0005800904651905, + "2024-06-08": 0.9997492905874092, + "2023-11-15": 1.0001755823380485, + "2023-12-16": 0.9994022430261683, + "2024-03-29": 1.0001514270490928, + "2024-04-04": 1.0001286205391902, + "2024-06-25": 0.9999223488418001, + "2024-07-26": 0.9999182729033095, + "2023-07-28": 0.9956304639066922, + "2024-01-20": 0.9992100690000001, + "2023-10-21": 0.99995, + "2023-08-16": 1.0000202273675514, + "2024-05-24": 0.9996842278417991, + "2023-11-03": 1.0000469788945783, + "2023-08-31": 0.9996006629719365, + "2024-05-27": 0.9994803035894895, + "2024-01-04": 1.000594264077121, + "2023-07-26": 1.0000756988071644, + "2023-11-13": 1.0003791038484469, + "2023-10-24": 1.0000132087861118, + "2024-07-16": 1.0001693395782445, + "2023-10-29": 1.0000904688215526, + "2024-01-29": 0.999980654999953, + "2024-07-03": 0.9995681781714226, + "2024-05-04": 0.9999901586620563, + "2023-11-02": 1.0000352569261555, + "2023-12-18": 0.9999916622328323, + "2023-11-24": 1.0005359695755085, + "2023-08-21": 0.9974566164619691, + "2024-07-05": 0.9998400000000001, + "2024-03-25": 0.9917201401897433, + "2023-08-07": 0.9999322626799119, + "2024-07-25": 0.9996305694637405, + "2023-07-25": 0.9999958828152243, + "2024-05-16": 1.0001400208504023, + "2024-06-07": 0.9994085688946137, + "2023-08-14": 1.0000000005480203, + "2024-06-18": 0.9997971419505083, + "2024-05-01": 0.999465075042017, + "2024-02-16": 1.0003889202443796, + "2024-06-22": 0.9998203953215646, + "2024-07-06": 1.0001207373607124, + "2024-03-05": 1.0002864987563023, + "2024-04-06": 1.0003994051736682, + "2023-12-23": 1.0005636776544033, + "2023-12-14": 1.0000572522549236, + "2024-02-03": 0.9996205116315262, + "2024-06-27": 0.999198829059904, + "2023-12-26": 1.0000055344386443, + "2023-11-09": 1.0000355713555256, + "2023-10-14": 0.9998245947890987, + "2023-08-19": 0.9998233197049505, + "2024-05-09": 0.9996102137594747, + "2024-01-17": 0.9997947601570176, + "2024-04-23": 1.0005897131820625, + "2023-08-08": 0.9993644696075286, + "2023-08-17": 0.9999606403092363, + "2024-04-14": 1.0000990614540857, + "2024-07-22T13": 0.9994572128306476, + "2024-07-25T10": 0.9995388375123527, + "2024-07-26T06": 1.0001227729161275, + "2024-07-24T14": 0.9986615393250133, + "2024-07-21T20": 1.0004688581375951, + "2024-07-21T07": 0.9997217524976294, + "2024-07-21T14": 0.9994545437295755, + "2024-07-22T23": 0.999334326571852, + "2024-07-24T07": 0.9997556361189018, + "2024-07-20T11": 0.9997471948591838, + "2024-07-26T08": 0.9994699763817368, + "2024-07-25T20": 1.000296930274003, + "2024-07-21T02": 0.9995099040459158, + "2024-07-20T04": 0.9991180757104168, + "2024-07-20T03": 0.9994222976667408, + "2024-07-25T13": 0.9995527785080971, + "2024-07-21T06": 0.999972382866408, + "2024-07-20T12": 0.9995584472621796, + "2024-07-24T02": 0.9992647094520446, + "2024-07-24T17": 0.9982535267987144, + "2024-07-25T06": 0.9987679052802322, + "2024-07-25T22": 1.0001682618044017, + "2024-07-22T07": 1.0003372874182686, + "2024-07-22T22": 0.9994813367506256, + "2024-07-26T03": 1.0023933845496944, + "2024-07-23T01": 0.9986871979880918, + "2024-07-24T03": 1.0010789767484065, + "2024-07-23T21": 0.9994829773362655, + "2024-07-19T20": 0.9998757592558404, + "2024-07-23T22": 0.9989234514350095, + "2024-07-21T23": 0.9996070809436136, + "2024-07-19T16": 1.0000633680736042, + "2024-07-22T20": 1.0010776468128042, + "2024-07-23T10": 0.9986622752249791, + "2024-07-19T17": 1.0006655463764464, + "2024-07-22T09": 0.9990236838038418, + "2024-07-24T04": 0.9997656775701659, + "2024-07-22T06": 0.9992652335536597, + "2024-07-24T21": 0.9987523096646528, + "2024-07-20T21": 0.9996938826023439, + "2024-07-21T15": 0.9989810543817681, + "2024-07-20T09": 0.9996284137071086, + "2024-07-25T14": 0.9975433819590188, + "2024-07-19T11": 0.9998687499222124, + "2024-07-23T20": 0.9992928531370855, + "2024-07-25T03": 1.0013385819753902, + "2024-07-20T01": 0.9994936856994001, + "2024-07-25T23": 1.0002227195577476, + "2024-07-20T16": 1.000788885441911, + "2024-07-22T15": 0.997214713275289, + "2024-07-23T16": 0.9996631641482498, + "2024-07-22T02": 0.9997558898159383, + "2024-07-21T04": 0.9997680361452539, + "2024-07-23T09": 0.9990870479730398, + "2024-07-20T10": 0.9996715756302098, + "2024-07-22T19": 1.0006649467247413, + "2024-07-20T00": 0.9996813879365454, + "2024-07-20T19": 1.0000602741333513, + "2024-07-26T05": 1.0010132980029556, + "2024-07-19T14": 1.0007441709965377, + "2024-07-21T00": 0.9993018430556843, + "2024-07-22T12": 0.9996883914270293, + "2024-07-24T06": 1.0002290596215138, + "2024-07-25T01": 0.9983234621758237, + "2024-07-20T22": 0.9998168818092752, + "2024-07-19T15": 1.0001737176371301, + "2024-07-21T13": 0.999604311576536, + "2024-07-25T07": 0.9996657341391851, + "2024-07-21T08": 0.9995563024854883, + "2024-07-23T06": 0.99896601822597, + "2024-07-22T16": 1.00095722753648, + "2024-07-24T11": 0.9991387125730194, + "2024-07-24T01": 0.9992149273975758, + "2024-07-23T00": 0.9994790888479754, + "2024-07-19T12": 0.9989592343243141, + "2024-07-25T17": 0.9997522031328061, + "2024-07-25T19": 0.9996022973698027, + "2024-07-19T21": 0.9993252225293244, + "2024-07-23T08": 0.9986177445918619, + "2024-07-21T21": 0.9996698100482975, + "2024-07-21T11": 0.9988874654988399, + "2024-07-22T14": 0.9978883134921985, + "2024-07-20T23": 1.0014039535443884, + "2024-07-20T08": 0.9987507368840728, + "2024-07-20T02": 0.9979200667563726, + "2024-07-24T05": 0.9997457342873545, + "2024-07-24T16": 1.0001956417739124, + "2024-07-21T01": 0.9991009459976634, + "2024-07-24T13": 0.999134459108975, + "2024-07-25T04": 1.000486274133148, + "2024-07-19T13": 0.9987972371272671, + "2024-07-25T12": 0.9991906639397332, + "2024-07-19T22": 0.9991212333093875, + "2024-07-26T07": 0.9997741538721959, + "2024-07-25T02": 1.0002730465124245, + "2024-07-21T12": 0.9996245682452854, + "2024-07-23T18": 0.9974065755065812, + "2024-07-23T11": 0.9986047217378657, + "2024-07-19T10": 0.9981836990108922, + "2024-07-19T19": 1.0002963063536459, + "2024-07-25T11": 0.9988951447452927, + "2024-07-22T08": 0.9985157955234444, + "2024-07-23T19": 0.9972927211571787, + "2024-07-22T21": 1.0000712788368418, + "2024-07-21T09": 0.9995608448755998, + "2024-07-21T22": 1.0005404564203912, + "2024-07-22T04": 0.9996565639896223, + "2024-07-25T16": 1.0010154432063405, + "2024-07-19T23": 0.9990336154235189, + "2024-07-26T09": 0.9999399939993998, + "2024-07-20T06": 0.9993515618815032, + "2024-07-23T02": 0.9988856935528238, + "2024-07-23T14": 0.9994430018476147, + "2024-07-23T03": 0.9999347246723087, + "2024-07-25T08": 0.9985216988046932, + "2024-07-24T15": 0.99950906969728, + "2024-07-19T09": 0.9988019534669729, + "2024-07-20T15": 0.9992783226756603, + "2024-07-23T23": 0.9998464489856417, + "2024-07-23T12": 0.998967028345336, + "2024-07-22T10": 0.99897333316188, + "2024-07-21T10": 0.9993347306281151, + "2024-07-22T00": 1.000438649180093, + "2024-07-24T22": 0.9996307175613687, + "2024-07-24T19": 0.9984609277607402, + "2024-07-24T09": 0.9992304365950873, + "2024-07-23T04": 0.9988243593739978, + "2024-07-23T05": 0.9985028042271938, + "2024-07-25T18": 1.0006265018418905, + "2024-07-25T15": 1.001532640486357, + "2024-07-26T01": 1.0024956515629886, + "2024-07-22T01": 0.9968655450500196, + "2024-07-26T02": 1.000231184990957, + "2024-07-24T18": 0.9986975342015131, + "2024-07-21T19": 0.9991351879924076, + "2024-07-25T05": 0.9999408008398261, + "2024-07-22T18": 0.9996908563084089, + "2024-07-24T00": 0.9988917773265709, + "2024-07-24T08": 0.9994777470887876, + "2024-07-24T20": 0.9993452909844991, + "2024-07-24T23": 0.9981289674375915, + "2024-07-22T17": 1.0002427586566225, + "2024-07-21T17": 0.9992259901939435, + "2024-07-24T12": 0.9988720617297947, + "2024-07-23T13": 0.9993823405296148, + "2024-07-21T05": 0.9995316796731446, + "2024-07-20T05": 0.9996560619085106, + "2024-07-21T03": 1.0000470999906141, + "2024-07-26T00": 1.0005516396130996, + "2024-07-20T20": 0.9999811761814901, + "2024-07-22T03": 1.0000947795942658, + "2024-07-25T21": 1.0020263095663728, + "2024-07-21T16": 0.9999440309217918, + "2024-07-20T17": 0.999721161707547, + "2024-07-22T11": 0.9995535748912271, + "2024-07-25T00": 0.9985400173540099, + "2024-07-20T13": 0.9995392860202398, + "2024-07-23T07": 0.9992859926481518, + "2024-07-22T05": 0.9997429153025568, + "2024-07-20T07": 0.9995349096776617, + "2024-07-21T18": 0.9994898908000449, + "2024-07-23T17": 0.9957223239922695, + "2024-07-20T14": 1.0002125581705732, + "2024-07-26T04": 1.0003761511946088, + "2024-07-24T10": 0.999115652403895, + "2024-07-20T18": 0.9996393166321422, + "2024-07-23T15": 0.9993254218654796, + "2024-07-19T18": 1.0000157101381253, + "2024-07-25T09": 0.9992737952094365, + "latest": 1, + "2024-07-26T10": 0.9999818670658924, + "2024-07-26T11": 1.0001731351840166, + "2024-07-26T12": 1.0009916657870028, + "2024-07-26T13": 0.99984, + "2024-07-26T14": 0.9999100050000499, + "2024-07-26T17": 0.99998, + "2024-07-26T16": 1.0000500050005, + "2024-07-26T15": 0.9999200050001, + "2024-07-26T18": 0.99978, + "2024-07-27": 1.0000953410057627, + "2024-07-28": 1.0003017988912322, + "2024-07-28T05": 0.9997900419916017, + "2024-07-26T21": 0.9999000099990001, + "2024-07-27T02": 0.9998300339932014, + "2024-07-28T01": 0.99993, + "2024-07-27T10": 0.9996799680000001, + "2024-07-28T02": 0.9998500149985001, + "2024-07-27T19": 1.0002098079534334, + "2024-07-27T09": 0.9999938467835262, + "2024-07-27T06": 0.9999932056543287, + "2024-07-27T18": 0.9998499550000002, + "2024-07-26T22": 1.0000167860527887, + "2024-07-27T13": 1.00013, + "2024-07-27T12": 0.9999700059988003, + "2024-07-27T16": 1.0001630985467624, + "2024-07-27T05": 0.9999200079992, + "2024-07-26T23": 0.9998400319936014, + "2024-07-26T20": 0.9997000899730081, + "2024-07-27T08": 0.9999500049995002, + "2024-07-28T03": 0.9998800119988001, + "2024-07-27T01": 1.0000093409355888, + "2024-07-28T09": 0.999880002, + "2024-07-28T10": 0.99997, + "2024-07-27T00": 1.0000236302371301, + "2024-07-28T00": 0.99999, + "2024-07-27T04": 0.9999733946057802, + "2024-07-27T14": 1, + "2024-07-27T07": 0.9999000099990001, + "2024-07-27T11": 0.9997499286, + "2024-07-27T22": 0.9997700126, + "2024-07-27T03": 0.9997769622374892, + "2024-07-27T20": 0.9998500299940013, + "2024-07-27T23": 0.99993, + "2024-07-28T08": 1.0000800080007999, + "2024-07-27T21": 1.0000700070007, + "2024-07-28T07": 0.9999800050004, + "2024-07-27T15": 1.00020001, + "2024-07-26T19": 1.0000045685812493, + "2024-07-28T04": 0.9997800439912018, + "2024-07-28T06": 1.0000800080007999, + "2024-07-27T17": 0.999719952, + "2024-07-29": 0.9998727481810903, + "2024-07-28T20": 0.9997100198, + "2024-07-28T16": 0.999890001, + "2024-07-29T07": 0.9997200180000001, + "2024-07-28T23": 0.9998200032, + "2024-07-28T15": 0.999890001, + "2024-07-28T18": 0.99989, + "2024-07-29T04": 0.9998100084, + "2024-07-29T06": 0.9998227988699142, + "2024-07-28T21": 0.9999, + "2024-07-29T03": 1.000063293967748, + "2024-07-28T12": 0.99997, + "2024-07-29T05": 0.999929994, + "2024-07-28T17": 0.99989, + "2024-07-29T00": 0.99992, + "2024-07-29T01": 0.99995, + "2024-07-28T22": 0.9998600033, + "2024-07-28T19": 0.9998000099, + "2024-07-28T14": 0.999944562299044, + "2024-07-29T02": 1.0000099958000002, + "2024-07-29T08": 0.9998, + "2024-07-28T11": 1.0000199976, + "2024-07-28T13": 0.9999999995999999, + "2024-07-29T09": 0.9997674150537489, + "2024-07-29T10": 1.0002723756998526, + "2024-07-29T11": 0.999189368238155, + "2024-07-29T12": 0.9997100579884023, + "2024-07-29T13": 0.99991, + "2024-07-30": 0.9993655477236806, + "2024-07-29T23": 0.99987, + "2024-07-29T18": 1.0000599479999999, + "2024-07-29T21": 1.0000041848662968, + "2024-07-29T22": 0.99987, + "2024-07-29T17": 0.99978, + "2024-07-29T15": 0.9998399839983997, + "2024-07-30T01": 0.9999999516000001, + "2024-07-29T19": 1.0000399679999998, + "2024-07-30T04": 0.99989998, + "2024-07-29T14": 0.9996500699860028, + "2024-07-29T20": 1.0001899669999998, + "2024-07-30T03": 1.0000599719999999, + "2024-07-30T00": 0.9999099864000001, + "2024-07-29T16": 0.999580032, + "2024-07-30T02": 0.9996000799840032, + "2024-07-30T09": 0.9998099934, + "2024-07-30T08": 0.9998399664, + "2024-07-30T06": 0.99978, + "2024-07-30T05": 0.9999599715, + "2024-07-30T07": 0.9999999323999998, + "2024-07-30T10": 0.99984, + "2024-07-30T11": 1.0000799391, + "2024-07-30T12": 0.9999899619999999, + "2024-07-30T13": 0.9997700060000001, + "2024-07-31": 0.9988089470674653, + "2024-07-31T00": 0.999828934775519, + "2024-07-31T05": 0.999979956, + "2024-07-30T23": 0.99971, + "2024-07-30T19": 0.9996300049986498, + "2024-07-30T16": 0.9997799779977997, + "2024-07-30T17": 0.9997899789978997, + "2024-07-30T18": 0.9997799779977997, + "2024-07-30T20": 0.9997999799979997, + "2024-07-30T15": 0.9996843677751316, + "2024-07-31T03": 1.0000199517, + "2024-07-30T21": 0.999714804720289, + "2024-07-31T01": 0.99977, + "2024-07-31T07": 0.9997399845000001, + "2024-07-31T06": 0.9999899188000001, + "2024-07-31T02": 0.999859988, + "2024-07-30T22": 0.99971, + "2024-07-30T14": 0.999720016, + "2024-07-31T04": 0.9998499873999999, + "2024-07-31T08": 0.9995740570385571, + "2024-07-31T11": 0.999603645733515, + "2024-07-31T09": 0.9997147507395672, + "2024-07-31T10": 0.9997898704, + "2024-07-31T12": 0.9997398319999999, + "2024-08-01": 0.9996098570082909, + "2024-07-31T14": 0.9997707254439808, + "2024-07-31T23": 0.9997699711999999, + "2024-07-31T13": 0.9998798355000001, + "2024-07-31T21": 0.999669981, + "2024-08-01T01": 0.9997386733751262, + "2024-07-31T18": 0.9996799967, + "2024-07-31T19": 0.9997599759975997, + "2024-07-31T16": 0.9997599415000001, + "2024-08-01T02": 0.9994999896, + "2024-07-31T22": 0.9998699442000001, + "2024-07-31T20": 0.9995600195, + "2024-07-31T17": 0.9998099619923985, + "2024-08-01T00": 0.99967, + "2024-07-31T15": 0.9997899179999999, + "2024-08-01T07": 0.9998798515, + "2024-08-01T06": 0.9998398383, + "2024-08-01T05": 0.9994699512, + "2024-08-01T04": 0.9995799579957996, + "2024-08-01T03": 0.9995599522999999, + "2024-08-01T08": 0.9996010940228224, + "2024-08-01T09": 0.9998797331999999, + "2024-08-01T10": 0.9994000370999999, + "2024-08-01T11": 0.9995699469999999, + "2024-08-01T12": 0.9998323726331221, + "2024-08-01T13": 0.99952, + "2024-08-01T14": 0.9997799559911982, + "2024-08-01T15": 0.9997999399819946, + "2024-08-02": 0.9995394623899482, + "2024-08-02T00": 0.9991570111924044, + "2024-08-01T20": 0.9991897980000001, + "2024-08-01T21": 0.9992798159999999, + "2024-08-02T04": 0.999689454, + "2024-08-01T19": 0.9996997598078463, + "2024-08-01T16": 0.9994912400748156, + "2024-08-02T02": 0.9996295649999999, + "2024-08-01T17": 0.9997898739243547, + "2024-08-01T23": 0.9993197675000001, + "2024-08-02T01": 0.9995098039215686, + "2024-08-01T22": 0.9994197925000001, + "2024-08-01T18": 0.9996798078847309, + "2024-08-02T03": 0.9995895308, + "2024-08-02T05": 0.9995296519999999, + "2024-08-02T06": 0.9998399039423655, + "2024-08-02T07": 1.0001901901901904, + "2024-08-02T08": 0.9999008092609905, + "2024-08-02T09": 1.000040036032429, + "2024-08-02T10": 1.0000400320256204, + "2024-08-02T11": 0.9995398847470676, + "2024-08-02T12": 0.9992148841281326, + "2024-08-02T13": 0.9998198919351612, + "2024-08-02T14": 0.9995493499581888, + "2024-08-02T15": 0.999619771863118, + "2024-08-03": 0.9996003159814221, + "2024-08-02T16": 0.9992499149999999, + "2024-08-02T22": 0.9988858024158678, + "2024-08-02T23": 0.9999199038846617, + "2024-08-03T00": 0.9992392795, + "2024-08-03T01": 0.9989019074597956, + "2024-08-03T03": 0.9991431640974481, + "2024-08-02T19": 0.998810109, + "2024-08-02T18": 0.9986004, + "2024-08-02T21": 0.9995997598559136, + "2024-08-02T17": 0.9994497799119647, + "2024-08-02T20": 0.9998098288459613, + "2024-08-03T02": 0.9993491156, + "2024-08-03T06": 0.9998090189999999, + "2024-08-03T19": 0.9995198559567869, + "2024-08-03T10": 0.9998193839999999, + "2024-08-03T09": 1.00010911, + "2024-08-03T15": 0.9997298919567827, + "2024-08-03T22": 0.9998097834, + "2024-08-03T05": 0.9998888899999998, + "2024-08-03T08": 0.9998666469353465, + "2024-08-03T14": 0.9993500049962505, + "2024-08-03T18": 0.999609783, + "2024-08-03T17": 0.9994798559999999, + "2024-08-03T21": 0.9995998799999999, + "2024-08-03T12": 0.9997396199999999, + "2024-08-03T20": 0.9995798325000002, + "2024-08-03T04": 0.9999090708, + "2024-08-03T16": 0.99925, + "2024-08-03T11": 1.000059244, + "2024-08-03T07": 0.9998290369999999, + "2024-08-03T13": 1.0004204625087596, + "2024-08-04": 0.9994888842899601, + "2024-08-03T23": 0.9995499384000001, + "2024-08-04T17": 0.9996698349174585, + "2024-08-04T13": 0.9996999000000001, + "2024-08-04T06": 0.9998397148, + "2024-08-04T12": 0.9996999399879977, + "2024-08-04T10": 0.999579948, + "2024-08-04T16": 0.9992801249724838, + "2024-08-04T15": 0.9994299429942994, + "2024-08-04T00": 0.999709823, + "2024-08-04T11": 0.99949, + "2024-08-04T01": 0.9998997109000001, + "2024-08-04T03": 0.9998839094409069, + "2024-08-04T04": 0.9997899159663864, + "2024-08-04T07": 0.999909705, + "2024-08-04T08": 0.9998896949999999, + "2024-08-04T18": 0.9993607713869054, + "2024-08-04T09": 0.999729829, + "2024-08-04T02": 0.999455568038499, + "2024-08-04T05": 0.999789756, + "2024-08-04T14": 0.99957, + "2024-08-05": 1.0002633074365423, + "2024-08-05T01": 0.9965328345759387, + "2024-08-04T19": 1.000388563844963, + "2024-08-04T22": 0.9998383782198069, + "2024-08-05T03": 0.9999312826326545, + "2024-08-05T02": 0.9957818468588184, + "2024-08-04T23": 0.999474584644577, + "2024-08-05T00": 0.9996769746068341, + "2024-08-05T04": 0.9998343287032102, + "2024-08-05T06": 0.9989452289923214, + "2024-08-04T20": 0.9989672898302484, + "2024-08-05T05": 1.000272608820486, + "2024-08-04T21": 0.9997475463585079, + "2024-08-05T07": 1.0045485047758693, + "2024-08-05T08": 0.9997611286201773, + "2024-08-05T09": 1.0003131964529821, + "2024-08-05T10": 1.000793803171112, + "2024-08-05T11": 1.000230013, + "2024-08-05T12": 1.0000426342690092, + "2024-08-05T13": 0.9906775000174777, + "2024-08-05T14": 1.0038314512946651, + "2024-08-05T15": 1.0001519958902614, + "2024-08-06": 0.9999604854485797, + "2024-08-05T19": 0.9999798480000001, + "2024-08-05T20": 0.9995893630290889, + "2024-08-05T21": 0.9998599424000001, + "2024-08-06T02": 0.9999198252, + "2024-08-05T18": 1.000059976009596, + "2024-08-05T23": 0.9997999200000001, + "2024-08-05T16": 1.0000346396638728, + "2024-08-06T05": 0.9998496128839226, + "2024-08-05T17": 0.9999900059964023, + "2024-08-06T00": 1.0002, + "2024-08-06T04": 1.0000315153426358, + "2024-08-06T03": 0.9998898049999999, + "2024-08-05T22": 0.999869949, + "2024-08-06T01": 0.9999098829999999, + "2024-08-06T06": 1.0001004949443442, + "2024-08-06T07": 1.0002897240000002, + "2024-08-06T08": 1.0001897640000001, + "2024-08-06T09": 0.9971689412933321, + "2024-08-06T10": 1.0001199360000002, + "2024-08-06T11": 1.0006501, + "2024-08-06T12": 1.0001299112, + "2024-08-06T13": 0.9997801099450275, + "2024-08-06T14": 1.000029954 + }, + "USD ethereum/erc20/enjin": { + "2023-07-30": 0.3051934236262213, + "2023-10-23": 0.22197386996059063, + "2023-07-27": 0.30235269367792067, + "2023-08-20": 0.2449755, + "2024-02-23": 0.3332274285580898, + "2024-04-05": 0.4264277237013767, + "2023-12-19": 0.3292558897908351, + "2024-05-17": 0.31656645097729247, + "2023-08-06": 0.28782692422890643, + "2023-12-02": 0.29724661557052784, + "2024-06-11": 0.2403861915951443, + "2024-01-08": 0.28820200884950875, + "2023-10-31": 0.25844573348174166, + "2023-08-29": 0.24725708407056934, + "2023-09-09": 0.25102622690956944, + "2023-10-01": 0.22891833002392104, + "2024-03-07": 0.5477791810395884, + "2023-10-12": 0.21099343100081458, + "2024-04-22": 0.3505401205206966, + "2023-07-29": 0.3042939997015614, + "2024-04-26": 0.33215425646466257, + "2024-06-24": 0.1930927005221111, + "2023-09-26": 0.222229641700653, + "2023-08-24": 0.2439936827533006, + "2023-12-05": 0.3148861099877266, + "2024-02-19": 0.3459394650861964, + "2024-01-07": 0.3048581173460562, + "2024-04-28": 0.31555512784108447, + "2023-07-31": 0.2991429226965905, + "2023-10-18": 0.2130076196694203, + "2023-10-07": 0.22385839085141038, + "2024-06-28": 0.19315614483384552, + "2024-05-19": 0.3170302313171144, + "2024-05-12": 0.283293386137273, + "2024-04-29": 0.2980635651501034, + "2023-09-16": 0.23222392960124774, + "2023-08-25": 0.23949352128041662, + "2024-03-09": 0.6152729460845752, + "2023-09-05": 0.23126347203470934, + "2024-04-25": 0.3310104275155797, + "2023-08-12": 0.28950680791981914, + "2024-06-12": 0.2392120127000518, + "2023-09-01": 0.23140730889866912, + "2024-05-30": 0.3601163949848625, + "2024-06-05": 0.3017874210126365, + "2023-09-08": 0.2522990701942318, + "2024-03-22": 0.5003809693973534, + "2023-08-10": 0.28900780796339365, + "2023-11-18": 0.2691039152295283, + "2023-09-13": 0.22207933636180183, + "2023-12-07": 0.3349027902470982, + "2024-06-30": 0.18969017074152375, + "2024-06-20": 0.1942137209139594, + "2024-07-08": 0.16188663109934495, + "2024-07-07": 0.16650173508994068, + "2023-09-07": 0.2633444010420844, + "2024-03-26": 0.5283492877042263, + "2024-05-14": 0.28045682156288576, + "2024-06-16": 0.21715245845974032, + "2024-02-22": 0.3322998092319112, + "2024-04-15": 0.3315289140957136, + "2023-12-30": 0.3684461864885265, + "2023-09-17": 0.2284503289373417, + "2024-04-17": 0.31763337857992385, + "2024-02-12": 0.30747685, + "2023-10-26": 0.2618003375977482, + "2024-01-03": 0.3329730263313974, + "2024-05-07": 0.30149996879395663, + "2024-01-22": 0.28024542771355987, + "2024-07-13": 0.16723499956663165, + "2023-10-03": 0.22280022172010117, + "2024-05-26": 0.3468940464911543, + "2024-04-30": 0.28400154827154384, + "2024-07-09": 0.1662002236126644, + "2023-12-24": 0.3794915268765077, + "2023-09-24": 0.22103747994188333, + "2024-01-16": 0.30988903503108883, + "2023-10-17": 0.21731000064818706, + "2024-04-24": 0.3499724493142453, + "2024-03-18": 0.5192170499831007, + "2024-02-17": 0.3229121032785949, + "2023-12-27": 0.408736586958256, + "2023-09-03": 0.23146881182068693, + "2024-02-24": 0.3522496117691341, + "2024-01-06": 0.30691059609949656, + "2024-03-20": 0.47396112030854676, + "2023-11-21": 0.267192567616121, + "2023-12-25": 0.39707291223958513, + "2023-09-22": 0.22848226723534243, + "2024-03-01": 0.4568558012162821, + "2023-10-02": 0.2292575515660138, + "2024-03-27": 0.5086772127528376, + "2024-05-06": 0.306515325, + "2024-06-19": 0.1914267775367255, + "2023-08-30": 0.2490811404158936, + "2023-10-06": 0.2226437848775223, + "2023-10-13": 0.2103805061942878, + "2024-02-05": 0.27582101847157914, + "2023-12-10": 0.35817325896248314, + "2023-11-23": 0.2687513299873928, + "2023-08-04": 0.28753233661063093, + "2024-05-13": 0.28122962500808857, + "2024-01-13": 0.31713175562201484, + "2024-03-28": 0.5004906792772736, + "2023-08-05": 0.2851469939283344, + "2024-02-09": 0.2948058310470584, + "2023-10-09": 0.23005015386584868, + "2024-01-09": 0.3035078698867488, + "2024-05-10": 0.29376220300284134, + "2023-08-18": 0.24120358998625713, + "2023-11-05": 0.29424792908386826, + "2024-04-18": 0.3216258019738086, + "2023-10-22": 0.21448332093783615, + "2023-11-01": 0.25274349379463584, + "2024-05-20": 0.32251612500000004, + "2023-12-08": 0.34155457481725315, + "2024-04-12": 0.3630996204228636, + "2024-03-12": 0.6469341470262416, + "2024-07-02": 0.1950456060257454, + "2023-09-11": 0.24464589290740954, + "2024-07-20": 0.2037977705654741, + "2024-03-03": 0.5241323153121769, + "2024-02-04": 0.2790938770186764, + "2024-01-28": 0.29017098, + "2023-11-07": 0.3179011316880125, + "2023-11-25": 0.2858702531654226, + "2024-06-29": 0.1917963966518299, + "2024-07-21": 0.19966564305446022, + "2024-02-25": 0.35138576195637033, + "2023-12-01": 0.2866287655223091, + "2024-01-26": 0.2793702384190223, + "2023-08-03": 0.29002646708875746, + "2024-02-28": 0.41244976780765313, + "2023-09-15": 0.22520415484781542, + "2023-12-21": 0.3504092307506839, + "2024-06-01": 0.3141319185370739, + "2024-03-06": 0.5323269529408603, + "2024-07-15": 0.18048847155610245, + "2023-09-30": 0.22400516830597067, + "2023-12-12": 0.3217696343890232, + "2023-10-04": 0.22383914652216377, + "2024-02-13": 0.3100801168040988, + "2023-09-20": 0.22941606367463366, + "2024-04-16": 0.3165419837038964, + "2023-09-19": 0.2327420375080579, + "2023-09-29": 0.22327543819997064, + "2023-09-12": 0.2361088282907327, + "2024-03-02": 0.48986271871431014, + "2024-06-02": 0.3071812048080827, + "2023-10-08": 0.22453157708626326, + "2023-11-20": 0.28210850290267064, + "2023-12-20": 0.3430783337200435, + "2023-12-31": 0.3816703273765573, + "2023-11-06": 0.3056065755562759, + "2023-08-22": 0.23911179303689425, + "2024-05-29": 0.3633962771689755, + "2024-03-17": 0.5299576368749609, + "2024-07-23": 0.18952948918622609, + "2024-07-10": 0.16720000065138482, + "2023-09-18": 0.2310393937887113, + "2024-07-01": 0.19516868075650584, + "2024-04-01": 0.4715445880431416, + "2024-05-21": 0.34982909259645384, + "2024-01-19": 0.2865930460339017, + "2023-11-11": 0.3001493827355146, + "2023-09-23": 0.22849999714150082, + "2023-08-15": 0.2854042144, + "2024-07-18": 0.19579648265267297, + "2023-11-19": 0.2754152302556777, + "2024-01-25": 0.27167119624623254, + "2024-03-13": 0.6547365790712242, + "2024-01-21": 0.2964215829327016, + "2024-02-01": 0.2799343966699969, + "2024-03-15": 0.5642434963123083, + "2024-03-16": 0.5533937352373342, + "2024-06-23": 0.1892426781748152, + "2023-11-27": 0.29124920799661047, + "2024-01-10": 0.30090391023346036, + "2024-06-03": 0.30659847256956346, + "2024-01-02": 0.38896766982917635, + "2024-07-14": 0.17125820835404318, + "2023-10-25": 0.2408273474792808, + "2024-01-01": 0.3777248355784779, + "2024-02-14": 0.3200511997864238, + "2023-09-04": 0.2318152324073527, + "2023-09-06": 0.2666447758465475, + "2024-04-03": 0.4406752926701321, + "2024-06-15": 0.2175714805370523, + "2023-11-28": 0.2910338603140302, + "2023-12-03": 0.2954847153244734, + "2023-08-02": 0.2931226139993107, + "2024-07-11": 0.16560122142976064, + "2023-08-27": 0.24158470078708558, + "2024-04-11": 0.4470942867709106, + "2023-10-20": 0.20869178400000002, + "2023-10-10": 0.21731047628432057, + "2024-05-03": 0.30626355935332966, + "2024-03-08": 0.5607908178314016, + "2024-01-14": 0.3128170509234784, + "2023-12-15": 0.34611369102485845, + "2023-10-19": 0.20726562895801773, + "2024-02-08": 0.28883329846773115, + "2023-11-12": 0.3039358325557689, + "2023-12-22": 0.36000013580916745, + "2024-06-21": 0.19407588117569072, + "2024-03-23": 0.4960439891982546, + "2023-09-27": 0.22164480538522185, + "2024-03-04": 0.5648298340332983, + "2023-09-10": 0.2395701072063001, + "2024-04-13": 0.3475758231058721, + "2024-02-29": 0.4383948892118109, + "2023-09-21": 0.22708886136471015, + "2024-04-21": 0.343297094785792, + "2023-11-08": 0.30409651337016147, + "2024-07-19": 0.19729987779443428, + "2023-12-29": 0.38473838900312146, + "2023-12-04": 0.3032862657966111, + "2024-04-10": 0.4391687369933045, + "2024-05-08": 0.28476173065385263, + "2023-10-11": 0.21659235459540763, + "2024-05-05": 0.30534390536113387, + "2024-03-21": 0.5043248356102934, + "2024-05-23": 0.3483572320530206, + "2024-04-08": 0.4669953303435645, + "2024-05-18": 0.32078979763140836, + "2024-06-10": 0.25293596677676417, + "2023-10-05": 0.22317897632228223, + "2023-10-16": 0.21628203944933286, + "2024-05-22": 0.36353203375919835, + "2024-02-10": 0.29715960745006376, + "2024-04-07": 0.4471985797461469, + "2024-02-20": 0.3490009841709378, + "2023-11-17": 0.28131037556600424, + "2023-12-11": 0.3205611841511874, + "2023-11-26": 0.3031339964455156, + "2023-10-27": 0.25759894306065156, + "2024-02-02": 0.28495442932218584, + "2023-09-14": 0.222008561901017, + "2024-01-27": 0.28996593515995744, + "2024-03-30": 0.49843320486151727, + "2023-11-22": 0.26274654079707443, + "2023-09-28": 0.22164488577447045, + "2024-06-04": 0.2987085746572034, + "2023-11-16": 0.2899296732923891, + "2024-06-26": 0.20255027626956745, + "2024-01-18": 0.29837861672520744, + "2023-08-26": 0.24236966492863943, + "2024-02-15": 0.32715127816208606, + "2024-07-17": 0.19834724123085581, + "2023-10-28": 0.269128632791152, + "2024-03-24": 0.49123910057806125, + "2024-07-04": 0.17127883213257675, + "2024-04-27": 0.3207107495589504, + "2023-12-06": 0.3280440577204237, + "2024-01-30": 0.29318077956465943, + "2023-11-14": 0.2754516170929328, + "2023-08-09": 0.28904384965288626, + "2024-07-22": 0.19963003907211174, + "2024-06-06": 0.29936898858314437, + "2024-05-15": 0.2906076224000128, + "2023-11-10": 0.29276670993051923, + "2024-01-23": 0.26263724457143894, + "2024-01-31": 0.284886, + "2024-05-11": 0.28492036431455475, + "2024-01-11": 0.3293686601129159, + "2024-02-18": 0.3302686737103145, + "2024-07-12": 0.16152182521122738, + "2023-10-30": 0.2700780976180945, + "2023-12-17": 0.332276047554746, + "2024-02-26": 0.36482907412598703, + "2024-06-17": 0.2069674753509241, + "2024-01-05": 0.3251476316445491, + "2024-06-14": 0.2142777974712395, + "2023-08-23": 0.2416850697219346, + "2024-06-13": 0.22945360149477492, + "2023-08-28": 0.2413645296283798, + "2024-03-11": 0.6568788964556183, + "2023-08-01": 0.2933736669905715, + "2024-03-14": 0.6232376228168222, + "2024-02-21": 0.3267, + "2023-12-13": 0.321171579277619, + "2024-02-27": 0.39971343536912524, + "2023-08-13": 0.291202795034671, + "2024-03-31": 0.5006644223119963, + "2023-12-09": 0.36078728678383093, + "2024-04-02": 0.4385268895739957, + "2024-02-06": 0.27643861104731715, + "2024-05-31": 0.322011968866168, + "2024-04-09": 0.46230952860416646, + "2024-05-25": 0.3503138626142468, + "2023-11-04": 0.2832208505744833, + "2024-04-20": 0.34041566849666677, + "2024-01-15": 0.30774447389340587, + "2023-12-28": 0.39570099427436706, + "2024-06-09": 0.2558727425227657, + "2024-02-07": 0.28194318195537743, + "2023-09-25": 0.23114552692313545, + "2024-03-19": 0.47031793821361123, + "2024-03-10": 0.6523476002043115, + "2024-05-02": 0.29799254969699357, + "2023-09-02": 0.22825367294200094, + "2024-07-24": 0.18650753675496587, + "2024-01-12": 0.3239849372139882, + "2024-04-19": 0.33364725779539117, + "2023-11-29": 0.287071369642617, + "2023-10-15": 0.2120826437477253, + "2024-05-28": 0.37340370705336856, + "2023-11-30": 0.2806717894089536, + "2024-01-24": 0.2717364057417529, + "2023-08-11": 0.2884638642219762, + "2024-02-11": 0.3014144983507916, + "2024-06-08": 0.2561585605100613, + "2023-11-15": 0.2805081990943121, + "2023-12-16": 0.34299484980658096, + "2024-03-29": 0.49505535580334525, + "2024-04-04": 0.4408056352958716, + "2024-06-25": 0.2034028043101106, + "2024-07-26": 0.1867847333783382, + "2023-07-28": 0.300418670954876, + "2024-01-20": 0.293197554, + "2023-10-21": 0.21248308555824502, + "2023-08-16": 0.26808334251062027, + "2024-05-24": 0.3509107258787648, + "2023-11-03": 0.27627560831895237, + "2023-08-31": 0.23947620164227146, + "2024-05-27": 0.3671635107257437, + "2024-01-04": 0.33920315704284915, + "2023-07-26": 0.3011625559206218, + "2023-11-13": 0.29910823592973834, + "2023-10-24": 0.23458583836766805, + "2024-07-16": 0.18806944220787808, + "2023-10-29": 0.2750130166974461, + "2024-01-29": 0.29226511602194066, + "2024-07-03": 0.18735022313375643, + "2024-05-04": 0.30875870137137257, + "2023-11-02": 0.27340904476540273, + "2023-12-18": 0.31514749998600583, + "2023-11-24": 0.27349183571480107, + "2023-08-21": 0.2396415264768307, + "2024-07-05": 0.14947608, + "2024-03-25": 0.5090714643392505, + "2023-08-07": 0.28744932443888827, + "2024-07-25": 0.17619955950061975, + "2023-07-25": 0.3052682131491857, + "2024-05-16": 0.2977416842071648, + "2024-06-07": 0.2951562346236376, + "2023-08-14": 0.29085056015939204, + "2024-06-18": 0.1858622886885995, + "2024-05-01": 0.2829785666859478, + "2024-02-16": 0.3297311836511906, + "2024-06-22": 0.19240770378826472, + "2024-07-06": 0.16341634, + "2024-03-05": 0.5528262206855541, + "2024-04-06": 0.43863127165473664, + "2023-12-23": 0.3624041640464249, + "2023-12-14": 0.34876627300415763, + "2024-02-03": 0.28498354865564435, + "2024-06-27": 0.1988008068215566, + "2023-12-26": 0.4047710780476952, + "2023-11-09": 0.3065875634717171, + "2023-10-14": 0.21071310313060163, + "2023-08-19": 0.24243290931294767, + "2024-05-09": 0.2831895721419693, + "2024-01-17": 0.30801349038236064, + "2024-04-23": 0.348535748922846, + "2023-08-08": 0.2885517393042207, + "2023-08-17": 0.25649701389781143, + "2024-04-14": 0.3189559621840388, + "2024-07-22T13": 0.20182913737782499, + "2024-07-25T10": 0.17593663999999998, + "2024-07-26T06": 0.18626274, + "2024-07-24T14": 0.19162874000000002, + "2024-07-21T20": 0.20165644800000002, + "2024-07-21T07": 0.19893002427893552, + "2024-07-21T14": 0.19876755799999998, + "2024-07-22T23": 0.19415823, + "2024-07-24T07": 0.18689439300000002, + "2024-07-20T11": 0.20409996, + "2024-07-26T08": 0.18672141396959063, + "2024-07-25T20": 0.17305018703186847, + "2024-07-21T02": 0.203256896, + "2024-07-20T04": 0.20379573899999998, + "2024-07-20T03": 0.20309135000000003, + "2024-07-25T13": 0.17404428800000002, + "2024-07-21T06": 0.19975791299999998, + "2024-07-20T12": 0.203997872, + "2024-07-24T02": 0.18210182100000002, + "2024-07-24T17": 0.188598114, + "2024-07-25T06": 0.177053954, + "2024-07-25T22": 0.179855025, + "2024-07-22T07": 0.19862979000000003, + "2024-07-22T22": 0.195664548, + "2024-07-26T03": 0.1840905408, + "2024-07-23T01": 0.19791978999999998, + "2024-07-24T03": 0.18351100999999997, + "2024-07-23T21": 0.1832275288175278, + "2024-07-19T20": 0.20239103500000002, + "2024-07-23T22": 0.181832724, + "2024-07-21T23": 0.20391631200000002, + "2024-07-19T16": 0.20077601331928357, + "2024-07-22T20": 0.20057619000000002, + "2024-07-23T10": 0.19219807800000002, + "2024-07-19T17": 0.20192624699999998, + "2024-07-22T09": 0.1978, + "2024-07-24T04": 0.18410552300000002, + "2024-07-22T06": 0.19871192199999999, + "2024-07-24T21": 0.18378162, + "2024-07-20T21": 0.202693196, + "2024-07-21T15": 0.199865934, + "2024-07-20T09": 0.20271143000000003, + "2024-07-25T14": 0.177236172, + "2024-07-19T11": 0.19235959599999997, + "2024-07-23T20": 0.18363672, + "2024-07-25T03": 0.174066921, + "2024-07-20T01": 0.2019018801020884, + "2024-07-25T23": 0.18022411319999998, + "2024-07-20T16": 0.20497376399999997, + "2024-07-22T15": 0.19883809205401506, + "2024-07-23T16": 0.18463138199999998, + "2024-07-22T02": 0.2038, + "2024-07-21T04": 0.20185650400000002, + "2024-07-23T09": 0.1935, + "2024-07-20T10": 0.20399379399999998, + "2024-07-22T19": 0.201154297, + "2024-07-20T00": 0.2029014, + "2024-07-20T19": 0.204193886, + "2024-07-26T05": 0.1851848082, + "2024-07-19T14": 0.1972, + "2024-07-21T00": 0.20225863799999996, + "2024-07-22T12": 0.20181614400000003, + "2024-07-24T06": 0.184801848, + "2024-07-25T01": 0.17547894, + "2024-07-20T22": 0.20303726849999998, + "2024-07-19T15": 0.19760395199999997, + "2024-07-21T13": 0.19807863965885894, + "2024-07-25T07": 0.17711789793499672, + "2024-07-21T08": 0.19915773899999997, + "2024-07-23T06": 0.19052857500000003, + "2024-07-22T16": 0.19972995500000001, + "2024-07-24T11": 0.1893, + "2024-07-24T01": 0.181603632, + "2024-07-23T00": 0.19485844, + "2024-07-19T12": 0.192355748, + "2024-07-25T17": 0.178562494, + "2024-07-25T19": 0.174349424, + "2024-07-19T21": 0.203903938, + "2024-07-23T08": 0.190205706, + "2024-07-21T21": 0.20303857, + "2024-07-21T11": 0.199253784, + "2024-07-22T14": 0.19882982000000002, + "2024-07-20T23": 0.20205858, + "2024-07-20T08": 0.2037018, + "2024-07-20T02": 0.20189081000000003, + "2024-07-24T05": 0.183214656, + "2024-07-24T16": 0.187716893, + "2024-07-21T01": 0.203275184, + "2024-07-24T13": 0.1897, + "2024-07-25T04": 0.17448474049134316, + "2024-07-19T13": 0.19376124, + "2024-07-25T12": 0.17573495400000003, + "2024-07-19T22": 0.20309947000000003, + "2024-07-26T07": 0.187464375, + "2024-07-25T02": 0.17426514, + "2024-07-21T12": 0.19965987999999998, + "2024-07-23T18": 0.18312014100000001, + "2024-07-23T11": 0.19010380199999996, + "2024-07-19T10": 0.192559554, + "2024-07-19T19": 0.20328127999999998, + "2024-07-25T11": 0.176231243, + "2024-07-22T08": 0.19801584000000003, + "2024-07-23T19": 0.18406400319796068, + "2024-07-22T21": 0.19805741999999998, + "2024-07-21T09": 0.199955972, + "2024-07-21T22": 0.20372036999999998, + "2024-07-22T04": 0.20281622400000002, + "2024-07-25T16": 0.178360752, + "2024-07-19T23": 0.20380184999999998, + "2024-07-26T09": 0.186770112, + "2024-07-20T06": 0.20378148, + "2024-07-23T02": 0.197215776, + "2024-07-23T14": 0.18963033599999998, + "2024-07-23T03": 0.196313741, + "2024-07-25T08": 0.17665015096196018, + "2024-07-24T15": 0.18953600499999998, + "2024-07-19T09": 0.19266146, + "2024-07-20T15": 0.205163581, + "2024-07-23T23": 0.18201637999999998, + "2024-07-23T12": 0.18933407400000002, + "2024-07-22T10": 0.199101991, + "2024-07-21T10": 0.199653892, + "2024-07-22T00": 0.20441022000000003, + "2024-07-24T22": 0.183167024, + "2024-07-24T19": 0.185698143, + "2024-07-24T09": 0.1877, + "2024-07-23T04": 0.19311931, + "2024-07-23T05": 0.190411424, + "2024-07-25T18": 0.17585426599999998, + "2024-07-25T15": 0.17866068599999999, + "2024-07-26T01": 0.18135490121209658, + "2024-07-22T01": 0.20352441999999996, + "2024-07-26T02": 0.18256348000000003, + "2024-07-24T18": 0.18611861, + "2024-07-21T19": 0.19717686899999998, + "2024-07-25T05": 0.176257688, + "2024-07-22T18": 0.2005401, + "2024-07-24T00": 0.18251642499999998, + "2024-07-24T08": 0.18739812600000003, + "2024-07-24T20": 0.186598134, + "2024-07-24T23": 0.181667294, + "2024-07-22T17": 0.199127874, + "2024-07-21T17": 0.19888989471880483, + "2024-07-24T12": 0.18901943742221528, + "2024-07-23T13": 0.18813009599999997, + "2024-07-21T05": 0.200956252, + "2024-07-20T05": 0.20409792, + "2024-07-21T03": 0.202456672, + "2024-07-26T00": 0.1805020866, + "2024-07-20T20": 0.20408159999999997, + "2024-07-22T03": 0.20447995531201502, + "2024-07-25T21": 0.177659129, + "2024-07-21T16": 0.198473408, + "2024-07-20T17": 0.20468184, + "2024-07-22T11": 0.19940598199999998, + "2024-07-25T00": 0.181667294, + "2024-07-20T13": 0.202785134, + "2024-07-23T07": 0.19011900999999998, + "2024-07-22T05": 0.201212072, + "2024-07-20T07": 0.203991755, + "2024-07-21T18": 0.19398337699999998, + "2024-07-23T17": 0.18291829, + "2024-07-20T14": 0.20467774800000002, + "2024-07-26T04": 0.1844041798, + "2024-07-24T10": 0.1885, + "2024-07-20T18": 0.2045022, + "2024-07-23T15": 0.188231994, + "2024-07-19T18": 0.20275270199999998, + "2024-07-25T09": 0.177136208, + "latest": 0.139612, + "2024-07-26T10": 0.18694951, + "2024-07-26T11": 0.186855144, + "2024-07-26T12": 0.187168176, + "2024-07-26T13": 0.18657014399999997, + "2024-07-26T14": 0.186283233, + "2024-07-26T17": 0.186796264, + "2024-07-26T16": 0.187490625, + "2024-07-26T15": 0.18648508, + "2024-07-26T18": 0.188, + "2024-07-27": 0.18911802898418972, + "2024-07-28": 0.185196296, + "2024-07-28T05": 0.183798162, + "2024-07-26T21": 0.188, + "2024-07-27T02": 0.189305679, + "2024-07-28T01": 0.188586798, + "2024-07-27T10": 0.189715176, + "2024-07-28T02": 0.18859056999999999, + "2024-07-27T19": 0.187546875, + "2024-07-27T09": 0.18981708199999997, + "2024-07-27T06": 0.19010380199999996, + "2024-07-27T18": 0.18862829, + "2024-07-26T22": 0.189707588, + "2024-07-27T13": 0.19092481699999997, + "2024-07-27T12": 0.189832266, + "2024-07-27T16": 0.18761876, + "2024-07-27T05": 0.19063425287646762, + "2024-07-26T23": 0.18942757680000002, + "2024-07-26T20": 0.1881, + "2024-07-27T08": 0.18970948500000004, + "2024-07-28T03": 0.18749625, + "2024-07-27T01": 0.188707548, + "2024-07-28T09": 0.185196296, + "2024-07-28T10": 0.185594432, + "2024-07-27T00": 0.18920756800000002, + "2024-07-28T00": 0.18739812600000003, + "2024-07-27T04": 0.19056723979748272, + "2024-07-27T14": 0.18971897000000001, + "2024-07-27T07": 0.1905, + "2024-07-27T11": 0.189832266, + "2024-07-27T22": 0.18994111860234736, + "2024-07-27T03": 0.19006306655857672, + "2024-07-27T20": 0.18571132459093737, + "2024-07-27T23": 0.18878678399999999, + "2024-07-28T08": 0.184596308, + "2024-07-27T21": 0.18919432400000002, + "2024-07-28T07": 0.184896302, + "2024-07-27T15": 0.18761876, + "2024-07-26T19": 0.1893, + "2024-07-28T04": 0.18609627799999998, + "2024-07-28T06": 0.1849963, + "2024-07-27T17": 0.18852261999999997, + "2024-07-29": 0.18937589850549852, + "2024-07-28T20": 0.185679573, + "2024-07-28T16": 0.185398146, + "2024-07-29T07": 0.193065242, + "2024-07-28T23": 0.184396312, + "2024-07-28T15": 0.1833098618789641, + "2024-07-28T18": 0.18627950699999998, + "2024-07-29T04": 0.19047714, + "2024-07-29T06": 0.19297544895434116, + "2024-07-28T21": 0.18468153, + "2024-07-29T03": 0.19172832099209602, + "2024-07-28T12": 0.18579442599999998, + "2024-07-29T05": 0.191577008, + "2024-07-28T17": 0.185479595, + "2024-07-29T00": 0.1865, + "2024-07-29T01": 0.1871, + "2024-07-28T22": 0.184094477, + "2024-07-28T19": 0.18597954, + "2024-07-28T14": 0.1836, + "2024-07-29T02": 0.189286749, + "2024-07-29T08": 0.19317232214338292, + "2024-07-28T11": 0.18619255199999998, + "2024-07-28T13": 0.18579628399999998, + "2024-07-29T09": 0.19245765, + "2024-07-29T10": 0.19185970099999997, + "2024-07-29T11": 0.191759722, + "2024-07-29T12": 0.19168274700000001, + "2024-07-29T13": 0.192682657, + "2024-07-30": 0.1857600405732447, + "2024-07-29T23": 0.185075937, + "2024-07-29T18": 0.18686262, + "2024-07-29T21": 0.1857051424, + "2024-07-29T22": 0.186475755, + "2024-07-29T17": 0.186758904, + "2024-07-29T15": 0.187751172, + "2024-07-30T01": 0.18520809537766922, + "2024-07-29T19": 0.186870096, + "2024-07-30T04": 0.18536292000000001, + "2024-07-29T14": 0.191471275, + "2024-07-29T20": 0.1871803947416367, + "2024-07-30T03": 0.1853840426, + "2024-07-30T00": 0.184268669, + "2024-07-29T16": 0.18694016, + "2024-07-30T02": 0.18376324, + "2024-07-30T09": 0.188158596, + "2024-07-30T08": 0.18844722, + "2024-07-30T06": 0.185259234, + "2024-07-30T05": 0.18506483099999999, + "2024-07-30T07": 0.18795112, + "2024-07-30T10": 0.186370176, + "2024-07-30T11": 0.185760982, + "2024-07-30T12": 0.18756484251098265, + "2024-07-30T13": 0.18806238, + "2024-07-31": 0.17883916428973462, + "2024-07-31T00": 0.180654825, + "2024-07-31T05": 0.17949416473278096, + "2024-07-30T23": 0.181247423, + "2024-07-30T19": 0.18183269700000002, + "2024-07-30T16": 0.1881097856, + "2024-07-30T17": 0.18494716822124163, + "2024-07-30T18": 0.183641216, + "2024-07-30T20": 0.179946, + "2024-07-30T15": 0.18771854974428664, + "2024-07-31T03": 0.181661843, + "2024-07-30T21": 0.1802323619607092, + "2024-07-31T01": 0.18255800200000002, + "2024-07-31T07": 0.18274333199999998, + "2024-07-31T06": 0.1830668952, + "2024-07-31T02": 0.18232385861285808, + "2024-07-30T22": 0.180647597, + "2024-07-30T14": 0.1869626, + "2024-07-31T04": 0.180562074, + "2024-07-31T08": 0.18131837, + "2024-07-31T11": 0.17940127499999997, + "2024-07-31T09": 0.18102937100000002, + "2024-07-31T10": 0.179813648, + "2024-07-31T12": 0.179599368, + "2024-08-01": 0.17050950676710236, + "2024-07-31T14": 0.17931927, + "2024-07-31T23": 0.174644096, + "2024-07-31T13": 0.18081497700000002, + "2024-07-31T21": 0.17453365199999998, + "2024-08-01T01": 0.17403906500000002, + "2024-07-31T18": 0.17744142499999999, + "2024-07-31T19": 0.176340024, + "2024-07-31T16": 0.177730658, + "2024-08-01T02": 0.173609676, + "2024-07-31T22": 0.174845781, + "2024-07-31T20": 0.174132062, + "2024-07-31T17": 0.177630697, + "2024-08-01T00": 0.174542382, + "2024-07-31T15": 0.17862673299999998, + "2024-08-01T07": 0.17152278, + "2024-08-01T06": 0.170816259, + "2024-08-01T05": 0.169796361, + "2024-08-01T04": 0.17050208490537969, + "2024-08-01T03": 0.173008257, + "2024-08-01T08": 0.172010508, + "2024-08-01T09": 0.17259983399999998, + "2024-08-01T10": 0.1724885326, + "2024-08-01T11": 0.173707886, + "2024-08-01T12": 0.17530879200000002, + "2024-08-01T13": 0.173816528, + "2024-08-01T14": 0.17142797, + "2024-08-01T15": 0.16851570000000002, + "2024-08-02": 0.1677555466649782, + "2024-08-02T00": 0.17344376, + "2024-08-01T20": 0.166431734, + "2024-08-01T21": 0.17034314, + "2024-08-02T04": 0.17134393500000003, + "2024-08-01T19": 0.16631685000000002, + "2024-08-01T16": 0.16518428999999998, + "2024-08-02T02": 0.170651404, + "2024-08-01T17": 0.164566593, + "2024-08-01T23": 0.173238738, + "2024-08-02T01": 0.17270793738891288, + "2024-08-01T22": 0.17285641, + "2024-08-01T18": 0.164148844, + "2024-08-02T03": 0.171142404, + "2024-08-02T05": 0.17035398106235097, + "2024-08-02T06": 0.16835361932554835, + "2024-08-02T07": 0.168463434, + "2024-08-02T08": 0.169159481, + "2024-08-02T09": 0.170553198, + "2024-08-02T10": 0.170070648, + "2024-08-02T11": 0.1703367968, + "2024-08-02T12": 0.169579513, + "2024-08-02T13": 0.170766698, + "2024-08-02T14": 0.17264332794178977, + "2024-08-02T15": 0.163739378, + "2024-08-03": 0.1566777919849327, + "2024-08-02T16": 0.1658589, + "2024-08-02T22": 0.16051680200000001, + "2024-08-02T23": 0.161093536, + "2024-08-03T00": 0.161088697, + "2024-08-03T01": 0.158305045, + "2024-08-03T03": 0.161507577, + "2024-08-02T19": 0.163022112, + "2024-08-02T18": 0.1647351, + "2024-08-02T21": 0.16043939999999998, + "2024-08-02T17": 0.166142015, + "2024-08-02T20": 0.16252265700000001, + "2024-08-03T02": 0.16068761199999998, + "2024-08-03T06": 0.16322189399999998, + "2024-08-03T19": 0.152780738, + "2024-08-03T10": 0.16325620799999999, + "2024-08-03T09": 0.1629657674738106, + "2024-08-03T15": 0.160692264, + "2024-08-03T22": 0.152113246, + "2024-08-03T05": 0.162619292, + "2024-08-03T08": 0.163141599, + "2024-08-03T14": 0.16369353, + "2024-08-03T18": 0.15329262, + "2024-08-03T17": 0.1542454872906549, + "2024-08-03T21": 0.15221093075820807, + "2024-08-03T12": 0.16400347767540194, + "2024-08-03T20": 0.152098026, + "2024-08-03T04": 0.16215241160985852, + "2024-08-03T16": 0.156182775, + "2024-08-03T11": 0.163462576, + "2024-08-03T07": 0.1642241264842308, + "2024-08-03T13": 0.1632489152, + "2024-08-04": 0.14692486599062413, + "2024-08-03T23": 0.152114768, + "2024-08-04T17": 0.141282638, + "2024-08-04T13": 0.15262154004666742, + "2024-08-04T06": 0.154604086, + "2024-08-04T12": 0.1525237, + "2024-08-04T10": 0.1529104452, + "2024-08-04T16": 0.143596536, + "2024-08-04T15": 0.146601711, + "2024-08-04T00": 0.15290973, + "2024-08-04T11": 0.15255232440419145, + "2024-08-04T01": 0.153209553, + "2024-08-04T03": 0.154604086, + "2024-08-04T04": 0.154505694, + "2024-08-04T07": 0.153809199, + "2024-08-04T08": 0.153706182, + "2024-08-04T18": 0.14255366882945256, + "2024-08-04T09": 0.1538038580796384, + "2024-08-04T02": 0.154907, + "2024-08-04T05": 0.154405755, + "2024-08-04T14": 0.149135844, + "2024-08-05": 0.1304232167027886, + "2024-08-05T01": 0.13968871335217803, + "2024-08-04T19": 0.14440020784838203, + "2024-08-04T22": 0.14693232358729952, + "2024-08-05T03": 0.13305899731215468, + "2024-08-05T02": 0.13324665620877885, + "2024-08-04T23": 0.14731838118591015, + "2024-08-05T00": 0.1450508336261909, + "2024-08-05T04": 0.1296479660314648, + "2024-08-05T06": 0.12837405222724357, + "2024-08-04T20": 0.14733383443830614, + "2024-08-05T05": 0.12985705259908492, + "2024-08-04T21": 0.14671657782519593, + "2024-08-05T07": 0.12407968174450408, + "2024-08-05T08": 0.130871962694713, + "2024-08-05T09": 0.12941652485634733, + "2024-08-05T10": 0.1289873444514373, + "2024-08-05T11": 0.12301598999999999, + "2024-08-05T12": 0.12570545781466402, + "2024-08-05T13": 0.12330847947948137, + "2024-08-05T14": 0.1322582007425449, + "2024-08-05T15": 0.139888074, + "2024-08-06": 0.140149119291883, + "2024-08-05T19": 0.13915285800000002, + "2024-08-05T20": 0.14031403, + "2024-08-05T21": 0.140625308, + "2024-08-06T02": 0.140353314, + "2024-08-05T18": 0.14206531999999997, + "2024-08-05T23": 0.13732746, + "2024-08-05T16": 0.14239961, + "2024-08-06T05": 0.141283308, + "2024-08-05T17": 0.143584665, + "2024-08-06T00": 0.13973138805801388, + "2024-08-06T04": 0.14026309, + "2024-08-06T03": 0.14025467799999997, + "2024-08-05T22": 0.138923613, + "2024-08-06T01": 0.14084246252063592, + "2024-08-06T06": 0.142003587, + "2024-08-06T07": 0.14239961, + "2024-08-06T08": 0.139180678, + "2024-08-06T09": 0.13774130999999998, + "2024-08-06T10": 0.13734393600000003, + "2024-08-06T11": 0.13743435, + "2024-08-06T12": 0.136850616, + "2024-08-06T13": 0.134637688, + "2024-08-06T14": 0.13602992000000003 + }, + "USD ethereum/erc20/kyber_network_crystal_v2": { + "2023-07-30": 0.7688859288768031, + "2023-10-23": 0.6689340655751995, + "2023-07-27": 0.6765194235181557, + "2023-08-20": 0.5454873340561598, + "2024-02-23": 0.6568569473827334, + "2024-04-05": 0.7368206921244498, + "2023-12-19": 0.6717060046734704, + "2024-05-17": 0.5861230340369459, + "2023-08-06": 0.6791712675248938, + "2023-12-02": 0.720307117505763, + "2024-06-11": 0.7472634568330633, + "2024-01-08": 0.6314425957779168, + "2023-10-31": 0.756205906919719, + "2023-08-29": 0.5212677730882608, + "2023-09-09": 0.5434402905139065, + "2023-10-01": 0.6912583784759518, + "2024-03-07": 0.8537068402854422, + "2023-10-12": 0.643814722371311, + "2024-04-22": 0.6315524488719056, + "2023-07-29": 0.7880055266642371, + "2024-04-26": 0.5992174771492563, + "2024-06-24": 0.5439977068048565, + "2023-09-26": 0.7074332535578176, + "2023-08-24": 0.5478925707658707, + "2023-12-05": 0.7442369280853613, + "2024-02-19": 0.6652758951840191, + "2024-01-07": 0.6593419735183822, + "2024-04-28": 0.611219387630102, + "2023-07-31": 0.7499504124994212, + "2023-10-18": 0.6922549704336063, + "2023-10-07": 0.7016791895732644, + "2024-06-28": 0.5518033610170613, + "2024-05-19": 0.5762549504256194, + "2024-05-12": 0.5638877880029489, + "2024-04-29": 0.5800290980998825, + "2023-09-16": 0.6283006017138518, + "2023-08-25": 0.533799573160311, + "2024-03-09": 0.8621081040832748, + "2023-09-05": 0.5316861154817, + "2024-04-25": 0.5934394133894536, + "2023-08-12": 0.6558623335787964, + "2024-06-12": 0.7782432008369857, + "2023-09-01": 0.5055233588029094, + "2024-05-30": 0.6412410069141895, + "2024-06-05": 0.6702, + "2023-09-08": 0.539484184563498, + "2024-03-22": 0.816757676391611, + "2023-08-10": 0.6386857903996535, + "2023-11-18": 0.7654626280971912, + "2023-09-13": 0.5149520856655918, + "2023-12-07": 0.7428328202709389, + "2024-06-30": 0.5404173127494043, + "2024-06-20": 0.5714461358940895, + "2024-07-08": 0.47256097503119476, + "2024-07-07": 0.4748049478763613, + "2023-09-07": 0.5406805349668602, + "2024-03-26": 0.9147528930747061, + "2024-05-14": 0.5533175210877176, + "2024-06-16": 0.7573508958400617, + "2024-02-22": 0.6576017283777112, + "2024-04-15": 0.5773642774076729, + "2023-12-30": 0.7119958729446069, + "2023-09-17": 0.5937049367133674, + "2024-04-17": 0.5633630931754224, + "2024-02-12": 0.61755435, + "2023-10-26": 0.7409484163452597, + "2024-01-03": 0.6483369022318075, + "2024-05-07": 0.5934999385711882, + "2024-01-22": 0.5943600889368869, + "2024-07-13": 0.5108069035806149, + "2023-10-03": 0.6616623651871408, + "2024-05-26": 0.66775952, + "2024-04-30": 0.5543078441273179, + "2024-07-09": 0.48890065778719394, + "2023-12-24": 0.7193630578017638, + "2023-09-24": 0.6956606729751177, + "2024-01-16": 0.6473592934316007, + "2023-10-17": 0.6674726387736689, + "2024-04-24": 0.6310503214707552, + "2024-03-18": 0.8544568079391316, + "2024-02-17": 0.649925630421633, + "2023-12-27": 0.7471752381178446, + "2023-09-03": 0.504119879557012, + "2024-02-24": 0.6852019839494398, + "2024-01-06": 0.6444422037433186, + "2024-03-20": 0.7571881514928144, + "2023-11-21": 0.759384312437995, + "2023-12-25": 0.7291338867069459, + "2023-09-22": 0.6123332430528051, + "2024-03-01": 0.7210307675562908, + "2023-10-02": 0.6839993764541418, + "2024-03-27": 0.9088359702524275, + "2024-05-06": 0.60063003, + "2024-06-19": 0.5742466971596852, + "2023-08-30": 0.5289599489362012, + "2023-10-06": 0.7095458934813075, + "2023-10-13": 0.6427746131869129, + "2024-02-05": 0.5786147551566051, + "2023-12-10": 0.7660653968257276, + "2023-11-23": 0.7211436336117473, + "2023-08-04": 0.6823647877173763, + "2024-05-13": 0.5535798596159381, + "2024-01-13": 0.6558588640858819, + "2024-03-28": 0.9049232271790284, + "2023-08-05": 0.6861505598205458, + "2024-02-09": 0.6024119152739077, + "2023-10-09": 0.6767380272027168, + "2024-01-09": 0.6263123593580621, + "2024-05-10": 0.5961232996265963, + "2023-08-18": 0.5360731838137067, + "2023-11-05": 0.8059842938651958, + "2024-04-18": 0.5654175673668766, + "2023-10-22": 0.6575935694664061, + "2023-11-01": 0.7885381296141118, + "2024-05-20": 0.5784289200000001, + "2023-12-08": 0.755269956805927, + "2024-04-12": 0.6382993305112326, + "2024-03-12": 0.9329541024858368, + "2024-07-02": 0.5382979091033117, + "2023-09-11": 0.5118984632517762, + "2024-07-20": 0.5637704649328907, + "2024-03-03": 0.7713831474581724, + "2024-02-04": 0.5839779475440929, + "2024-01-28": 0.60173982, + "2023-11-07": 0.7927689124731876, + "2023-11-25": 0.728405125959838, + "2024-06-29": 0.5553209568857251, + "2024-07-21": 0.566886372339492, + "2024-02-25": 0.677672540915857, + "2023-12-01": 0.7175766929444493, + "2024-01-26": 0.5923248775925317, + "2023-08-03": 0.7249663377724967, + "2024-02-28": 0.6712571111934493, + "2023-09-15": 0.5630103871195384, + "2023-12-21": 0.7040185458004609, + "2024-06-01": 0.6398539460278057, + "2024-03-06": 0.7996381017105471, + "2024-07-15": 0.535962714763632, + "2023-09-30": 0.6903545209132993, + "2023-12-12": 0.7041959356604833, + "2023-10-04": 0.6409769028495018, + "2024-02-13": 0.6274940923952244, + "2023-09-20": 0.6130197326080667, + "2024-04-16": 0.5656148379240833, + "2023-09-19": 0.5870545413061927, + "2023-09-29": 0.7061929201276004, + "2023-09-12": 0.5062725739111354, + "2024-03-02": 0.7652260898653475, + "2024-06-02": 0.638246692330816, + "2023-10-08": 0.6905310800814944, + "2023-11-20": 0.7906273923662588, + "2023-12-20": 0.696955985435355, + "2023-12-31": 0.7097916089402911, + "2023-11-06": 0.8073762420104287, + "2023-08-22": 0.5328102209357419, + "2024-05-29": 0.6674946333078996, + "2024-03-17": 0.8734714837371417, + "2024-07-23": 0.5341831173414757, + "2024-07-10": 0.499800001947142, + "2023-09-18": 0.5956020712342147, + "2024-07-01": 0.5356651150957732, + "2024-04-01": 0.8444589334450999, + "2024-05-21": 0.6194744377615399, + "2024-01-19": 0.6091475757109559, + "2023-11-11": 0.8799111767179558, + "2023-09-23": 0.6768952315877299, + "2023-08-15": 0.6781308800000001, + "2024-07-18": 0.5581899725062414, + "2023-11-19": 0.772015370402494, + "2024-01-25": 0.5790254741200589, + "2024-03-13": 0.9785694716545086, + "2024-01-21": 0.6255234954739647, + "2024-02-01": 0.5748599249003293, + "2024-03-15": 1.0197353088852203, + "2024-03-16": 0.941602923410858, + "2024-06-23": 0.5455347568938016, + "2023-11-27": 0.712116860196196, + "2024-01-10": 0.6352193583718329, + "2024-06-03": 0.6592486578557182, + "2024-01-02": 0.7345054531891316, + "2024-07-14": 0.5128743190602685, + "2023-10-25": 0.7566515310218591, + "2024-01-01": 0.7090155744594222, + "2024-02-14": 0.6406026358963649, + "2023-09-04": 0.5118128460222707, + "2023-09-06": 0.5383502153658205, + "2024-04-03": 0.7447962664992358, + "2024-06-15": 0.798370472411142, + "2023-11-28": 0.6821269037065177, + "2023-12-03": 0.7206490032105638, + "2023-08-02": 0.7533732047056642, + "2024-07-11": 0.5112037705005654, + "2023-08-27": 0.5307296516477857, + "2024-04-11": 0.7482904379124858, + "2023-10-20": 0.636279825668684, + "2023-10-10": 0.6562536997325773, + "2024-05-03": 0.5890222407027297, + "2024-03-08": 0.8583528834630465, + "2024-01-14": 0.649827686482138, + "2023-12-15": 0.7100280861821712, + "2023-10-19": 0.6482046185212624, + "2024-02-08": 0.59576241798865, + "2023-11-12": 0.88092661736186, + "2023-12-22": 0.7061964320124263, + "2024-06-21": 0.5562442608773915, + "2024-03-23": 0.8160723673991108, + "2023-09-27": 0.7081217097614244, + "2024-03-04": 0.8094879489437642, + "2023-09-10": 0.5253686826496393, + "2024-04-13": 0.5686766646406173, + "2024-02-29": 0.7058364500652299, + "2023-09-21": 0.6074156134408343, + "2024-04-21": 0.6193751780051352, + "2023-11-08": 0.8261103384386933, + "2024-07-19": 0.5603996528940749, + "2023-12-29": 0.7233800884012827, + "2023-12-04": 0.7206670989709829, + "2024-04-10": 0.7533463718356335, + "2024-05-08": 0.5859212575953568, + "2023-10-11": 0.6476080538623183, + "2024-05-05": 0.5946855097534562, + "2024-03-21": 0.8262267293726712, + "2024-05-23": 0.6010752446410201, + "2024-04-08": 0.7920920795827354, + "2024-05-18": 0.5957667710298311, + "2024-06-10": 0.7391932936472545, + "2023-10-05": 0.6677970231988954, + "2023-10-16": 0.6665326879557916, + "2024-05-22": 0.6132853396806718, + "2024-02-10": 0.60362421270917, + "2024-04-07": 0.75336607082263, + "2024-02-20": 0.6575018542223859, + "2023-11-17": 0.7764343841403623, + "2023-12-11": 0.7069128116213624, + "2023-11-26": 0.728672735081372, + "2023-10-27": 0.7374048298442726, + "2024-02-02": 0.5998935407898138, + "2023-09-14": 0.5220201320375265, + "2024-01-27": 0.5971298499225054, + "2024-03-30": 0.8959190473241074, + "2023-11-22": 0.7426163394709924, + "2023-09-28": 0.7164347288906754, + "2024-06-04": 0.6640697314172026, + "2023-11-16": 0.817363214260977, + "2024-06-26": 0.5388380701029306, + "2024-01-18": 0.6409096769028894, + "2023-08-26": 0.5371064190722616, + "2024-02-15": 0.6443949464930169, + "2024-07-17": 0.5571326947331654, + "2023-10-28": 0.7571668453594792, + "2024-03-24": 0.8149864973459521, + "2024-07-04": 0.4953495746097917, + "2024-04-27": 0.5961482151842983, + "2023-12-06": 0.732102915624335, + "2024-01-30": 0.6086600972749256, + "2023-11-14": 0.8287159371445654, + "2023-08-09": 0.6433016192096846, + "2024-07-22": 0.5515829987388258, + "2024-06-06": 0.6739106752681532, + "2024-05-15": 0.565414830368091, + "2023-11-10": 0.8317298522896555, + "2024-01-23": 0.5585412074548936, + "2024-01-31": 0.587265, + "2024-05-11": 0.5716402256668857, + "2024-01-11": 0.6831424077045902, + "2024-02-18": 0.6582368690755844, + "2024-07-12": 0.5051682595305941, + "2023-10-30": 0.7550478457920784, + "2023-12-17": 0.6953220959053013, + "2024-02-26": 0.6809542669199137, + "2024-06-17": 0.6336705258080283, + "2024-01-05": 0.6655068483952759, + "2024-06-14": 0.7578828181449776, + "2023-08-23": 0.5416280569676364, + "2024-06-13": 0.7764058332598065, + "2023-08-28": 0.5137478461658974, + "2024-03-11": 0.960414560589529, + "2023-08-01": 0.6977996589291127, + "2024-03-14": 1.0460187487417858, + "2024-02-21": 0.6388, + "2023-12-13": 0.6877750478917293, + "2024-02-27": 0.6953257626671997, + "2023-08-13": 0.6895330424637027, + "2024-03-31": 0.8888143653564329, + "2023-12-09": 0.7799666565104778, + "2024-04-02": 0.757319133431734, + "2024-02-06": 0.5788526607908043, + "2024-05-31": 0.6505671935123166, + "2024-04-09": 0.7843161654428894, + "2024-05-25": 0.6896999884111031, + "2023-11-04": 0.7716662723631257, + "2024-04-20": 0.6228116227035697, + "2024-01-15": 0.6406762187907541, + "2023-12-28": 0.7363130487606567, + "2024-06-09": 0.729057253719466, + "2024-02-07": 0.5769790816832308, + "2023-09-25": 0.6568452041025088, + "2024-03-19": 0.7595893615991226, + "2024-03-10": 0.9015124406006119, + "2024-05-02": 0.5725856844177802, + "2023-09-02": 0.5013499151383176, + "2024-07-24": 0.5374217150637407, + "2024-01-12": 0.6839682007850861, + "2024-04-19": 0.5693510483933356, + "2023-11-29": 0.6718776367651832, + "2023-10-15": 0.6410020034171681, + "2024-05-28": 0.6955872600256704, + "2023-11-30": 0.7111631915953764, + "2024-01-24": 0.5722554833678841, + "2023-08-11": 0.6412527729588251, + "2024-02-11": 0.6096315807997756, + "2024-06-08": 0.7251863980363891, + "2023-11-15": 0.8222180023046574, + "2023-12-16": 0.7035791790904224, + "2024-03-29": 0.8997362237733638, + "2024-04-04": 0.7369766101338738, + "2024-06-25": 0.559032867079336, + "2024-07-26": 0.5309566029116574, + "2023-07-28": 0.7388879420056333, + "2024-01-20": 0.618772752, + "2023-10-21": 0.6492530962971954, + "2023-08-16": 0.6414423344274229, + "2024-05-24": 0.6437322630658456, + "2023-11-03": 0.754186365269607, + "2023-08-31": 0.5225101438221507, + "2024-05-27": 0.717655045541851, + "2024-01-04": 0.6595894968758855, + "2023-07-26": 0.7048170384369826, + "2023-11-13": 0.8616494578710261, + "2023-10-24": 0.7356769202332585, + "2024-07-16": 0.5456014562775356, + "2023-10-29": 0.7522994258930211, + "2024-01-29": 0.6011282509489932, + "2024-07-03": 0.5298935415499528, + "2024-05-04": 0.5992139228752488, + "2023-11-02": 0.8018425413978866, + "2023-12-18": 0.6544756261599043, + "2023-11-24": 0.7282445369435815, + "2023-08-21": 0.5367045065736206, + "2024-07-05": 0.419232912, + "2024-03-25": 0.8676762611788448, + "2023-08-07": 0.6663435694037799, + "2024-07-25": 0.5116825610100839, + "2023-07-25": 0.6888815663765077, + "2024-05-16": 0.5802275602681852, + "2024-06-07": 0.6989326225092206, + "2023-08-14": 0.6840781203748887, + "2024-06-18": 0.5617678147310445, + "2024-05-01": 0.5506744928131415, + "2024-02-16": 0.6481167542242465, + "2024-06-22": 0.5523350499397147, + "2024-07-06": 0.46364636, + "2024-03-05": 0.7993056637986413, + "2024-04-06": 0.7356201531924592, + "2023-12-23": 0.7134019021675896, + "2023-12-14": 0.7131121250940249, + "2024-02-03": 0.6028536590467172, + "2024-06-27": 0.5392596759913378, + "2023-12-26": 0.7439297172105892, + "2023-11-09": 0.8362787238135464, + "2023-10-14": 0.6479511705164215, + "2023-08-19": 0.5427588691512597, + "2024-05-09": 0.5954678013588816, + "2024-01-17": 0.64600882603231, + "2024-04-23": 0.6320461715541162, + "2023-08-08": 0.6469956250940448, + "2023-08-17": 0.5982881092261181, + "2024-04-14": 0.5540764021773659, + "2024-07-22T13": 0.552977406, + "2024-07-25T10": 0.509616472, + "2024-07-26T06": 0.52829432, + "2024-07-24T14": 0.5449817350000001, + "2024-07-21T20": 0.5719656760330959, + "2024-07-21T07": 0.5708655029999999, + "2024-07-21T14": 0.564091726, + "2024-07-22T23": 0.5430628700000001, + "2024-07-24T07": 0.536183914, + "2024-07-20T11": 0.562975723, + "2024-07-26T08": 0.52891536, + "2024-07-25T20": 0.49708067199999995, + "2024-07-21T02": 0.5676589000000001, + "2024-07-20T04": 0.5682107653111341, + "2024-07-20T03": 0.5682556, + "2024-07-25T13": 0.5092541426653618, + "2024-07-21T06": 0.569265039, + "2024-07-20T12": 0.563570384, + "2024-07-24T02": 0.5316089477423787, + "2024-07-24T17": 0.543794562, + "2024-07-25T06": 0.514066308, + "2024-07-25T22": 0.5117720250000001, + "2024-07-22T07": 0.55388307, + "2024-07-22T22": 0.544479619, + "2024-07-26T03": 0.52391616, + "2024-07-23T01": 0.54815481, + "2024-07-24T03": 0.532931974, + "2024-07-23T21": 0.5312798215495129, + "2024-07-19T20": 0.571957265, + "2024-07-23T22": 0.529895364, + "2024-07-21T23": 0.5742459360000001, + "2024-07-19T16": 0.5670133799999999, + "2024-07-22T20": 0.550409076, + "2024-07-23T10": 0.540894591, + "2024-07-19T17": 0.566773671, + "2024-07-22T09": 0.5519449783205587, + "2024-07-24T04": 0.530515915, + "2024-07-22T06": 0.5544332639999999, + "2024-07-24T21": 0.53554644, + "2024-07-20T21": 0.5590570479999999, + "2024-07-21T15": 0.567987374, + "2024-07-20T09": 0.5655108600000001, + "2024-07-25T14": 0.510116292, + "2024-07-19T11": 0.549484584, + "2024-07-23T20": 0.53100618, + "2024-07-25T03": 0.509103252, + "2024-07-20T01": 0.56678325, + "2024-07-25T23": 0.513240846, + "2024-07-20T16": 0.560901852, + "2024-07-22T15": 0.545349077, + "2024-07-23T16": 0.5272279914086349, + "2024-07-22T02": 0.5651, + "2024-07-21T04": 0.566558592, + "2024-07-23T09": 0.5434, + "2024-07-20T10": 0.565960222, + "2024-07-22T19": 0.547947906, + "2024-07-20T00": 0.5688913344024069, + "2024-07-20T19": 0.5618583359999999, + "2024-07-26T05": 0.5257000980000001, + "2024-07-19T14": 0.5638293548680418, + "2024-07-21T00": 0.56216298, + "2024-07-22T12": 0.555444432, + "2024-07-24T06": 0.531605316, + "2024-07-25T01": 0.515138176, + "2024-07-20T22": 0.5591403269999999, + "2024-07-19T15": 0.561611232, + "2024-07-21T13": 0.5626743750000001, + "2024-07-25T07": 0.513771525, + "2024-07-21T08": 0.573466257, + "2024-07-23T06": 0.528979335, + "2024-07-22T16": 0.544581675, + "2024-07-24T11": 0.5389, + "2024-07-24T01": 0.5299487630463843, + "2024-07-23T00": 0.54336296, + "2024-07-19T12": 0.5528728100000001, + "2024-07-25T17": 0.512192417, + "2024-07-25T19": 0.499255174, + "2024-07-19T21": 0.5737094327006325, + "2024-07-23T08": 0.5385161549999999, + "2024-07-21T21": 0.573408927, + "2024-07-21T11": 0.562751902, + "2024-07-22T14": 0.5450817500000001, + "2024-07-20T23": 0.560262429, + "2024-07-20T08": 0.5668833, + "2024-07-20T02": 0.565954565, + "2024-07-24T05": 0.529342344, + "2024-07-24T16": 0.5420567507143034, + "2024-07-21T01": 0.565509161, + "2024-07-24T13": 0.5411, + "2024-07-25T04": 0.513628082, + "2024-07-19T13": 0.5582883200000001, + "2024-07-25T12": 0.5104110780000001, + "2024-07-19T22": 0.5739811130000001, + "2024-07-26T07": 0.530299224, + "2024-07-25T02": 0.5123975, + "2024-07-21T12": 0.5649694399999999, + "2024-07-23T18": 0.526357893, + "2024-07-23T11": 0.537410748, + "2024-07-19T10": 0.5477849410000001, + "2024-07-19T19": 0.57042808, + "2024-07-25T11": 0.5107007490000001, + "2024-07-22T08": 0.555644448, + "2024-07-23T19": 0.532375626, + "2024-07-22T21": 0.547058601, + "2024-07-21T09": 0.56715876, + "2024-07-21T22": 0.57445744, + "2024-07-22T04": 0.559744776, + "2024-07-25T16": 0.512087316, + "2024-07-19T23": 0.5690843999999999, + "2024-07-26T09": 0.529715232, + "2024-07-20T06": 0.5658262399999999, + "2024-07-23T02": 0.5474448814794624, + "2024-07-23T14": 0.538986224, + "2024-07-23T03": 0.54603822, + "2024-07-25T08": 0.512951201, + "2024-07-24T15": 0.5426030749999999, + "2024-07-19T09": 0.5499899800000001, + "2024-07-20T15": 0.560373662, + "2024-07-23T23": 0.5316478439999999, + "2024-07-23T12": 0.536796606, + "2024-07-22T10": 0.551205512, + "2024-07-21T10": 0.566352874, + "2024-07-22T00": 0.57302865, + "2024-07-24T22": 0.531504312, + "2024-07-24T19": 0.5429945700000001, + "2024-07-24T09": 0.5372, + "2024-07-23T04": 0.54075407, + "2024-07-23T05": 0.529831788, + "2024-07-25T18": 0.5042688559999999, + "2024-07-25T15": 0.5125872060000001, + "2024-07-26T01": 0.51609676, + "2024-07-22T01": 0.568168172, + "2024-07-26T02": 0.51969604, + "2024-07-24T18": 0.542066185669921, + "2024-07-21T19": 0.560718595, + "2024-07-25T05": 0.515576232, + "2024-07-22T18": 0.54730944, + "2024-07-24T00": 0.5294514532541077, + "2024-07-24T08": 0.5377946219999999, + "2024-07-24T20": 0.543594564, + "2024-07-24T23": 0.528304888, + "2024-07-22T17": 0.5450763000000001, + "2024-07-21T17": 0.56624338, + "2024-07-24T12": 0.542316269, + "2024-07-23T13": 0.5336853759999999, + "2024-07-21T05": 0.565758368, + "2024-07-20T05": 0.566371728, + "2024-07-21T03": 0.5666768160334422, + "2024-07-26T00": 0.514291976, + "2024-07-20T20": 0.56182464, + "2024-07-22T03": 0.56452258, + "2024-07-25T21": 0.508582999, + "2024-07-21T16": 0.5674199652475919, + "2024-07-20T17": 0.5621247599999999, + "2024-07-22T11": 0.553416602, + "2024-07-25T00": 0.532304168, + "2024-07-20T13": 0.558934654, + "2024-07-23T07": 0.5293529299999999, + "2024-07-22T05": 0.5562606972375671, + "2024-07-20T07": 0.56805551, + "2024-07-21T18": 0.5537380049999999, + "2024-07-23T17": 0.52265226, + "2024-07-20T14": 0.5594487052519767, + "2024-07-26T04": 0.525026486, + "2024-07-24T10": 0.5371, + "2024-07-20T18": 0.5636817, + "2024-07-23T15": 0.538291494, + "2024-07-19T18": 0.570748356, + "2024-07-25T09": 0.515014528, + "latest": 0.417492, + "2024-07-26T10": 0.5306566840000001, + "2024-07-26T11": 0.530172728, + "2024-07-26T12": 0.5313578829892336, + "2024-07-26T13": 0.5296152479999999, + "2024-07-26T14": 0.531252183, + "2024-07-26T17": 0.5335893279999999, + "2024-07-26T16": 0.5359732, + "2024-07-26T15": 0.5310575120000001, + "2024-07-26T18": 0.536, + "2024-07-27": 0.5428517510979279, + "2024-07-28": 0.5390892180000001, + "2024-07-28T05": 0.5335269117198561, + "2024-07-26T21": 0.5395, + "2024-07-27T02": 0.53801614, + "2024-07-28T01": 0.546561738, + "2024-07-27T10": 0.54304344, + "2024-07-28T02": 0.54357282, + "2024-07-27T19": 0.542835675, + "2024-07-27T09": 0.5437489329999999, + "2024-07-27T06": 0.5393107859999999, + "2024-07-27T18": 0.54388157, + "2024-07-26T22": 0.541321652, + "2024-07-27T13": 0.548371279, + "2024-07-27T12": 0.544292514, + "2024-07-27T16": 0.54275427, + "2024-07-27T05": 0.538610772, + "2024-07-26T23": 0.543548298363737, + "2024-07-26T20": 0.5395, + "2024-07-27T08": 0.5422271100000001, + "2024-07-28T03": 0.5427891439999999, + "2024-07-27T01": 0.53852154, + "2024-07-28T09": 0.539189216, + "2024-07-28T10": 0.5409837700000001, + "2024-07-27T00": 0.542621704, + "2024-07-28T00": 0.544394556, + "2024-07-27T04": 0.538610772, + "2024-07-27T14": 0.54635463, + "2024-07-27T07": 0.5427, + "2024-07-27T11": 0.542692242, + "2024-07-27T22": 0.548250653, + "2024-07-27T03": 0.537805378, + "2024-07-27T20": 0.54282714, + "2024-07-27T23": 0.548061633, + "2024-07-28T08": 0.538089238, + "2024-07-27T21": 0.5481835540000001, + "2024-07-28T07": 0.536689266, + "2024-07-27T15": 0.5408540799999999, + "2024-07-26T19": 0.5407, + "2024-07-28T04": 0.537389252, + "2024-07-28T06": 0.5386892259999999, + "2024-07-27T17": 0.5406648719999999, + "2024-07-29": 0.5446306859342398, + "2024-07-28T20": 0.538240787, + "2024-07-28T16": 0.5377946219999999, + "2024-07-29T07": 0.550700856, + "2024-07-28T23": 0.536789264, + "2024-07-28T15": 0.5358946410000001, + "2024-07-28T18": 0.541040479, + "2024-07-29T04": 0.5457345039999999, + "2024-07-29T06": 0.5506299468350034, + "2024-07-28T21": 0.5357464200000001, + "2024-07-29T03": 0.5476397529999999, + "2024-07-28T12": 0.543383698, + "2024-07-29T05": 0.5474342999999999, + "2024-07-28T17": 0.538240787, + "2024-07-29T00": 0.5426339937217757, + "2024-07-29T01": 0.5436, + "2024-07-28T22": 0.534683959, + "2024-07-28T19": 0.540840501, + "2024-07-28T14": 0.5385, + "2024-07-29T02": 0.544661871, + "2024-07-29T08": 0.55178962, + "2024-07-28T11": 0.542378304, + "2024-07-28T13": 0.543189136, + "2024-07-29T09": 0.551778582, + "2024-07-29T10": 0.5518310164719056, + "2024-07-29T11": 0.551484164, + "2024-07-29T12": 0.5497961096664208, + "2024-07-29T13": 0.5505504459999999, + "2024-07-30": 0.5298860145523127, + "2024-07-29T23": 0.533830593, + "2024-07-29T18": 0.53929212, + "2024-07-29T21": 0.5360571120000001, + "2024-07-29T22": 0.5378300730000001, + "2024-07-29T17": 0.539981178, + "2024-07-29T15": 0.5403954276334672, + "2024-07-30T01": 0.537781662, + "2024-07-29T19": 0.539113728, + "2024-07-30T04": 0.53699258, + "2024-07-29T14": 0.54651801, + "2024-07-29T20": 0.539140688, + "2024-07-30T03": 0.536324904, + "2024-07-30T00": 0.534309152, + "2024-07-29T16": 0.540227072, + "2024-07-30T02": 0.5329933800000001, + "2024-07-30T09": 0.536981838, + "2024-07-30T08": 0.537049584, + "2024-07-30T06": 0.5347823220000001, + "2024-07-30T05": 0.535998141, + "2024-07-30T07": 0.536160562, + "2024-07-30T10": 0.5334146399999999, + "2024-07-30T11": 0.5294236988784862, + "2024-07-30T12": 0.5304128861421266, + "2024-07-30T13": 0.53049388, + "2024-07-31": 0.515463542740124, + "2024-07-31T00": 0.5151726584143078, + "2024-07-31T05": 0.521585226, + "2024-07-30T23": 0.515250534, + "2024-07-30T19": 0.515309265, + "2024-07-30T16": 0.527431168, + "2024-07-30T17": 0.522637932, + "2024-07-30T18": 0.520033536, + "2024-07-30T20": 0.5133459499999999, + "2024-07-30T15": 0.529619868, + "2024-07-31T03": 0.521390485, + "2024-07-30T21": 0.512364084700842, + "2024-07-31T01": 0.520180331, + "2024-07-31T07": 0.5296410600000001, + "2024-07-31T06": 0.528346735, + "2024-07-31T02": 0.52129572, + "2024-07-30T22": 0.5137509690000001, + "2024-07-30T14": 0.5287942200000001, + "2024-07-31T04": 0.519190947, + "2024-07-31T08": 0.52836213, + "2024-07-31T11": 0.523411965, + "2024-07-31T09": 0.5271943139999999, + "2024-07-31T10": 0.525447664, + "2024-07-31T12": 0.523306784, + "2024-08-01": 0.5036327107851282, + "2024-07-31T14": 0.52736258, + "2024-07-31T23": 0.516034816, + "2024-07-31T13": 0.5278517930000001, + "2024-07-31T21": 0.5175032740000001, + "2024-08-01T01": 0.5167190850000001, + "2024-07-31T18": 0.5272259579999999, + "2024-07-31T19": 0.525921126, + "2024-07-31T16": 0.526294665, + "2024-08-01T02": 0.5169312234398429, + "2024-07-31T22": 0.5184392339999999, + "2024-07-31T20": 0.5162985649999999, + "2024-07-31T17": 0.526394626, + "2024-08-01T00": 0.516729423, + "2024-07-31T15": 0.527683561, + "2024-08-01T07": 0.5001136161146547, + "2024-08-01T06": 0.5074374372298531, + "2024-08-01T05": 0.5006769744157399, + "2024-08-01T04": 0.5130837897434244, + "2024-08-01T03": 0.5131201251543074, + "2024-08-01T08": 0.5019753476122426, + "2024-08-01T09": 0.5067902384736008, + "2024-08-01T10": 0.506631343, + "2024-08-01T11": 0.5071310779999999, + "2024-08-01T12": 0.5111340719999999, + "2024-08-01T13": 0.5097552, + "2024-08-01T14": 0.503688362, + "2024-08-01T15": 0.4949524, + "2024-08-02": 0.4928755877792926, + "2024-08-02T00": 0.50564451, + "2024-08-01T20": 0.486608029, + "2024-08-01T21": 0.5010386199999999, + "2024-08-02T04": 0.5003442720000001, + "2024-08-01T19": 0.48676397, + "2024-08-01T16": 0.48625937999999996, + "2024-08-02T02": 0.497966392, + "2024-08-01T17": 0.48430739300000003, + "2024-08-01T23": 0.506428583, + "2024-08-02T01": 0.502951974, + "2024-08-01T22": 0.50558002, + "2024-08-01T18": 0.48005793999999996, + "2024-08-02T03": 0.501438252, + "2024-08-02T05": 0.49766665299999996, + "2024-08-02T06": 0.492225624, + "2024-08-02T07": 0.495298483, + "2024-08-02T08": 0.49349006300000003, + "2024-08-02T09": 0.496172924, + "2024-08-02T10": 0.49412418, + "2024-08-02T11": 0.49608294000000003, + "2024-08-02T12": 0.494948337, + "2024-08-02T13": 0.498510858, + "2024-08-02T14": 0.5011244383924176, + "2024-08-02T15": 0.4803392728840395, + "2024-08-03": 0.47732768642348444, + "2024-08-02T16": 0.48463288312077474, + "2024-08-02T22": 0.4783227768120418, + "2024-08-02T23": 0.4796561787284759, + "2024-08-03T00": 0.479502155146619, + "2024-08-03T01": 0.4745664344137767, + "2024-08-03T03": 0.480727253, + "2024-08-02T19": 0.4813687280570595, + "2024-08-02T18": 0.4813421244388924, + "2024-08-02T21": 0.4838796181669924, + "2024-08-02T17": 0.48156522222178216, + "2024-08-02T20": 0.48046878038748875, + "2024-08-03T02": 0.47815854043639616, + "2024-08-03T06": 0.48686873399999997, + "2024-08-03T19": 0.4596412, + "2024-08-03T10": 0.485772144, + "2024-08-03T09": 0.483669151, + "2024-08-03T15": 0.47737994100000003, + "2024-08-03T22": 0.46343569100000004, + "2024-08-03T05": 0.484261872, + "2024-08-03T08": 0.483630423, + "2024-08-03T14": 0.48558416499999996, + "2024-08-03T18": 0.46157666999999997, + "2024-08-03T17": 0.46386577599999995, + "2024-08-03T21": 0.46092328, + "2024-08-03T12": 0.48593041200000003, + "2024-08-03T20": 0.4576232508198402, + "2024-08-03T04": 0.482112574, + "2024-08-03T16": 0.46914787499999994, + "2024-08-03T11": 0.4850301931572353, + "2024-08-03T07": 0.486878482, + "2024-08-03T13": 0.484870064, + "2024-08-04": 0.4534681068023549, + "2024-08-03T23": 0.462477274735176, + "2024-08-04T17": 0.43593787100000003, + "2024-08-04T13": 0.46586695000000006, + "2024-08-04T06": 0.46820953000000004, + "2024-08-04T12": 0.46546715000000005, + "2024-08-04T10": 0.462659292, + "2024-08-04T16": 0.44038269599999996, + "2024-08-04T15": 0.44730010800000003, + "2024-08-04T00": 0.463126594, + "2024-08-04T11": 0.466291024348519, + "2024-08-04T01": 0.4630380781485098, + "2024-08-04T03": 0.46671046000000005, + "2024-08-04T04": 0.466415313, + "2024-08-04T07": 0.465025473, + "2024-08-04T08": 0.463417143, + "2024-08-04T18": 0.43753864890673994, + "2024-08-04T09": 0.46333574800000005, + "2024-08-04T02": 0.46691968, + "2024-08-04T05": 0.466915008, + "2024-08-04T14": 0.455204178, + "2024-08-05": 0.4362622273207379, + "2024-08-05T01": 0.42059423925715766, + "2024-08-04T19": 0.4422273741693848, + "2024-08-04T22": 0.4469549906830542, + "2024-08-05T03": 0.3975318285479568, + "2024-08-05T02": 0.3957216752042891, + "2024-08-04T23": 0.44718426083188084, + "2024-08-05T00": 0.43896928136109037, + "2024-08-05T04": 0.3906495159473184, + "2024-08-05T06": 0.38928155600144104, + "2024-08-04T20": 0.4486919648119406, + "2024-08-05T05": 0.39220877134249715, + "2024-08-04T21": 0.44855277799205034, + "2024-08-05T07": 0.3775669754106347, + "2024-08-05T08": 0.39634545505241664, + "2024-08-05T09": 0.3903319958324369, + "2024-08-05T10": 0.38795595602506205, + "2024-08-05T11": 0.37024812599999996, + "2024-08-05T12": 0.3751694126290895, + "2024-08-05T13": 0.36736707727260043, + "2024-08-05T14": 0.38851180743323943, + "2024-08-05T15": 0.40075231499999997, + "2024-08-06": 0.3995641717200808, + "2024-08-05T19": 0.396050442, + "2024-08-05T20": 0.40024221618717376, + "2024-08-05T21": 0.40117219800000004, + "2024-08-06T02": 0.41435739600000004, + "2024-08-05T18": 0.399883862, + "2024-08-05T23": 0.40148027999999997, + "2024-08-05T16": 0.40498329, + "2024-08-06T05": 0.41824662, + "2024-08-05T17": 0.40633959900000005, + "2024-08-06T00": 0.41028204, + "2024-08-06T04": 0.4161872, + "2024-08-06T03": 0.413761304, + "2024-08-05T22": 0.403268544, + "2024-08-06T01": 0.41722513, + "2024-08-06T06": 0.4208069649999999, + "2024-08-06T07": 0.41828842, + "2024-08-06T08": 0.4158452040000001, + "2024-08-06T09": 0.4121236, + "2024-08-06T10": 0.4128716537159794, + "2024-08-06T11": 0.41180292500000004, + "2024-08-06T12": 0.410251737, + "2024-08-06T13": 0.40781415600000004, + "2024-08-06T14": 0.41389103600000005 + }, + "USD ethereum/erc20/okb": { + "2023-07-30": 42.67908034196305, + "2023-10-23": 44.444217124907425, + "2023-07-27": 43.073260726338695, + "2023-08-20": 43.765623000000005, + "2024-02-23": 50.64896948920741, + "2024-04-05": 55.606655314472285, + "2023-12-19": 55.11587663347494, + "2024-05-17": 49.660424300229295, + "2023-08-06": 45.1315014084118, + "2023-12-02": 58.13482659221789, + "2024-06-11": 45.70835984052369, + "2024-01-08": 53.80771533277114, + "2023-10-31": 45.206194012296706, + "2023-08-29": 43.81239556802405, + "2023-09-09": 42.19759871705666, + "2023-10-01": 43.27346500714314, + "2024-03-07": 56.55485654668911, + "2023-10-12": 42.38780613490536, + "2024-04-22": 55.031997802064836, + "2023-07-29": 42.75915684271694, + "2024-04-26": 52.62275291311015, + "2024-06-24": 41.01720719165341, + "2023-09-26": 43.04537175883229, + "2023-08-24": 43.50947602969462, + "2023-12-05": 57.7036806618337, + "2024-02-19": 53.106058387039695, + "2024-01-07": 54.5118340311127, + "2024-04-28": 52.81575215433293, + "2023-07-31": 42.53188479783743, + "2023-10-18": 44.77650176917364, + "2023-10-07": 42.923636575906535, + "2024-06-28": 42.05690413109222, + "2024-05-19": 49.27469872868841, + "2024-05-12": 49.871231596289874, + "2024-04-29": 51.25373481916907, + "2023-09-16": 42.79440976588024, + "2023-08-25": 42.80097070629148, + "2024-03-09": 60.97979121201657, + "2023-09-05": 42.36498953997982, + "2024-04-25": 53.21586017372918, + "2023-08-12": 48.08791024198031, + "2024-06-12": 45.76464562490279, + "2023-09-01": 42.71289118462259, + "2024-05-30": 45.446828975747145, + "2024-06-05": 49.1, + "2023-09-08": 42.25309705669643, + "2024-03-22": 58.58061959330276, + "2023-08-10": 48.29117676097632, + "2023-11-18": 56.14193306330243, + "2023-09-13": 41.79611103072182, + "2023-12-07": 57.60737773979233, + "2024-06-30": 42.40074500732902, + "2024-06-20": 42.94092355782769, + "2024-07-08": 36.53698270765945, + "2024-07-07": 37.58039161969952, + "2023-09-07": 42.145098261649714, + "2024-03-26": 66.29107998359012, + "2024-05-14": 49.08494122221425, + "2024-06-16": 46.0187332239326, + "2024-02-22": 51.52446500545338, + "2024-04-15": 57.12593682515162, + "2023-12-30": 54.87968189213487, + "2023-09-17": 43.12950168028973, + "2024-04-17": 57.09730073328371, + "2024-02-12": 49.4823675, + "2023-10-26": 45.77804110207079, + "2024-01-03": 54.17815317261169, + "2024-05-07": 50.63999475862674, + "2024-01-22": 52.84273843280419, + "2024-07-13": 38.73810725607443, + "2023-10-03": 43.135042925927124, + "2024-05-26": 48.522525599999994, + "2024-04-30": 50.18260374245512, + "2024-07-09": 36.81004952576521, + "2023-12-24": 55.27789839158199, + "2023-09-24": 42.8275695, + "2024-01-16": 54.31915146850648, + "2023-10-17": 46.118837877089064, + "2024-04-24": 55.345643055838515, + "2024-03-18": 63.64273253077923, + "2024-02-17": 51.83799625742499, + "2023-12-27": 55.11292586384637, + "2023-09-03": 41.88480344502353, + "2024-02-24": 51.06269563738201, + "2024-01-06": 54.70753925255781, + "2024-03-20": 57.25514562052883, + "2023-11-21": 57.349868593905704, + "2023-12-25": 54.48823882782539, + "2023-09-22": 42.895206418248534, + "2024-03-01": 51.726555203018584, + "2023-10-02": 43.49091772290698, + "2024-03-27": 65.92810107639721, + "2024-05-06": 51.312565500000005, + "2024-06-19": 42.66368077715596, + "2023-08-30": 43.6266967336228, + "2023-10-06": 42.82942278634493, + "2023-10-13": 42.95599253275331, + "2024-02-05": 48.42102414095415, + "2023-12-10": 59.695096000688885, + "2023-11-23": 58.32113900842901, + "2023-08-04": 44.69839034037397, + "2024-05-13": 49.587591185215764, + "2024-01-13": 53.55847461750106, + "2024-03-28": 64.1274741669943, + "2023-08-05": 44.84448345843158, + "2024-02-09": 49.47097850033235, + "2023-10-09": 42.53842830974564, + "2024-01-09": 53.566715207716676, + "2024-05-10": 50.28461633943376, + "2023-08-18": 42.32308329887331, + "2023-11-05": 49.5359145121436, + "2024-04-18": 55.369201319964574, + "2023-10-22": 43.73252445422894, + "2023-11-01": 45.32916730215167, + "2024-05-20": 49.353592713565725, + "2023-12-08": 57.04017190246222, + "2024-04-12": 55.17994231598351, + "2024-03-12": 65.73411774047071, + "2024-07-02": 42.5944449411062, + "2023-09-11": 41.313734595188265, + "2024-07-20": 42.98061965386729, + "2024-03-03": 58.168892598207705, + "2024-02-04": 48.351614725620976, + "2024-01-28": 52.34936033458872, + "2023-11-07": 51.60644608082016, + "2023-11-25": 58.37476573213425, + "2024-06-29": 42.05642694515893, + "2024-07-21": 42.56399354693027, + "2024-02-25": 50.477954648712505, + "2023-12-01": 57.48220043338374, + "2024-01-26": 52.635551896764625, + "2023-08-03": 42.05034102571754, + "2024-02-28": 52.04768955773324, + "2023-09-15": 42.480783738611, + "2023-12-21": 54.95537510179258, + "2024-06-01": 48.16889247033184, + "2024-03-06": 54.909861594563836, + "2024-07-15": 40.810003985828914, + "2023-09-30": 42.99099189943607, + "2023-12-12": 58.35768516099868, + "2023-10-04": 43.053446430602605, + "2024-02-13": 50.11294790930758, + "2023-09-20": 43.60305307852671, + "2024-04-16": 58.8023349366424, + "2023-09-19": 43.93793600227324, + "2023-09-29": 43.1752504320409, + "2023-09-12": 41.81947426284122, + "2024-03-02": 53.78103048850899, + "2024-06-02": 47.50426062317571, + "2023-10-08": 42.925154442962096, + "2023-11-20": 57.382658794632924, + "2023-12-20": 55.34650472574879, + "2023-12-31": 54.84389812178081, + "2023-11-06": 52.2673531827096, + "2023-08-22": 42.923215996908056, + "2024-05-29": 46.33552123475192, + "2024-03-17": 63.71585187321151, + "2024-07-23": 40.54630888789257, + "2024-07-10": 36.7990001433631, + "2023-09-18": 43.547425132296496, + "2024-07-01": 42.31984136977049, + "2024-04-01": 61.91898599887667, + "2024-05-21": 51.44957160621182, + "2024-01-19": 53.44276041412945, + "2023-11-11": 61.57224133705393, + "2023-09-23": 42.769999464954005, + "2023-08-15": 46.490415999999996, + "2024-07-18": 42.94922844704956, + "2023-11-19": 57.2491822, + "2024-01-25": 49.46654706404577, + "2024-03-13": 68.66255585212697, + "2024-01-21": 53.837594985113405, + "2024-02-01": 48.281437711986975, + "2024-03-15": 65.15335157664133, + "2024-03-16": 66.27959567491055, + "2024-06-23": 41.71736376246718, + "2023-11-27": 56.09947828478668, + "2024-01-10": 53.99864718883706, + "2024-06-03": 46.84924493042001, + "2024-01-02": 56.29874222945578, + "2024-07-14": 39.77351848222405, + "2023-10-25": 45.93521623639273, + "2024-01-01": 54.93120663618627, + "2024-02-14": 50.10367016350141, + "2023-09-04": 42.40449400051704, + "2023-09-06": 42.08550041566011, + "2024-04-03": 56.68254729327965, + "2024-06-15": 45.623050466313444, + "2023-11-28": 56.03042396721279, + "2023-12-03": 58.31135709731784, + "2023-08-02": 42.48573876064884, + "2024-07-11": 36.67027046998383, + "2023-08-27": 42.94950183211033, + "2024-04-11": 57.119270096968044, + "2023-10-20": 44.6896548, + "2023-10-10": 43.033519663703956, + "2024-05-03": 49.800335141091715, + "2024-03-08": 58.915032324206706, + "2024-01-14": 53.645774856356184, + "2023-12-15": 58.45231216527875, + "2023-10-19": 43.983927149054246, + "2024-02-08": 48.83872146122765, + "2023-11-12": 60.31337950919433, + "2023-12-22": 55.10532781808013, + "2024-06-21": 41.643367500468756, + "2024-03-23": 59.955316839587425, + "2023-09-27": 42.949926670229196, + "2024-03-04": 57.52817468950916, + "2023-09-10": 41.69957707576871, + "2024-04-13": 53.32656638872702, + "2024-02-29": 52.37012402637868, + "2023-09-21": 43.04788851497478, + "2024-04-21": 55.3456534221966, + "2023-11-08": 54.88536053405777, + "2024-07-19": 43.019973353859925, + "2023-12-29": 55.2490297116443, + "2023-12-04": 59.1644684042265, + "2024-04-10": 56.97594407644597, + "2024-05-08": 50.203253146523664, + "2023-10-11": 42.840464512555236, + "2024-05-05": 51.26737172882974, + "2024-03-21": 59.90119189331363, + "2024-05-23": 49.243394250949756, + "2024-04-08": 59.55940444381735, + "2024-05-18": 50.16404225511422, + "2024-06-10": 46.81750031810482, + "2023-10-05": 42.92854150932869, + "2023-10-16": 43.80871982015889, + "2024-05-22": 50.15062379912373, + "2024-02-10": 49.85677858328848, + "2024-04-07": 58.19282793475917, + "2024-02-20": 52.000146645724826, + "2023-11-17": 55.88949253438433, + "2023-12-11": 58.31280788367448, + "2023-11-26": 57.81555661579652, + "2023-10-27": 44.854382915133584, + "2024-02-02": 48.52521060537398, + "2023-09-14": 42.35163331760392, + "2024-01-27": 53.3803355199812, + "2024-03-30": 63.49678662406507, + "2023-11-22": 57.62020637731047, + "2023-09-28": 42.98991427420072, + "2024-06-04": 47.81062113274711, + "2023-11-16": 58.33689673093067, + "2024-06-26": 41.487532299205235, + "2024-01-18": 54.321490383383924, + "2023-08-26": 42.92721141886841, + "2024-02-15": 50.55882968501872, + "2024-07-17": 42.84020343881772, + "2023-10-28": 44.966744000000006, + "2024-03-24": 62.58664253762386, + "2024-07-04": 40.41740749378179, + "2024-04-27": 52.23917386032401, + "2023-12-06": 57.214077995166186, + "2024-01-30": 52.4365623477856, + "2023-11-14": 60.962174480831074, + "2023-08-09": 47.88413152444599, + "2024-07-22": 41.596259143332304, + "2024-06-06": 48.82549461662453, + "2024-05-15": 48.93128342750388, + "2023-11-10": 61.10306458063839, + "2024-01-23": 45.94403529037838, + "2024-01-31": 51.479400000000005, + "2024-05-11": 49.68611265415219, + "2024-01-11": 54.98146142243239, + "2024-02-18": 52.390893788450256, + "2024-07-12": 37.00500020319141, + "2023-10-30": 45.243082797283, + "2023-12-17": 56.734686532273074, + "2024-02-26": 50.1239945043708, + "2024-06-17": 45.420916246738294, + "2024-01-05": 54.9818740614082, + "2024-06-14": 45.773895237189485, + "2023-08-23": 43.83915284534348, + "2024-06-13": 46.590578778459744, + "2023-08-28": 42.99586776237226, + "2024-03-11": 67.30900581038743, + "2023-08-01": 42.29178824657949, + "2024-03-14": 69.77691818285616, + "2024-02-21": 50.87, + "2023-12-13": 59.30407493503864, + "2024-02-27": 51.47411463694483, + "2023-08-13": 46.91822658503022, + "2024-03-31": 63.35815240838305, + "2023-12-09": 57.43809732602811, + "2024-04-02": 57.46662820717622, + "2024-02-06": 48.2343915481188, + "2024-05-31": 46.806055726197236, + "2024-04-09": 57.911193600405106, + "2024-05-25": 48.72015606922858, + "2023-11-04": 46.143059999999984, + "2024-04-20": 55.049704489978026, + "2024-01-15": 54.282566993020055, + "2023-12-28": 56.023818927441276, + "2024-06-09": 47.04498841616305, + "2024-02-07": 47.933339264728474, + "2023-09-25": 42.73992766420433, + "2024-03-19": 59.3444273397651, + "2024-03-10": 68.15245399999999, + "2024-05-02": 48.72878170045133, + "2023-09-02": 41.751525983609106, + "2024-07-24": 39.921613072840586, + "2024-01-12": 53.937492325069506, + "2024-04-19": 54.975812431192445, + "2023-11-29": 56.53679810746177, + "2023-10-15": 43.160422045571686, + "2024-05-28": 47.13467435083885, + "2023-11-30": 56.0696734019147, + "2024-01-24": 47.28153496006742, + "2023-08-11": 47.83426058722451, + "2024-02-11": 49.678871517093626, + "2024-06-08": 47.92351403389677, + "2023-11-15": 59.01626039388065, + "2023-12-16": 58.01530020766907, + "2024-03-29": 63.559623188969844, + "2024-04-04": 56.00342074022204, + "2024-06-25": 41.40021697555176, + "2024-07-26": 40.46669250439693, + "2023-07-28": 42.95837035251588, + "2024-01-20": 53.363154, + "2023-10-21": 43.771062566017676, + "2023-08-16": 45.676047887521094, + "2024-05-24": 48.826755670392025, + "2023-11-03": 45.3411977928498, + "2023-08-31": 43.60566661218981, + "2024-05-27": 48.27007165620672, + "2024-01-04": 54.448662564564756, + "2023-07-26": 42.644697908414734, + "2023-11-13": 59.27246190302048, + "2023-10-24": 46.51061434064206, + "2024-07-16": 41.955491522331954, + "2023-10-29": 44.91855481025695, + "2024-01-29": 52.11806612167186, + "2024-07-03": 41.93409312039677, + "2024-05-04": 50.953687342608376, + "2023-11-02": 45.64941204423773, + "2023-12-18": 54.38642493417342, + "2023-11-24": 58.139522647199115, + "2023-08-21": 43.17946403226666, + "2024-07-05": 35.91425280000001, + "2024-03-25": 64.6605874136506, + "2023-08-07": 44.96949486880003, + "2024-07-25": 39.201002769060935, + "2023-07-25": 42.53557087247415, + "2024-05-16": 49.706959036265, + "2024-06-07": 49.15773187976293, + "2023-08-14": 46.8836720256932, + "2024-06-18": 42.43139070437957, + "2024-05-01": 48.335096512294434, + "2024-02-16": 52.555685550169294, + "2024-06-22": 41.808944632515974, + "2024-07-06": 36.90369, + "2024-03-05": 56.132907423240134, + "2024-04-06": 57.37717158977353, + "2023-12-23": 55.571306656925564, + "2023-12-14": 59.36933484653762, + "2024-02-03": 48.93000598629881, + "2024-06-27": 41.96794921896277, + "2023-12-26": 54.84481853360325, + "2023-11-09": 58.579651683497154, + "2023-10-14": 43.31673311957571, + "2023-08-19": 42.45825013823047, + "2024-05-09": 50.23041299023635, + "2024-01-17": 54.8121479776721, + "2024-04-23": 55.451597482185285, + "2023-08-08": 46.120319550840804, + "2023-08-17": 43.628464046169796, + "2024-04-14": 52.256068049338786, + "2024-07-22T13": 41.405796, + "2024-07-25T10": 39.335834, + "2024-07-26T06": 40.4919, + "2024-07-24T14": 40.206030000000005, + "2024-07-21T20": 42.412572846752504, + "2024-07-21T07": 42.66236849999999, + "2024-07-21T14": 42.464433, + "2024-07-22T23": 41.132335999999995, + "2024-07-24T07": 39.795381162059, + "2024-07-20T11": 43.08109940000001, + "2024-07-26T08": 40.5035184, + "2024-07-25T20": 39.32405794075439, + "2024-07-21T02": 43.002037200000004, + "2024-07-20T04": 43.0602288, + "2024-07-20T03": 43.039359000000005, + "2024-07-25T13": 39.2274432, + "2024-07-21T06": 42.62235689999999, + "2024-07-20T12": 42.720496000000004, + "2024-07-24T02": 39.9603996, + "2024-07-24T17": 39.9096009, + "2024-07-25T06": 38.5499744, + "2024-07-25T22": 39.7400625, + "2024-07-22T07": 41.5162265, + "2024-07-22T22": 41.1635795, + "2024-07-26T03": 40.393536, + "2024-07-23T01": 41.314131, + "2024-07-24T03": 40.172466178873464, + "2024-07-23T21": 39.91599713486645, + "2024-07-19T20": 43.529579500000004, + "2024-07-23T22": 40.02517105270139, + "2024-07-21T23": 42.59340720000001, + "2024-07-19T16": 43.328663999999996, + "2024-07-22T20": 41.5457814, + "2024-07-23T10": 40.7795922, + "2024-07-19T17": 43.505655, + "2024-07-22T09": 41.628, + "2024-07-24T04": 40.181205399999996, + "2024-07-22T06": 41.9325158, + "2024-07-24T21": 39.676032, + "2024-07-20T21": 42.869710999999995, + "2024-07-21T15": 42.5440349, + "2024-07-20T09": 43.1337105, + "2024-07-25T14": 39.1758916, + "2024-07-19T11": 42.6210477, + "2024-07-23T20": 39.917981999999995, + "2024-07-25T03": 38.5526736, + "2024-07-20T01": 42.94146, + "2024-07-25T23": 39.80605871945019, + "2024-07-20T16": 42.8354152, + "2024-07-22T15": 41.203708, + "2024-07-23T16": 40.204398223233596, + "2024-07-22T02": 42.53045318835878, + "2024-07-21T04": 42.761970000000005, + "2024-07-23T09": 40.8, + "2024-07-20T10": 43.1598444, + "2024-07-22T19": 41.62739784396201, + "2024-07-20T00": 43.264066564938865, + "2024-07-20T19": 42.99977079999999, + "2024-07-26T05": 40.371188343498424, + "2024-07-19T14": 43.07, + "2024-07-21T00": 42.912440999999994, + "2024-07-22T12": 41.6933352, + "2024-07-24T06": 40.0004, + "2024-07-25T01": 39.25274312489308, + "2024-07-20T22": 42.8784298, + "2024-07-19T15": 43.0308606, + "2024-07-21T13": 42.4331502, + "2024-07-25T07": 38.8602825, + "2024-07-21T08": 42.8024091, + "2024-07-23T06": 40.366054000000005, + "2024-07-22T16": 41.306195, + "2024-07-24T11": 40.08, + "2024-07-24T01": 40.05080423991296, + "2024-07-23T00": 41.272377999999996, + "2024-07-19T12": 42.5602089, + "2024-07-25T17": 39.4217197, + "2024-07-25T19": 39.2186233, + "2024-07-19T21": 43.5421952, + "2024-07-23T08": 40.521215600000005, + "2024-07-21T21": 42.36804839999999, + "2024-07-21T11": 42.6615155, + "2024-07-22T14": 41.0561575, + "2024-07-20T23": 42.952452599999994, + "2024-07-20T08": 43.18158, + "2024-07-20T02": 42.9093005, + "2024-07-24T05": 40.213216800000005, + "2024-07-24T16": 39.9435946, + "2024-07-21T01": 43.01591, + "2024-07-24T13": 39.99333900973955, + "2024-07-25T04": 38.784569399999995, + "2024-07-19T13": 42.701458, + "2024-07-25T12": 39.2154849, + "2024-07-19T22": 43.551329700000004, + "2024-07-26T07": 40.5222993, + "2024-07-25T02": 38.79224, + "2024-07-21T12": 42.642789, + "2024-07-23T18": 39.9143901, + "2024-07-23T11": 40.66081319999999, + "2024-07-19T10": 42.601051899999995, + "2024-07-19T19": 43.61744, + "2024-07-25T11": 39.3446496, + "2024-07-22T08": 41.60381175810502, + "2024-07-23T19": 39.89215879799149, + "2024-07-22T21": 41.2919712, + "2024-07-21T09": 42.82998904, + "2024-07-21T22": 42.534253, + "2024-07-22T04": 42.3833904, + "2024-07-25T16": 39.3313452, + "2024-07-19T23": 43.44171, + "2024-07-26T09": 40.48671108, + "2024-07-20T06": 43.26768640901724, + "2024-07-23T02": 41.50332, + "2024-07-23T14": 40.586492799999995, + "2024-07-23T03": 41.5429078, + "2024-07-25T08": 39.4285624, + "2024-07-24T15": 40.0976171, + "2024-07-19T09": 42.721453999999994, + "2024-07-20T15": 42.9032959, + "2024-07-23T23": 40.083607199999996, + "2024-07-23T12": 40.7373314, + "2024-07-22T10": 41.740417400000005, + "2024-07-21T10": 42.7815479, + "2024-07-22T00": 42.62420083337919, + "2024-07-24T22": 39.6828558, + "2024-07-24T19": 39.6096039, + "2024-07-24T09": 40.05, + "2024-07-23T04": 41.2081755535248, + "2024-07-23T05": 40.542432399999996, + "2024-07-25T18": 39.4197482, + "2024-07-25T15": 39.0614046, + "2024-07-26T01": 40.14197, + "2024-07-22T01": 42.40508799999999, + "2024-07-26T02": 40.321934, + "2024-07-24T18": 39.616628655287016, + "2024-07-21T19": 42.2364658, + "2024-07-25T05": 38.6207288, + "2024-07-22T18": 41.548308, + "2024-07-24T00": 40.11683686272113, + "2024-07-24T08": 39.6496035, + "2024-07-24T20": 39.849601500000006, + "2024-07-24T23": 39.612868399999996, + "2024-07-22T17": 41.409112642463654, + "2024-07-21T17": 42.4682535, + "2024-07-24T12": 40.091202700000004, + "2024-07-23T13": 40.4664736, + "2024-07-21T05": 42.7019532, + "2024-07-20T05": 43.1807168, + "2024-07-21T03": 43.002037200000004, + "2024-07-26T00": 40.0515874, + "2024-07-20T20": 42.935167199999995, + "2024-07-22T03": 42.54229352497417, + "2024-07-25T21": 39.65625465636222, + "2024-07-21T16": 42.515724999999996, + "2024-07-20T17": 42.917159999999996, + "2024-07-22T11": 41.70648349068369, + "2024-07-25T00": 39.932998486139994, + "2024-07-20T13": 42.7379424, + "2024-07-23T07": 40.20402, + "2024-07-22T05": 42.102526, + "2024-07-20T07": 43.22944450000001, + "2024-07-21T18": 42.0480729, + "2024-07-23T17": 39.873987, + "2024-07-20T14": 42.8962944, + "2024-07-26T04": 40.4048124937784, + "2024-07-24T10": 40.05, + "2024-07-20T18": 43.011495, + "2024-07-23T15": 40.7269224, + "2024-07-19T18": 43.441291799999995, + "2024-07-25T09": 39.6157332, + "latest": 34.21, + "2024-07-26T10": 40.400989164330866, + "2024-07-26T11": 40.4111390477925, + "2024-07-26T12": 40.363137099999996, + "2024-07-26T13": 40.49352, + "2024-07-26T14": 40.51714988453703, + "2024-07-26T17": 40.82362837847895, + "2024-07-26T16": 40.857957, + "2024-07-26T15": 40.6067512, + "2024-07-26T18": 40.86, + "2024-07-27": 41.3739442574084, + "2024-07-28": 40.73918520000001, + "2024-07-28T05": 40.6295937, + "2024-07-26T21": 40.85, + "2024-07-27T02": 41.069033361355224, + "2024-07-28T01": 41.07831104847044, + "2024-07-27T10": 41.293303200000004, + "2024-07-28T02": 41.167941500000005, + "2024-07-27T19": 41.391906049688046, + "2024-07-27T09": 41.323718799999995, + "2024-07-27T06": 41.4308286, + "2024-07-27T18": 41.352923804099554, + "2024-07-26T22": 40.8916356, + "2024-07-27T13": 41.5654028, + "2024-07-27T12": 41.3170227, + "2024-07-27T16": 41.464146, + "2024-07-27T05": 41.360827199999996, + "2024-07-26T23": 41.00164, + "2024-07-26T20": 40.840076403833706, + "2024-07-27T08": 41.2920645, + "2024-07-28T03": 41.2091758, + "2024-07-27T01": 41.04486262997219, + "2024-07-28T09": 40.49919, + "2024-07-28T10": 40.668779900000004, + "2024-07-27T00": 41.00164, + "2024-07-28T00": 40.9595904, + "2024-07-27T04": 41.37158704023433, + "2024-07-27T14": 41.734173, + "2024-07-27T07": 41.53, + "2024-07-27T11": 41.19962485474116, + "2024-07-27T22": 41.43984602157371, + "2024-07-27T03": 41.20041200000001, + "2024-07-27T20": 41.31206550000001, + "2024-07-27T23": 41.1071223, + "2024-07-28T08": 40.4591908, + "2024-07-27T21": 41.4387568, + "2024-07-28T07": 40.49919, + "2024-07-27T15": 41.574157, + "2024-07-26T19": 40.93, + "2024-07-28T04": 41.099178, + "2024-07-28T06": 40.5791884, + "2024-07-27T17": 41.314957199999995, + "2024-07-29": 40.78480939830667, + "2024-07-28T20": 40.787536769764564, + "2024-07-28T16": 40.709592900000004, + "2024-07-29T07": 40.693869876659356, + "2024-07-28T23": 40.6191876, + "2024-07-28T15": 40.7495925, + "2024-07-28T18": 40.84350101885934, + "2024-07-29T04": 41.1750584, + "2024-07-29T06": 40.864801029864886, + "2024-07-28T21": 40.72075400954909, + "2024-07-29T03": 41.145473499999994, + "2024-07-28T12": 40.70896279591303, + "2024-07-29T05": 40.695802911071, + "2024-07-28T17": 40.8155098, + "2024-07-29T00": 40.75, + "2024-07-29T01": 40.57, + "2024-07-28T22": 40.598782, + "2024-07-28T19": 40.865545467786575, + "2024-07-28T14": 40.6863553061104, + "2024-07-29T02": 40.8771384, + "2024-07-29T08": 40.661866, + "2024-07-28T11": 40.6383744, + "2024-07-28T13": 40.75518488, + "2024-07-29T09": 40.8310152, + "2024-07-29T10": 41.1113648, + "2024-07-29T11": 41.1113648, + "2024-07-29T12": 41.0263073, + "2024-07-29T13": 41.0263073, + "2024-07-30": 40.22134785931988, + "2024-07-29T23": 40.3547532, + "2024-07-29T18": 40.121974, + "2024-07-29T21": 40.32888787306521, + "2024-07-29T22": 40.3447545, + "2024-07-29T17": 40.15885805643798, + "2024-07-29T15": 40.709412799999996, + "2024-07-30T01": 40.2811362, + "2024-07-29T19": 40.1835696, + "2024-07-30T04": 40.151968, + "2024-07-29T14": 41.073838, + "2024-07-29T20": 40.215575799999996, + "2024-07-30T03": 40.1643762, + "2024-07-30T00": 40.223160899999996, + "2024-07-29T16": 40.2971008, + "2024-07-30T02": 40.121974, + "2024-07-30T09": 40.1311692, + "2024-07-30T08": 40.1787468, + "2024-07-30T06": 40.14575489016068, + "2024-07-30T05": 40.142371499999996, + "2024-07-30T07": 40.2695272, + "2024-07-30T10": 40.15757376, + "2024-07-30T11": 40.2015559, + "2024-07-30T12": 40.371924, + "2024-07-30T13": 40.341930000000005, + "2024-07-31": 39.7864658397509, + "2024-07-31T00": 40.159957500000004, + "2024-07-31T05": 39.9512088, + "2024-07-30T23": 40.17850740519646, + "2024-07-30T19": 40.1951223, + "2024-07-30T16": 40.61537644610198, + "2024-07-30T17": 40.3374915, + "2024-07-30T18": 40.32316699618613, + "2024-07-30T20": 40.19550735491889, + "2024-07-30T15": 40.456240199999996, + "2024-07-31T03": 40.1215727, + "2024-07-30T21": 40.23932567650516, + "2024-07-31T01": 40.2407425, + "2024-07-31T07": 40.2675132, + "2024-07-31T06": 40.278315899999996, + "2024-07-31T02": 40.24195, + "2024-07-30T22": 40.23532837, + "2024-07-30T14": 40.171964, + "2024-07-31T04": 39.9916, + "2024-07-31T08": 40.101946, + "2024-07-31T11": 39.7681155, + "2024-07-31T09": 40.0443766, + "2024-07-31T10": 39.9008384, + "2024-07-31T12": 39.747728800000004, + "2024-08-01": 38.87936584548817, + "2024-07-31T14": 39.742319615380744, + "2024-07-31T23": 39.447372800000004, + "2024-07-31T13": 39.7912893, + "2024-07-31T21": 39.395024199999995, + "2024-08-01T01": 39.1762835, + "2024-07-31T18": 39.6569089, + "2024-07-31T19": 39.48657, + "2024-07-31T16": 39.715675807112696, + "2024-08-01T02": 38.97972, + "2024-07-31T22": 39.577727100000004, + "2024-07-31T20": 39.2646808, + "2024-07-31T17": 39.7644858, + "2024-08-01T00": 39.3170211, + "2024-07-31T15": 39.68872095, + "2024-08-01T07": 39.1123915, + "2024-08-01T06": 39.0208704, + "2024-08-01T05": 38.7463503, + "2024-08-01T04": 38.60700262437732, + "2024-08-01T03": 38.9193618, + "2024-08-01T08": 39.1396368, + "2024-08-01T09": 39.197252399999996, + "2024-08-01T10": 39.1801207936061, + "2024-08-01T11": 39.1492399, + "2024-08-01T12": 39.149631600000006, + "2024-08-01T13": 39.1112176, + "2024-08-01T14": 38.923645199999996, + "2024-08-01T15": 38.250865000000005, + "2024-08-02": 38.11717751798045, + "2024-08-02T00": 39.08513104914432, + "2024-08-01T20": 38.7708019, + "2024-08-01T21": 38.954129200000004, + "2024-08-02T04": 38.5748649, + "2024-08-01T19": 38.45765, + "2024-08-01T16": 38.06358880624459, + "2024-08-02T02": 38.5264528, + "2024-08-01T17": 38.0891228, + "2024-08-01T23": 39.063637, + "2024-08-02T01": 38.8753701, + "2024-08-01T22": 39.067547000000005, + "2024-08-01T18": 38.09493590553488, + "2024-08-02T03": 38.5345156, + "2024-08-02T05": 38.4565137, + "2024-08-02T06": 38.22352118269535, + "2024-08-02T07": 38.268977, + "2024-08-02T08": 38.268210999999994, + "2024-08-02T09": 38.4369158, + "2024-08-02T10": 38.3008692, + "2024-08-02T11": 38.167912, + "2024-08-02T12": 38.152892200000004, + "2024-08-02T13": 38.3400714, + "2024-08-02T14": 38.32987489892597, + "2024-08-02T15": 37.563152, + "2024-08-03": 37.52073398618764, + "2024-08-02T16": 37.7378955, + "2024-08-02T22": 37.067694599999996, + "2024-08-02T23": 37.102448, + "2024-08-03T00": 36.751791999999995, + "2024-08-03T01": 36.3652157, + "2024-08-03T03": 36.87702224567068, + "2024-08-02T19": 37.5290487, + "2024-08-02T18": 37.54878969787046, + "2024-08-02T21": 37.30266, + "2024-08-02T17": 37.59498686250172, + "2024-08-02T20": 37.53004428493083, + "2024-08-03T02": 36.6615428, + "2024-08-03T06": 37.27354243788569, + "2024-08-03T19": 37.6306252, + "2024-08-03T10": 37.516956, + "2024-08-03T09": 37.4965983, + "2024-08-03T15": 37.065325023502645, + "2024-08-03T22": 37.9183742, + "2024-08-03T05": 37.158708000000004, + "2024-08-03T08": 37.4536347, + "2024-08-03T14": 37.485618499999994, + "2024-08-03T18": 37.813512, + "2024-08-03T17": 37.942661599999994, + "2024-08-03T21": 37.66738599999999, + "2024-08-03T12": 37.631378399999996, + "2024-08-03T20": 37.874607, + "2024-08-03T04": 37.0425492, + "2024-08-03T16": 37.701702499999996, + "2024-08-03T11": 37.54243784, + "2024-08-03T07": 37.3999392, + "2024-08-03T13": 37.634391199999996, + "2024-08-04": 37.57650910904816, + "2024-08-03T23": 37.63891039999999, + "2024-08-04T17": 36.060045300000006, + "2024-08-04T13": 37.56121, + "2024-08-04T06": 37.8864958, + "2024-08-04T12": 37.571205000000006, + "2024-08-04T10": 37.5504636, + "2024-08-04T16": 36.7135472, + "2024-08-04T15": 36.54114438232656, + "2024-08-04T00": 37.577816000000006, + "2024-08-04T11": 37.49094789364591, + "2024-08-04T01": 37.467880900000004, + "2024-08-04T03": 37.6666322, + "2024-08-04T04": 37.67707900402762, + "2024-08-04T07": 37.60035170606573, + "2024-08-04T08": 37.6570152, + "2024-08-04T18": 36.05516450406835, + "2024-08-04T09": 37.66493417215778, + "2024-08-04T02": 37.73734399999999, + "2024-08-04T05": 37.74815818063034, + "2024-08-04T14": 37.0140771, + "2024-08-05": 32.685818360452906, + "2024-08-05T01": 32.50718829861788, + "2024-08-04T19": 36.0200979450026, + "2024-08-04T22": 35.95972070093999, + "2024-08-05T03": 33.0679428157605, + "2024-08-05T02": 33.21352059651777, + "2024-08-04T23": 36.05016787950195, + "2024-08-05T00": 35.08064538422881, + "2024-08-05T04": 33.0178807653656, + "2024-08-05T06": 33.13893283598277, + "2024-08-04T20": 36.159618797023334, + "2024-08-05T05": 33.249817581032936, + "2024-08-04T21": 36.089768017334634, + "2024-08-05T07": 31.11743159451324, + "2024-08-05T08": 32.11821515637508, + "2024-08-05T09": 31.85806291501933, + "2024-08-05T10": 31.886492283773855, + "2024-08-05T11": 31.467203069806992, + "2024-08-05T12": 31.49209365935276, + "2024-08-05T13": 31.351517398692824, + "2024-08-05T14": 31.945377967977954, + "2024-08-05T15": 33.601155399999996, + "2024-08-06": 34.21246450388806, + "2024-08-05T19": 32.69324192499336, + "2024-08-05T20": 32.783278, + "2024-08-05T21": 32.935927400000004, + "2024-08-06T02": 34.553125200000004, + "2024-08-05T18": 33.115226, + "2024-08-05T23": 32.80656, + "2024-08-05T16": 33.613513, + "2024-08-06T05": 34.2101721, + "2024-08-05T17": 33.729888900000006, + "2024-08-06T00": 33.70674, + "2024-08-06T04": 34.2253945, + "2024-08-06T03": 34.393408199999996, + "2024-08-05T22": 33.0356151, + "2024-08-06T01": 34.280281, + "2024-08-06T06": 34.3750755, + "2024-08-06T07": 34.43598785727901, + "2024-08-06T08": 34.0297258, + "2024-08-06T09": 33.199957, + "2024-08-06T10": 33.2206272, + "2024-08-06T11": 33.468365000000006, + "2024-08-06T12": 33.6724542, + "2024-08-06T13": 33.5894024, + "2024-08-06T14": 33.9174602 + }, + "USD ethereum/erc20/omg": { + "2023-07-30": 0.6021870239440054, + "2023-10-23": 0.4798423845591898, + "2023-07-27": 0.5973065449840933, + "2023-08-20": 0.48412631862698047, + "2024-02-23": 0.7008473669943622, + "2024-04-05": 0.9452831313577316, + "2023-12-19": 0.8229198251302093, + "2024-05-17": 0.6611387805877734, + "2023-08-06": 0.5565848645224617, + "2023-12-02": 0.6480772215186319, + "2024-06-11": 0.4315286008965427, + "2024-01-08": 0.6494552213310112, + "2023-10-31": 0.5709884823165877, + "2023-08-29": 0.49991323103633106, + "2023-09-09": 0.46186426456479923, + "2023-10-01": 0.5150373268870788, + "2024-03-07": 1.1656494016604335, + "2023-10-12": 0.43027622076564315, + "2024-04-22": 0.7004800011089948, + "2023-07-29": 0.6039880901076013, + "2024-04-26": 0.6571095043605546, + "2024-06-24": 0.31842305601327814, + "2023-09-26": 0.4468585237975344, + "2023-08-24": 0.47924472815763247, + "2023-12-05": 0.6714570866732564, + "2024-02-19": 0.724882695271683, + "2024-01-07": 0.6998629901003162, + "2024-04-28": 0.6646948369158099, + "2023-07-31": 0.5928868755316783, + "2023-10-18": 0.44166276879111177, + "2023-10-07": 0.4654516183108227, + "2024-06-28": 0.34416549901625215, + "2024-05-19": 0.6520621792389861, + "2024-05-12": 0.6257645014888247, + "2024-04-29": 0.634922388025212, + "2023-09-16": 0.46065865835692216, + "2023-08-25": 0.4687915754612495, + "2024-03-09": 1.2026457095243288, + "2023-09-05": 0.4637262360592271, + "2024-04-25": 0.6608211796671645, + "2023-08-12": 0.5716566836405675, + "2024-06-12": 0.412049043937836, + "2023-09-01": 0.46981181504265435, + "2024-05-30": 0.7298278977792405, + "2024-06-05": 0.4543300980837429, + "2023-09-08": 0.4637944635052285, + "2024-03-22": 1.0025574875780474, + "2023-08-10": 0.5608791638054128, + "2023-11-18": 0.6482532541878113, + "2023-09-13": 0.43095990081916524, + "2023-12-07": 0.6866336776158437, + "2024-06-30": 0.3406046509641052, + "2024-06-20": 0.33535102080193646, + "2024-07-08": 0.28017686247088613, + "2024-07-07": 0.28790300019455806, + "2023-09-07": 0.4487348617377453, + "2024-03-26": 1.12238759742886, + "2024-05-14": 0.6056907835606157, + "2024-06-16": 0.38529437119470217, + "2024-02-22": 0.7007887071948549, + "2024-04-15": 0.6552338482180435, + "2023-12-30": 0.8409951252056381, + "2023-09-17": 0.4421558326489337, + "2024-04-17": 0.6313827848230231, + "2024-02-12": 0.6509627000000001, + "2023-10-26": 0.542777517841144, + "2024-01-03": 0.7596947683095855, + "2024-05-07": 0.6599999314998889, + "2024-01-22": 0.7013628886093369, + "2024-07-13": 0.2826591559660892, + "2023-10-03": 0.4796771251803428, + "2024-05-26": 0.72174008, + "2024-04-30": 0.5987924228865803, + "2024-07-09": 0.278100373889754, + "2023-12-24": 0.9024554633340626, + "2023-09-24": 0.446426784, + "2024-01-16": 0.7045203795450423, + "2023-10-17": 0.4647898498415527, + "2024-04-24": 0.6999448986284906, + "2024-03-18": 1.1025918294021977, + "2024-02-17": 0.6856380284608083, + "2023-12-27": 0.8972104264949219, + "2023-09-03": 0.4615378122523935, + "2024-02-24": 0.7748891544736842, + "2024-01-06": 0.7054840895016142, + "2024-03-20": 0.9739174263778394, + "2023-11-21": 0.6267214559764569, + "2023-12-25": 0.9151680471013107, + "2023-09-22": 0.44076579167325575, + "2024-03-01": 0.9319492562065702, + "2023-10-02": 0.5012732723464499, + "2024-03-27": 1.1075001146849437, + "2024-05-06": 0.6693334650000001, + "2024-06-19": 0.3408696144566585, + "2023-08-30": 0.4997493513756123, + "2023-10-06": 0.4620908755372596, + "2023-10-13": 0.4352473622173876, + "2024-02-05": 0.6183745397823524, + "2023-12-10": 0.7270791779314972, + "2023-11-23": 0.6115970673097759, + "2023-08-04": 0.5409963873337618, + "2024-05-13": 0.6138463908815015, + "2024-01-13": 0.712446686810365, + "2024-03-28": 1.087787525626595, + "2023-08-05": 0.5489831498903264, + "2024-02-09": 0.644835165246444, + "2023-10-09": 0.4492649000648295, + "2024-01-09": 0.6774378570628495, + "2024-05-10": 0.6528160052435504, + "2023-08-18": 0.4667181034778262, + "2023-11-05": 0.6227108106570027, + "2024-04-18": 0.6342441389486093, + "2023-10-22": 0.4632186729151009, + "2023-11-01": 0.5516438871584808, + "2024-05-20": 0.6693334650000001, + "2023-12-08": 0.7081262792730713, + "2024-04-12": 0.7999991636967527, + "2024-03-12": 1.2491258822091909, + "2024-07-02": 0.3388580344318249, + "2023-09-11": 0.4219338827154359, + "2024-07-20": 0.2881382322993301, + "2024-03-03": 1.176572230556992, + "2024-02-04": 0.6274320239802491, + "2024-01-28": 0.66563343, + "2023-11-07": 0.6312011528784167, + "2023-11-25": 0.6389144315372213, + "2024-06-29": 0.3406607524081435, + "2024-07-21": 0.2836932683880006, + "2024-02-25": 0.759069242746388, + "2023-12-01": 0.6401358670152356, + "2024-01-26": 0.6506004467423574, + "2023-08-03": 0.5457852530850438, + "2024-02-28": 0.8604476274799051, + "2023-09-15": 0.4422081584089874, + "2023-12-21": 0.8166126810075475, + "2024-06-01": 0.7076860578264124, + "2024-03-06": 1.1245235028160818, + "2024-07-15": 0.29754585055867444, + "2023-09-30": 0.5090117440524066, + "2023-12-12": 0.7203427311516073, + "2023-10-04": 0.45949714314985995, + "2024-02-13": 0.6611708297016429, + "2023-09-20": 0.45153161616868837, + "2024-04-16": 0.6350928080706761, + "2023-09-19": 0.45908291884915586, + "2023-09-29": 0.4909459926385382, + "2023-09-12": 0.43299101848521476, + "2024-03-02": 0.9921827571230336, + "2024-06-02": 0.705219123275883, + "2023-10-08": 0.4690720885605716, + "2023-11-20": 0.652794104655945, + "2023-12-20": 0.823289119461263, + "2023-12-31": 0.8477511047624886, + "2023-11-06": 0.6223256829947429, + "2023-08-22": 0.4731132486658533, + "2024-05-29": 0.7482817032557736, + "2024-03-17": 1.089393096896271, + "2024-07-23": 0.2782432923040005, + "2024-07-10": 0.28540000111187336, + "2023-09-18": 0.44262035671029293, + "2024-07-01": 0.34503105951473595, + "2024-04-01": 1.0583245113517057, + "2024-05-21": 0.7178544969541407, + "2024-01-19": 0.6592938667911297, + "2023-11-11": 0.6623468275126699, + "2023-09-23": 0.44519999443061775, + "2023-08-15": 0.559434027226504, + "2024-07-18": 0.2825949233791899, + "2023-11-19": 0.6423274199999999, + "2024-01-25": 0.6305010686603368, + "2024-03-13": 1.3038158592895948, + "2024-01-21": 0.7625410241997684, + "2024-02-01": 0.628628116763399, + "2024-03-15": 1.1693893185131579, + "2024-03-16": 1.137290732262168, + "2024-06-23": 0.3236019805873622, + "2023-11-27": 0.6273437778673452, + "2024-01-10": 0.7002418123783983, + "2024-06-03": 0.515581438794437, + "2024-01-02": 0.8715997952693919, + "2024-07-14": 0.2905987703598415, + "2023-10-25": 0.5313382333709638, + "2024-01-01": 0.8280181885083238, + "2024-02-14": 0.6784205019542794, + "2023-09-04": 0.45268486607971803, + "2023-09-06": 0.44973819014597594, + "2024-04-03": 0.9773887876020864, + "2024-06-15": 0.3864301282224, + "2023-11-28": 0.6236643026598008, + "2023-12-03": 0.6536231640150361, + "2023-08-02": 0.5525844497944659, + "2024-07-11": 0.2784069900765897, + "2023-08-27": 0.47809579172934413, + "2024-04-11": 0.9639876816084944, + "2023-10-20": 0.44918196819463846, + "2023-10-10": 0.4439363090568949, + "2024-05-03": 0.6511351310875819, + "2024-03-08": 1.18671278776449, + "2024-01-14": 0.7098117806189507, + "2023-12-15": 0.8773095027358676, + "2023-10-19": 0.437138416286939, + "2024-02-08": 0.6275550759715988, + "2023-11-12": 0.675169283762982, + "2023-12-22": 0.8312312110514536, + "2024-06-21": 0.3322874896545683, + "2024-03-23": 1.0219226580197303, + "2023-09-27": 0.4522833134235862, + "2024-03-04": 1.166102021350504, + "2023-09-10": 0.4408897983796212, + "2024-04-13": 0.7011893585224831, + "2024-02-29": 0.8984594931045795, + "2023-09-21": 0.44267828677303916, + "2024-04-21": 0.691195490958573, + "2023-11-08": 0.6400533285192231, + "2024-07-19": 0.2838998241552959, + "2023-12-29": 0.8624531621049871, + "2023-12-04": 0.6651504298815348, + "2024-04-10": 0.9539320928208048, + "2024-05-08": 0.6445133833548925, + "2023-10-11": 0.43310469608748065, + "2024-05-05": 0.6510936206685166, + "2024-03-21": 1.0317358882700018, + "2024-05-23": 0.7026203807493134, + "2024-04-08": 1.0179898207489264, + "2024-05-18": 0.6631856433726965, + "2024-06-10": 0.44081343827230973, + "2023-10-05": 0.46245749439675937, + "2023-10-16": 0.47089372811257546, + "2024-05-22": 0.7198654133845512, + "2024-02-10": 0.6523503840317899, + "2024-04-07": 0.9706139606031334, + "2024-02-20": 0.7115020065083311, + "2023-11-17": 0.6565950075287526, + "2023-12-11": 0.6913731572007105, + "2023-11-26": 0.643403491869191, + "2023-10-27": 0.5311214684280741, + "2024-02-02": 0.6384738318169496, + "2023-09-14": 0.4351577811019977, + "2024-01-27": 0.6659217683328678, + "2024-03-30": 1.1338230314627489, + "2023-11-22": 0.5899692070828103, + "2023-09-28": 0.5038473913773129, + "2024-06-04": 0.46890961068667847, + "2023-11-16": 0.6929310406344907, + "2024-06-26": 0.3436967133606448, + "2024-01-18": 0.678269436747291, + "2023-08-26": 0.47534438202086976, + "2024-02-15": 0.6935326881808676, + "2024-07-17": 0.28406765763773595, + "2023-10-28": 0.5551217158950064, + "2024-03-24": 1.0221084799209266, + "2024-07-04": 0.3089778208835241, + "2024-04-27": 0.6467183734484163, + "2023-12-06": 0.6819107471748782, + "2024-01-30": 0.6654563738072334, + "2023-11-14": 0.669770723838045, + "2023-08-09": 0.5606971352161518, + "2024-07-22": 0.28304259046797403, + "2024-06-06": 0.44253970361520645, + "2024-05-15": 0.6240163674384308, + "2023-11-10": 0.6381364413561513, + "2024-01-23": 0.6359637500729479, + "2024-01-31": 0.6397440000000001, + "2024-05-11": 0.6428203307166973, + "2024-01-11": 0.7618588169086185, + "2024-02-18": 0.7045464983693082, + "2024-07-12": 0.2795377718051892, + "2023-10-30": 0.5612622984204179, + "2023-12-17": 0.8290420095034637, + "2024-02-26": 0.7616606986139027, + "2024-06-17": 0.3828698236630691, + "2024-01-05": 0.7438665269356518, + "2024-06-14": 0.3864664924701797, + "2023-08-23": 0.48077137525331076, + "2024-06-13": 0.4069177159406247, + "2023-08-28": 0.47983872837349834, + "2024-03-11": 1.225425349422797, + "2023-08-01": 0.5521622270718627, + "2024-03-14": 1.2900457718167189, + "2024-02-21": 0.6825, + "2023-12-13": 0.7036923774526748, + "2024-02-27": 0.787669007845805, + "2023-08-13": 0.5761331241043481, + "2024-03-31": 1.1131432321878783, + "2023-12-09": 0.7429609325218524, + "2024-04-02": 0.9702807547599814, + "2024-02-06": 0.6114218646944637, + "2024-05-31": 0.7133050990842449, + "2024-04-09": 1.0100208174133856, + "2024-05-25": 0.7398505128509985, + "2023-11-04": 0.610341223294439, + "2024-04-20": 0.6635556337166695, + "2024-01-15": 0.6979472754782895, + "2023-12-28": 0.9023836548670006, + "2024-06-09": 0.4412667871020183, + "2024-02-07": 0.6144582356120739, + "2023-09-25": 0.44349548331791905, + "2024-03-19": 0.9865082557958108, + "2024-03-10": 1.1784990737421908, + "2024-05-02": 0.629084271860331, + "2023-09-02": 0.4659054384186265, + "2024-07-24": 0.2810113556468923, + "2024-01-12": 0.7419655043604296, + "2024-04-19": 0.656659995706847, + "2023-11-29": 0.6364322839414408, + "2023-10-15": 0.46300146280231735, + "2024-05-28": 0.7382900430810242, + "2023-11-30": 0.6347852046597304, + "2024-01-24": 0.643512584248307, + "2023-08-11": 0.5631945402568336, + "2024-02-11": 0.6512473894004823, + "2024-06-08": 0.44770796898124837, + "2023-11-15": 0.6851887859289534, + "2023-12-16": 0.8246541428102961, + "2024-03-29": 1.121169749722033, + "2024-04-04": 0.9626306862009232, + "2024-06-25": 0.34417553629554537, + "2024-07-26": 0.2642736030023533, + "2023-07-28": 0.6048362593267886, + "2024-01-20": 0.6939219924182133, + "2023-10-21": 0.4611749504257661, + "2023-08-16": 0.5296323733965941, + "2024-05-24": 0.7147027454845957, + "2023-11-03": 0.5562472065503191, + "2023-08-31": 0.4944545321697166, + "2024-05-27": 0.7445383775639591, + "2024-01-04": 0.7726905790412498, + "2023-07-26": 0.5862271133341984, + "2023-11-13": 0.6712536568599397, + "2023-10-24": 0.5183068461138417, + "2024-07-16": 0.3051126589010788, + "2023-10-29": 0.5561059112559088, + "2024-01-29": 0.6628208874818491, + "2024-07-03": 0.3381491767222278, + "2024-05-04": 0.6611256935745944, + "2023-11-02": 0.5825477237203512, + "2023-12-18": 0.7813560370177363, + "2023-11-24": 0.6274161014876365, + "2023-08-21": 0.4818747665138219, + "2024-07-05": 0.257558784, + "2024-03-25": 1.0823446098633966, + "2023-08-07": 0.5582319560606025, + "2024-07-25": 0.2502333865235212, + "2023-07-25": 0.5881387585140877, + "2024-05-16": 0.6465350603264925, + "2024-06-07": 0.4508705497337669, + "2023-08-14": 0.5762815740371758, + "2024-06-18": 0.33393224541146976, + "2024-05-01": 0.5933260452222131, + "2024-02-16": 0.6980411537855152, + "2024-06-22": 0.33014163408448743, + "2024-07-06": 0.27982798, + "2024-03-05": 1.1763203140019118, + "2024-04-06": 0.9572864922956352, + "2023-12-23": 0.8454763076179708, + "2023-12-14": 0.888139645278393, + "2024-02-03": 0.6377394038663664, + "2024-06-27": 0.34655276324823103, + "2023-12-26": 0.8839164919545173, + "2023-11-09": 0.6504971449934593, + "2023-10-14": 0.4420375361126835, + "2023-08-19": 0.4813227754077896, + "2024-05-09": 0.6550445698010324, + "2024-01-17": 0.6942795969131277, + "2024-04-23": 0.7052746928547831, + "2023-08-08": 0.5667054822092639, + "2023-08-17": 0.5056769911584408, + "2024-04-14": 0.6266781824127748, + "2024-07-22T13": 0.28338583977495985, + "2024-07-25T10": 0.2520335271276421, + "2024-07-26T06": 0.2638484872357869, + "2024-07-24T14": 0.28095632663984466, + "2024-07-21T20": 0.28528176924859405, + "2024-07-21T07": 0.28148456048394055, + "2024-07-21T14": 0.284396662, + "2024-07-22T23": 0.27668298, + "2024-07-24T07": 0.28518407087431996, + "2024-07-20T11": 0.28684048300000003, + "2024-07-26T08": 0.26751798979018204, + "2024-07-25T20": 0.24285484921592282, + "2024-07-21T02": 0.284479632, + "2024-07-20T04": 0.2912668311, + "2024-07-20T03": 0.289230095, + "2024-07-25T13": 0.2519567763356474, + "2024-07-21T06": 0.28198175099999995, + "2024-07-20T12": 0.28673756800000005, + "2024-07-24T02": 0.2796187108998409, + "2024-07-24T17": 0.27960130075372497, + "2024-07-25T06": 0.24975791420325266, + "2024-07-25T22": 0.24845852849533187, + "2024-07-22T07": 0.283542525, + "2024-07-22T22": 0.27709141, + "2024-07-26T03": 0.25930711700844394, + "2024-07-23T01": 0.27822782, + "2024-07-24T03": 0.28081684799999995, + "2024-07-23T21": 0.27853817215864857, + "2024-07-19T20": 0.2885778246067017, + "2024-07-23T22": 0.2762789758479075, + "2024-07-21T23": 0.28702296, + "2024-07-19T16": 0.28665732, + "2024-07-22T20": 0.28110678000000006, + "2024-07-23T10": 0.28299716999999996, + "2024-07-19T17": 0.2864672359, + "2024-07-22T09": 0.28241027599621166, + "2024-07-24T04": 0.28433108067268087, + "2024-07-22T06": 0.283417004, + "2024-07-24T21": 0.2709729, + "2024-07-20T21": 0.28393054799999995, + "2024-07-21T15": 0.284393819, + "2024-07-20T09": 0.2882210029228035, + "2024-07-25T14": 0.2502719698249849, + "2024-07-19T11": 0.281640843, + "2024-07-23T20": 0.2780556, + "2024-07-25T03": 0.2511700848545362, + "2024-07-20T01": 0.28814702599798087, + "2024-07-25T23": 0.24855367980740298, + "2024-07-20T16": 0.290504544, + "2024-07-22T15": 0.27902511, + "2024-07-23T16": 0.281347821, + "2024-07-22T02": 0.2899, + "2024-07-21T04": 0.2850798, + "2024-07-23T09": 0.284, + "2024-07-20T10": 0.28713201999999993, + "2024-07-22T19": 0.279675492, + "2024-07-20T00": 0.2877438, + "2024-07-20T19": 0.286831882, + "2024-07-26T05": 0.26053330645702455, + "2024-07-19T14": 0.2857, + "2024-07-21T00": 0.28274342472827235, + "2024-07-22T12": 0.28382270400000004, + "2024-07-24T06": 0.28230282300000004, + "2024-07-25T01": 0.2526727425800532, + "2024-07-20T22": 0.28362190499999995, + "2024-07-19T15": 0.28435568699999997, + "2024-07-21T13": 0.282587575, + "2024-07-25T07": 0.2508419973224312, + "2024-07-21T08": 0.282181809, + "2024-07-23T06": 0.2737873760242074, + "2024-07-22T16": 0.27984197, + "2024-07-24T11": 0.2836, + "2024-07-24T01": 0.27950559, + "2024-07-23T00": 0.2768998907699452, + "2024-07-19T12": 0.282435025, + "2024-07-25T17": 0.2540781161037395, + "2024-07-25T19": 0.24605295415658432, + "2024-07-19T21": 0.288947288, + "2024-07-23T08": 0.27800834, + "2024-07-21T21": 0.285654264, + "2024-07-21T11": 0.28247634669565047, + "2024-07-22T14": 0.27964194000000003, + "2024-07-20T23": 0.285682824, + "2024-07-20T08": 0.28804395, + "2024-07-20T02": 0.2882302621329993, + "2024-07-24T05": 0.2866389308189664, + "2024-07-24T16": 0.27952547450534837, + "2024-07-21T01": 0.282304414, + "2024-07-24T13": 0.2812247613794658, + "2024-07-25T04": 0.2496187997916566, + "2024-07-19T13": 0.2828718729916569, + "2024-07-25T12": 0.25448687793851715, + "2024-07-19T22": 0.289041561, + "2024-07-26T07": 0.26463091860408083, + "2024-07-25T02": 0.25166165466553725, + "2024-07-21T12": 0.28388514, + "2024-07-23T18": 0.2799320276294574, + "2024-07-23T11": 0.28300565999999994, + "2024-07-19T10": 0.2816775054819987, + "2024-07-19T19": 0.28811519999999996, + "2024-07-25T11": 0.2548165636106867, + "2024-07-22T08": 0.28232258400000004, + "2024-07-23T19": 0.27909207, + "2024-07-22T21": 0.27788056199999994, + "2024-07-21T09": 0.282979212, + "2024-07-21T22": 0.28812881, + "2024-07-22T04": 0.28492279200000004, + "2024-07-25T16": 0.253944113057973, + "2024-07-19T23": 0.2879439, + "2024-07-26T09": 0.26719237914688804, + "2024-07-20T06": 0.29101636, + "2024-07-23T02": 0.278422272, + "2024-07-23T14": 0.2828459337448194, + "2024-07-23T03": 0.2784061741468532, + "2024-07-25T08": 0.25068393916464893, + "2024-07-24T15": 0.2812338672892684, + "2024-07-19T09": 0.28174364, + "2024-07-20T15": 0.286888908, + "2024-07-23T23": 0.27802502, + "2024-07-23T12": 0.28215077800000005, + "2024-07-22T10": 0.283202832, + "2024-07-21T10": 0.283276464, + "2024-07-22T00": 0.28901445000000003, + "2024-07-24T22": 0.2706087744962047, + "2024-07-24T19": 0.277297227, + "2024-07-24T09": 0.2846, + "2024-07-23T04": 0.2771288602924525, + "2024-07-23T05": 0.276616596, + "2024-07-25T18": 0.24835527457948695, + "2024-07-25T15": 0.25292652427383305, + "2024-07-26T01": 0.25031112385393933, + "2024-07-22T01": 0.290334836, + "2024-07-26T02": 0.2557823702134379, + "2024-07-24T18": 0.2782285741466028, + "2024-07-21T19": 0.28110959, + "2024-07-25T05": 0.2479581501420091, + "2024-07-22T18": 0.27865572, + "2024-07-24T00": 0.278725083, + "2024-07-24T08": 0.28499715, + "2024-07-24T20": 0.277397226, + "2024-07-24T23": 0.26867997178649655, + "2024-07-22T17": 0.28034616278212876, + "2024-07-21T17": 0.28512255, + "2024-07-24T12": 0.28300848999999995, + "2024-07-23T13": 0.28194510399999995, + "2024-07-21T05": 0.28307924, + "2024-07-20T05": 0.291439824, + "2024-07-21T03": 0.284841149738681, + "2024-07-26T00": 0.24858197604321583, + "2024-07-20T20": 0.2855407530743303, + "2024-07-22T03": 0.283411336, + "2024-07-25T21": 0.24837222740746037, + "2024-07-21T16": 0.28390625937185465, + "2024-07-20T17": 0.289555776, + "2024-07-22T11": 0.2839985197, + "2024-07-25T00": 0.2676301183611533, + "2024-07-20T13": 0.284819574, + "2024-07-23T07": 0.27502750000000004, + "2024-07-22T05": 0.285617136, + "2024-07-20T07": 0.290030455, + "2024-07-21T18": 0.2801204, + "2024-07-23T17": 0.2766622544235706, + "2024-07-20T14": 0.285908604, + "2024-07-26T04": 0.2609257410288766, + "2024-07-24T10": 0.284, + "2024-07-20T18": 0.28712435211525, + "2024-07-23T15": 0.28304810999999996, + "2024-07-19T18": 0.2870046018, + "2024-07-25T09": 0.25102945157384987, + "latest": 0.222906, + "2024-07-26T10": 0.26424847026137166, + "2024-07-26T11": 0.2634669225675897, + "2024-07-26T12": 0.2639382134344657, + "2024-07-26T13": 0.26500889422785684, + "2024-07-26T14": 0.26505410992018774, + "2024-07-26T17": 0.26448746376811594, + "2024-07-26T16": 0.26449024600060367, + "2024-07-26T15": 0.264432675920338, + "2024-07-26T18": 0.26489265195040823, + "2024-07-27": 0.26489332649704667, + "2024-07-28": 0.26289474200000007, + "2024-07-28T05": 0.260297397, + "2024-07-26T21": 0.2640893989731199, + "2024-07-27T02": 0.26541217694481234, + "2024-07-28T01": 0.26742301254936907, + "2024-07-27T10": 0.26425074561933537, + "2024-07-28T02": 0.26704353301851314, + "2024-07-27T19": 0.2640478959276018, + "2024-07-27T09": 0.2646161141796836, + "2024-07-27T06": 0.2621616913319239, + "2024-07-27T18": 0.26435399696481493, + "2024-07-26T22": 0.26421286137943406, + "2024-07-27T13": 0.26670887856905384, + "2024-07-27T12": 0.2652204921913293, + "2024-07-27T16": 0.26720649522122425, + "2024-07-27T05": 0.26208253623188404, + "2024-07-26T23": 0.265402365375088, + "2024-07-26T20": 0.26456193353474317, + "2024-07-27T08": 0.26474955123705224, + "2024-07-28T03": 0.26645380697477467, + "2024-07-27T01": 0.2655507543753772, + "2024-07-28T09": 0.26079478399999995, + "2024-07-28T10": 0.2617121484, + "2024-07-27T00": 0.2656364154417716, + "2024-07-28T00": 0.26602999979267133, + "2024-07-27T04": 0.2621616913319239, + "2024-07-27T14": 0.2677354049898015, + "2024-07-27T07": 0.26491387126019944, + "2024-07-27T11": 0.26401346421020844, + "2024-07-27T22": 0.2672859541616406, + "2024-07-27T03": 0.2659041993355482, + "2024-07-27T20": 0.26233934134922005, + "2024-07-27T23": 0.2672544312378028, + "2024-07-28T08": 0.26069478599999996, + "2024-07-27T21": 0.2649347183727814, + "2024-07-28T07": 0.262194756, + "2024-07-27T15": 0.2675897086348642, + "2024-07-26T19": 0.2647860429526455, + "2024-07-28T04": 0.26299474, + "2024-07-28T06": 0.2623164553878302, + "2024-07-27T17": 0.2649986035003017, + "2024-07-29": 0.26866580743625895, + "2024-07-28T20": 0.26611230136903535, + "2024-07-28T16": 0.26199738, + "2024-07-29T07": 0.270251346, + "2024-07-28T23": 0.26199476, + "2024-07-28T15": 0.26169853175408075, + "2024-07-28T18": 0.266170718, + "2024-07-29T04": 0.270867492, + "2024-07-29T06": 0.271269011561488, + "2024-07-28T21": 0.26377362, + "2024-07-29T03": 0.27197008, + "2024-07-28T12": 0.263292101, + "2024-07-29T05": 0.27155588159451344, + "2024-07-28T17": 0.262271147, + "2024-07-29T00": 0.2657, + "2024-07-29T01": 0.268, + "2024-07-28T22": 0.2620759272333678, + "2024-07-28T19": 0.26827048699999995, + "2024-07-28T14": 0.2625, + "2024-07-29T02": 0.26968112099999997, + "2024-07-29T08": 0.26995319216851793, + "2024-07-28T11": 0.26268949199999997, + "2024-07-28T13": 0.2649947, + "2024-07-29T09": 0.26924075399999997, + "2024-07-29T10": 0.27024958535806515, + "2024-07-29T11": 0.26955392673621664, + "2024-07-29T12": 0.269675727, + "2024-07-29T13": 0.2699757, + "2024-07-30": 0.2613437796083039, + "2024-07-29T23": 0.26176596599999996, + "2024-07-29T18": 0.26414716, + "2024-07-29T21": 0.262179024, + "2024-07-29T22": 0.26240328970833193, + "2024-07-29T17": 0.265041678, + "2024-07-29T15": 0.26393136, + "2024-07-30T01": 0.26194236, + "2024-07-29T19": 0.264057744, + "2024-07-30T04": 0.26129844657327106, + "2024-07-29T14": 0.26675998, + "2024-07-29T20": 0.2637752969279984, + "2024-07-30T03": 0.26121050434229887, + "2024-07-30T00": 0.260860871071365, + "2024-07-29T16": 0.263715584, + "2024-07-30T02": 0.259948, + "2024-07-30T09": 0.263142096, + "2024-07-30T08": 0.263626164, + "2024-07-30T06": 0.261142536, + "2024-07-30T05": 0.2609407265496927, + "2024-07-30T07": 0.2629331902937757, + "2024-07-30T10": 0.263057904, + "2024-07-30T11": 0.2622249212, + "2024-07-30T12": 0.26214756, + "2024-07-30T13": 0.26404718, + "2024-07-31": 0.2545604546265209, + "2024-07-31T00": 0.2507472362491138, + "2024-07-31T05": 0.248525036241585, + "2024-07-30T23": 0.251427065, + "2024-07-30T19": 0.254205909, + "2024-07-30T16": 0.26211609599999997, + "2024-07-30T17": 0.259119648, + "2024-07-30T18": 0.2562878473870536, + "2024-07-30T20": 0.25272416000000003, + "2024-07-30T15": 0.26265404763960276, + "2024-07-31T03": 0.2497215757758361, + "2024-07-30T21": 0.25133332857325213, + "2024-07-31T01": 0.2507879656582204, + "2024-07-31T07": 0.25614464539370013, + "2024-07-31T06": 0.24845764439209841, + "2024-07-31T02": 0.24988349910067642, + "2024-07-30T22": 0.25113405454741977, + "2024-07-30T14": 0.26214756, + "2024-07-31T04": 0.2499475, + "2024-07-31T08": 0.25743165554063985, + "2024-07-31T11": 0.25519479264979866, + "2024-07-31T09": 0.25733450736091956, + "2024-07-31T10": 0.2569256850220631, + "2024-07-31T12": 0.25460081159611475, + "2024-08-01": 0.248012018087101, + "2024-07-31T14": 0.25856430236935385, + "2024-07-31T23": 0.24834155789473683, + "2024-07-31T13": 0.2576094937433627, + "2024-07-31T21": 0.24885181818181817, + "2024-08-01T01": 0.25051, + "2024-07-31T18": 0.2568901907200964, + "2024-07-31T19": 0.2560518089391386, + "2024-07-31T16": 0.2586829381129187, + "2024-08-01T02": 0.25054945562913866, + "2024-07-31T22": 0.24837468690381675, + "2024-07-31T20": 0.25242798090940943, + "2024-07-31T17": 0.25807736990121294, + "2024-08-01T00": 0.2503912180801484, + "2024-07-31T15": 0.2588814398354327, + "2024-08-01T07": 0.24571406904244597, + "2024-08-01T06": 0.2457553002653205, + "2024-08-01T05": 0.2466549428459981, + "2024-08-01T04": 0.24680121465393592, + "2024-08-01T03": 0.24977306370338218, + "2024-08-01T08": 0.24571005496166554, + "2024-08-01T09": 0.24571171137698417, + "2024-08-01T10": 0.24949650206399687, + "2024-08-01T11": 0.24957349349026758, + "2024-08-01T12": 0.2496600060844743, + "2024-08-01T13": 0.24965442935169763, + "2024-08-01T14": 0.2492110395171967, + "2024-08-01T15": 0.24774196521904895, + "2024-08-02": 0.2355, + "2024-08-02T00": 0.24378901157932256, + "2024-08-01T20": 0.23304704946186414, + "2024-08-01T21": 0.23819795698215632, + "2024-08-02T04": 0.23915358544568188, + "2024-08-01T19": 0.23109126666444024, + "2024-08-01T16": 0.2327533774541789, + "2024-08-02T02": 0.2433442194672611, + "2024-08-01T17": 0.2318840168118062, + "2024-08-01T23": 0.2432, + "2024-08-02T01": 0.2437588454744201, + "2024-08-01T22": 0.24216804048663274, + "2024-08-01T18": 0.23188828087092195, + "2024-08-02T03": 0.23991362099300892, + "2024-08-02T05": 0.23910641327610133, + "2024-08-02T06": 0.23910684535034304, + "2024-08-02T07": 0.239070433378391, + "2024-08-02T08": 0.2390384173745076, + "2024-08-02T09": 0.23929421887505098, + "2024-08-02T10": 0.23973468624748237, + "2024-08-02T11": 0.24023909309980623, + "2024-08-02T12": 0.2415753634517368, + "2024-08-02T13": 0.2426945333422199, + "2024-08-02T14": 0.24574441124041324, + "2024-08-02T15": 0.23689748959857912, + "2024-08-03": 0.2320411684303443, + "2024-08-02T16": 0.23564271353009708, + "2024-08-02T22": 0.23119820868066315, + "2024-08-02T23": 0.23078323041818238, + "2024-08-03T00": 0.23105767168553265, + "2024-08-03T01": 0.23061451563130766, + "2024-08-03T03": 0.23122409713419106, + "2024-08-02T19": 0.23460327499778008, + "2024-08-02T18": 0.23517470570423082, + "2024-08-02T21": 0.2329699493424045, + "2024-08-02T17": 0.2355690345886603, + "2024-08-02T20": 0.23441749753339203, + "2024-08-03T02": 0.23122, + "2024-08-03T06": 0.2348781877201926, + "2024-08-03T19": 0.219545542310593, + "2024-08-03T10": 0.23315416889368684, + "2024-08-03T09": 0.23322, + "2024-08-03T15": 0.23234011459215462, + "2024-08-03T22": 0.2169430106470804, + "2024-08-03T05": 0.2336586854921302, + "2024-08-03T08": 0.23532388104409618, + "2024-08-03T14": 0.23300970719827527, + "2024-08-03T18": 0.2219896586533392, + "2024-08-03T17": 0.222, + "2024-08-03T21": 0.21663246610679676, + "2024-08-03T12": 0.23311720008490955, + "2024-08-03T20": 0.21650925077024197, + "2024-08-03T04": 0.23136374008922772, + "2024-08-03T16": 0.2246439259060573, + "2024-08-03T11": 0.23309469872854952, + "2024-08-03T07": 0.23498879078779372, + "2024-08-03T13": 0.23302010302454945, + "2024-08-04": 0.21989119922723283, + "2024-08-03T23": 0.21709559073413043, + "2024-08-04T17": 0.20447052225690665, + "2024-08-04T13": 0.2206968118829794, + "2024-08-04T06": 0.22205502181884285, + "2024-08-04T12": 0.22092571869045502, + "2024-08-04T10": 0.22088220313938467, + "2024-08-04T16": 0.20530797042640114, + "2024-08-04T15": 0.21851283764545743, + "2024-08-04T00": 0.22038857400030043, + "2024-08-04T11": 0.2208745187326696, + "2024-08-04T01": 0.22023942710596855, + "2024-08-04T03": 0.22145608444118287, + "2024-08-04T04": 0.2219265019383448, + "2024-08-04T07": 0.22195765797928513, + "2024-08-04T08": 0.2218250588033192, + "2024-08-04T18": 0.20297557934603486, + "2024-08-04T09": 0.22096514200087192, + "2024-08-04T02": 0.22076150858242377, + "2024-08-04T05": 0.2219592450224519, + "2024-08-04T14": 0.22013069746362127, + "2024-08-05": 0.20134623644158445, + "2024-08-05T01": 0.19525354436507877, + "2024-08-04T19": 0.20671777866831229, + "2024-08-04T22": 0.20973316896653502, + "2024-08-05T03": 0.18668795355484166, + "2024-08-05T02": 0.18777422817104658, + "2024-08-04T23": 0.2106016271550289, + "2024-08-05T00": 0.2074985608113034, + "2024-08-05T04": 0.18358425731005046, + "2024-08-05T06": 0.18233750718574585, + "2024-08-04T20": 0.21017116664463095, + "2024-08-05T05": 0.18455610338155246, + "2024-08-04T21": 0.2106767285733848, + "2024-08-05T07": 0.1829366386371075, + "2024-08-05T08": 0.18929874125910645, + "2024-08-05T09": 0.20987171975623387, + "2024-08-05T10": 0.20246409924616734, + "2024-08-05T11": 0.20252444899132693, + "2024-08-05T12": 0.203226611427265, + "2024-08-05T13": 0.19705826484826366, + "2024-08-05T14": 0.20747703307554438, + "2024-08-05T15": 0.21072864005684638, + "2024-08-06": 0.22257809481297797, + "2024-08-05T19": 0.2127571707716004, + "2024-08-05T20": 0.20971456399838262, + "2024-08-05T21": 0.20860816441310803, + "2024-08-06T02": 0.223184778, + "2024-08-05T18": 0.21345123272761923, + "2024-08-05T23": 0.20886563233523225, + "2024-08-05T16": 0.21107220897847753, + "2024-08-06T05": 0.22313157000000003, + "2024-08-05T17": 0.21380243993082426, + "2024-08-06T00": 0.22074414, + "2024-08-06T04": 0.2236917188164468, + "2024-08-06T03": 0.22238669699999997, + "2024-08-05T22": 0.2087, + "2024-08-06T01": 0.22376711, + "2024-08-06T06": 0.22336293599999998, + "2024-08-06T07": 0.22487758438479113, + "2024-08-06T08": 0.22012980000000001, + "2024-08-06T09": 0.21526456, + "2024-08-06T10": 0.21836985600000003, + "2024-08-06T11": 0.21832638328048995, + "2024-08-06T12": 0.21708028999999998, + "2024-08-06T13": 0.217760956, + "2024-08-06T14": 0.22171762594518396 + }, + "USD ethereum/erc20/usd_tether__erc20_": { + "2023-07-30": 0.9999784522484314, + "2023-10-23": 1.0003199893069419, + "2023-07-27": 0.9998435637497376, + "2023-08-20": 0.9999000000000001, + "2024-02-23": 0.9997822639006595, + "2024-04-05": 1.0002996099023616, + "2023-12-19": 0.999562506954569, + "2024-05-17": 1.000209955694447, + "2023-08-06": 0.9987054969774685, + "2023-12-02": 1.0004272344212337, + "2024-06-11": 0.9995267841793942, + "2024-01-08": 1.0007014131209098, + "2023-10-31": 1.0003494821564858, + "2023-08-29": 0.9998264620726621, + "2023-09-09": 0.9997062003567082, + "2023-10-01": 1.0000800787414637, + "2024-03-07": 1.0006167117248603, + "2023-10-12": 0.9997124088421077, + "2024-04-22": 1.0003998873307551, + "2023-07-29": 0.9999802816351016, + "2024-04-26": 0.9998623012181294, + "2024-06-24": 0.999444619679664, + "2023-09-26": 0.9996834984284886, + "2023-08-24": 0.9995644520823458, + "2023-12-05": 1.0000637896331663, + "2024-02-19": 1.000114093917885, + "2024-01-07": 1.0005189273496493, + "2024-04-28": 0.999541108144075, + "2023-07-31": 0.9998092336115991, + "2023-10-18": 1.0003686722335488, + "2023-10-07": 1.0005509691353505, + "2024-06-28": 0.9987391149630068, + "2024-05-19": 1.0000953669309602, + "2024-05-12": 0.999623804295247, + "2024-04-29": 0.9998777764176565, + "2023-09-16": 1.0001030559915924, + "2023-08-25": 0.9995555979983999, + "2024-03-09": 1.0021329697948491, + "2023-09-05": 0.9994099915069549, + "2024-04-25": 0.9997294699957102, + "2023-08-12": 0.9993331305482194, + "2024-06-12": 0.9998830156194622, + "2023-09-01": 0.9995996064737327, + "2024-05-30": 0.9994904107267901, + "2024-06-05": 1, + "2023-09-08": 0.9996001196284937, + "2024-03-22": 1.00000281466932, + "2023-08-10": 0.9989900033300851, + "2023-11-18": 1.0003908387017555, + "2023-09-13": 0.9999069624574598, + "2023-12-07": 1.0001280857602834, + "2024-06-30": 0.9983693196922303, + "2024-06-20": 0.9995559487390058, + "2024-07-08": 0.9999174249496292, + "2024-07-07": 1.0000104209606047, + "2023-09-07": 0.9994094916208136, + "2024-03-26": 1.0001671693360006, + "2024-05-14": 0.9994897418492008, + "2024-06-16": 0.9993210237447783, + "2024-02-22": 0.9996985837301782, + "2024-04-15": 1.000804779697821, + "2023-12-30": 0.999994203573886, + "2023-09-17": 1.000220354366645, + "2024-04-17": 1.0002895830529517, + "2024-02-12": 1.00025, + "2023-10-26": 1.0001756849917147, + "2024-01-03": 1.0005199108515548, + "2024-05-07": 0.9999998964973685, + "2024-01-22": 0.9990924339164344, + "2024-07-13": 1.0002093275516248, + "2023-10-03": 1.0000009951530573, + "2024-05-26": 0.99964, + "2024-04-30": 0.999653461005082, + "2024-07-09": 1.0000013454432275, + "2023-12-24": 1.0005049482639274, + "2023-09-24": 1.00006, + "2024-01-16": 0.9993196872979324, + "2023-10-17": 1.000408630739459, + "2024-04-24": 0.9999212837549867, + "2024-03-18": 0.9995717375652462, + "2024-02-17": 1.000347284010517, + "2023-12-27": 1.0002345891805149, + "2023-09-03": 0.99986527784314, + "2024-02-24": 0.9998569735144313, + "2024-01-06": 1.0006866517753394, + "2024-03-20": 0.9999152221538392, + "2023-11-21": 1.000346565391692, + "2023-12-25": 1.0001836580342194, + "2023-09-22": 0.9999223949030303, + "2024-03-01": 1.000320154767329, + "2023-10-02": 1.0002510975829573, + "2024-03-27": 0.9998195492325934, + "2024-05-06": 1.00005, + "2024-06-19": 0.9996176377028108, + "2023-08-30": 0.9999242891043502, + "2023-10-06": 1.0001966975629932, + "2023-10-13": 0.9996494309081019, + "2024-02-05": 0.9989895634609893, + "2023-12-10": 1.0000853744461198, + "2023-11-23": 1.0001910308425486, + "2023-08-04": 0.999069967375368, + "2024-05-13": 0.9997498222825758, + "2024-01-13": 0.9997848537894541, + "2024-03-28": 0.9998047110538556, + "2023-08-05": 0.9987635514127302, + "2024-02-09": 1.0000197796711614, + "2023-10-09": 1.000198173283462, + "2024-01-09": 1.000498976620399, + "2024-05-10": 0.999871351269031, + "2023-08-18": 0.9996004558071162, + "2023-11-05": 1.0007255456998707, + "2024-04-18": 1.000384938724127, + "2023-10-22": 1.0004466509786318, + "2023-11-01": 1.000202279394344, + "2024-05-20": 1.00005, + "2023-12-08": 1.0001783605551853, + "2024-04-12": 0.9999989546209408, + "2024-03-12": 1.0000949536024875, + "2024-07-02": 0.9986974194866635, + "2023-09-11": 0.9996064504037809, + "2024-07-20": 1.0004799733209333, + "2024-03-03": 1.0004969487135829, + "2024-02-04": 0.9996199033620214, + "2024-01-28": 0.9999, + "2023-11-07": 1.0003187842764132, + "2023-11-25": 1.0005959158747728, + "2024-06-29": 0.998419555709682, + "2024-07-21": 1.0003288730183377, + "2024-02-25": 0.9999594819475537, + "2023-12-01": 1.0002122922113057, + "2024-01-26": 0.999535736740688, + "2023-08-03": 0.9990577577979933, + "2024-02-28": 1.0005322867691895, + "2023-09-15": 1.0000184495906546, + "2023-12-21": 1.0000263434665637, + "2024-06-01": 0.9991473235912018, + "2024-03-06": 1.000544125265376, + "2024-07-15": 1.0004904188254016, + "2023-09-30": 1.0000230727945119, + "2023-12-12": 0.9996177656902822, + "2023-10-04": 0.9999639166322751, + "2024-02-13": 1.0002584413035445, + "2023-09-20": 1.0000700247368512, + "2024-04-16": 1.0003799751044982, + "2023-09-19": 1.0001806510874856, + "2023-09-29": 0.9998900053738049, + "2023-09-12": 0.9997483687028741, + "2024-03-02": 1.000949757835641, + "2024-06-02": 0.9992902651179207, + "2023-10-08": 1.0005863506517971, + "2023-11-20": 1.0005694662607607, + "2023-12-20": 0.9999368514137088, + "2023-12-31": 0.999706490105218, + "2023-11-06": 1.0005236061008729, + "2023-08-22": 0.9996312417930362, + "2024-05-29": 0.9990409925561, + "2024-03-17": 0.999300125610499, + "2024-07-23": 1.000155615758449, + "2024-07-10": 1.0000000038958423, + "2023-09-18": 1.000170535881867, + "2024-07-01": 0.9988161758265397, + "2024-04-01": 1.0003067204988154, + "2024-05-21": 0.9997973495183019, + "2024-01-19": 0.9989301008513192, + "2023-11-11": 1.0005239086294107, + "2023-09-23": 0.9999999874901567, + "2023-08-15": 0.99872, + "2024-07-18": 0.9999820360197802, + "2023-11-19": 1.0005102321747177, + "2024-01-25": 0.9995261075782131, + "2024-03-13": 1.0005705970776617, + "2024-01-21": 0.9993984589774161, + "2024-02-01": 0.9994087706890287, + "2024-03-15": 0.9996551244231094, + "2024-03-16": 0.9997554256352759, + "2024-06-23": 0.9996971905695466, + "2023-11-27": 1.0001689835048435, + "2024-01-10": 1.0003454462548549, + "2024-06-03": 0.9997704850708495, + "2024-01-02": 1.0006886283230676, + "2024-07-14": 1.0003400020680093, + "2023-10-25": 1.0001135692661165, + "2024-01-01": 1.0000219639617158, + "2024-02-14": 1.0004726470347727, + "2023-09-04": 0.9996344648872475, + "2023-09-06": 0.999418200324391, + "2024-04-03": 1.0003979402273147, + "2024-06-15": 0.9994096487691884, + "2023-11-28": 1.0001860758160084, + "2023-12-03": 1.0003663938465919, + "2023-08-02": 0.9994292815960678, + "2024-07-11": 1.0000073757835788, + "2023-08-27": 0.9995229656064774, + "2024-04-11": 0.9999872215855751, + "2023-10-20": 1.00044, + "2023-10-10": 1.000081795577596, + "2024-05-03": 1.0002075746353025, + "2024-03-08": 1.001445390518557, + "2024-01-14": 0.9997349012266152, + "2023-12-15": 1.000039558003058, + "2023-10-19": 1.0003167420753751, + "2024-02-08": 0.9997691189606479, + "2023-11-12": 1.00038778419629, + "2023-12-22": 1.0002782323122186, + "2024-06-21": 0.9993608711415587, + "2024-03-23": 1.0000886878997068, + "2023-09-27": 0.9993002947936063, + "2024-03-04": 1.0006640231259203, + "2023-09-10": 0.9997501097043565, + "2024-04-13": 1.0003107557442696, + "2024-02-29": 1.000193354208913, + "2023-09-21": 0.9999509527287986, + "2024-04-21": 1.0002829102150117, + "2023-11-08": 1.0002799441235242, + "2024-07-19": 0.9999993806104119, + "2023-12-29": 1.000525710098593, + "2023-12-04": 1.0002446053123668, + "2024-04-10": 0.9999288184704453, + "2024-05-08": 0.9998656272958308, + "2023-10-11": 1.0000108429634742, + "2024-05-05": 1.0001438105507168, + "2024-03-21": 1.0000198980519805, + "2024-05-23": 0.9994600010658797, + "2024-04-08": 0.9999900007356841, + "2024-05-18": 1.0002800050870233, + "2024-06-10": 0.9997330838800944, + "2023-10-05": 1.0001243390933379, + "2023-10-16": 1.0001990826520295, + "2024-05-22": 0.99981307414521, + "2024-02-10": 1.0005373988217636, + "2024-04-07": 1.0002204870188927, + "2024-02-20": 1.0000028201100928, + "2023-11-17": 1.0001626073947543, + "2023-12-11": 0.9998766783894801, + "2023-11-26": 1.0004422324934508, + "2023-10-27": 1.0000977238602806, + "2024-02-02": 0.9994894048480738, + "2023-09-14": 1.0000385671216983, + "2024-01-27": 0.999882535034336, + "2024-03-30": 1.0005796820684694, + "2023-11-22": 1.0001771632930128, + "2023-09-28": 0.9993006572338614, + "2024-06-04": 0.9998038714501696, + "2023-11-16": 1.0002897113131952, + "2024-06-26": 0.9996995734748249, + "2024-01-18": 0.9989240600107379, + "2023-08-26": 0.9994625357882039, + "2024-02-15": 1.0007686002576943, + "2024-07-17": 1.0002382311187887, + "2023-10-28": 1.00015, + "2024-03-24": 1.0001061447367188, + "2024-07-04": 0.9992930696183008, + "2024-04-27": 0.9994102517758563, + "2023-12-06": 1.0000712811600452, + "2024-01-30": 0.999934445991335, + "2023-11-14": 1.0001997689640332, + "2023-08-09": 0.999460061040409, + "2024-07-22": 1.0001504963532653, + "2024-06-06": 0.9997030019783892, + "2024-05-15": 1.0000262298692801, + "2023-11-10": 1.0002138579250022, + "2024-01-23": 0.99900054991038, + "2024-01-31": 0.9996, + "2024-05-11": 0.9997205765422975, + "2024-01-11": 1.000208503227804, + "2024-02-18": 1.0002079761063432, + "2024-07-12": 1.0001351406267949, + "2023-10-30": 1.0002892504373868, + "2023-12-17": 0.9990258896504751, + "2024-02-26": 1.0000796988102714, + "2024-06-17": 0.9993600934375861, + "2024-01-05": 1.0007621780380087, + "2024-06-14": 0.9994300270128709, + "2023-08-23": 0.9995246886763218, + "2024-06-13": 0.999797827863943, + "2023-08-28": 0.9994390460802476, + "2024-03-11": 1.0003812067213191, + "2023-08-01": 0.9995695638520323, + "2024-03-14": 1.0000657504546695, + "2024-02-21": 1, + "2023-12-13": 0.9995630361543678, + "2024-02-27": 1.0004687004265274, + "2023-08-13": 0.9993232499473954, + "2024-03-31": 1.000128688372266, + "2023-12-09": 1.0003124251652395, + "2024-04-02": 1.000289437896888, + "2024-02-06": 0.9990553344680779, + "2024-05-31": 0.9994886979755977, + "2024-04-09": 1.0000206113003818, + "2024-05-25": 0.9997979730799658, + "2023-11-04": 1.0004999999999997, + "2024-04-20": 1.0003399015476544, + "2024-01-15": 0.9994948811088207, + "2023-12-28": 1.0004253379900228, + "2024-06-09": 0.9998934835577764, + "2024-02-07": 0.9994441047691508, + "2023-09-25": 0.9997643898059492, + "2024-03-19": 0.9997099544733546, + "2024-03-10": 1.0017999999999998, + "2024-05-02": 0.9999749989831999, + "2023-09-02": 0.999797078151559, + "2024-07-24": 1.0000404076362872, + "2024-01-12": 0.9999535099197165, + "2024-04-19": 1.0004411323024698, + "2023-11-29": 1.0004742188543934, + "2023-10-15": 1.0000031594002534, + "2024-05-28": 0.999039303748174, + "2023-11-30": 1.0001653962427388, + "2024-01-24": 0.999398329318694, + "2023-08-11": 0.998836094951441, + "2024-02-11": 1.000380014440065, + "2024-06-08": 0.9996493256548438, + "2023-11-15": 1.0002747264878407, + "2023-12-16": 0.9994022430261683, + "2024-03-29": 1.0001514270490928, + "2024-04-04": 1.0002396988787647, + "2024-06-25": 0.9995223799022634, + "2024-07-26": 0.9999182729033095, + "2023-07-28": 0.9997293542591548, + "2024-01-20": 0.99931, + "2023-10-21": 1.0003899658549544, + "2023-08-16": 0.9988202030947102, + "2024-05-24": 0.9995842475689101, + "2023-11-03": 1.0002470283002383, + "2023-08-31": 0.999900633161885, + "2024-05-27": 0.9993803655529342, + "2024-01-04": 1.0008945324368521, + "2023-07-26": 0.999875683667403, + "2023-11-13": 1.0003791038484469, + "2023-10-24": 1.0000132087861118, + "2024-07-16": 1.00036937344616, + "2023-10-29": 1.0001904878703396, + "2024-01-29": 0.9998806569344532, + "2024-07-03": 0.9986685668110684, + "2024-05-04": 1.0001901566937887, + "2023-11-02": 1.0004254228410634, + "2023-12-18": 0.9991994292517622, + "2023-11-24": 1.0003359023950296, + "2023-08-21": 0.9997560553893646, + "2024-07-05": 0.9998400000000001, + "2024-03-25": 1.0003184934042482, + "2023-08-07": 0.9984346107637662, + "2024-07-25": 0.999770537338968, + "2023-07-25": 0.9998958832269429, + "2024-05-16": 1.0001400208504023, + "2024-06-07": 0.9994746496628351, + "2023-08-14": 0.9988000005473627, + "2024-06-18": 0.9997971419505083, + "2024-05-01": 0.9988653959969918, + "2024-02-16": 1.0004889691637024, + "2024-06-22": 0.9995205391598168, + "2024-07-06": 1.0001, + "2024-03-05": 1.0005865850844944, + "2024-04-06": 1.0002993652331509, + "2023-12-23": 1.0005636776544033, + "2023-12-14": 1.0001572581963885, + "2024-02-03": 0.9995915421102922, + "2024-06-27": 0.9989990292540532, + "2023-12-26": 0.9999055338852005, + "2023-11-09": 1.0003355820269322, + "2023-10-14": 0.9999245872478234, + "2023-08-19": 0.9997233373729801, + "2024-05-09": 0.9996102087609224, + "2024-01-17": 0.9993948422529548, + "2024-04-23": 1.0003896352550115, + "2023-08-08": 0.9991403715520106, + "2023-08-17": 0.9988201475771474, + "2024-04-14": 1.0004991010786672, + "2024-07-22T13": 1.00014, + "2024-07-25T10": 0.99964, + "2024-07-26T06": 0.9998, + "2024-07-24T14": 1.00015, + "2024-07-21T20": 1.00028, + "2024-07-21T07": 1.00029, + "2024-07-21T14": 1.00034, + "2024-07-22T23": 1.0003, + "2024-07-24T07": 0.99997, + "2024-07-20T11": 1.00049, + "2024-07-26T08": 0.99984, + "2024-07-25T20": 0.99976, + "2024-07-21T02": 1.00028, + "2024-07-20T04": 1.00047, + "2024-07-20T03": 1.00045, + "2024-07-25T13": 0.99968, + "2024-07-21T06": 1.00029, + "2024-07-20T12": 1.00048, + "2024-07-24T02": 1.00001, + "2024-07-24T17": 0.99999, + "2024-07-25T06": 0.99974, + "2024-07-25T22": 0.99975, + "2024-07-22T07": 1.00015, + "2024-07-22T22": 1.00033, + "2024-07-26T03": 0.99984, + "2024-07-23T01": 1.0001, + "2024-07-24T03": 1.00006, + "2024-07-23T21": 1.0001502664712216, + "2024-07-19T20": 1.00045, + "2024-07-23T22": 1.00018, + "2024-07-21T23": 1.00008, + "2024-07-19T16": 1.0002, + "2024-07-22T20": 1.00038, + "2024-07-23T10": 0.99999, + "2024-07-19T17": 1.00013, + "2024-07-22T09": 1, + "2024-07-24T04": 1.00003, + "2024-07-22T06": 1.00006, + "2024-07-24T21": 0.9999, + "2024-07-20T21": 1.00046, + "2024-07-21T15": 1.00033, + "2024-07-20T09": 1.00055, + "2024-07-25T14": 0.99964, + "2024-07-19T11": 0.99979, + "2024-07-23T20": 1.0002, + "2024-07-25T03": 0.99981, + "2024-07-20T01": 1.0005, + "2024-07-25T23": 0.99969, + "2024-07-20T16": 1.00036, + "2024-07-22T15": 1.00009, + "2024-07-23T16": 1.00017, + "2024-07-22T02": 1, + "2024-07-21T04": 1.00028, + "2024-07-23T09": 1, + "2024-07-20T10": 1.00046, + "2024-07-22T19": 1.00027, + "2024-07-20T00": 1.0005, + "2024-07-20T19": 1.00046, + "2024-07-26T05": 0.99981, + "2024-07-19T14": 1, + "2024-07-21T00": 1.00029, + "2024-07-22T12": 1.00008, + "2024-07-24T06": 1.00001, + "2024-07-25T01": 0.99988, + "2024-07-20T22": 1.00043, + "2024-07-19T15": 1.00002, + "2024-07-21T13": 1.00031, + "2024-07-25T07": 0.99975, + "2024-07-21T08": 1.00029, + "2024-07-23T06": 1.00015, + "2024-07-22T16": 1.00015, + "2024-07-24T11": 1, + "2024-07-24T01": 1.00002, + "2024-07-23T00": 1.0003, + "2024-07-19T12": 0.99977, + "2024-07-25T17": 0.99979, + "2024-07-25T19": 0.99971, + "2024-07-19T21": 1.00051, + "2024-07-23T08": 1.00003, + "2024-07-21T21": 1.00019, + "2024-07-21T11": 1.00027, + "2024-07-22T14": 1.00015, + "2024-07-20T23": 1.00029, + "2024-07-20T08": 1.0005, + "2024-07-20T02": 1.00045, + "2024-07-24T05": 1.00008, + "2024-07-24T16": 1.00009, + "2024-07-21T01": 1.00037, + "2024-07-24T13": 1, + "2024-07-25T04": 0.99986, + "2024-07-19T13": 0.9998, + "2024-07-25T12": 0.99963, + "2024-07-19T22": 1.00049, + "2024-07-26T07": 0.99981, + "2024-07-25T02": 0.9998, + "2024-07-21T12": 1.0003, + "2024-07-23T18": 1.00011, + "2024-07-23T11": 1.00002, + "2024-07-19T10": 0.99979, + "2024-07-19T19": 1.0004, + "2024-07-25T11": 0.99961, + "2024-07-22T08": 1.00008, + "2024-07-23T19": 1.00033, + "2024-07-22T21": 1.00029, + "2024-07-21T09": 1.00028, + "2024-07-21T22": 1.0001, + "2024-07-22T04": 1.00008, + "2024-07-25T16": 0.99978, + "2024-07-19T23": 1.0005, + "2024-07-26T09": 0.99982, + "2024-07-20T06": 1.0004, + "2024-07-23T02": 1.00008, + "2024-07-23T14": 1.00016, + "2024-07-23T03": 1.00007, + "2024-07-25T08": 0.99971, + "2024-07-24T15": 1.00019, + "2024-07-19T09": 0.9998, + "2024-07-20T15": 1.00031, + "2024-07-23T23": 1.00009, + "2024-07-23T12": 1.00018, + "2024-07-22T10": 1.00001, + "2024-07-21T10": 1.00027, + "2024-07-22T00": 1.00005, + "2024-07-24T22": 0.99982, + "2024-07-24T19": 0.99999, + "2024-07-24T09": 1, + "2024-07-23T04": 1.0001, + "2024-07-23T05": 1.00006, + "2024-07-25T18": 0.99974, + "2024-07-25T15": 0.99978, + "2024-07-26T01": 0.9998, + "2024-07-22T01": 1.00012, + "2024-07-26T02": 0.9998, + "2024-07-24T18": 1.0001, + "2024-07-21T19": 1.00039, + "2024-07-25T05": 0.99976, + "2024-07-22T18": 1.0002, + "2024-07-24T00": 1.00009, + "2024-07-24T08": 0.99999, + "2024-07-24T20": 0.99999, + "2024-07-24T23": 0.99982, + "2024-07-22T17": 1.00014, + "2024-07-21T17": 1.00043, + "2024-07-24T12": 1.00003, + "2024-07-23T13": 1.00016, + "2024-07-21T05": 1.00028, + "2024-07-20T05": 1.00048, + "2024-07-21T03": 1.00028, + "2024-07-26T00": 0.99979, + "2024-07-20T20": 1.0004, + "2024-07-22T03": 1.00004, + "2024-07-25T21": 0.99977, + "2024-07-21T16": 1.00037, + "2024-07-20T17": 1.0004, + "2024-07-22T11": 1.00003, + "2024-07-25T00": 0.99982, + "2024-07-20T13": 1.00042, + "2024-07-23T07": 1.0001, + "2024-07-22T05": 1.00006, + "2024-07-20T07": 1.00045, + "2024-07-21T18": 1.00043, + "2024-07-23T17": 1.0001, + "2024-07-20T14": 1.00038, + "2024-07-26T04": 0.99986, + "2024-07-24T10": 1, + "2024-07-20T18": 1.0005, + "2024-07-23T15": 1.00017, + "2024-07-19T18": 1.00026, + "2024-07-25T09": 0.99964, + "latest": 1.001, + "2024-07-26T10": 0.99973, + "2024-07-26T11": 0.99976, + "2024-07-26T12": 0.99983, + "2024-07-26T13": 0.99984, + "2024-07-26T14": 0.99991, + "2024-07-26T17": 0.99998, + "2024-07-26T16": 0.99995, + "2024-07-26T15": 0.99992, + "2024-07-26T18": 1, + "2024-07-27": 1.0000953410057627, + "2024-07-28": 0.9999800000000001, + "2024-07-28T05": 0.99999, + "2024-07-26T21": 1, + "2024-07-27T02": 1.00003, + "2024-07-28T01": 0.99993, + "2024-07-27T10": 1.00008, + "2024-07-28T02": 0.99995, + "2024-07-27T19": 1.00025, + "2024-07-27T09": 1.00009, + "2024-07-27T06": 1.00002, + "2024-07-27T18": 1.00015, + "2024-07-26T22": 1.00004, + "2024-07-27T13": 1.00013, + "2024-07-27T12": 1.00017, + "2024-07-27T16": 1.0001, + "2024-07-27T05": 1.00002, + "2024-07-26T23": 1.00004, + "2024-07-26T20": 1, + "2024-07-27T08": 1.00005, + "2024-07-28T03": 0.99998, + "2024-07-27T01": 1.00004, + "2024-07-28T09": 0.99998, + "2024-07-28T10": 0.99997, + "2024-07-27T00": 1.00004, + "2024-07-28T00": 0.99999, + "2024-07-27T04": 1.00002, + "2024-07-27T14": 1.0001, + "2024-07-27T07": 1, + "2024-07-27T11": 1.00017, + "2024-07-27T22": 0.99991, + "2024-07-27T03": 1.00001, + "2024-07-27T20": 1.00005, + "2024-07-27T23": 0.99993, + "2024-07-28T08": 0.99998, + "2024-07-27T21": 0.99997, + "2024-07-28T07": 0.99998, + "2024-07-27T15": 1.0001, + "2024-07-26T19": 1, + "2024-07-28T04": 0.99998, + "2024-07-28T06": 0.99998, + "2024-07-27T17": 1.00012, + "2024-07-29": 0.9998727481810903, + "2024-07-28T20": 0.99989, + "2024-07-28T16": 0.99999, + "2024-07-29T07": 0.99982, + "2024-07-28T23": 0.99998, + "2024-07-28T15": 0.99999, + "2024-07-28T18": 0.99989, + "2024-07-29T04": 0.99988, + "2024-07-29T06": 0.9998727925095396, + "2024-07-28T21": 0.9999, + "2024-07-29T03": 0.99989, + "2024-07-28T12": 0.99997, + "2024-07-29T05": 0.99988, + "2024-07-28T17": 0.99989, + "2024-07-29T00": 1, + "2024-07-29T01": 1, + "2024-07-28T22": 0.99997, + "2024-07-28T19": 0.99989, + "2024-07-28T14": 1, + "2024-07-29T02": 0.99993, + "2024-07-29T08": 0.9998, + "2024-07-28T11": 0.99996, + "2024-07-28T13": 0.99998, + "2024-07-29T09": 0.99978, + "2024-07-29T10": 0.99979, + "2024-07-29T11": 0.99979, + "2024-07-29T12": 0.99991, + "2024-07-29T13": 0.99991, + "2024-07-30": 0.999784933117571, + "2024-07-29T23": 0.99987, + "2024-07-29T18": 0.9998, + "2024-07-29T21": 0.99992, + "2024-07-29T22": 0.99987, + "2024-07-29T17": 0.99978, + "2024-07-29T15": 0.99974, + "2024-07-30T01": 0.99978, + "2024-07-29T19": 0.99984, + "2024-07-30T04": 0.9998, + "2024-07-29T14": 0.99985, + "2024-07-29T20": 0.99989, + "2024-07-30T03": 0.99986, + "2024-07-30T00": 0.99983, + "2024-07-29T16": 0.99968, + "2024-07-30T02": 0.9998, + "2024-07-30T09": 0.99978, + "2024-07-30T08": 0.99972, + "2024-07-30T06": 0.99978, + "2024-07-30T05": 0.99981, + "2024-07-30T07": 0.99974, + "2024-07-30T10": 0.99984, + "2024-07-30T11": 0.99979, + "2024-07-30T12": 0.9998, + "2024-07-30T13": 0.9998, + "2024-07-31": 0.9996599457223846, + "2024-07-31T00": 0.99975, + "2024-07-31T05": 0.99978, + "2024-07-30T23": 0.99971, + "2024-07-30T19": 0.99963, + "2024-07-30T16": 0.99968, + "2024-07-30T17": 0.99969, + "2024-07-30T18": 0.99968, + "2024-07-30T20": 0.9997, + "2024-07-30T15": 0.99966, + "2024-07-31T03": 0.99979, + "2024-07-30T21": 0.9997347994162773, + "2024-07-31T01": 0.99977, + "2024-07-31T07": 0.99969, + "2024-07-31T06": 0.99971, + "2024-07-31T02": 0.9998, + "2024-07-30T22": 0.99971, + "2024-07-30T14": 0.9998, + "2024-07-31T04": 0.99979, + "2024-07-31T08": 0.99955, + "2024-07-31T11": 0.99945, + "2024-07-31T09": 0.99961, + "2024-07-31T10": 0.99952, + "2024-07-31T12": 0.99944, + "2024-08-01": 0.9994695590099786, + "2024-07-31T14": 0.99955, + "2024-07-31T23": 0.99968, + "2024-07-31T13": 0.99953, + "2024-07-31T21": 0.99962, + "2024-08-01T01": 0.99965, + "2024-07-31T18": 0.99967, + "2024-07-31T19": 0.99966, + "2024-07-31T16": 0.99961, + "2024-08-01T02": 0.99948, + "2024-07-31T22": 0.99969, + "2024-07-31T20": 0.99961, + "2024-07-31T17": 0.99961, + "2024-08-01T00": 0.99967, + "2024-07-31T15": 0.99959, + "2024-08-01T07": 0.99955, + "2024-08-01T06": 0.99951, + "2024-08-01T05": 0.99939, + "2024-08-01T04": 0.99948, + "2024-08-01T03": 0.99947, + "2024-08-01T08": 0.99948, + "2024-08-01T09": 0.99942, + "2024-08-01T10": 0.99947, + "2024-08-01T11": 0.99947, + "2024-08-01T12": 0.99948, + "2024-08-01T13": 0.99952, + "2024-08-01T14": 0.99958, + "2024-08-01T15": 0.9995, + "2024-08-02": 0.9991396466049922, + "2024-08-02T00": 0.9991, + "2024-08-01T20": 0.99899, + "2024-08-01T21": 0.99908, + "2024-08-02T04": 0.99909, + "2024-08-01T19": 0.9989, + "2024-08-01T16": 0.9993, + "2024-08-02T02": 0.99913, + "2024-08-01T17": 0.99919, + "2024-08-01T23": 0.99907, + "2024-08-02T01": 0.99911, + "2024-08-01T22": 0.99917, + "2024-08-01T18": 0.99908, + "2024-08-02T03": 0.99908, + "2024-08-02T05": 0.99913, + "2024-08-02T06": 0.99924, + "2024-08-02T07": 0.99919, + "2024-08-02T08": 0.99917, + "2024-08-02T09": 0.99914, + "2024-08-02T10": 0.99924, + "2024-08-02T11": 0.99916, + "2024-08-02T12": 0.9993, + "2024-08-02T13": 0.99922, + "2024-08-02T14": 0.99928, + "2024-08-02T15": 0.99902, + "2024-08-03": 0.9980744928349193, + "2024-08-02T16": 0.99915, + "2024-08-02T22": 0.99886, + "2024-08-02T23": 0.99872, + "2024-08-03T00": 0.99869, + "2024-08-03T01": 0.99877, + "2024-08-03T03": 0.99881, + "2024-08-02T19": 0.99891, + "2024-08-02T18": 0.999, + "2024-08-02T21": 0.999, + "2024-08-02T17": 0.99905, + "2024-08-02T20": 0.99891, + "2024-08-03T02": 0.99868, + "2024-08-03T06": 0.99891, + "2024-08-03T19": 0.99922, + "2024-08-03T10": 0.99912, + "2024-08-03T09": 0.99911, + "2024-08-03T15": 0.99933, + "2024-08-03T22": 0.99943, + "2024-08-03T05": 0.99889, + "2024-08-03T08": 0.99903, + "2024-08-03T14": 0.99935, + "2024-08-03T18": 0.9993, + "2024-08-03T17": 0.99928, + "2024-08-03T21": 0.9994, + "2024-08-03T12": 0.99924, + "2024-08-03T20": 0.99933, + "2024-08-03T04": 0.99899, + "2024-08-03T16": 0.99925, + "2024-08-03T11": 0.99916, + "2024-08-03T07": 0.99893, + "2024-08-03T13": 0.99932, + "2024-08-04": 0.9994888842899601, + "2024-08-03T23": 0.99944, + "2024-08-04T17": 0.99917, + "2024-08-04T13": 0.9995, + "2024-08-04T06": 0.99938, + "2024-08-04T12": 0.9995, + "2024-08-04T10": 0.99948, + "2024-08-04T16": 0.99928, + "2024-08-04T15": 0.99933, + "2024-08-04T00": 0.99941, + "2024-08-04T11": 0.99949, + "2024-08-04T01": 0.99941, + "2024-08-04T03": 0.99938, + "2024-08-04T04": 0.99939, + "2024-08-04T07": 0.99941, + "2024-08-04T08": 0.99939, + "2024-08-04T18": 0.9986296953680319, + "2024-08-04T09": 0.99943, + "2024-08-04T02": 0.9994, + "2024-08-04T05": 0.99939, + "2024-08-04T14": 0.99957, + "2024-08-05": 1.0001780404055356, + "2024-08-05T01": 0.998876049934434, + "2024-08-04T19": 0.9996361368044171, + "2024-08-04T22": 0.9992866639872917, + "2024-08-05T03": 1.0001823308005373, + "2024-08-05T02": 0.9963094037179481, + "2024-08-04T23": 0.9995885610097464, + "2024-08-05T00": 1.0002774095916478, + "2024-08-05T04": 0.9993162606484977, + "2024-08-05T06": 0.997208833972902, + "2024-08-04T20": 0.9997166894345347, + "2024-08-05T05": 1.0009046931658543, + "2024-08-04T21": 1.0002511495482798, + "2024-08-05T07": 1.0030673515265138, + "2024-08-05T08": 0.9988451287867782, + "2024-08-05T09": 1.0012621994661448, + "2024-08-05T10": 1.0016311637193034, + "2024-08-05T11": 1.0015488263864847, + "2024-08-05T12": 0.9998010511180302, + "2024-08-05T13": 0.9976959489284789, + "2024-08-05T14": 1.0008265391386915, + "2024-08-05T15": 1.00063, + "2024-08-06": 1.0003622710867188, + "2024-08-05T19": 1.00038, + "2024-08-05T20": 1.0001, + "2024-08-05T21": 1.00018, + "2024-08-06T02": 1.00038, + "2024-08-05T18": 1.00046, + "2024-08-05T23": 1.0002, + "2024-08-05T16": 1.0007, + "2024-08-06T05": 1.00059, + "2024-08-05T17": 1.00059, + "2024-08-06T00": 1.0002, + "2024-08-06T04": 1.00045, + "2024-08-06T03": 1.00039, + "2024-08-05T22": 1.00017, + "2024-08-06T01": 1.0003, + "2024-08-06T06": 1.00073, + "2024-08-06T07": 1.00071, + "2024-08-06T08": 1.00059, + "2024-08-06T09": 1.0003, + "2024-08-06T10": 1.00032, + "2024-08-06T11": 1.00025, + "2024-08-06T12": 1.00037, + "2024-08-06T13": 1.00028, + "2024-08-06T14": 1.00029 + }, + "USD ethereum/erc20/wrapped_bitcoin": { + "2023-07-30": 29296.61246525033, + "2023-10-23": 31070.015593504657, + "2023-07-27": 29365.610883551635, + "2023-08-20": 26291.40082300891, + "2024-02-23": 50975.03198325601, + "2024-04-05": 67459.23137021212, + "2023-12-19": 42781.27529765556, + "2024-05-17": 66681.76727794758, + "2023-08-06": 29027.76041564102, + "2023-12-02": 38786.25832300499, + "2024-06-11": 67222.8512253317, + "2024-01-08": 44894.635245237776, + "2023-10-31": 34398.671266770565, + "2023-08-29": 27405.789375860782, + "2023-09-09": 25878.873684725037, + "2023-10-01": 27191.236005766375, + "2024-03-07": 66692.59322873788, + "2023-10-12": 26694.929304358513, + "2024-04-22": 66090.60530666607, + "2023-07-29": 29324.029291851566, + "2024-04-26": 64232.06533211396, + "2024-06-24": 61327.573871499495, + "2023-09-26": 26223.93444969082, + "2023-08-24": 26467.230655303043, + "2023-12-05": 42208.12311311879, + "2024-02-19": 52135.94771593934, + "2024-01-07": 43996.91938952153, + "2024-04-28": 63880.93880062806, + "2023-07-31": 29359.156087290547, + "2023-10-18": 28460.735365975845, + "2023-10-07": 27943.62096942528, + "2024-06-28": 61434.150565516684, + "2024-05-19": 67078.76920710644, + "2024-05-12": 61208.87481846418, + "2024-04-29": 62667.44315879948, + "2023-09-16": 26564.46775822402, + "2023-08-25": 26118.288569727414, + "2024-03-09": 68508.59726023256, + "2023-09-05": 25737.969285646548, + "2024-04-25": 64218.32248163491, + "2023-08-12": 29454.782833065397, + "2024-06-12": 68325.27657946188, + "2023-09-01": 25805.299707144397, + "2024-05-30": 68208.36388068544, + "2024-06-05": 71012.42560887104, + "2023-09-08": 26015.752650149727, + "2024-03-22": 64201.10537928486, + "2023-08-10": 29499.997496345502, + "2023-11-18": 37519.39187052748, + "2023-09-13": 26114.250363740968, + "2023-12-07": 42552.65303730392, + "2024-06-30": 61506.68025779292, + "2024-06-20": 65330.37229484829, + "2024-07-08": 56295.7684457806, + "2024-07-07": 57204.42196211131, + "2023-09-07": 25777.898466533734, + "2024-03-26": 70290.05039744473, + "2024-05-14": 61765.627884992246, + "2024-06-16": 66556.74464610078, + "2024-02-22": 51524.87606567584, + "2024-04-15": 65285.20334121294, + "2023-12-30": 42104.92285064804, + "2023-09-17": 26534.868383507415, + "2024-04-17": 62302.79823299921, + "2024-02-12": 48359.915457125004, + "2023-10-26": 34293.92338219732, + "2024-01-03": 42737.61820518762, + "2024-05-07": 63384.01636939365, + "2024-01-22": 40791.724600517824, + "2024-07-13": 58552.230127621886, + "2023-10-03": 27423.30358875216, + "2024-05-26": 69153.03581640757, + "2024-04-30": 61151.96278968834, + "2024-07-09": 57457.85643067473, + "2023-12-24": 43627.61952010359, + "2023-09-24": 26517.824023701447, + "2024-01-16": 42902.33411107605, + "2023-10-17": 28358.03469891859, + "2024-04-24": 65664.20020794653, + "2024-03-18": 67541.26414705224, + "2024-02-17": 51605.31861531408, + "2023-12-27": 43010.08733476214, + "2023-09-03": 25959.187016013795, + "2024-02-24": 51114.916126349344, + "2024-01-06": 43785.36584486541, + "2024-03-20": 63246.280480826594, + "2023-11-21": 36999.82719109872, + "2023-12-25": 43219.540079307284, + "2023-09-22": 26600.297687023198, + "2024-03-01": 61962.39653565559, + "2023-10-02": 28065.718695396656, + "2024-03-27": 69801.87677437812, + "2024-05-06": 63962.627971500006, + "2024-06-19": 65265.6369129078, + "2023-08-30": 27375.675142265743, + "2023-10-06": 27737.078795086658, + "2023-10-13": 26792.64783694796, + "2024-02-05": 42621.59489838705, + "2023-12-10": 43777.65458298516, + "2023-11-23": 37289.572565448114, + "2023-08-04": 29096.073313472265, + "2024-05-13": 62687.2735169968, + "2024-01-13": 42832.156957199615, + "2024-03-28": 70624.28782642339, + "2023-08-05": 29027.726616707132, + "2024-02-09": 47022.06925072603, + "2023-10-09": 27588.476263100478, + "2024-01-09": 46640.110717796924, + "2024-05-10": 62908.60497874359, + "2023-08-18": 26337.446974187, + "2023-11-05": 35092.009703111544, + "2024-04-18": 62644.265313421995, + "2023-10-22": 29929.851258779323, + "2023-11-01": 34582.10733990672, + "2024-05-20": 63967.18031430287, + "2023-12-08": 43557.550706175585, + "2024-04-12": 69753.83083647261, + "2024-03-12": 71661.62286022175, + "2024-07-02": 62562.86283187481, + "2023-09-11": 25191.06243747264, + "2024-07-20": 66659.73799192092, + "2024-03-03": 62163.374720180065, + "2024-02-04": 42838.9108825601, + "2024-01-28": 42161.60948150877, + "2023-11-07": 35060.7552256269, + "2023-11-25": 37732.38159835471, + "2024-06-29": 61003.24365087786, + "2024-07-21": 67320.56965614208, + "2024-02-25": 51641.90748569946, + "2023-12-01": 38355.99981562811, + "2024-01-26": 41053.63972016501, + "2023-08-03": 29140.754132695656, + "2024-02-28": 59925.93822380211, + "2023-09-15": 26499.983157040824, + "2023-12-21": 43607.71346283964, + "2024-06-01": 67611.08189763779, + "2024-03-06": 66545.40919553909, + "2024-07-15": 62817.63052607369, + "2023-09-30": 27003.554404853232, + "2023-12-12": 41540.26777540971, + "2023-10-04": 27495.417278492692, + "2024-02-13": 49679.98851076558, + "2023-09-20": 27090.50341143283, + "2024-04-16": 62880.365581008446, + "2023-09-19": 27106.8562557679, + "2023-09-29": 26958.113760043005, + "2023-09-12": 25950.770824140258, + "2024-03-02": 61997.9636076041, + "2024-06-02": 67802.02218331996, + "2023-10-08": 27917.719980622027, + "2023-11-20": 37376.90479750761, + "2023-12-20": 43318.394993493865, + "2023-12-31": 42467.22043199314, + "2023-11-06": 35040.771732109635, + "2023-08-22": 26204.126216380297, + "2024-05-29": 67806.08317431777, + "2024-03-17": 66825.95040473745, + "2024-07-23": 66604.17796255853, + "2024-07-10": 58213.94509310597, + "2023-09-18": 26854.45309238583, + "2024-07-01": 62948.57542237913, + "2024-04-01": 69544.60350044761, + "2024-05-21": 71008.75677984807, + "2024-01-19": 41247.39504614126, + "2023-11-11": 37065.363039742835, + "2023-09-23": 26554.359605724763, + "2023-08-15": 29350.956667508985, + "2024-07-18": 64340.51502023097, + "2023-11-19": 37332.649361260985, + "2024-01-25": 39829.387988502436, + "2024-03-13": 72801.61014144347, + "2024-01-21": 41639.2295260585, + "2024-02-01": 42250.66005327282, + "2024-03-15": 67984.36289482548, + "2024-03-16": 67981.42625088194, + "2024-06-23": 64331.296363742425, + "2023-11-27": 37026.84088457922, + "2024-01-10": 45478.41161058398, + "2024-06-03": 68941.44846962542, + "2024-01-02": 45196.201195388916, + "2024-07-14": 60005.13926637801, + "2023-10-25": 34403.552980417175, + "2024-01-01": 43056.645691617785, + "2024-02-14": 51471.77107336979, + "2023-09-04": 25910.981989396114, + "2023-09-06": 25741.041348031016, + "2024-04-03": 66025.90358279804, + "2024-06-15": 66322.62862010213, + "2023-11-28": 37301.073860301105, + "2023-12-03": 39436.14345915107, + "2023-08-02": 29438.720650298248, + "2024-07-11": 57812.039552949565, + "2023-08-27": 26060.90893931763, + "2024-04-11": 70549.80300442546, + "2023-10-20": 29637.410969392324, + "2023-10-10": 27510.348242566637, + "2024-05-03": 61202.14503705169, + "2024-03-08": 68122.25349841882, + "2024-01-14": 42813.09354582175, + "2023-12-15": 42401.67725932966, + "2023-10-19": 28558.25123104837, + "2024-02-08": 44718.45475518873, + "2023-11-12": 37088.633041940724, + "2023-12-22": 43600.08167484358, + "2024-06-21": 64069.54346790582, + "2024-03-23": 64478.42286400373, + "2023-09-27": 26277.000374934985, + "2024-03-04": 65445.95179921573, + "2023-09-10": 25849.610498739177, + "2024-04-13": 66952.948356364, + "2024-02-29": 62251.80903573482, + "2023-09-21": 26590.766609393504, + "2024-04-21": 65051.48884283272, + "2023-11-08": 35402.2990709414, + "2024-07-19": 65110.37013774848, + "2023-12-29": 42444.169107620066, + "2023-12-04": 41313.16722618785, + "2024-04-10": 69158.31211725526, + "2024-05-08": 62262.43555662433, + "2023-10-11": 26996.202923912268, + "2024-05-05": 63706.70586438887, + "2024-03-21": 66831.25279446099, + "2024-05-23": 68225.77796301195, + "2024-04-08": 72257.66789305683, + "2024-05-18": 66818.70433981315, + "2024-06-10": 69534.92493244637, + "2023-10-05": 27786.694496814074, + "2023-10-16": 28139.645036675916, + "2024-05-22": 69886.38825159652, + "2024-02-10": 47253.408695779945, + "2024-04-07": 69418.07268574034, + "2024-02-20": 51867.12945828826, + "2023-11-17": 36305.471852422255, + "2023-12-11": 41891.64042576023, + "2023-11-26": 37535.23128173874, + "2023-10-27": 33951.86171680331, + "2024-02-02": 42986.03375191848, + "2023-09-14": 26486.509858832993, + "2024-01-27": 41716.4657565354, + "2024-03-30": 70060.85097090568, + "2023-11-22": 36558.58972631649, + "2023-09-28": 26748.712076340358, + "2024-06-04": 69676.36923030141, + "2023-11-16": 36917.938217112416, + "2024-06-26": 61515.91100754036, + "2024-01-18": 42252.22591928436, + "2023-08-26": 26039.900887345662, + "2024-02-15": 51901.530337295844, + "2024-07-17": 65305.358195158165, + "2023-10-28": 34112.963419679065, + "2024-03-24": 65408.830776669194, + "2024-07-04": 58122.41239169103, + "2024-04-27": 62517.24507206654, + "2023-12-06": 43708.15019123457, + "2024-01-30": 42962.43791839152, + "2023-11-14": 36278.617981528485, + "2023-08-09": 29740.673062446604, + "2024-07-22": 67496.1545342508, + "2024-06-06": 71265.69241485285, + "2024-05-15": 64076.693833692014, + "2023-11-10": 36928.914620142816, + "2024-01-23": 39098.16220953409, + "2024-01-31": 42797.91930696242, + "2024-05-11": 60802.56558824886, + "2024-01-11": 46587.04452961129, + "2024-02-18": 51745.32378432205, + "2024-07-12": 57464.76183720671, + "2023-10-30": 34498.68920915324, + "2023-12-17": 41802.944230506684, + "2024-02-26": 51738.78280074369, + "2024-06-17": 65960.73823118448, + "2024-01-05": 43742.43500601886, + "2024-06-14": 66478.74004742387, + "2023-08-23": 26153.60170337988, + "2024-06-13": 67274.911059015, + "2023-08-28": 26041.25196514852, + "2024-03-11": 71669.90420748736, + "2023-08-01": 28924.927231390328, + "2024-03-14": 71873.03889929195, + "2024-02-21": 51234.99114743089, + "2023-12-13": 41430.792522706935, + "2024-02-27": 56387.932977441626, + "2023-08-13": 29401.838335750163, + "2024-03-31": 70521.22034025344, + "2023-12-09": 43837.571726289854, + "2024-04-02": 65965.5561046931, + "2024-02-06": 42884.321538243115, + "2024-05-31": 67681.96570021978, + "2024-04-09": 70428.49444752137, + "2024-05-25": 69008.6948194035, + "2023-11-04": 34789.07052064845, + "2024-04-20": 64030.06032660914, + "2024-01-15": 42614.06195639552, + "2023-12-28": 42980.55355369268, + "2024-06-09": 69455.26308865157, + "2024-02-07": 42999.92739384612, + "2023-09-25": 26178.438267343696, + "2024-03-19": 63986.79062053029, + "2024-03-10": 69378.85072253745, + "2024-05-02": 58689.717921342606, + "2023-09-02": 25883.189003858533, + "2024-07-24": 66616.94436323819, + "2024-01-12": 44246.347390049516, + "2024-04-19": 63947.059567975135, + "2023-11-29": 37896.728942510446, + "2023-10-15": 26930.412583060675, + "2024-05-28": 68195.68991053788, + "2023-11-30": 37691.79099793203, + "2024-01-24": 39873.40993471571, + "2023-08-11": 29405.993490774104, + "2024-02-11": 48057.41363183503, + "2024-06-08": 69383.6226250458, + "2023-11-15": 36392.46056994667, + "2023-12-16": 41977.79542506377, + "2024-03-29": 70117.64095064295, + "2024-04-04": 66874.41482984625, + "2024-06-25": 61416.83139132418, + "2024-07-26": 67379.38572262133, + "2023-07-28": 29265.80707616615, + "2024-01-20": 41548.620907946155, + "2023-10-21": 29931.537133465015, + "2023-08-16": 29112.189736800196, + "2024-05-24": 67918.31612830676, + "2023-11-03": 34532.63064631964, + "2023-08-31": 27249.432530210444, + "2024-05-27": 69080.45296887823, + "2024-01-04": 43343.79138585729, + "2023-07-26": 29283.16784713234, + "2023-11-13": 36859.48525061196, + "2023-10-24": 34115.6060553043, + "2024-07-16": 64096.247298503986, + "2023-10-29": 34348.94067762641, + "2024-01-29": 42153.36955122822, + "2024-07-03": 60331.64464513707, + "2024-05-04": 63356.82173433075, + "2023-11-02": 35188.892970819245, + "2023-12-18": 41034.63132741745, + "2023-11-24": 37674.20890254923, + "2023-08-21": 26210.176687027862, + "2024-07-05": 55640.83089737583, + "2024-03-25": 67955.30705632942, + "2023-08-07": 29026.99022142959, + "2024-07-25": 64503.81921001202, + "2023-07-25": 29205.650210962718, + "2024-05-16": 65944.67170472098, + "2024-06-07": 70979.22961924809, + "2023-08-14": 29480.48903602005, + "2024-06-18": 65028.384414940876, + "2024-05-01": 58110.96592950757, + "2024-02-16": 51922.52085034828, + "2024-06-22": 64304.137326751756, + "2024-07-06": 56777.423642165624, + "2024-03-05": 66778.89853024499, + "2024-04-06": 68069.08816016429, + "2023-12-23": 43691.836489478774, + "2023-12-14": 42747.70288247707, + "2024-02-03": 43050.83991722218, + "2024-06-27": 61406.03975308289, + "2023-12-26": 42597.753421231435, + "2023-11-09": 36990.959435262375, + "2023-10-14": 26894.13403220856, + "2023-08-19": 26266.934767861956, + "2024-05-09": 61537.12901320489, + "2024-01-17": 42707.93300081803, + "2024-04-23": 66479.65438119383, + "2023-08-08": 29458.056440958433, + "2023-08-17": 27717.322494288055, + "2024-04-14": 64191.30541114879, + "2024-07-22T13": 67585.3774146628, + "2024-07-25T10": 64044.87731392316, + "2024-07-26T06": 67072.80600174611, + "2024-07-24T14": 66791.29999627949, + "2024-07-21T20": 67839.30471756698, + "2024-07-21T07": 66740.6576868383, + "2024-07-21T14": 67092.9535185327, + "2024-07-22T23": 67467.74970607038, + "2024-07-24T07": 65922.40913337062, + "2024-07-20T11": 66569.81713370248, + "2024-07-26T08": 67083.38301129533, + "2024-07-25T20": 64644.45160658969, + "2024-07-21T02": 67322.46744331367, + "2024-07-20T04": 66678.56889976161, + "2024-07-20T03": 66690.13790907584, + "2024-07-25T13": 64127.643329855324, + "2024-07-21T06": 66772.77227521049, + "2024-07-20T12": 66568.03228887537, + "2024-07-24T02": 65528.19600756406, + "2024-07-24T17": 66483.12579914175, + "2024-07-25T06": 64014.63016136598, + "2024-07-25T22": 65822.13697561588, + "2024-07-22T07": 67268.39820364994, + "2024-07-22T22": 67587.02284182506, + "2024-07-26T03": 67196.6764104136, + "2024-07-23T01": 67404.67524917955, + "2024-07-24T03": 65993.77969624825, + "2024-07-23T21": 65985.22792630893, + "2024-07-19T20": 67000.34490761017, + "2024-07-23T22": 66005.35388329372, + "2024-07-21T23": 68000.01129001794, + "2024-07-19T16": 66255.09983847501, + "2024-07-22T20": 68036.69482583381, + "2024-07-23T10": 66927.31665235072, + "2024-07-19T17": 66465.97141508761, + "2024-07-22T09": 67252.40321250424, + "2024-07-24T04": 65890.82390483015, + "2024-07-22T06": 67517.006373667, + "2024-07-24T21": 65562.27087370316, + "2024-07-20T21": 67049.53965498717, + "2024-07-21T15": 67179.96229894077, + "2024-07-20T09": 66646.5443430375, + "2024-07-25T14": 64032.8037541448, + "2024-07-19T11": 64044.2789426975, + "2024-07-23T20": 65890.8346912095, + "2024-07-25T03": 64042.06905796483, + "2024-07-20T01": 66534.8188749816, + "2024-07-25T23": 65648.0753712471, + "2024-07-20T16": 66852.51625505269, + "2024-07-22T15": 66854.31217381093, + "2024-07-23T16": 66443.97650640213, + "2024-07-22T02": 67823.1600570909, + "2024-07-21T04": 67140.701630851, + "2024-07-23T09": 66990.26175815877, + "2024-07-20T10": 66591.29258380724, + "2024-07-22T19": 67813.77489847178, + "2024-07-20T00": 66516.12001121533, + "2024-07-20T19": 67377.42005789733, + "2024-07-26T05": 66921.18604573964, + "2024-07-19T14": 65539.90681935169, + "2024-07-21T00": 67172.0956336488, + "2024-07-22T12": 67590.73702555269, + "2024-07-24T06": 65888.45002821261, + "2024-07-25T01": 64211.94188500926, + "2024-07-20T22": 67118.93541359925, + "2024-07-19T15": 65531.317624258576, + "2024-07-21T13": 66849.17829846617, + "2024-07-25T07": 64278.27036257403, + "2024-07-21T08": 66837.24528803413, + "2024-07-23T06": 66605.3922763166, + "2024-07-22T16": 67010.25727377083, + "2024-07-24T11": 66442.70643843988, + "2024-07-24T01": 65977.28846132541, + "2024-07-23T00": 67430.8402656033, + "2024-07-19T12": 64210.10410711315, + "2024-07-25T17": 64853.97107505364, + "2024-07-25T19": 64651.351302863375, + "2024-07-19T21": 67179.04107777512, + "2024-07-23T08": 66697.75144873561, + "2024-07-21T21": 67851.54076535895, + "2024-07-21T11": 66823.20699160651, + "2024-07-22T14": 66992.67233871481, + "2024-07-20T23": 67153.95188513541, + "2024-07-20T08": 66606.22494877141, + "2024-07-20T02": 66586.0707736345, + "2024-07-24T05": 65794.69156823952, + "2024-07-24T16": 66282.60229630508, + "2024-07-21T01": 67162.88961076319, + "2024-07-24T13": 66639.37723367156, + "2024-07-25T04": 64060.431815676784, + "2024-07-19T13": 64454.96449393816, + "2024-07-25T12": 64357.64347287016, + "2024-07-19T22": 67080.62285079852, + "2024-07-26T07": 66983.26989338157, + "2024-07-25T02": 64179.54426903411, + "2024-07-21T12": 66997.91437741302, + "2024-07-23T18": 65880.86672924587, + "2024-07-23T11": 66684.86564288216, + "2024-07-19T10": 63929.84523661804, + "2024-07-19T19": 66991.65199890378, + "2024-07-25T11": 64255.42647166627, + "2024-07-22T08": 67348.26314192756, + "2024-07-23T19": 65947.62620340963, + "2024-07-22T21": 67855.371507028, + "2024-07-21T09": 66931.84856492949, + "2024-07-21T22": 68098.58615190984, + "2024-07-22T04": 67857.1041707787, + "2024-07-25T16": 64974.75924136521, + "2024-07-19T23": 66766.21441701507, + "2024-07-26T09": 67239.42962095657, + "2024-07-20T06": 66636.38266428345, + "2024-07-23T02": 67448.51916928231, + "2024-07-23T14": 66700.83250628246, + "2024-07-23T03": 67473.43146295671, + "2024-07-25T08": 64116.520991191544, + "2024-07-24T15": 66394.15055559283, + "2024-07-19T09": 63895.46563246282, + "2024-07-20T15": 66705.64010218592, + "2024-07-23T23": 66037.86056081032, + "2024-07-23T12": 66637.89475392015, + "2024-07-22T10": 67460.39553807472, + "2024-07-21T10": 66987.07753159905, + "2024-07-22T00": 68176.92716290611, + "2024-07-24T22": 65430.35441939749, + "2024-07-24T19": 65995.22172770425, + "2024-07-24T09": 66354.08383358263, + "2024-07-23T04": 67191.89412967936, + "2024-07-23T05": 66560.78422236432, + "2024-07-25T18": 64832.480126296185, + "2024-07-25T15": 64661.47943221643, + "2024-07-26T01": 66321.63612070281, + "2024-07-22T01": 68016.46206058997, + "2024-07-26T02": 66702.82634422508, + "2024-07-24T18": 66185.01226267568, + "2024-07-21T19": 67183.8413510951, + "2024-07-25T05": 64153.32915465748, + "2024-07-22T18": 67459.43861171392, + "2024-07-24T00": 65994.60774488418, + "2024-07-24T08": 66229.98364600101, + "2024-07-24T20": 65867.19981132912, + "2024-07-24T23": 65314.224765933446, + "2024-07-22T17": 67215.08533306333, + "2024-07-21T17": 67465.91627071357, + "2024-07-24T12": 66392.36228177448, + "2024-07-23T13": 66623.6564239924, + "2024-07-21T05": 67034.67126631497, + "2024-07-20T05": 66551.10929823742, + "2024-07-21T03": 67278.84924075118, + "2024-07-26T00": 66035.64659176907, + "2024-07-20T20": 67451.03144619823, + "2024-07-22T03": 67940.9551219273, + "2024-07-25T21": 65538.4652286123, + "2024-07-21T16": 67115.59795188345, + "2024-07-20T17": 67340.63974054392, + "2024-07-22T11": 67463.03913767135, + "2024-07-25T00": 65445.40522884433, + "2024-07-20T13": 66503.0144968074, + "2024-07-23T07": 66498.47379817149, + "2024-07-22T05": 67732.26377950468, + "2024-07-20T07": 66682.31332308565, + "2024-07-21T18": 66601.79341433635, + "2024-07-23T17": 65941.84785876302, + "2024-07-20T14": 66638.08323075004, + "2024-07-26T04": 66975.69886397828, + "2024-07-24T10": 66460.47566448456, + "2024-07-20T18": 67405.11550794901, + "2024-07-23T15": 66702.64546848457, + "2024-07-19T18": 66619.3603830909, + "2024-07-25T09": 64341.946524170926, + "latest": 56034, + "2024-07-26T10": 67261.9864884542, + "2024-07-26T11": 67195.46017981127, + "2024-07-26T12": 67255.82466064586, + "2024-07-26T13": 67329.74919245421, + "2024-07-26T14": 67310.88322218, + "2024-07-26T17": 67396.69124540625, + "2024-07-26T16": 67605.30642181507, + "2024-07-26T15": 67523.49126552948, + "2024-07-26T18": 67491.83908940655, + "2024-07-27": 68238.40854362202, + "2024-07-28": 67872.33133967625, + "2024-07-28T05": 67284.58573059956, + "2024-07-26T21": 67812.53214836662, + "2024-07-27T02": 67833.37520507739, + "2024-07-28T01": 68122.00333956597, + "2024-07-27T10": 68166.58656216152, + "2024-07-28T02": 68063.67252055617, + "2024-07-27T19": 68248.37909761623, + "2024-07-27T09": 68145.71448984515, + "2024-07-27T06": 67977.27113494306, + "2024-07-27T18": 68755.07273949428, + "2024-07-26T22": 67961.51904467339, + "2024-07-27T13": 68885.97246211856, + "2024-07-27T12": 68389.95242115164, + "2024-07-27T16": 68826.35288598304, + "2024-07-27T05": 67927.51183871564, + "2024-07-26T23": 67913.63735340608, + "2024-07-26T20": 67677.62357735116, + "2024-07-27T08": 68014.04977266086, + "2024-07-28T03": 68069.84593504178, + "2024-07-27T01": 67762.80749728257, + "2024-07-28T09": 67427.36271911827, + "2024-07-28T10": 67617.4440264736, + "2024-07-27T00": 67887.58044985263, + "2024-07-28T00": 67795.60807201067, + "2024-07-27T04": 67857.72227079418, + "2024-07-27T14": 69053.50872509091, + "2024-07-27T07": 68177.1051268214, + "2024-07-27T11": 68147.7157119264, + "2024-07-27T22": 68699.34886764581, + "2024-07-27T03": 67853.26101278429, + "2024-07-27T20": 67606.45073385483, + "2024-07-27T23": 68134.80644493639, + "2024-07-28T08": 67409.08722546771, + "2024-07-27T21": 68721.85316286741, + "2024-07-28T07": 67399.65482493355, + "2024-07-27T15": 68808.28968326103, + "2024-07-26T19": 67761.24406744745, + "2024-07-28T04": 67827.72311942256, + "2024-07-28T06": 67509.9840314088, + "2024-07-27T17": 68530.4411219735, + "2024-07-29": 68550.1859137811, + "2024-07-28T20": 68098.12724900269, + "2024-07-28T16": 67760.16715034004, + "2024-07-29T07": 69489.9779580433, + "2024-07-28T23": 68195.87796384636, + "2024-07-28T15": 67682.24796910661, + "2024-07-28T18": 68115.49211053658, + "2024-07-29T04": 69298.63381251604, + "2024-07-29T06": 69690.97007904839, + "2024-07-28T21": 67942.65874725788, + "2024-07-29T03": 69502.3253268448, + "2024-07-28T12": 67914.78690935187, + "2024-07-29T05": 69537.52831458645, + "2024-07-28T17": 67683.57650538348, + "2024-07-29T00": 68818.96312608973, + "2024-07-29T01": 68631.22235227503, + "2024-07-28T22": 68073.46077415209, + "2024-07-28T19": 68220.5735762804, + "2024-07-28T14": 67815.59345376189, + "2024-07-29T02": 69272.45980600736, + "2024-07-29T08": 69573.34594205662, + "2024-07-28T11": 67746.93809304127, + "2024-07-28T13": 67970.07470543007, + "2024-07-29T09": 69549.79590546052, + "2024-07-29T10": 69557.64862656251, + "2024-07-29T11": 69676.79527666084, + "2024-07-29T12": 69625.50993265971, + "2024-07-29T13": 69531.30196650265, + "2024-07-30": 67109.20152072303, + "2024-07-29T23": 66975.85026318333, + "2024-07-29T18": 67395.53214696825, + "2024-07-29T21": 67386.60430090269, + "2024-07-29T22": 67772.80772302726, + "2024-07-29T17": 67015.39416983206, + "2024-07-29T15": 67761.80943534782, + "2024-07-30T01": 66797.92693980195, + "2024-07-29T19": 67484.87237699889, + "2024-07-30T04": 66756.24321282763, + "2024-07-29T14": 68846.75537527254, + "2024-07-29T20": 67322.4835166126, + "2024-07-30T03": 66595.22157053997, + "2024-07-30T00": 66526.06775912282, + "2024-07-29T16": 67270.3579348505, + "2024-07-30T02": 66218.67175779483, + "2024-07-30T09": 66849.82475229599, + "2024-07-30T08": 66990.75087182739, + "2024-07-30T06": 66646.21707775231, + "2024-07-30T05": 66585.9350708944, + "2024-07-30T07": 66995.86551322116, + "2024-07-30T10": 66730.11574170289, + "2024-07-30T11": 66721.30950017086, + "2024-07-30T12": 66633.81879768237, + "2024-07-30T13": 66787.45348765948, + "2024-07-31": 66135.05253730249, + "2024-07-31T00": 66196.43771611394, + "2024-07-31T05": 65825.94133562323, + "2024-07-30T23": 66211.72357208082, + "2024-07-30T19": 65787.30813817361, + "2024-07-30T16": 66269.3327785657, + "2024-07-30T17": 66313.4939054011, + "2024-07-30T18": 65953.13350880386, + "2024-07-30T20": 66056.33213735279, + "2024-07-30T15": 65909.29129991862, + "2024-07-31T03": 66160.49013271471, + "2024-07-30T21": 66109.35118108483, + "2024-07-31T01": 66315.99241529837, + "2024-07-31T07": 66547.24772546304, + "2024-07-31T06": 66133.79942855518, + "2024-07-31T02": 66273.02172380517, + "2024-07-30T22": 66290.75867866204, + "2024-07-30T14": 66494.86371873764, + "2024-07-31T04": 66106.10974463446, + "2024-07-31T08": 66307.47817574863, + "2024-07-31T11": 66102.49110060526, + "2024-07-31T09": 66249.30922126716, + "2024-07-31T10": 66171.90906792495, + "2024-07-31T12": 66176.83215266644, + "2024-08-01": 64244.90077046, + "2024-07-31T14": 66324.25612359855, + "2024-07-31T23": 64835.55862397067, + "2024-07-31T13": 66470.04170031313, + "2024-07-31T21": 64820.68685704124, + "2024-08-01T01": 64448.403963862685, + "2024-07-31T18": 66511.58372437567, + "2024-07-31T19": 65911.84923491077, + "2024-07-31T16": 66484.33280865257, + "2024-08-01T02": 64074.24339018846, + "2024-07-31T22": 64880.16356977224, + "2024-07-31T20": 65003.67740579468, + "2024-07-31T17": 66579.60557664622, + "2024-08-01T00": 64708.93144812008, + "2024-07-31T15": 66462.72954572098, + "2024-08-01T07": 64413.201613410834, + "2024-08-01T06": 64268.42774017974, + "2024-08-01T05": 64147.51610116971, + "2024-08-01T04": 63891.653911327776, + "2024-08-01T03": 63981.8511413071, + "2024-08-01T08": 64474.72734861379, + "2024-08-01T09": 64490.52465444337, + "2024-08-01T10": 64469.78646709085, + "2024-08-01T11": 64583.54218843335, + "2024-08-01T12": 64698.519906427166, + "2024-08-01T13": 64870.30892514767, + "2024-08-01T14": 64774.98230956648, + "2024-08-01T15": 63069.58870703191, + "2024-08-02": 62800.31188376276, + "2024-08-02T00": 65207.94870499634, + "2024-08-01T20": 63820.04397562155, + "2024-08-01T21": 64812.98884670726, + "2024-08-02T04": 64552.09090243686, + "2024-08-01T19": 63261.81047034356, + "2024-08-01T16": 62897.84487880157, + "2024-08-02T02": 64096.02052450493, + "2024-08-01T17": 62653.218598632986, + "2024-08-01T23": 65112.88925223472, + "2024-08-02T01": 64678.1540350111, + "2024-08-01T22": 65339.53782737586, + "2024-08-01T18": 63023.81180600363, + "2024-08-02T03": 64407.20601605019, + "2024-08-02T05": 64311.47070802749, + "2024-08-02T06": 64077.05280281363, + "2024-08-02T07": 64199.79875995172, + "2024-08-02T08": 64184.904879424284, + "2024-08-02T09": 64420.78290284973, + "2024-08-02T10": 64440.46052917983, + "2024-08-02T11": 64764.82255977766, + "2024-08-02T12": 64504.6495993297, + "2024-08-02T13": 64753.384547150665, + "2024-08-02T14": 65282.65575175259, + "2024-08-02T15": 62791.41987897066, + "2024-08-03": 61695.71244288664, + "2024-08-02T16": 63310.26480558566, + "2024-08-02T22": 61927.27622384073, + "2024-08-02T23": 61547.30622336011, + "2024-08-03T00": 61410.185323529746, + "2024-08-03T01": 60860.99588682392, + "2024-08-03T03": 61615.04657051895, + "2024-08-02T19": 62729.02985642705, + "2024-08-02T18": 63002.18727757764, + "2024-08-02T21": 61840.941130685154, + "2024-08-02T17": 63222.51190255557, + "2024-08-02T20": 62557.11953997637, + "2024-08-03T02": 61449.89552903647, + "2024-08-03T06": 61757.188619230976, + "2024-08-03T19": 60186.27286347324, + "2024-08-03T10": 61801.76380656487, + "2024-08-03T09": 61606.45281766926, + "2024-08-03T15": 61475.06429325203, + "2024-08-03T22": 60774.26776189602, + "2024-08-03T05": 61537.55521603996, + "2024-08-03T08": 61612.53339778105, + "2024-08-03T14": 62136.71714322061, + "2024-08-03T18": 60387.351617743996, + "2024-08-03T17": 60638.42128541661, + "2024-08-03T21": 60341.03270548688, + "2024-08-03T12": 62101.34425899362, + "2024-08-03T20": 60518.505163244976, + "2024-08-03T04": 61729.95102391976, + "2024-08-03T16": 60854.32833020294, + "2024-08-03T11": 61911.636145547585, + "2024-08-03T07": 61774.42053226004, + "2024-08-03T13": 61968.56385336336, + "2024-08-04": 60038.92592316548, + "2024-08-03T23": 60712.769049547496, + "2024-08-04T17": 58115.66018847223, + "2024-08-04T13": 60919.7838494071, + "2024-08-04T06": 60801.70777642199, + "2024-08-04T12": 60920.034509853496, + "2024-08-04T10": 60628.19745484863, + "2024-08-04T16": 58979.64989944228, + "2024-08-04T15": 59274.0782154584, + "2024-08-04T00": 60701.94052282188, + "2024-08-04T11": 60876.62300604117, + "2024-08-04T01": 60600.29247102424, + "2024-08-04T03": 60768.93018706636, + "2024-08-04T04": 60734.298101854016, + "2024-08-04T07": 60382.577769008945, + "2024-08-04T08": 60435.96784095842, + "2024-08-04T18": 57838.09402683163, + "2024-08-04T09": 60627.15398292556, + "2024-08-04T02": 60957.445957304815, + "2024-08-04T05": 60597.51833506786, + "2024-08-04T14": 60078.685486243114, + "2024-08-05": 52229.25332726896, + "2024-08-05T01": 56298.03269787211, + "2024-08-04T19": 58734.94194025932, + "2024-08-04T22": 58434.115327952524, + "2024-08-05T03": 54094.63767144147, + "2024-08-05T02": 54480.969744430055, + "2024-08-04T23": 58723.42379658306, + "2024-08-05T00": 58112.68051277995, + "2024-08-05T04": 53996.261361636614, + "2024-08-05T06": 52742.355030454884, + "2024-08-04T20": 59251.92439239687, + "2024-08-05T05": 53506.06892175726, + "2024-08-04T21": 59115.83781222441, + "2024-08-05T07": 50873.23356432302, + "2024-08-05T08": 52744.756667723486, + "2024-08-05T09": 52842.49957568231, + "2024-08-05T10": 51555.921306683515, + "2024-08-05T11": 51371.57522972668, + "2024-08-05T12": 51536.3959609559, + "2024-08-05T13": 49947.0243669956, + "2024-08-05T14": 52277.368638819484, + "2024-08-05T15": 54561.59406869968, + "2024-08-06": 55718.38644647079, + "2024-08-05T19": 53108.04758293161, + "2024-08-05T20": 53921.171576204484, + "2024-08-05T21": 54687.05988545015, + "2024-08-06T02": 55929.641306432306, + "2024-08-05T18": 53994.34355795127, + "2024-08-05T23": 54622.61776424356, + "2024-08-05T16": 54889.80573671545, + "2024-08-06T05": 55614.328653890574, + "2024-08-05T17": 54490.671508696665, + "2024-08-06T00": 55509.79421442207, + "2024-08-06T04": 55628.4516924119, + "2024-08-06T03": 55787.69327045593, + "2024-08-05T22": 54699.000070238035, + "2024-08-06T01": 56030.534878232764, + "2024-08-06T06": 55918.914333981804, + "2024-08-06T07": 55824.677368794786, + "2024-08-06T08": 55690.59303261552, + "2024-08-06T09": 54920.651802095555, + "2024-08-06T10": 55196.72685905715, + "2024-08-06T11": 55158.9349728243, + "2024-08-06T12": 55287.83618486671, + "2024-08-06T13": 54817.22166912975, + "2024-08-06T14": 54878.06812509427 + }, + "USD ethereum/erc20/pooled_staked_eth": { "latest": 0 }, + "USD casper": { + "2024-07-31": 0.01754403204742785, + "2024-08-02": 0.016086148310340373, + "2024-07-30": 0.018056115760237062, + "2024-08-01": 0.01683106737372804, + "2024-08-06": 0.014897295396208205, + "2024-07-20": 0.022710895394385186, + "2024-07-21": 0.02242737333307113, + "2024-07-15": 0.02232094124399471, + "2024-08-03": 0.01581766229031559, + "2024-07-18": 0.02251959545116545, + "2024-07-11": 0.021750160423292836, + "2024-07-17": 0.022885450727997886, + "2024-07-22": 0.021893294365172976, + "2024-07-12": 0.021352885252382072, + "2024-07-24": 0.02089084411552204, + "2024-07-06": 0.020422042, + "2024-07-08": 0.020318322074976466, + "2024-07-07": 0.020480213421457203, + "2024-07-13": 0.021814565433900937, + "2024-07-09": 0.02088002809285459, + "2024-07-23": 0.021303314615654965, + "2024-07-10": 0.02137000008325415, + "2024-07-14": 0.021767398426954052, + "2024-07-29": 0.018737615300913633, + "2024-07-27": 0.019131823873440243, + "2024-07-28": 0.018969620600000004, + "2024-07-19": 0.02203998634865348, + "2024-08-04": 0.016181725036654455, + "2024-07-26": 0.020978285365511433, + "2024-08-05": 0.013982489004869387, + "2024-07-25": 0.020575277658435965, + "2024-07-16": 0.022608347839883216, + "2024-08-02T16": 0.016126281000000003, + "2024-08-02T11": 0.016546089599999998, + "2024-07-31T00": 0.017615595, + "2024-08-05T18": 0.014616720599999999, + "2024-07-31T11": 0.0175803255, + "2024-08-05T23": 0.014562911999999999, + "2024-08-02T06": 0.0163675512, + "2024-08-01T13": 0.017341672, + "2024-08-05T01": 0.0143141288, + "2024-08-02T00": 0.016934745, + "2024-08-06T06": 0.015171066799999999, + "2024-08-03T23": 0.0158311296, + "2024-08-01T11": 0.0173108204, + "2024-08-05T19": 0.014505510000000001, + "2024-08-04T19": 0.01612491129086099, + "2024-08-01T23": 0.0169342365, + "2024-08-04T17": 0.0152573259, + "2024-08-02T22": 0.0159517942, + "2024-08-02T01": 0.016745083600000002, + "2024-08-02T05": 0.016559914518111767, + "2024-08-03T20": 0.0153796887, + "2024-07-31T14": 0.0175620935, + "2024-08-03T12": 0.0161776956, + "2024-07-31T05": 0.017566134599999998, + "2024-08-02T08": 0.0163664046, + "2024-08-05T14": 0.0135436558, + "2024-08-01T07": 0.016862408500000002, + "2024-08-03T06": 0.0158626908, + "2024-08-04T13": 0.016341825, + "2024-08-06T11": 0.014883720000000001, + "2024-08-05T16": 0.014370051999999998, + "2024-08-05T06": 0.0133490655, + "2024-08-01T22": 0.0168360145, + "2024-08-04T20": 0.016134512400000002, + "2024-08-06T10": 0.0150048, + "2024-08-01T15": 0.016861565000000002, + "2024-08-06T05": 0.014918796900000001, + "2024-08-04T08": 0.0162800631, + "2024-08-01T00": 0.016504551699999998, + "2024-08-06T13": 0.0148341524, + "2024-08-04T18": 0.0156100032, + "2024-07-31T15": 0.0175727922, + "2024-08-03T19": 0.015348846892218285, + "2024-08-02T12": 0.016488285000000002, + "2024-08-01T20": 0.016563254200000002, + "2024-08-01T21": 0.0167445808, + "2024-07-30T23": 0.017594896000000002, + "2024-08-03T16": 0.01542842, + "2024-08-06T00": 0.014772954, + "2024-08-04T06": 0.0165097576, + "2024-08-02T15": 0.015774525799999998, + "2024-08-05T10": 0.0137719278, + "2024-08-05T17": 0.0145385727, + "2024-08-03T04": 0.015903920800000002, + "2024-08-06T04": 0.0147566375, + "2024-08-06T03": 0.014795768099999997, + "2024-07-30T19": 0.017333584200000002, + "2024-08-02T04": 0.016634848500000004, + "2024-08-02T23": 0.0160594176, + "2024-08-05T08": 0.013821520200000001, + "2024-08-02T09": 0.0164958014, + "2024-08-04T12": 0.016281855, + "2024-08-04T22": 0.016213998599999998, + "2024-07-31T23": 0.016435083076896048, + "2024-08-04T10": 0.0163514928, + "2024-07-30T16": 0.018024640325288596, + "2024-08-05T20": 0.01450145, + "2024-08-03T10": 0.016035875999999998, + "2024-08-04T16": 0.015628739200000002, + "2024-07-31T06": 0.017894808999999998, + "2024-07-31T02": 0.017756448, + "2024-08-03T09": 0.015735982500000002, + "2024-08-04T15": 0.01583027327423347, + "2024-08-03T00": 0.0162287125, + "2024-07-30T17": 0.0180144138, + "2024-08-03T15": 0.01598928, + "2024-08-01T19": 0.016391949, + "2024-07-30T13": 0.018326334, + "2024-08-03T22": 0.0156810567, + "2024-07-30T22": 0.0174849279, + "2024-07-31T13": 0.0177216669, + "2024-07-30T18": 0.0179242624, + "2024-08-03T05": 0.0158324065, + "2024-08-05T09": 0.013922505600000001, + "2024-08-03T01": 0.015980320000000003, + "2024-08-05T03": 0.0143092845, + "2024-07-31T08": 0.017742012499999998, + "2024-08-01T10": 0.0171708946, + "2024-07-31T21": 0.0169835438, + "2024-08-01T09": 0.0172300008, + "2024-08-06T09": 0.014916722120955343, + "2024-08-03T08": 0.0158146449, + "2024-08-03T14": 0.016089535, + "2024-08-01T12": 0.017241212102272068, + "2024-07-30T20": 0.017274816000000002, + "2024-07-30T15": 0.018060244226968204, + "2024-08-01T01": 0.01659419, + "2024-08-05T13": 0.013309201400000002, + "2024-08-01T16": 0.016468464000000002, + "2024-08-04T00": 0.0157407075, + "2024-08-02T14": 0.01624839688030068, + "2024-08-04T09": 0.0163806577, + "2024-08-04T02": 0.016180286, + "2024-08-03T03": 0.015970971900000002, + "2024-08-03T11": 0.0160265264, + "2024-07-31T09": 0.0177730658, + "2024-07-31T12": 0.0176001384, + "2024-08-05T11": 0.0135217576, + "2024-08-03T18": 0.015409206, + "2024-08-01T08": 0.016821248400000002, + "2024-07-31T10": 0.0177314848, + "2024-08-03T17": 0.015338948, + "2024-07-31T03": 0.0178562494, + "2024-08-01T06": 0.0169516896, + "2024-08-02T07": 0.0163767241, + "2024-08-02T19": 0.0157927671, + "2024-08-05T22": 0.0145924803, + "2024-08-06T01": 0.014884464, + "2024-08-05T15": 0.0140488452, + "2024-07-31T18": 0.0175442085, + "2024-08-05T02": 0.014067185999999999, + "2024-08-05T12": 0.013361469600000002, + "2024-07-30T21": 0.01732540407388409, + "2024-08-06T07": 0.0152902376, + "2024-08-04T11": 0.016291687, + "2024-08-05T05": 0.0139291642, + "2024-07-31T19": 0.0173141112, + "2024-08-04T21": 0.0160853339, + "2024-07-30T14": 0.018116376, + "2024-08-01T18": 0.01610656539369771, + "2024-07-31T04": 0.017621048489254453, + "2024-08-02T18": 0.01575423, + "2024-08-02T03": 0.016634682, + "2024-08-06T12": 0.014885505600000001, + "2024-08-04T01": 0.0156807429, + "2024-08-02T21": 0.01587411, + "2024-08-02T02": 0.016595549299999998, + "2024-08-02T10": 0.0165773916, + "2024-08-04T23": 0.0160134318, + "2024-08-04T03": 0.0161699684, + "2024-08-01T05": 0.0167397825, + "2024-08-02T17": 0.0159548285, + "2024-07-31T16": 0.0176231243, + "2024-08-04T04": 0.0163800021, + "2024-08-01T02": 0.0167213004, + "2024-08-05T21": 0.0145326154, + "2024-08-05T07": 0.01365, + "2024-08-05T00": 0.0155726774, + "2024-08-02T20": 0.0159625818, + "2024-07-31T01": 0.017685931300000002, + "2024-07-31T22": 0.0168547734, + "2024-08-04T07": 0.016470276800000003, + "2024-08-04T05": 0.0164299716, + "2024-08-01T14": 0.017172784400000002, + "2024-08-03T02": 0.0160188272, + "2024-08-01T04": 0.016821248400000002, + "2024-08-01T17": 0.016366732199999998, + "2024-08-06T02": 0.0149156658, + "2024-08-04T14": 0.0159831243, + "2024-07-31T20": 0.01699366812986371, + "2024-08-03T21": 0.015370772, + "2024-08-06T08": 0.0151888044, + "2024-08-02T13": 0.0165270988, + "2024-08-05T04": 0.014119294000000001, + "2024-08-01T03": 0.0168310748, + "2024-07-31T17": 0.017603132100000002, + "2024-07-31T07": 0.017824472699999996, + "2024-08-03T07": 0.0159429228, + "2024-08-03T13": 0.016129024800000002, + "latest": 0.01487637, + "2024-08-06T14": 0.014834300699999997 + }, + "status": { + "USD avalanche_c_chain": { + "timestamp": 1722953650799, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD algorand": { + "timestamp": 1722953650806, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD bittorrent": { + "timestamp": 1722953650810, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD bitcoin_gold": { + "timestamp": 1722953650805, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD axelar": { + "timestamp": 1722953650799, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD astar": { + "timestamp": 1722953650807, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD bitcoin_cash": { + "timestamp": 1722953650798, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD cosmos": { + "timestamp": 1722953650828, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD celo": { + "timestamp": 1722953650835, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD elrond": { + "timestamp": 1722953650834, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD cronos": { + "timestamp": 1722953650837, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD cardano": { + "timestamp": 1722953650806, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD dash": { + "timestamp": 1722953650832, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD bitcoin": { + "timestamp": 1722953650801, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD crypto_org": { + "timestamp": 1722953650833, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD bsc": { + "timestamp": 1722953650801, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD eos": { + "timestamp": 1722953650843, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD ethereum_classic": { + "timestamp": 1722953650877, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD fantom": { + "timestamp": 1722953650876, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD flow": { + "timestamp": 1722953650898, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD flare": { + "timestamp": 1722953650901, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD filecoin": { + "timestamp": 1722953650894, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD injective": { + "timestamp": 1722953650926, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD dogecoin": { + "timestamp": 1722953650835, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD hedera": { + "timestamp": 1722953650927, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD internet_computer": { + "timestamp": 1722953650923, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD iota": { + "timestamp": 1722953650924, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD near": { + "timestamp": 1722953650972, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD metis": { + "timestamp": 1722724188125, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD monero": { + "timestamp": 1722953650954, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD klaytn": { + "timestamp": 1722953650931, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD litecoin": { + "timestamp": 1722953650928, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD ethereum": { + "timestamp": 1722953650838, + "oldestDateRequested": "2021-05-26T12:50:20.000Z" + }, + "USD neo": { + "timestamp": 1722953650949, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD kusama": { + "timestamp": 1722953650925, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD nervos": { + "timestamp": 1722953650955, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD osmo": { + "timestamp": 1722953650962, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD polkadot": { + "timestamp": 1722953650956, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD solana": { + "timestamp": 1722953650983, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD ravencoin": { + "timestamp": 1722953650968, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD qtum": { + "timestamp": 1722953650958, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD tezos": { + "timestamp": 1722953650992, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD stellar": { + "timestamp": 1722953650990, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD stacks": { + "timestamp": 1722953650983, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD tron": { + "timestamp": 1722953650990, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD vechain": { + "timestamp": 1722953650992, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD zilliqa": { + "timestamp": 1722953650997, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD zcash": { + "timestamp": 1722953650994, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD polygon": { + "timestamp": 1722953650962, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD ripple": { + "timestamp": 1722953650981, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD ethereum/erc20/pooled_staked_eth": { "timestamp": 1722856828154, "failures": 28 }, + "USD ethereum/erc20/usd_tether__erc20_": { + "timestamp": 1722953650870, + "oldestDateRequested": "2023-07-25T22:00:00.000Z" + }, + "USD ethereum/erc20/dai_stablecoin_v2_0": { + "timestamp": 1722953650903, + "oldestDateRequested": "2023-07-25T22:00:00.000Z" + }, + "USD ethereum/erc20/omg": { + "timestamp": 1722953650899, + "oldestDateRequested": "2023-07-25T22:00:00.000Z" + }, + "USD ethereum/erc20/kyber_network_crystal_v2": { + "timestamp": 1722953650901, + "oldestDateRequested": "2023-07-25T22:00:00.000Z" + }, + "USD ethereum/erc20/wrapped_bitcoin": { + "timestamp": 1722953650923, + "oldestDateRequested": "2023-07-25T22:00:00.000Z" + }, + "USD ethereum/erc20/enjin": { + "timestamp": 1722953650906, + "oldestDateRequested": "2023-07-25T22:00:00.000Z" + }, + "USD ethereum/erc20/aragon_network_token": { + "timestamp": 1722953650938, + "oldestDateRequested": "2023-07-25T22:00:00.000Z" + }, + "USD ethereum/erc20/okb": { + "timestamp": 1722953655477, + "oldestDateRequested": "2023-07-25T22:00:00.000Z" + }, + "USD nem": { + "timestamp": 1722949891984, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + }, + "USD casper": { + "timestamp": 1722953650833, + "oldestDateRequested": "2024-06-25T22:00:00.000Z" + } + } + }, + "postOnboarding": { + "deviceModelId": "nanoX", + "walletEntryPointDismissed": false, + "entryPointFirstDisplayedDate": "2024-07-26T09:33:19.515Z", + "actionsToComplete": [], + "actionsCompleted": {}, + "lastActionCompleted": null, + "postOnboardingInProgress": false + } + } +} diff --git a/apps/ledger-live-desktop/tests/userdata/ledgerSync.json b/apps/ledger-live-desktop/tests/userdata/ledgerSync.json new file mode 100644 index 000000000000..c379e7de7aa1 --- /dev/null +++ b/apps/ledger-live-desktop/tests/userdata/ledgerSync.json @@ -0,0 +1,65 @@ +{ + "data": { + "PLAYWRIGHT_RUN": { + "localStorage": { + "acceptedTermsVersion": "2042-01-01" + } + }, + "settings": { + "hasCompletedOnboarding": true, + "counterValue": "USD", + "language": "en", + "theme": null, + "region": null, + "orderAccounts": "balance|desc", + "countervalueFirst": false, + "autoLockTimeout": 10, + "selectedTimeRange": "month", + "marketIndicator": "western", + "currenciesSettings": {}, + "pairExchanges": {}, + "developerMode": false, + "loaded": true, + "shareAnalytics": true, + "sentryLogs": true, + "lastUsedVersion": "99.99.99", + "dismissedBanners": [], + "accountsViewMode": "list", + "showAccountsHelperBanner": true, + "hideEmptyTokenAccounts": false, + "sidebarCollapsed": false, + "discreetMode": false, + "preferredDeviceModel": "nanoS", + "hasInstalledApps": true, + "hasAcceptedSwapKYC": false, + "lastSeenDevice": null, + "blacklistedTokenIds": [], + "swapAcceptedProviderIds": [], + "deepLinkUrl": null, + "firstTimeLend": false, + "swapProviders": [], + "showClearCacheBanner": false, + "starredAccountIds": [], + "hasPassword": false, + "overriddenFeatureFlags": { + "lldAnalyticsOptInPrompt": { + "enabled": true, + "params": { + "variant": "A", + "entryPoints": ["Onboarding"] + }, + "overridesRemote": true + }, + "lldWalletSync": { + "enabled": true, + "overridesRemote": true + } + } + }, + "user": { + "id": "08cf3393-c5eb-4ea7-92de-0deea22e3971" + }, + "accounts": [], + "countervalues": {} + } +} diff --git a/apps/ledger-live-desktop/tests/userdata/skip-onboarding-with-terms.json b/apps/ledger-live-desktop/tests/userdata/skip-onboarding-with-terms.json index f8020bbd2fbc..8ec5e86a4545 100644 --- a/apps/ledger-live-desktop/tests/userdata/skip-onboarding-with-terms.json +++ b/apps/ledger-live-desktop/tests/userdata/skip-onboarding-with-terms.json @@ -48,4 +48,4 @@ "accounts": [], "countervalues": {} } -} \ No newline at end of file +} diff --git a/apps/ledger-live-desktop/tests/userdata/skip-onboarding.json b/apps/ledger-live-desktop/tests/userdata/skip-onboarding.json index 68a55414fe35..9f5aed1b66ba 100644 --- a/apps/ledger-live-desktop/tests/userdata/skip-onboarding.json +++ b/apps/ledger-live-desktop/tests/userdata/skip-onboarding.json @@ -48,4 +48,4 @@ "accounts": [], "countervalues": {} } -} \ No newline at end of file +} diff --git a/apps/ledger-live-desktop/tests/userdata/speculos-2ETH-2BNB.json b/apps/ledger-live-desktop/tests/userdata/speculos-2ETH-2BNB.json new file mode 100644 index 000000000000..0b40a1d3b9aa --- /dev/null +++ b/apps/ledger-live-desktop/tests/userdata/speculos-2ETH-2BNB.json @@ -0,0 +1,12980 @@ +{ + "data": { + "PLAYWRIGHT_RUN": { + "localStorage": { + "acceptedTermsVersion": "2042-01-01" + } + }, + "settings": { + "hasCompletedOnboarding": true, + "counterValue": "USD", + "language": "en", + "locale": "en-US", + "theme": null, + "region": null, + "orderAccounts": "balance|desc", + "countervalueFirst": false, + "autoLockTimeout": 10, + "selectedTimeRange": "month", + "currenciesSettings": {}, + "pairExchanges": {}, + "developerMode": false, + "loaded": true, + "shareAnalytics": true, + "sharePersonalizedRecommandations": true, + "hasSeenAnalyticsOptInPrompt": false, + "sentryLogs": true, + "lastUsedVersion": "99.99.99", + "dismissedBanners": [], + "accountsViewMode": "list", + "nftsViewMode": "list", + "collectiblesViewMode": "list", + "showAccountsHelperBanner": true, + "hideEmptyTokenAccounts": false, + "filterTokenOperationsZeroAmount": true, + "sidebarCollapsed": false, + "discreetMode": false, + "preferredDeviceModel": "nanoSP", + "hasInstalledApps": true, + "lastSeenDevice": { + "modelId": "nanoSP", + "deviceInfo": { + "version": "1.2.0", + "mcuVersion": "4.04", + "seVersion": "1.2.0", + "majMin": "1.2.0", + "providerName": null, + "targetId": 856686596, + "hasDevFirmware": false, + "seTargetId": 856686596, + "isOSU": false, + "isBootloader": false, + "isRecoveryMode": false, + "managerAllowed": true, + "pinValidated": true, + "onboarded": true, + "bootloaderVersion": "3.13", + "languageId": 0 + }, + "apps": [] + }, + "devicesModelList": ["nanoSP"], + "lastSeenCustomImage": { + "size": 0, + "hash": "" + }, + "latestFirmware": null, + "blacklistedTokenIds": [], + "hiddenNftCollections": [], + "deepLinkUrl": null, + "firstTimeLend": false, + "showClearCacheBanner": false, + "fullNodeEnabled": false, + "allowDebugApps": false, + "allowReactQueryDebug": false, + "allowExperimentalApps": false, + "enablePlatformDevTools": false, + "catalogProvider": "production", + "enableLearnPageStagingUrl": false, + "swap": { + "hasAcceptedIPSharing": false, + "acceptedProviders": [], + "selectableCurrencies": [] + }, + "overriddenFeatureFlags": {}, + "featureFlagsButtonVisible": false, + "vaultSigner": { + "enabled": false, + "host": "", + "token": "", + "workspace": "" + }, + "supportedCounterValues": [], + "dismissedContentCards": {}, + "anonymousBrazeId": "anonymous_id_15", + "starredMarketCoins": [] + }, + "accounts": [ + { + "data": { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "seedIdentifier": "047e89e2c6153732ee8f54bca17a4a74d3e1d9bddcb6149ed113394f79f585987d90e550639bf0fb76466141684bc43fbc90a24cd9f287fa4662f8ea2b889da1e7", + "used": true, + "derivationMode": "", + "index": 0, + "freshAddress": "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", + "freshAddressPath": "44'/60'/0'/0/0", + "blockHeight": 20469188, + "syncHash": "0x6fc05c0a", + "creationDate": "2024-04-10T12:19:59.000Z", + "operationsCount": 10, + "operations": [ + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3b9cde274468b519996d10dafab78ac30c16d7374e504ab2e4329dcd34ea6e69-OUT", + "hash": "0x3b9cde274468b519996d10dafab78ac30c16d7374e504ab2e4329dcd34ea6e69", + "type": "OUT", + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0xdbC93cfB3AC9C7AC2E9308146d54148414927D48"], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x1d62261fd171795d318d6dabffb44efa23892f800d381d5c93c4948b8d2b53bc", + "blockHeight": 20133098, + "extra": {}, + "date": "2024-06-20T13:00:23.000Z", + "value": "2303444251061000", + "fee": "303444251061000", + "transactionSequenceNumber": 6, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x5311d74df27e94825b5e8fba09a426e95e9b0098171c4ff4f82243241384b8dd-OUT", + "hash": "0x5311d74df27e94825b5e8fba09a426e95e9b0098171c4ff4f82243241384b8dd", + "type": "OUT", + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x3212e5Eb0b889881D6Fc193F26c87312eD796e3A"], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xb8cf3be6fac56b8e2515b6755845609d9e1b0315c38025561539319707a7bb1c", + "blockHeight": 19976206, + "extra": {}, + "date": "2024-05-29T14:46:59.000Z", + "value": "4530843419386000", + "fee": "530843419386000", + "transactionSequenceNumber": 5, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc47123d53a94bebd75112865df680c019c00435441a76feb63eea923ac8e5d22-OUT", + "hash": "0xc47123d53a94bebd75112865df680c019c00435441a76feb63eea923ac8e5d22", + "type": "OUT", + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x9910feAD77AA34342a11431AcCe18536a75C1bce"], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x8ad54ea0499814d9132ce35d8150fe1ac7d6e591f9a5f762f4369e413e1350cf", + "blockHeight": 19976110, + "extra": {}, + "date": "2024-05-29T14:27:35.000Z", + "value": "4423215045505000", + "fee": "423215045505000", + "transactionSequenceNumber": 4, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x8e14e9ea83962fdcb7f4df29a274b9a95299398b656ad257882d6aa3e0ee5559-OUT", + "hash": "0x8e14e9ea83962fdcb7f4df29a274b9a95299398b656ad257882d6aa3e0ee5559", + "type": "OUT", + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0xA01ee92F03Db6E2663A0dBea49971FFb47419c93"], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x18230d48a485e2dc10c65ac8489f0df1cee8d9774cd1f49dad94d0f61ed91381", + "blockHeight": 19976060, + "extra": {}, + "date": "2024-05-29T14:17:35.000Z", + "value": "4487919074629000", + "fee": "487919074629000", + "transactionSequenceNumber": 3, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf670b36ae494c9e328e40012e819d36ef8c3bd1b8e4a5ceb13909ed8bdb2e90e-OUT", + "hash": "0xf670b36ae494c9e328e40012e819d36ef8c3bd1b8e4a5ceb13909ed8bdb2e90e", + "type": "OUT", + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0xD37BbE5744D730a1d98d8DC97c42F0Ca46aD7146"], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x456cc434af21c58d45488af2d4ffa02715dcd10982101f2712450c8b13cec14c", + "blockHeight": 19975950, + "extra": {}, + "date": "2024-05-29T13:55:35.000Z", + "value": "4807298981452369", + "fee": "807298981452369", + "transactionSequenceNumber": 2, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x12d09eea0443d9c21634c1d8b6222d0e3d8c4070b8149454b53fd1ef93e60e64-OUT", + "hash": "0x12d09eea0443d9c21634c1d8b6222d0e3d8c4070b8149454b53fd1ef93e60e64", + "type": "OUT", + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x59861265f201088607E691dC3e4E317197cc99D7"], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xd8d08b009f7d38acf8929a13b66fdd895e8ff58b7880d5c542ddb2e1d61a7278", + "blockHeight": 19975783, + "extra": {}, + "date": "2024-05-29T13:22:11.000Z", + "value": "8415525973247000", + "fee": "415525973247000", + "transactionSequenceNumber": 1, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x8335908658142154cd38d884729dfe450ecce1e92b6b823439a00c071502f5d1-IN", + "hash": "0x8335908658142154cd38d884729dfe450ecce1e92b6b823439a00c071502f5d1", + "type": "IN", + "senders": ["0x04F479967bBc039E060d6292e5dE86f249291bbc"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xc6d10cc76084ce8f75a0fec63f140c902660ba26adfe3d8385ae8442a6e4f6a8", + "blockHeight": 19969391, + "extra": {}, + "date": "2024-05-28T15:54:47.000Z", + "value": "52000000000000000", + "fee": "374133844980000", + "transactionSequenceNumber": 20, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x48831ea0324ee5921c0dca9dfad014be64867734ad76144822d35c853c87bf54-OUT", + "hash": "0x48831ea0324ee5921c0dca9dfad014be64867734ad76144822d35c853c87bf54", + "type": "OUT", + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xda6807e9b25b1b8f5f4119429868eca096543e2146f2410421fd9d5bb2b6011c", + "blockHeight": 19666996, + "extra": {}, + "date": "2024-04-16T08:56:59.000Z", + "value": "242324232847000", + "fee": "232324232847000", + "transactionSequenceNumber": 0, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec-NONE", + "hash": "0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec", + "type": "NONE", + "senders": ["0x84c9A36721eB21da9244Fe50177180D8f4a7cAF7"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x16bdbd15adbb60b78f5e98abf9ae9ef4fd3a8db5654b50cf79c83d5fdd49cb58", + "blockHeight": 19659636, + "extra": {}, + "date": "2024-04-15T08:10:35.000Z", + "value": "0", + "fee": "716341757180607", + "transactionSequenceNumber": 287, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa4849c653dcaa518bff5afae4ca1fc7ebeaabde79a18eabadbe6e5a823926057-IN", + "hash": "0xa4849c653dcaa518bff5afae4ca1fc7ebeaabde79a18eabadbe6e5a823926057", + "type": "IN", + "senders": ["0x4F008D1A92295d09294B778188Be9a74659515D3"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x7701a0ad05d3522d610269400bcaa3090b0f0929222f3ea4ec6be15e699bd7c3", + "blockHeight": 19625186, + "extra": {}, + "date": "2024-04-10T12:19:59.000Z", + "value": "616385555132247", + "fee": "382291376376000", + "transactionSequenceNumber": 0, + "hasFailed": false, + "internalOperations": [] + } + ], + "pendingOperations": [], + "currencyId": "ethereum", + "lastSyncDate": "2024-08-06T11:19:53.985Z", + "balance": "23405814577004878", + "spendableBalance": "23405814577004878", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880 + ], + "latestDate": 1722942000000 + }, + "DAY": { + "balances": [ + 0, 616385555132247, 616385555132247, 616385555132247, 616385555132247, + 616385555132247, 616385555132247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 52374061322285250, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [ + 0, 616385555132247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 25709258828065880, + 25709258828065880, 25709258828065880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880 + ], + "latestDate": 1722722400000 + } + }, + "subAccounts": [ + { + "type": "TokenAccountRaw", + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "parentId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "tokenId": "ethereum/erc20/usd_tether__erc20_", + "balance": "5000000", + "spendableBalance": "5000000", + "balanceHistoryCache": { + "HOUR": { + "latestDate": null, + "balances": [] + }, + "DAY": { + "latestDate": null, + "balances": [] + }, + "WEEK": { + "latestDate": null, + "balances": [] + } + }, + "creationDate": "2024-08-06T11:19:53.984Z", + "operationsCount": 1, + "operations": [ + { + "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec-IN-i0", + "hash": "0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec", + "type": "IN", + "senders": ["0x84c9A36721eB21da9244Fe50177180D8f4a7cAF7"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0x16bdbd15adbb60b78f5e98abf9ae9ef4fd3a8db5654b50cf79c83d5fdd49cb58", + "blockHeight": 19659636, + "extra": {}, + "date": "2024-04-15T08:10:35.000Z", + "value": "5000000", + "fee": "716341757180607", + "transactionSequenceNumber": 287, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + } + ], + "pendingOperations": [], + "swapHistory": [], + "starred": false + } + ], + "swapHistory": [], + "nfts": [], + "name": "Ethereum 1", + "starred": false + }, + "version": 1 + }, + { + "data": { + "id": "js:2:ethereum:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "seedIdentifier": "047e89e2c6153732ee8f54bca17a4a74d3e1d9bddcb6149ed113394f79f585987d90e550639bf0fb76466141684bc43fbc90a24cd9f287fa4662f8ea2b889da1e7", + "used": true, + "derivationMode": "", + "index": 1, + "freshAddress": "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad", + "freshAddressPath": "44'/60'/1'/0/0", + "blockHeight": 20469188, + "syncHash": "0x6fc05c0a", + "creationDate": "2024-04-16T08:56:59.000Z", + "operationsCount": 2, + "operations": [ + { + "id": "js:2:ethereum:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xfe87664302bbbd747515f1c976b6d95bedca9faf2cfb9f58e702e200a04cde38-NONE", + "hash": "0xfe87664302bbbd747515f1c976b6d95bedca9faf2cfb9f58e702e200a04cde38", + "type": "NONE", + "senders": ["0xF7C69BedB292Dd3fC2cA4103989B5BD705164c43"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], + "accountId": "js:2:ethereum:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0x63ca2722f1d84fddaeeb2bd23efc320dda80234744f2b1546232e4be97dd9165", + "blockHeight": 20468408, + "extra": {}, + "date": "2024-08-06T08:42:47.000Z", + "value": "0", + "fee": "443273737501467", + "transactionSequenceNumber": 56, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:ethereum:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x48831ea0324ee5921c0dca9dfad014be64867734ad76144822d35c853c87bf54-IN", + "hash": "0x48831ea0324ee5921c0dca9dfad014be64867734ad76144822d35c853c87bf54", + "type": "IN", + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], + "accountId": "js:2:ethereum:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "blockHash": "0xda6807e9b25b1b8f5f4119429868eca096543e2146f2410421fd9d5bb2b6011c", + "blockHeight": 19666996, + "extra": {}, + "date": "2024-04-16T08:56:59.000Z", + "value": "10000000000000", + "fee": "232324232847000", + "transactionSequenceNumber": 0, + "hasFailed": false, + "internalOperations": [] + } + ], + "pendingOperations": [], + "currencyId": "ethereum", + "lastSyncDate": "2024-08-06T11:19:54.625Z", + "balance": "10000000000000", + "spendableBalance": "10000000000000", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000 + ], + "latestDate": 1722942000000 + }, + "DAY": { + "balances": [ + 0, 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [ + 0, 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000 + ], + "latestDate": 1722722400000 + } + }, + "subAccounts": [ + { + "type": "TokenAccountRaw", + "id": "js:2:ethereum:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "parentId": "js:2:ethereum:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "tokenId": "ethereum/erc20/usd_tether__erc20_", + "balance": "5006649", + "spendableBalance": "5006649", + "balanceHistoryCache": { + "HOUR": { + "latestDate": null, + "balances": [] + }, + "DAY": { + "latestDate": null, + "balances": [] + }, + "WEEK": { + "latestDate": null, + "balances": [] + } + }, + "creationDate": "2024-08-06T11:19:54.625Z", + "operationsCount": 1, + "operations": [ + { + "id": "js:2:ethereum:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0xfe87664302bbbd747515f1c976b6d95bedca9faf2cfb9f58e702e200a04cde38-IN-i0", + "hash": "0xfe87664302bbbd747515f1c976b6d95bedca9faf2cfb9f58e702e200a04cde38", + "type": "IN", + "senders": ["0xF7C69BedB292Dd3fC2cA4103989B5BD705164c43"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], + "accountId": "js:2:ethereum:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", + "blockHash": "0x63ca2722f1d84fddaeeb2bd23efc320dda80234744f2b1546232e4be97dd9165", + "blockHeight": 20468408, + "extra": {}, + "date": "2024-08-06T08:42:47.000Z", + "value": "5006649", + "fee": "443273737501467", + "transactionSequenceNumber": 56, + "contract": "0xdAC17F958D2ee523a2206206994597C13D831ec7" + } + ], + "pendingOperations": [], + "swapHistory": [], + "starred": false + } + ], + "swapHistory": [], + "nfts": [], + "name": "Ethereum 2", + "starred": false + }, + "version": 1 + }, + { + "data": { + "id": "js:2:bsc:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "seedIdentifier": "047e89e2c6153732ee8f54bca17a4a74d3e1d9bddcb6149ed113394f79f585987d90e550639bf0fb76466141684bc43fbc90a24cd9f287fa4662f8ea2b889da1e7", + "used": true, + "derivationMode": "", + "index": 0, + "freshAddress": "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6", + "freshAddressPath": "44'/60'/0'/0/0", + "blockHeight": 41124873, + "syncHash": "0xc034036a", + "creationDate": "2024-06-13T15:46:58.000Z", + "operationsCount": 2, + "operations": [ + { + "id": "js:2:bsc:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xee895b7f0139b29d1803eef62705b6af7f8fc3c955a63ea2dfdd9d769013d9ad-NONE", + "hash": "0xee895b7f0139b29d1803eef62705b6af7f8fc3c955a63ea2dfdd9d769013d9ad", + "type": "NONE", + "senders": ["0xf8AB73E58E8C849CdBb2575Fea1d33AfF0F26117"], + "recipients": ["0x6e5F98f9d66F6887f60952C475e033B98413a2A4"], + "accountId": "js:2:bsc:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0xe18ba911f95b193aca14a78a04f93f5c998dac611235fda47827838a796d4b47", + "blockHeight": 39840067, + "extra": {}, + "date": "2024-06-22T17:13:40.000Z", + "value": "0", + "fee": "0", + "transactionSequenceNumber": 100633, + "hasFailed": false, + "internalOperations": [] + }, + { + "id": "js:2:bsc:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3add3c5fe7280208b550fe7588c48bf18e755e0ed7f7982f2a9a98f83c526a2a-NONE", + "hash": "0x3add3c5fe7280208b550fe7588c48bf18e755e0ed7f7982f2a9a98f83c526a2a", + "type": "NONE", + "senders": ["0x4258A05DBA420A398bcdFB389E4250759b4223ea"], + "recipients": ["0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56"], + "accountId": "js:2:bsc:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "blockHash": "0x26ea330bf870434b2e27efffe886b5b32ea28e65ee15ed645f9b57ab6eece4ff", + "blockHeight": 39580424, + "extra": {}, + "date": "2024-06-13T15:46:58.000Z", + "value": "0", + "fee": "140409000093606", + "transactionSequenceNumber": 4, + "hasFailed": false, + "internalOperations": [] + } + ], + "pendingOperations": [], + "currencyId": "bsc", + "lastSyncDate": "2024-08-06T11:20:10.661Z", + "balance": "0", + "spendableBalance": "0", + "balanceHistoryCache": { + "HOUR": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722942000000 + }, + "DAY": { + "balances": [ + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 + ], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [0, 0, 0, 0, 0, 0, 0, 0, 0], + "latestDate": 1722722400000 + } + }, + "subAccounts": [ + { + "type": "TokenAccountRaw", + "id": "js:2:bsc:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+bsc%2Fbep20%2Fbinance~!dash!~peg~!underscore!~busd~!underscore!~token", + "parentId": "js:2:bsc:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", + "tokenId": "bsc/bep20/binance-peg_busd_token", + "balance": "3000000000000000000", + "spendableBalance": "3000000000000000000", + "balanceHistoryCache": { + "HOUR": { + "latestDate": null, + "balances": [] + }, + "DAY": { + "latestDate": null, + "balances": [] + }, + "WEEK": { + "latestDate": null, + "balances": [] + } + }, + "creationDate": "2024-08-06T11:20:10.660Z", + "operationsCount": 1, + "operations": [ + { + "id": "js:2:bsc:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+bsc%2Fbep20%2Fbinance~!dash!~peg~!underscore!~busd~!underscore!~token-0x3add3c5fe7280208b550fe7588c48bf18e755e0ed7f7982f2a9a98f83c526a2a-IN-i0", + "hash": "0x3add3c5fe7280208b550fe7588c48bf18e755e0ed7f7982f2a9a98f83c526a2a", + "type": "IN", + "senders": ["0x4258A05DBA420A398bcdFB389E4250759b4223ea"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "accountId": "js:2:bsc:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+bsc%2Fbep20%2Fbinance~!dash!~peg~!underscore!~busd~!underscore!~token", + "blockHash": "0x26ea330bf870434b2e27efffe886b5b32ea28e65ee15ed645f9b57ab6eece4ff", + "blockHeight": 39580424, + "extra": {}, + "date": "2024-06-13T15:46:58.000Z", + "value": "3000000000000000000", + "fee": "140409000093606", + "transactionSequenceNumber": 4, + "contract": "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56" + } + ], + "pendingOperations": [], + "swapHistory": [], + "starred": false + } + ], + "swapHistory": [], + "nfts": [], + "name": "Binance Smart Chain 1", + "starred": false + }, + "version": 1 + }, + { + "data": { + "id": "js:2:bsc:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", + "seedIdentifier": "047e89e2c6153732ee8f54bca17a4a74d3e1d9bddcb6149ed113394f79f585987d90e550639bf0fb76466141684bc43fbc90a24cd9f287fa4662f8ea2b889da1e7", + "used": false, + "derivationMode": "", + "index": 1, + "freshAddress": "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad", + "freshAddressPath": "44'/60'/1'/0/0", + "blockHeight": 41124873, + "syncHash": "0xc034036a", + "creationDate": "2024-08-06T11:20:11.245Z", + "operationsCount": 0, + "operations": [], + "pendingOperations": [], + "currencyId": "bsc", + "lastSyncDate": "2024-08-06T11:20:11.245Z", + "balance": "0", + "spendableBalance": "0", + "balanceHistoryCache": { + "HOUR": { + "balances": [], + "latestDate": 1722942000000 + }, + "DAY": { + "balances": [], + "latestDate": 1722895200000 + }, + "WEEK": { + "balances": [], + "latestDate": 1722722400000 + } + }, + "subAccounts": [], + "swapHistory": [], + "nfts": [], + "name": "Binance Smart Chain 2", + "starred": false + }, + "version": 1 + } + ], + "user": { + "id": "370e1ee0-4065-4cea-b12c-945414560a05" + }, + "announcements": { + "announcements": [], + "seenIds": [], + "lastUpdateTime": 1722943230008 + }, + "countervalues": { + "USD algorand": { + "2024-07-31": 0.13901183667403558, + "2024-08-02": 0.13022918805147096, + "2024-07-30": 0.14016984762308343, + "2024-08-01": 0.1327842888438429, + "2024-08-06": 0.11416140550950463, + "2024-07-20": 0.15927641442682383, + "2024-07-21": 0.1574667308704235, + "2024-07-15": 0.15727578090264582, + "2024-08-03": 0.1230082827567445, + "2024-07-18": 0.1545499010013397, + "2024-07-11": 0.13930102744665254, + "2024-07-17": 0.15936280674332232, + "2024-07-22": 0.15370064628947716, + "2024-07-12": 0.13699086499379057, + "2024-07-24": 0.14349055050360174, + "2024-07-06": 0.1324987545188944, + "2024-07-08": 0.13169582381298928, + "2024-07-07": 0.13328888801424588, + "2024-07-13": 0.1421297454450859, + "2024-07-09": 0.13720018459481081, + "2024-07-23": 0.14686840885935418, + "2024-07-10": 0.1388238616962068, + "2024-07-14": 0.14857214932517143, + "2024-07-29": 0.14189687238981047, + "2024-07-27": 0.14326104490977717, + "2024-07-28": 0.14054555803821103, + "2024-07-19": 0.15428159830416555, + "2024-08-04": 0.11620949011871172, + "2024-07-26": 0.14036668771742908, + "2024-08-05": 0.1030497366972547, + "2024-07-25": 0.13585922612446588, + "2024-07-16": 0.15785828712980404, + "2024-08-02T16": 0.127071897, + "2024-08-02T11": 0.131789204, + "2024-07-31T00": 0.1371956925, + "2024-08-05T18": 0.1105108116, + "2024-07-31T11": 0.13948324199999998, + "2024-08-05T23": 0.110642124, + "2024-08-02T06": 0.130500744, + "2024-08-01T13": 0.134535392, + "2024-08-05T01": 0.103057729, + "2024-08-02T00": 0.1348785, + "2024-08-06T06": 0.115384169, + "2024-08-03T23": 0.120332576, + "2024-08-01T11": 0.13392898, + "2024-08-05T19": 0.10954161000000001, + "2024-08-04T19": 0.11596199, + "2024-08-01T23": 0.13487445, + "2024-08-04T17": 0.11190704, + "2024-08-02T22": 0.124557842, + "2024-08-02T01": 0.133680918, + "2024-08-02T05": 0.1317652644, + "2024-08-03T20": 0.11753141911916823, + "2024-07-31T14": 0.140816604, + "2024-08-03T12": 0.12558819472048763, + "2024-07-31T05": 0.136170036, + "2024-08-02T08": 0.130391685, + "2024-08-05T14": 0.10732897100000001, + "2024-08-01T07": 0.13250034800000002, + "2024-08-03T06": 0.12544404092181236, + "2024-08-04T13": 0.1203398, + "2024-08-06T11": 0.111735744, + "2024-08-05T16": 0.11259876399999999, + "2024-08-05T06": 0.097293189, + "2024-08-01T22": 0.134688116, + "2024-08-04T20": 0.1160305362, + "2024-08-06T10": 0.11173686099999999, + "2024-08-01T15": 0.13063465000000002, + "2024-08-06T05": 0.11438744880000001, + "2024-08-04T08": 0.120026739, + "2024-08-01T00": 0.136255021, + "2024-08-04T18": 0.11252793600000001, + "2024-07-31T15": 0.141142108, + "2024-08-03T19": 0.117758077, + "2024-08-02T12": 0.1313866492, + "2024-08-01T20": 0.1301384273, + "2024-08-01T21": 0.13257791600000002, + "2024-07-30T23": 0.137760038, + "2024-08-03T16": 0.1202397525, + "2024-08-06T00": 0.11322264, + "2024-08-04T06": 0.121324732, + "2024-08-02T15": 0.1261162848, + "2024-08-05T10": 0.100414056, + "2024-08-05T17": 0.11246631600000001, + "2024-08-03T04": 0.12524337630000001, + "2024-08-06T04": 0.114031291, + "2024-08-06T03": 0.11434457699999999, + "2024-07-30T19": 0.137649051, + "2024-08-02T04": 0.13253927940000002, + "2024-08-02T23": 0.12438231142900985, + "2024-08-05T08": 0.10391142900000001, + "2024-08-02T09": 0.131486824, + "2024-08-04T12": 0.12030981500000001, + "2024-08-04T22": 0.11585711700000001, + "2024-07-31T23": 0.135806528, + "2024-08-04T10": 0.12013749600000001, + "2024-07-30T16": 0.140105152, + "2024-08-05T20": 0.110491048, + "2024-08-03T10": 0.12508982400000002, + "2024-08-04T16": 0.11381799199999999, + "2024-07-31T06": 0.13895969, + "2024-07-31T02": 0.13732253, + "2024-08-03T09": 0.1251085542, + "2024-08-04T15": 0.1150928361, + "2024-08-03T00": 0.12379761239999999, + "2024-07-30T17": 0.139256817, + "2024-08-03T15": 0.1230075297, + "2024-08-01T19": 0.12895799, + "2024-07-30T13": 0.14167166, + "2024-08-03T22": 0.12023142900000001, + "2024-07-30T22": 0.1369802642, + "2024-07-31T13": 0.141133636, + "2024-07-30T18": 0.13865561599999998, + "2024-08-03T05": 0.125061028, + "2024-08-05T09": 0.10350862820000001, + "2024-07-30T12": 0.14187162, + "2024-08-03T01": 0.122549079, + "2024-08-05T03": 0.102694865, + "2024-07-31T08": 0.13913736, + "2024-08-01T10": 0.1334592291, + "2024-07-31T21": 0.136348168, + "2024-08-01T09": 0.133322628, + "2024-08-06T09": 0.11183354, + "2024-08-03T08": 0.125178459, + "2024-08-03T14": 0.1251486005, + "2024-08-01T12": 0.134330112, + "2024-07-30T20": 0.136688981, + "2024-07-30T15": 0.140152332, + "2024-08-01T01": 0.13545257500000002, + "2024-08-05T13": 0.09989843521850272, + "2024-08-01T16": 0.12860991, + "2024-08-04T00": 0.120628787, + "2024-08-02T14": 0.13067011905547377, + "2024-08-04T09": 0.12023142900000001, + "2024-08-04T02": 0.12172692, + "2024-08-03T03": 0.12509096439999998, + "2024-08-03T11": 0.124895, + "2024-07-31T09": 0.139345634, + "2024-07-31T12": 0.1400915048, + "2024-08-05T11": 0.09831277899999999, + "2024-08-03T18": 0.117627603, + "2024-08-01T08": 0.133030788, + "2024-07-31T10": 0.13941304959999998, + "2024-08-03T17": 0.118214824, + "2024-07-31T03": 0.13717118799999997, + "2024-08-01T06": 0.13263497700000002, + "2024-08-02T07": 0.130993809, + "2024-08-02T19": 0.124924497848968, + "2024-07-30T11": 0.14167024299999997, + "2024-08-05T22": 0.111518955, + "2024-08-06T01": 0.1150345, + "2024-08-05T15": 0.11064966539999999, + "2024-07-31T18": 0.14052361189999998, + "2024-08-05T02": 0.101639668, + "2024-08-05T12": 0.09901089, + "2024-07-30T21": 0.1364845048, + "2024-08-06T07": 0.1148669093, + "2024-08-04T11": 0.12027862660000001, + "2024-08-05T05": 0.10199388, + "2024-07-31T19": 0.13915267199999998, + "2024-08-04T21": 0.115266563, + "2024-07-30T14": 0.14037192, + "2024-08-01T18": 0.12708297600000001, + "2024-07-31T04": 0.13640134969999998, + "2024-08-02T18": 0.1259739, + "2024-08-02T03": 0.132677824, + "2024-08-04T01": 0.120428905, + "2024-08-02T21": 0.1243755, + "2024-08-02T02": 0.132184899, + "2024-08-02T10": 0.1314200448, + "2024-08-04T23": 0.11483289919999999, + "2024-08-04T03": 0.121824422, + "2024-08-01T05": 0.1322992482, + "2024-08-02T17": 0.12727897000000002, + "2024-07-31T16": 0.140245283, + "2024-08-04T04": 0.12124599479999999, + "2024-08-01T02": 0.134829852, + "2024-08-05T21": 0.11071992600000001, + "2024-08-05T07": 0.1024, + "2024-08-05T00": 0.112746984, + "2024-08-02T20": 0.125762769, + "2024-07-31T01": 0.13796826, + "2024-07-31T22": 0.136357716, + "2024-08-04T07": 0.120528846, + "2024-08-04T05": 0.12092619, + "2024-08-01T14": 0.1331640476, + "2024-08-03T02": 0.1243656204, + "2024-08-01T04": 0.13293084000000002, + "2024-08-01T17": 0.12789632, + "2024-08-06T02": 0.114143358, + "2024-08-04T14": 0.11654986199999999, + "2024-07-31T20": 0.13694657000000002, + "2024-08-03T21": 0.11859875246218277, + "2024-08-06T08": 0.11326565599999999, + "2024-08-02T13": 0.13287627559999998, + "2024-08-05T04": 0.10274486249999999, + "2024-08-01T03": 0.134228821, + "2024-07-31T17": 0.1403052596, + "2024-07-31T07": 0.139756662, + "2024-08-03T07": 0.1258352121, + "2024-08-03T13": 0.12518481639999998, + "latest": 0.111398 + }, + "USD astar": { + "2024-07-31": 0.07184556029906779, + "2024-08-02": 0.06484416306466399, + "2024-07-30": 0.07258438614433566, + "2024-08-01": 0.06826377088038153, + "2024-08-06": 0.05505723695767198, + "2024-07-20": 0.08101358952788544, + "2024-07-21": 0.0794350133587384, + "2024-07-15": 0.0754721319007559, + "2024-08-03": 0.06036291717990934, + "2024-07-18": 0.08118854150444595, + "2024-07-11": 0.06588736778348243, + "2024-07-17": 0.08097177280762621, + "2024-07-22": 0.07757613142563265, + "2024-07-12": 0.06520881116886701, + "2024-07-24": 0.07381079698844449, + "2024-07-06": 0.06270884015368342, + "2024-07-08": 0.06320825967890445, + "2024-07-07": 0.06351460726097762, + "2024-07-13": 0.07183247278631763, + "2024-07-09": 0.06444563073983778, + "2024-07-23": 0.0744221340068431, + "2024-07-10": 0.06470588784473605, + "2024-07-14": 0.07494470837254277, + "2024-07-29": 0.07500090295786985, + "2024-07-27": 0.07520319119708571, + "2024-07-28": 0.074198516, + "2024-07-19": 0.07998138458117787, + "2024-08-04": 0.05691833558553365, + "2024-07-26": 0.07375112333832762, + "2024-08-05": 0.05076478865437057, + "2024-07-25": 0.07066526310400527, + "2024-07-16": 0.07674345900840772, + "2024-08-02T16": 0.06324619499999999, + "2024-08-02T11": 0.067543216, + "2024-07-31T00": 0.071842035, + "2024-08-05T18": 0.0529943662, + "2024-07-31T11": 0.07184238544368922, + "2024-08-05T23": 0.05311062, + "2024-08-02T06": 0.067348776, + "2024-08-01T13": 0.069866448, + "2024-08-05T01": 0.050679213, + "2024-08-02T00": 0.069937, + "2024-08-06T06": 0.055840733999999996, + "2024-08-03T23": 0.0596265904, + "2024-08-01T11": 0.06902339819999999, + "2024-08-05T19": 0.052319874, + "2024-08-04T19": 0.056821575, + "2024-08-01T23": 0.0697258773429084, + "2024-08-04T17": 0.0548644247, + "2024-08-02T22": 0.062378806999999994, + "2024-08-02T01": 0.069138412, + "2024-08-02T05": 0.0682312700754487, + "2024-08-03T20": 0.058251602453028316, + "2024-07-31T14": 0.07240740200000001, + "2024-08-03T12": 0.062252652000000006, + "2024-07-31T05": 0.07149901989244271, + "2024-08-02T08": 0.0671542157, + "2024-08-05T14": 0.053114337, + "2024-08-01T07": 0.06846917500000001, + "2024-08-03T06": 0.06298127549999999, + "2024-08-04T13": 0.05919039, + "2024-08-06T11": 0.054277800597769814, + "2024-08-05T16": 0.05434801699999999, + "2024-08-05T06": 0.047866649100000006, + "2024-08-01T22": 0.069542232, + "2024-08-04T20": 0.0567207084, + "2024-08-06T10": 0.054317919, + "2024-08-01T15": 0.06805376701220932, + "2024-08-06T05": 0.055232568, + "2024-08-04T08": 0.058664193, + "2024-08-01T00": 0.070276801, + "2024-08-04T18": 0.055164672, + "2024-07-31T15": 0.07197047999999999, + "2024-08-03T19": 0.058454370000000005, + "2024-08-02T12": 0.0672921886, + "2024-08-01T20": 0.06725568782553021, + "2024-08-01T21": 0.06853688799999999, + "2024-07-30T23": 0.0711293665, + "2024-08-03T16": 0.060054925, + "2024-08-06T00": 0.05481096, + "2024-08-04T06": 0.05952307280000001, + "2024-08-02T15": 0.063487721, + "2024-08-05T10": 0.0496969566, + "2024-08-05T17": 0.05403186, + "2024-08-03T04": 0.062636673, + "2024-08-06T04": 0.0549947365, + "2024-08-06T03": 0.05504145779999999, + "2024-07-30T19": 0.0708437781, + "2024-08-02T04": 0.0686075103, + "2024-08-02T23": 0.062619744, + "2024-08-05T08": 0.050705577, + "2024-08-02T09": 0.0679115458, + "2024-08-04T12": 0.059170400000000005, + "2024-08-04T22": 0.056679021, + "2024-07-31T23": 0.0703874688, + "2024-08-04T10": 0.058809403200000006, + "2024-07-30T16": 0.07199900336112112, + "2024-08-05T20": 0.052805279999999996, + "2024-08-03T10": 0.06254491200000001, + "2024-08-04T16": 0.055759824, + "2024-07-31T06": 0.07237900400000001, + "2024-07-31T02": 0.071425712, + "2024-08-03T09": 0.06264419700000001, + "2024-08-04T15": 0.0567019842, + "2024-08-03T00": 0.06222993034064548, + "2024-07-30T17": 0.07147783499999999, + "2024-08-03T15": 0.060759264, + "2024-08-01T19": 0.06712607999999999, + "2024-07-30T13": 0.07238552000000001, + "2024-08-03T22": 0.059566028, + "2024-07-30T22": 0.070879439, + "2024-07-31T13": 0.072465925, + "2024-07-30T18": 0.07127718400000001, + "2024-08-03T05": 0.0627203031, + "2024-08-05T09": 0.05070912600000001, + "2024-07-30T12": 0.0724855, + "2024-08-03T01": 0.061124724, + "2024-08-05T03": 0.05039748, + "2024-07-31T08": 0.07186764500000001, + "2024-08-01T10": 0.069163324, + "2024-07-31T21": 0.0706131568, + "2024-08-01T09": 0.0690499278, + "2024-08-06T09": 0.054406316999999996, + "2024-08-03T08": 0.0627290937, + "2024-08-03T14": 0.061999674, + "2024-08-01T12": 0.06966375600000001, + "2024-07-30T20": 0.070558826, + "2024-07-30T15": 0.07187555400000001, + "2024-08-01T01": 0.070315381, + "2024-08-05T13": 0.0501369916, + "2024-08-01T16": 0.06686316299999999, + "2024-08-04T00": 0.0597147475, + "2024-08-02T14": 0.066751904, + "2024-08-04T09": 0.058906404200000005, + "2024-08-04T02": 0.05976412, + "2024-08-03T03": 0.062325743999999995, + "2024-08-03T11": 0.062347584, + "2024-07-31T09": 0.0721318576, + "2024-07-31T12": 0.0717897752, + "2024-08-05T11": 0.04881757631016413, + "2024-08-03T18": 0.05885877, + "2024-08-01T08": 0.0684843696, + "2024-07-31T10": 0.07203637543721811, + "2024-08-03T17": 0.0592473112, + "2024-07-31T03": 0.0717049388, + "2024-08-01T06": 0.0686363517, + "2024-08-02T07": 0.0673753817, + "2024-08-02T19": 0.06233198399999999, + "2024-07-30T11": 0.0728247036, + "2024-08-05T22": 0.0533790729, + "2024-08-06T01": 0.055346598999999996, + "2024-08-05T15": 0.0540440263, + "2024-07-31T18": 0.07197624, + "2024-08-05T02": 0.05008998, + "2024-08-05T12": 0.04900539, + "2024-07-30T21": 0.070581644, + "2024-08-06T07": 0.055837386, + "2024-08-04T11": 0.0591198335, + "2024-08-05T05": 0.050096994, + "2024-07-31T19": 0.0715056798, + "2024-08-04T21": 0.056483615, + "2024-07-30T14": 0.07188562000000001, + "2024-08-01T18": 0.0658093996, + "2024-07-31T04": 0.0712450354, + "2024-08-02T18": 0.0624375, + "2024-08-02T03": 0.06868675, + "2024-08-04T01": 0.059564836, + "2024-08-02T21": 0.06229764, + "2024-08-02T02": 0.0686302397, + "2024-08-02T10": 0.0676185708, + "2024-08-04T23": 0.055877080999999995, + "2024-08-04T03": 0.059563048, + "2024-08-01T05": 0.0687080625, + "2024-08-02T17": 0.06264201723519554, + "2024-07-31T16": 0.07197192, + "2024-08-04T04": 0.059463705, + "2024-08-01T02": 0.06976370400000001, + "2024-08-05T21": 0.05310955800000001, + "2024-08-05T07": 0.05094, + "2024-08-05T00": 0.054574884000000004, + "2024-08-02T20": 0.06263165700000001, + "2024-07-31T01": 0.071583532, + "2024-07-31T22": 0.0705981078, + "2024-08-04T07": 0.05881965224063487, + "2024-08-04T05": 0.0595336623, + "2024-08-01T14": 0.06886106620000002, + "2024-08-03T02": 0.062018028, + "2024-08-01T04": 0.06896412, + "2024-08-01T17": 0.0663761917, + "2024-08-06T02": 0.055020900000000005, + "2024-08-04T14": 0.0572853567, + "2024-07-31T20": 0.070572466, + "2024-08-03T21": 0.05866478, + "2024-08-06T08": 0.054751737599999996, + "2024-08-02T13": 0.06773864675213362, + "2024-08-05T04": 0.050547472499999996, + "2024-08-01T03": 0.069663059, + "2024-07-31T17": 0.07203189659999999, + "2024-07-31T07": 0.0723375684, + "2024-08-03T07": 0.0632922048, + "2024-08-03T13": 0.0621177312, + "latest": 0.054053 + }, + "USD avalanche_c_chain": { + "2024-07-31": 26.299333962650195, + "2024-08-02": 24.776425106499484, + "2024-07-30": 26.883753302623166, + "2024-08-01": 25.30522111484531, + "2024-08-06": 20.481628914008898, + "2024-07-20": 28.323246810192813, + "2024-07-21": 30.596837515251156, + "2024-07-15": 27.007811566257747, + "2024-08-03": 23.493124542850115, + "2024-07-18": 27.49512002828193, + "2024-07-11": 25.60411558955867, + "2024-07-17": 28.315632074821178, + "2024-07-22": 32.133506286332, + "2024-07-12": 25.45153578947061, + "2024-07-24": 29.178467281239502, + "2024-07-06": 25.78888661639284, + "2024-07-08": 25.769309655203156, + "2024-07-07": 26.295232246984266, + "2024-07-13": 25.867483001087276, + "2024-07-09": 25.59972411933907, + "2024-07-23": 30.512992845653915, + "2024-07-10": 26.467275988166783, + "2024-07-14": 26.004923495207834, + "2024-07-29": 28.06684694944696, + "2024-07-27": 28.614747558684808, + "2024-07-28": 27.551730120347635, + "2024-07-19": 27.310860446724714, + "2024-08-04": 21.8944812687906, + "2024-07-26": 28.109491745449024, + "2024-08-05": 18.909465859490513, + "2024-07-25": 27.293195410951178, + "2024-07-16": 27.84230926791443, + "2024-08-02T16": 24.055835145, + "2024-08-02T11": 25.028958000000003, + "2024-07-31T00": 26.292441816129827, + "2024-08-05T18": 19.671304051548017, + "2024-07-31T11": 26.1556065, + "2024-08-05T23": 19.666432500000003, + "2024-08-02T06": 24.8211216, + "2024-08-01T13": 25.48615249431519, + "2024-08-05T01": 19.216256979362743, + "2024-08-02T00": 25.716768205133928, + "2024-08-06T06": 20.8852351, + "2024-08-03T23": 22.66130256, + "2024-08-01T11": 25.29819075874666, + "2024-08-05T19": 19.359890956237862, + "2024-08-04T19": 21.831079, + "2024-08-01T23": 25.636935456000003, + "2024-08-04T17": 21.0025534, + "2024-08-02T22": 23.607956214, + "2024-08-02T01": 25.497287200000002, + "2024-08-02T05": 25.108136899999998, + "2024-08-03T20": 22.51591801071295, + "2024-07-31T14": 26.551146605, + "2024-08-03T12": 23.932497468, + "2024-07-31T05": 25.984516657718988, + "2024-08-02T08": 24.995503523449628, + "2024-08-05T14": 19.321948232474107, + "2024-08-01T07": 25.336993220000004, + "2024-08-03T06": 23.756277402, + "2024-08-04T13": 22.54073781360924, + "2024-08-06T11": 20.444240064000002, + "2024-08-05T16": 19.909317299708572, + "2024-08-05T06": 18.093145422296878, + "2024-08-01T22": 25.6586856, + "2024-08-04T20": 21.872470832373345, + "2024-08-06T10": 20.4467452, + "2024-08-01T15": 24.661363150000003, + "2024-08-06T05": 20.6621835, + "2024-08-04T08": 22.521053772000002, + "2024-08-01T00": 25.8114794, + "2024-08-04T18": 21.036528, + "2024-07-31T15": 26.623180019, + "2024-08-03T19": 22.577475822, + "2024-08-02T12": 24.84827506573432, + "2024-08-01T20": 24.90004380447581, + "2024-08-01T21": 25.3666412, + "2024-07-30T23": 26.330961805999998, + "2024-08-03T16": 23.088970275, + "2024-08-06T00": 20.288080961864246, + "2024-08-04T06": 22.792759722, + "2024-08-02T15": 23.701819843515054, + "2024-08-05T10": 18.349845520060796, + "2024-08-05T17": 19.890133176448998, + "2024-08-03T04": 23.665673504, + "2024-08-06T04": 20.5192295, + "2024-08-06T03": 20.457975499999996, + "2024-07-30T19": 26.39885901738477, + "2024-08-02T04": 25.3069497, + "2024-08-02T23": 23.556708768, + "2024-08-05T08": 18.852230737085215, + "2024-08-02T09": 25.113084158, + "2024-08-04T12": 22.5241323, + "2024-08-04T22": 21.70072120874101, + "2024-07-31T23": 25.761353728, + "2024-08-04T10": 22.472308320000003, + "2024-07-30T16": 26.731443199999998, + "2024-08-05T20": 19.594893959264294, + "2024-08-03T10": 23.8390032, + "2024-08-04T16": 21.424063559999997, + "2024-07-31T06": 26.417836604999998, + "2024-07-31T02": 26.484702, + "2024-08-03T09": 23.5690049, + "2024-08-04T15": 21.7554141, + "2024-08-03T00": 23.58929230410328, + "2024-07-30T17": 26.6017509, + "2024-08-03T15": 23.62615986, + "2024-08-01T19": 24.641564430000003, + "2024-07-30T13": 26.8806228, + "2024-08-03T22": 22.60810603, + "2024-07-30T22": 26.330861835, + "2024-07-31T13": 26.607488600000003, + "2024-07-30T18": 26.5814912, + "2024-08-03T05": 23.673110045948278, + "2024-08-05T09": 18.762859298000002, + "2024-07-30T12": 26.91831526, + "2024-08-03T01": 23.251365600000003, + "2024-08-05T03": 18.75957909221758, + "2024-07-31T08": 26.218293477699326, + "2024-08-01T10": 25.306580399999998, + "2024-07-31T21": 25.582224184590874, + "2024-08-01T09": 25.405256400000003, + "2024-08-06T09": 20.446132000000002, + "2024-08-03T08": 23.602583265, + "2024-08-03T14": 24.004087195, + "2024-08-01T12": 25.590386076, + "2024-07-30T20": 26.31932773535287, + "2024-07-30T15": 26.6609322, + "2024-08-01T01": 25.7649791, + "2024-08-05T13": 18.166391530445686, + "2024-08-01T16": 24.412899, + "2024-08-04T00": 22.618977252768648, + "2024-08-02T14": 24.52008535548234, + "2024-08-04T09": 22.5771237, + "2024-08-04T02": 22.806936188949507, + "2024-08-03T03": 23.554336944, + "2024-08-03T11": 23.927583932, + "2024-07-31T09": 26.154333260478015, + "2024-07-31T12": 26.27327872, + "2024-08-05T11": 17.985373345157676, + "2024-08-03T18": 22.57398714, + "2024-08-01T08": 25.35380916, + "2024-07-31T10": 26.10381729441478, + "2024-08-03T17": 22.659773208, + "2024-07-31T03": 26.455243231999997, + "2024-08-01T06": 25.3775589, + "2024-08-02T07": 24.883063796054994, + "2024-08-02T19": 23.8439817, + "2024-07-30T11": 26.994329999999998, + "2024-08-05T22": 19.768760118, + "2024-08-06T01": 20.636188999999998, + "2024-08-05T15": 19.615699131075992, + "2024-07-31T18": 26.628837077383654, + "2024-08-05T02": 18.834020350712162, + "2024-08-05T12": 18.077326443087102, + "2024-07-30T21": 26.345848297999996, + "2024-08-06T07": 20.897301197489565, + "2024-08-04T11": 22.541139683745584, + "2024-08-05T05": 18.959205115572832, + "2024-07-31T19": 26.241075, + "2024-08-04T21": 21.69074125612322, + "2024-07-30T14": 26.658667200000004, + "2024-08-01T18": 24.27564584, + "2024-07-31T04": 26.0245337, + "2024-08-02T18": 23.9703057, + "2024-08-02T03": 25.306696399999996, + "2024-08-04T01": 22.615648890000003, + "2024-08-02T21": 23.60637, + "2024-08-02T02": 25.24601684, + "2024-08-02T10": 25.000485180000002, + "2024-08-04T23": 21.3512424, + "2024-08-04T03": 22.790461148000002, + "2024-08-01T05": 25.1946219, + "2024-08-02T17": 24.126757785, + "2024-07-31T16": 26.596535026848592, + "2024-08-04T04": 22.800783033, + "2024-08-01T02": 25.529417796, + "2024-08-05T21": 19.785862033757997, + "2024-08-05T07": 18.778617487331005, + "2024-08-05T00": 20.95711440359185, + "2024-08-02T20": 23.7840471, + "2024-07-31T01": 26.452514522, + "2024-07-31T22": 25.74914359004813, + "2024-08-04T07": 22.701398268000002, + "2024-08-04T05": 22.796085899999998, + "2024-08-01T14": 25.231402207556755, + "2024-08-03T02": 23.518914000000002, + "2024-08-01T04": 25.2168804, + "2024-08-01T17": 24.463068851000003, + "2024-08-06T02": 20.54880558, + "2024-08-04T14": 21.99435296582719, + "2024-07-31T20": 25.69097661, + "2024-08-03T21": 22.365618794986098, + "2024-08-06T08": 20.611948, + "2024-08-02T13": 25.039154214000003, + "2024-08-05T04": 18.872842178744982, + "2024-08-01T03": 25.428016005, + "2024-07-31T17": 26.6995831, + "2024-07-31T07": 26.362140513555367, + "2024-08-03T07": 23.751177852244776, + "2024-08-03T13": 23.984979116, + "latest": 20.44 + }, + "USD axelar": { + "2024-07-31": 0.6135283411225881, + "2024-08-02": 0.605417615196131, + "2024-07-30": 0.6358533565569068, + "2024-08-01": 0.6117608671068094, + "2024-08-06": 0.43203782972733856, + "2024-07-20": 0.7201494831016374, + "2024-07-21": 0.7679744788239463, + "2024-07-15": 0.7244104540658604, + "2024-08-03": 0.555054193192222, + "2024-07-18": 0.7700762059019878, + "2024-07-11": 0.6311403180525359, + "2024-07-17": 0.7579938576028742, + "2024-07-22": 0.7670054590620289, + "2024-07-12": 0.6229396851609055, + "2024-07-24": 0.6693477487390553, + "2024-07-06": 0.48633610606962424, + "2024-07-08": 0.6570970499017694, + "2024-07-07": 0.6689686408711366, + "2024-07-13": 0.6917678637603795, + "2024-07-09": 0.6635183846890914, + "2024-07-23": 0.6986819506575196, + "2024-07-10": 0.6348597114951047, + "2024-07-14": 0.6882297226678782, + "2024-07-29": 0.6652214106065419, + "2024-07-27": 0.6812741768093772, + "2024-07-28": 0.6794582438040345, + "2024-07-19": 0.7489770691705042, + "2024-08-04": 0.5286276522116952, + "2024-07-26": 0.6546331854366783, + "2024-08-05": 0.49714777669951604, + "2024-07-25": 0.6570149977594817, + "2024-07-16": 0.7253400187391252, + "2024-08-02T16": 0.568016775, + "2024-08-02T11": 0.583809188, + "2024-07-31T00": 0.6153461250000001, + "2024-08-05T18": 0.439218548144616, + "2024-07-31T11": 0.6266551499999999, + "2024-08-05T23": 0.43238646000000003, + "2024-08-02T06": 0.5776620670066661, + "2024-08-01T13": 0.609407344, + "2024-08-05T01": 0.44411783699999996, + "2024-08-02T00": 0.60455541, + "2024-08-06T06": 0.470943538, + "2024-08-03T23": 0.528004152, + "2024-08-01T11": 0.60467935, + "2024-08-05T19": 0.43456507200000005, + "2024-08-04T19": 0.50164905, + "2024-08-01T23": 0.5998416280000001, + "2024-08-04T17": 0.477003758, + "2024-08-02T22": 0.551470606, + "2024-08-02T01": 0.6009646650000001, + "2024-08-02T05": 0.5852440651307158, + "2024-08-03T20": 0.5166536100000001, + "2024-07-31T14": 0.628616995, + "2024-08-03T12": 0.550781088, + "2024-07-31T05": 0.6172641719999999, + "2024-08-02T08": 0.580317936, + "2024-08-05T14": 0.430416181, + "2024-08-01T07": 0.60032973, + "2024-08-03T06": 0.554195268, + "2024-08-04T13": 0.52643665, + "2024-08-06T11": 0.464048448, + "2024-08-05T16": 0.44701268999999993, + "2024-08-05T06": 0.397172196, + "2024-08-01T22": 0.5980346452288704, + "2024-08-04T20": 0.50332881, + "2024-08-06T10": 0.464048448, + "2024-08-01T15": 0.5833082, + "2024-08-06T05": 0.465174291, + "2024-08-04T08": 0.524180055, + "2024-08-01T00": 0.6111982380000001, + "2024-08-04T18": 0.483290496, + "2024-07-31T15": 0.6281423559999999, + "2024-08-03T19": 0.515297754, + "2024-08-02T12": 0.5835853599999999, + "2024-08-01T20": 0.571122583, + "2024-08-01T21": 0.585660696, + "2024-07-30T23": 0.6136219980000001, + "2024-08-03T16": 0.5244064, + "2024-08-06T00": 0.45049008, + "2024-08-04T06": 0.531570222, + "2024-08-02T15": 0.563247476, + "2024-08-05T10": 0.406956966, + "2024-08-05T17": 0.44466219600000007, + "2024-08-03T04": 0.553240662, + "2024-08-06T04": 0.460106955, + "2024-08-06T03": 0.45597776199999995, + "2024-07-30T19": 0.616871673, + "2024-08-02T04": 0.591960825, + "2024-08-02T23": 0.5529316579919968, + "2024-08-05T08": 0.4194662471836274, + "2024-08-02T09": 0.584596814, + "2024-08-04T12": 0.5269364000000001, + "2024-08-04T22": 0.509411448, + "2024-07-31T23": 0.6120040959999999, + "2024-08-04T10": 0.525926376, + "2024-07-30T16": 0.637895808, + "2024-08-05T20": 0.43014301, + "2024-08-03T10": 0.546618552, + "2024-08-04T16": 0.488847776, + "2024-07-31T06": 0.6309169809999999, + "2024-07-31T02": 0.62407516, + "2024-08-03T09": 0.5495105000000001, + "2024-08-04T15": 0.502463124, + "2024-08-03T00": 0.554472688, + "2024-07-30T17": 0.6282051959999999, + "2024-08-03T15": 0.5356408800000001, + "2024-08-01T19": 0.5733686, + "2024-07-30T13": 0.63677262, + "2024-08-03T22": 0.527099382, + "2024-07-30T22": 0.612722259, + "2024-07-31T13": 0.63170296, + "2024-07-30T18": 0.622500736, + "2024-08-03T05": 0.5529855039999999, + "2024-08-05T09": 0.41707506, + "2024-07-30T12": 0.6376835488236045, + "2024-08-03T01": 0.543131126, + "2024-08-05T03": 0.430078495, + "2024-07-31T08": 0.628417085, + "2024-08-01T10": 0.5998818939999999, + "2024-07-31T21": 0.608568656, + "2024-08-01T09": 0.601251072, + "2024-08-06T09": 0.4611383, + "2024-08-03T08": 0.5494665000000001, + "2024-08-03T14": 0.5475438650000001, + "2024-08-01T12": 0.611981604, + "2024-07-30T20": 0.6126161600000001, + "2024-07-30T15": 0.6377830800000001, + "2024-08-01T01": 0.60698748, + "2024-08-05T13": 0.404575724, + "2024-08-01T16": 0.5714996699999999, + "2024-08-04T00": 0.529087654, + "2024-08-02T14": 0.579782256, + "2024-08-04T09": 0.5268994960000001, + "2024-08-04T02": 0.531788727358704, + "2024-08-03T03": 0.549847460918573, + "2024-08-03T11": 0.5458411080000001, + "2024-07-31T09": 0.627255275, + "2024-07-31T12": 0.626249104, + "2024-08-05T11": 0.397351649, + "2024-08-03T18": 0.51753747, + "2024-08-01T08": 0.6022866480000001, + "2024-07-31T10": 0.625099808, + "2024-08-03T17": 0.519525672, + "2024-07-31T03": 0.6221693169999999, + "2024-08-01T06": 0.5992062450000001, + "2024-08-02T07": 0.5817284180000001, + "2024-08-02T19": 0.5561930879999999, + "2024-07-30T11": 0.6424650539999999, + "2024-08-05T22": 0.43207344, + "2024-08-06T01": 0.4591377, + "2024-08-05T15": 0.4409776409999999, + "2024-07-31T18": 0.627392892, + "2024-08-05T02": 0.43511296, + "2024-08-05T12": 0.398443824, + "2024-07-30T21": 0.612540698, + "2024-08-06T07": 0.46771315799999996, + "2024-08-04T11": 0.526931128, + "2024-08-05T05": 0.420574764, + "2024-07-31T19": 0.621488622, + "2024-08-04T21": 0.503753869, + "2024-07-30T14": 0.6328734, + "2024-08-01T18": 0.566678176, + "2024-07-31T04": 0.617670262, + "2024-08-02T18": 0.5625369, + "2024-08-02T03": 0.59395306, + "2024-08-04T01": 0.5273316901280675, + "2024-08-02T21": 0.5513480999999999, + "2024-08-02T02": 0.592983655, + "2024-08-02T10": 0.582956616, + "2024-08-04T23": 0.49679623, + "2024-08-04T03": 0.53017109, + "2024-08-01T05": 0.598734549, + "2024-08-02T17": 0.5685593550000001, + "2024-07-31T16": 0.6239565619999999, + "2024-08-04T04": 0.529876578, + "2024-08-01T02": 0.6061846200000001, + "2024-08-05T21": 0.4318777240000001, + "2024-08-05T07": 0.4164, + "2024-08-05T00": 0.48620746904483975, + "2024-08-02T20": 0.5578912349999999, + "2024-07-31T01": 0.622156871, + "2024-07-31T22": 0.6138096599999999, + "2024-08-04T07": 0.526089424, + "2024-08-04T05": 0.530875968, + "2024-08-01T14": 0.5971490920000001, + "2024-08-03T02": 0.5486005666233124, + "2024-08-01T04": 0.599688, + "2024-08-01T17": 0.570137814, + "2024-08-06T02": 0.457473774, + "2024-08-04T14": 0.508881087, + "2024-07-31T20": 0.608462607, + "2024-08-03T21": 0.5206874, + "2024-08-06T08": 0.46216790199999996, + "2024-08-02T13": 0.587741204, + "2024-08-05T04": 0.429278535, + "2024-08-01T03": 0.603080198, + "2024-07-31T17": 0.625855821, + "2024-07-31T07": 0.633703491, + "2024-08-03T07": 0.556703689, + "2024-08-03T13": 0.547427496, + "latest": 0.463062 + }, + "USD bitcoin": { + "2024-07-31": 66154.28081037139, + "2024-08-02": 64089.21374408972, + "2024-07-30": 66369.98506197213, + "2024-08-01": 64199.960797901476, + "2024-08-06": 55766.91021260364, + "2024-07-20": 66673.07260644222, + "2024-07-21": 67129.69217291326, + "2024-07-15": 62918.72291156123, + "2024-08-03": 61347.79155176474, + "2024-07-18": 64453.179214728676, + "2024-07-11": 57855.26863420017, + "2024-07-17": 65056.873244147086, + "2024-07-22": 67533.13849623637, + "2024-07-12": 57372.965093057814, + "2024-07-24": 66050.29149692682, + "2024-07-06": 56760.395523508574, + "2024-07-08": 56238.50556639431, + "2024-07-07": 57318.22030555993, + "2024-07-13": 58598.94348023881, + "2024-07-09": 57429.32516577569, + "2024-07-23": 66561.95400859701, + "2024-07-10": 57904.21880821967, + "2024-07-14": 60023.754807284655, + "2024-07-29": 68859.9836686864, + "2024-07-27": 68238.40854362202, + "2024-07-28": 67857.96578916008, + "2024-07-19": 64813.08958160364, + "2024-08-04": 59622.37579724586, + "2024-07-26": 67284.40835796585, + "2024-08-05": 53438.27154469499, + "2024-07-25": 64335.36639026953, + "2024-07-16": 64391.64718828868, + "2024-08-02T16": 63262.94472356614, + "2024-08-02T11": 64704.77178858918, + "2024-07-31T00": 66133.64689465435, + "2024-08-05T18": 53854.45777026173, + "2024-07-31T11": 66054.11681747033, + "2024-08-05T23": 54545.50481852376, + "2024-08-02T06": 64069.4628205531, + "2024-08-01T13": 64668.60305103143, + "2024-08-05T01": 54625.82807312994, + "2024-08-02T00": 65165.93225668022, + "2024-08-06T06": 55855.47084128666, + "2024-08-03T23": 60662.06760926121, + "2024-08-01T11": 64538.36533270046, + "2024-08-05T19": 53094.65534799623, + "2024-08-04T19": 59188.798548412284, + "2024-08-01T23": 65067.5339623561, + "2024-08-04T17": 58154.01551248308, + "2024-08-02T22": 61753.71251770357, + "2024-08-02T01": 64685.00509072468, + "2024-08-02T05": 64252.8787774916, + "2024-08-03T20": 60430.09496156183, + "2024-07-31T14": 66360.47689356093, + "2024-08-03T12": 61967.93459979107, + "2024-07-31T05": 65806.73277776419, + "2024-08-02T08": 64278.60624919774, + "2024-08-05T14": 53423.20870437253, + "2024-08-01T07": 64348.852760650196, + "2024-08-03T06": 61674.14230735263, + "2024-08-04T13": 60877.28443725242, + "2024-08-05T16": 54748.58356235065, + "2024-08-05T06": 50996.10200732302, + "2024-08-01T22": 65329.68732233156, + "2024-08-04T20": 59191.7935395348, + "2024-08-06T10": 55226.44878623311, + "2024-08-01T15": 62984.57126943765, + "2024-08-06T05": 55554.389209261484, + "2024-08-04T08": 60398.98469460404, + "2024-08-01T00": 64631.517541440575, + "2024-08-04T18": 58316.41942039236, + "2024-07-31T15": 66415.82271352423, + "2024-08-03T19": 60133.82860824632, + "2024-08-02T12": 64519.6845314868, + "2024-08-01T20": 63809.890125008846, + "2024-08-01T21": 64806.508195887676, + "2024-07-30T23": 66191.89419338194, + "2024-08-03T16": 60789.17957565663, + "2024-08-06T00": 55504.900784516874, + "2024-08-04T06": 60758.76098659194, + "2024-08-02T15": 62947.2286617434, + "2024-08-05T10": 51445.508911480865, + "2024-08-05T17": 54564.18768100871, + "2024-08-03T04": 61712.36136026193, + "2024-08-06T04": 55549.840797493045, + "2024-08-06T03": 55726.59771981767, + "2024-07-30T19": 65768.37459456315, + "2024-08-02T04": 64475.64857522938, + "2024-08-02T23": 61481.38669793715, + "2024-08-05T08": 52764.65023711411, + "2024-08-02T09": 64463.81511924579, + "2024-08-04T12": 60908.34130893148, + "2024-08-04T22": 58773.71626327777, + "2024-07-31T23": 64722.83882123218, + "2024-08-04T10": 60636.91576661131, + "2024-07-30T16": 66279.75731214303, + "2024-08-05T20": 53893.202441652014, + "2024-08-03T10": 61700.11971900606, + "2024-08-04T16": 58943.53289145042, + "2024-07-31T06": 66385.86906377226, + "2024-07-31T02": 66180.51202205877, + "2024-08-03T09": 61537.632582581085, + "2024-08-04T15": 59277.9732124636, + "2024-08-03T00": 61415.70995860674, + "2024-07-30T17": 65879.05045997509, + "2024-08-03T15": 61389.16689873711, + "2024-08-01T19": 63236.52581262726, + "2024-07-30T13": 66649.98503291568, + "2024-08-03T22": 60595.3449303109, + "2024-07-30T22": 66226.93650845715, + "2024-07-31T13": 66463.32222498968, + "2024-07-30T18": 65811.9223890408, + "2024-08-03T05": 61543.51016551883, + "2024-08-05T09": 52681.575533655756, + "2024-07-30T12": 66560.36137965995, + "2024-08-03T01": 60906.59401868837, + "2024-08-05T03": 54212.10113250675, + "2024-07-31T08": 66249.15578393213, + "2024-08-01T10": 64418.25186559839, + "2024-07-31T21": 64826.54705327675, + "2024-08-01T09": 64535.97129027611, + "2024-08-06T09": 54939.120121597116, + "2024-08-03T08": 61552.34006025882, + "2024-08-03T14": 62021.05500774619, + "2024-08-01T12": 64761.5334085458, + "2024-07-30T20": 66003.02246496353, + "2024-07-30T15": 66045.40181952284, + "2024-08-01T01": 64395.57078080071, + "2024-08-05T13": 51013.28778887205, + "2024-08-01T16": 62876.48139679798, + "2024-08-04T00": 60693.19017353672, + "2024-08-02T14": 64430.33966857816, + "2024-08-04T09": 60616.94676211678, + "2024-08-04T02": 60864.131819823044, + "2024-08-03T03": 61662.08408689793, + "2024-08-03T11": 61850.96803471296, + "2024-07-31T09": 66278.01661150403, + "2024-07-31T12": 66091.33498747593, + "2024-08-05T11": 51280.89756610801, + "2024-08-03T18": 60445.38666699607, + "2024-08-01T08": 64417.543511390686, + "2024-07-31T10": 66066.58066335593, + "2024-08-03T17": 60655.845094735785, + "2024-07-31T03": 66091.51654524117, + "2024-08-01T06": 64223.44604151243, + "2024-08-02T07": 64288.9622758471, + "2024-08-02T19": 62699.31107268335, + "2024-07-30T11": 66595.46486707621, + "2024-08-05T22": 54705.522268495624, + "2024-08-06T01": 55924.577619821684, + "2024-08-05T15": 54435.34408222893, + "2024-07-31T18": 66398.62205926703, + "2024-08-05T02": 54160.52540620584, + "2024-08-05T12": 50460.706563223684, + "2024-07-30T21": 66104.41147910434, + "2024-08-06T07": 55826.52827242657, + "2024-08-04T11": 60839.29750537484, + "2024-08-05T05": 53017.826193683264, + "2024-07-31T19": 65706.25937174814, + "2024-08-04T21": 58671.312816141086, + "2024-07-30T14": 66145.94636140573, + "2024-08-01T18": 62992.315648179545, + "2024-07-31T04": 65764.54210829177, + "2024-08-02T18": 62951.615721399896, + "2024-08-02T03": 64371.36746356324, + "2024-08-04T01": 60535.53945246915, + "2024-08-02T21": 61956.03653427549, + "2024-08-02T02": 64176.822236226915, + "2024-08-02T10": 64477.717924786215, + "2024-08-04T23": 58433.465105111725, + "2024-08-04T03": 60721.80455615035, + "2024-08-01T05": 64087.18203308074, + "2024-08-02T17": 63202.60718102886, + "2024-07-31T16": 66420.44334493934, + "2024-08-04T04": 60679.77269485913, + "2024-08-01T02": 64017.026340734505, + "2024-08-05T21": 54645.40687410303, + "2024-08-05T07": 52487.53759284811, + "2024-08-05T00": 57257.83126030138, + "2024-08-02T20": 62469.09401973248, + "2024-07-31T01": 66281.51599139815, + "2024-07-31T22": 64852.78161306262, + "2024-08-04T07": 60439.1130422479, + "2024-08-04T05": 60699.244808986485, + "2024-08-01T14": 64288.79971285694, + "2024-08-03T02": 61318.67312453823, + "2024-08-01T04": 63827.82608524254, + "2024-08-01T17": 62613.96309793828, + "2024-08-06T02": 55830.81474532635, + "2024-08-04T14": 59979.296437007164, + "2024-07-31T20": 64748.87343985227, + "2024-08-03T21": 60416.23634084951, + "2024-08-06T08": 55406.538654146105, + "2024-08-02T13": 65015.57307631346, + "2024-08-05T04": 54000.53419809324, + "2024-08-01T03": 63930.5109120194, + "2024-07-31T17": 66526.22249809223, + "2024-07-31T07": 66353.94640156376, + "2024-08-03T07": 61688.84480849361, + "2024-08-03T13": 61890.588179034494, + "latest": 55073, + "2024-08-06T11": 54985.252961672544 + }, + "USD bitcoin_cash": { + "2024-07-31": 425.83356546529285, + "2024-08-02": 400.2876509001599, + "2024-07-30": 436.19855713128845, + "2024-08-01": 413.65870626070597, + "2024-08-06": 321.54153512989814, + "2024-07-20": 392.4725194122764, + "2024-07-21": 393.96561211268767, + "2024-07-15": 386.6743489777782, + "2024-08-03": 376.92456086516637, + "2024-07-18": 380.4626661510061, + "2024-07-11": 346.67903372401804, + "2024-07-17": 381.68636258896674, + "2024-07-22": 391.9837936539782, + "2024-07-12": 350.44036139678786, + "2024-07-24": 368.10336811479067, + "2024-07-06": 328.893371973096, + "2024-07-08": 326.97292835494596, + "2024-07-07": 327.6582006438815, + "2024-07-13": 374.7671144000141, + "2024-07-09": 333.27700870057606, + "2024-07-23": 377.7830438334136, + "2024-07-10": 338.2988139876674, + "2024-07-14": 377.2017596412097, + "2024-07-29": 444.9589733496396, + "2024-07-27": 389.9174235966979, + "2024-07-28": 397.1106696333456, + "2024-07-19": 380.9040438628712, + "2024-08-04": 349.52179078569696, + "2024-07-26": 373.17382767214775, + "2024-08-05": 301.5045894440044, + "2024-07-25": 353.3788715362961, + "2024-07-16": 386.653667416984, + "2024-08-02T16": 398.560935, + "2024-08-02T11": 407.757196, + "2024-07-31T00": 436.790775, + "2024-08-05T18": 305.84062199999994, + "2024-07-31T11": 424.66630499999997, + "2024-08-05T23": 312.06239999999997, + "2024-08-02T06": 399.596076, + "2024-08-01T13": 417.88931679999996, + "2024-08-05T01": 307.87372, + "2024-08-02T00": 413.82722, + "2024-08-06T06": 323.23578999999995, + "2024-08-03T23": 364.095992, + "2024-08-01T11": 420.277135, + "2024-08-05T19": 303.67535280000004, + "2024-08-04T19": 345.52715, + "2024-08-01T23": 412.016468, + "2024-08-04T17": 339.6606031613682, + "2024-08-02T22": 388.856198, + "2024-08-02T01": 409.43527800000004, + "2024-08-02T05": 403.948259, + "2024-08-03T20": 358.459671, + "2024-07-31T14": 424.30897500000003, + "2024-08-03T12": 380.51059200000003, + "2024-07-31T05": 427.20599400000003, + "2024-08-02T08": 399.168415, + "2024-08-05T14": 304.782269, + "2024-08-01T07": 418.511585, + "2024-08-03T06": 383.0320395, + "2024-08-04T13": 353.0234, + "2024-08-06T11": 313.40025600000007, + "2024-08-05T16": 314.31987, + "2024-08-05T06": 283.680141, + "2024-08-01T22": 413.156795, + "2024-08-04T20": 347.081952, + "2024-08-06T10": 313.703488, + "2024-08-01T15": 407.09635000000003, + "2024-08-06T05": 320.589036, + "2024-08-04T08": 350.78589, + "2024-08-01T00": 414.76308299999994, + "2024-08-04T18": 335.884896, + "2024-07-31T15": 423.926119, + "2024-08-03T19": 359.31951200000003, + "2024-08-02T12": 407.81024900000006, + "2024-08-01T20": 406.18933400000003, + "2024-08-01T21": 412.719948, + "2024-07-30T23": 434.473966, + "2024-08-03T16": 365.7255, + "2024-08-06T00": 321.26424, + "2024-08-04T06": 361.07599400000004, + "2024-08-02T15": 392.11535000000003, + "2024-08-05T10": 291.54081, + "2024-08-05T17": 311.88390300000003, + "2024-08-03T04": 380.18562430000003, + "2024-08-06T04": 320.043955, + "2024-08-06T03": 320.825073, + "2024-07-30T19": 434.93901300000005, + "2024-08-02T04": 407.47298640726234, + "2024-08-02T23": 381.61091200000004, + "2024-08-05T08": 297.732747, + "2024-08-02T09": 401.3645294, + "2024-08-04T12": 352.0239, + "2024-08-04T22": 341.87346, + "2024-07-31T23": 415.966848, + "2024-08-04T10": 349.41820800000005, + "2024-07-30T16": 441.45868800000005, + "2024-08-05T20": 306.63066000000003, + "2024-08-03T10": 381.064368, + "2024-08-04T16": 346.75016, + "2024-07-31T06": 431.074952, + "2024-07-31T02": 435.71284, + "2024-08-03T09": 378.562779, + "2024-08-04T15": 351.164562, + "2024-08-03T00": 380.40102099999996, + "2024-07-30T17": 435.86483999999996, + "2024-08-03T15": 371.550894, + "2024-08-01T19": 395.96396, + "2024-07-30T13": 436.11276, + "2024-08-03T22": 363.59263400000003, + "2024-07-30T22": 434.5102500898889, + "2024-07-31T13": 426.499451, + "2024-07-30T18": 436.060416, + "2024-08-03T05": 381.27631299999996, + "2024-08-05T09": 296.88572962406795, + "2024-07-30T12": 438.63581546045395, + "2024-08-03T01": 374.53875, + "2024-08-05T03": 299.285035, + "2024-07-31T08": 427.40758000000005, + "2024-08-01T10": 417.578566, + "2024-07-31T21": 413.34287, + "2024-08-01T09": 417.557676, + "2024-08-06T09": 313.99416999999994, + "2024-08-03T08": 379.6314, + "2024-08-03T14": 378.95351999999997, + "2024-08-01T12": 422.2803, + "2024-07-30T20": 431.60048100000006, + "2024-07-30T15": 439.95036600000003, + "2024-08-01T01": 415.554505, + "2024-08-05T13": 290.182588, + "2024-08-01T16": 399.91985999999997, + "2024-08-04T00": 365.584178, + "2024-08-02T14": 402.90969599999994, + "2024-08-04T09": 350.200272, + "2024-08-04T02": 363.08202, + "2024-08-03T03": 379.248157, + "2024-08-03T11": 380.580044, + "2024-07-31T09": 425.034172, + "2024-07-31T12": 424.162336, + "2024-08-05T11": 284.03692, + "2024-08-03T18": 359.04849, + "2024-08-01T08": 419.181912, + "2024-07-31T10": 424.0163744, + "2024-08-03T17": 360.04058399999997, + "2024-07-31T03": 432.90907, + "2024-08-01T06": 419.294445, + "2024-08-02T07": 400.175595, + "2024-08-02T19": 394.66934100000003, + "2024-07-30T11": 436.6382867, + "2024-08-05T22": 312.853176, + "2024-08-06T01": 325.89774, + "2024-08-05T15": 310.795678, + "2024-07-31T18": 426.659156, + "2024-08-05T02": 303.73924, + "2024-08-05T12": 286.90251389228894, + "2024-07-30T21": 431.38556594812366, + "2024-08-06T07": 324.016946, + "2024-08-04T11": 352.22027599999996, + "2024-08-05T05": 298.8620672, + "2024-07-31T19": 419.95716600000003, + "2024-08-04T21": 343.22755291641613, + "2024-07-30T14": 435.51288000000005, + "2024-08-01T18": 392.0989368, + "2024-07-31T04": 426.91033, + "2024-08-02T18": 395.2044, + "2024-08-02T03": 408.224088, + "2024-08-04T01": 362.58594800000003, + "2024-08-02T21": 389.61, + "2024-08-02T02": 405.04730199999995, + "2024-08-02T10": 405.2189148195262, + "2024-08-04T23": 333.063388, + "2024-08-04T03": 361.77556000000004, + "2024-08-01T05": 414.347094, + "2024-08-02T17": 397.5319855, + "2024-07-31T16": 428.033002, + "2024-08-04T04": 360.979668, + "2024-08-01T02": 415.29665419068033, + "2024-08-05T21": 310.15581800000007, + "2024-08-05T07": 298.5, + "2024-08-05T00": 327.249396, + "2024-08-02T20": 393.870213, + "2024-07-31T01": 435.199881, + "2024-07-31T22": 417.770451, + "2024-08-04T07": 354.990432, + "2024-08-04T05": 361.39976830781694, + "2024-08-01T14": 415.9263802333411, + "2024-08-03T02": 379.598268, + "2024-08-01T04": 411.885708, + "2024-08-01T17": 395.579321, + "2024-08-06T02": 321.12198, + "2024-08-04T14": 348.650016, + "2024-07-31T20": 415.138033, + "2024-08-03T21": 360.98328, + "2024-08-06T08": 318.78478800000005, + "2024-08-02T13": 413.67708, + "2024-08-05T04": 298.685065, + "2024-08-01T03": 415.379732, + "2024-07-31T17": 428.83269, + "2024-07-31T07": 429.966669, + "2024-08-03T07": 381.49136699999997, + "2024-08-03T13": 377.842892, + "latest": 312.26 + }, + "USD bitcoin_gold": { + "2024-07-31": 26.174877604682198, + "2024-08-02": 24.34723250152701, + "2024-07-30": 27.33790556667021, + "2024-08-01": 25.275643965677435, + "2024-08-06": 20.565884904700734, + "2024-07-20": 26.540330479255093, + "2024-07-21": 26.502995653970718, + "2024-07-15": 26.4607878943582, + "2024-08-03": 23.08501032992328, + "2024-07-18": 26.0272493322891, + "2024-07-11": 22.94686972486044, + "2024-07-17": 27.005787152589615, + "2024-07-22": 26.207913213209757, + "2024-07-12": 22.72443501465018, + "2024-07-24": 25.420679438488573, + "2024-07-06": 22.221629045466663, + "2024-07-08": 22.115905671779544, + "2024-07-07": 22.981210121511474, + "2024-07-13": 23.38477627338661, + "2024-07-09": 22.394922665697063, + "2024-07-23": 25.593268773713994, + "2024-07-10": 23.07715420094499, + "2024-07-14": 24.49996559189854, + "2024-07-29": 27.88131639617426, + "2024-07-27": 26.26940073701239, + "2024-07-28": 25.99415917557113, + "2024-07-19": 25.994567300507136, + "2024-08-04": 21.9740444888299, + "2024-07-26": 24.97478278624881, + "2024-08-05": 19.18246965144409, + "2024-07-25": 24.119114209055795, + "2024-07-16": 27.24685792554645, + "2024-08-02T16": 23.920716393040994, + "2024-08-02T11": 24.5300033560331, + "2024-07-31T00": 26.448324545493787, + "2024-08-05T18": 19.76647422338096, + "2024-07-31T11": 26.106421006817992, + "2024-08-05T23": 20.17826040193029, + "2024-08-02T06": 24.04979304059163, + "2024-08-01T13": 25.398670298169694, + "2024-08-05T01": 20.084451884792003, + "2024-08-02T00": 25.531770918551487, + "2024-08-06T06": 20.811901464150644, + "2024-08-03T23": 22.77687057717878, + "2024-08-01T11": 25.401322436278527, + "2024-08-05T19": 19.56008764864537, + "2024-08-04T19": 21.87099711710926, + "2024-08-01T23": 25.169613770514488, + "2024-08-04T17": 21.345320860623396, + "2024-08-02T22": 23.694642712511207, + "2024-08-02T01": 25.16272645354589, + "2024-08-02T05": 24.277491834474656, + "2024-08-03T20": 22.450438284001635, + "2024-07-31T14": 26.349328944674202, + "2024-08-03T12": 23.352421030108314, + "2024-07-31T05": 25.981895342896543, + "2024-08-02T08": 24.23749481073058, + "2024-08-05T14": 19.052025334590624, + "2024-08-01T07": 25.437969283356765, + "2024-08-03T06": 23.56878835935702, + "2024-08-04T13": 22.581257405407822, + "2024-08-05T16": 19.92508183491945, + "2024-08-05T06": 18.20556184351618, + "2024-08-01T22": 25.331227014550176, + "2024-08-04T20": 21.915036708636134, + "2024-08-06T10": 21.01711397083561, + "2024-08-01T15": 24.662713623781443, + "2024-08-06T05": 20.685718093441665, + "2024-08-04T08": 22.511231994391125, + "2024-08-01T00": 25.64819083726027, + "2024-08-04T18": 21.444828429358648, + "2024-07-31T15": 26.326902482468775, + "2024-08-03T19": 22.529236931980947, + "2024-08-02T12": 24.468063547946574, + "2024-08-01T20": 24.339861203899282, + "2024-08-01T21": 25.081411025793173, + "2024-07-30T23": 26.814084385681085, + "2024-08-03T16": 22.778557285837877, + "2024-08-06T00": 20.4763337962963, + "2024-08-04T06": 22.75051590693357, + "2024-08-02T15": 23.763116022194996, + "2024-08-05T10": 18.24900486380417, + "2024-08-05T17": 19.98837754309996, + "2024-08-03T04": 23.471181514518054, + "2024-08-06T04": 20.566785104119646, + "2024-08-06T03": 20.450700201068006, + "2024-07-30T19": 26.48891415872421, + "2024-08-02T04": 24.556296655526992, + "2024-08-02T23": 23.445534733821674, + "2024-08-05T08": 18.757624578223783, + "2024-08-02T09": 24.34436164178203, + "2024-08-04T12": 22.625125268978742, + "2024-08-04T22": 21.742058418729872, + "2024-07-31T23": 25.687858063257018, + "2024-08-04T10": 22.44155142702943, + "2024-07-30T16": 26.91550490729713, + "2024-08-05T20": 19.72524420589298, + "2024-08-03T10": 23.234753895319884, + "2024-08-04T16": 21.71145685304912, + "2024-07-31T06": 26.281155337931825, + "2024-07-31T02": 26.122005555143065, + "2024-08-03T09": 23.161157548168273, + "2024-08-04T15": 21.77202737970015, + "2024-08-03T00": 23.273127890379445, + "2024-07-30T17": 26.622556442043646, + "2024-08-03T15": 23.160222468080615, + "2024-08-01T19": 24.562689465139133, + "2024-07-30T13": 27.089125845584025, + "2024-08-03T22": 22.665617910187013, + "2024-07-30T22": 26.833155692215268, + "2024-07-31T13": 26.43378758808208, + "2024-07-30T18": 26.681057247640734, + "2024-08-03T05": 23.369878490821048, + "2024-08-05T09": 18.55512932033611, + "2024-07-30T12": 27.169175284545215, + "2024-08-03T01": 22.72872257436062, + "2024-08-05T03": 19.810755563804143, + "2024-07-31T08": 26.062212481646778, + "2024-08-01T10": 25.242072353873244, + "2024-07-31T21": 25.818494414594248, + "2024-08-01T09": 25.452461399577462, + "2024-08-06T09": 20.06366586140134, + "2024-08-03T08": 23.212832808249015, + "2024-08-03T14": 23.529149518305438, + "2024-08-01T12": 25.529999216437716, + "2024-07-30T20": 26.6718613959952, + "2024-07-30T15": 26.901137298602006, + "2024-08-01T01": 25.553820364386063, + "2024-08-05T13": 18.135868367974332, + "2024-08-01T16": 24.596470054541122, + "2024-08-04T00": 22.73184957935552, + "2024-08-02T14": 24.374519190261573, + "2024-08-04T09": 22.576448217066282, + "2024-08-04T02": 22.67449762639265, + "2024-08-03T03": 23.414190470073667, + "2024-08-03T11": 23.291218933418126, + "2024-07-31T09": 26.139382875047513, + "2024-07-31T12": 26.169327618323933, + "2024-08-05T11": 18.009546859358526, + "2024-08-03T18": 22.887781317394516, + "2024-08-01T08": 25.390782902001174, + "2024-07-31T10": 26.143848934944668, + "2024-08-03T17": 22.77143231983917, + "2024-07-31T03": 26.09477600455642, + "2024-08-01T06": 25.3452596584788, + "2024-08-02T07": 24.206323824746082, + "2024-08-02T19": 23.904451083173516, + "2024-07-30T11": 27.26448186623545, + "2024-08-05T22": 20.11841408617591, + "2024-08-06T01": 20.631209003741144, + "2024-08-05T15": 19.652345250854435, + "2024-07-31T18": 26.367503126954045, + "2024-08-05T02": 19.83912730152127, + "2024-08-05T12": 17.81248966107323, + "2024-07-30T21": 26.593360280570355, + "2024-08-06T07": 20.842015268547705, + "2024-08-04T11": 22.531496142534802, + "2024-08-05T05": 19.123256297501573, + "2024-07-31T19": 26.187484678608563, + "2024-08-04T21": 21.6828764755304, + "2024-07-30T14": 26.747070110570675, + "2024-08-01T18": 24.53875175768814, + "2024-07-31T04": 25.912940917027107, + "2024-08-02T18": 23.971410013514156, + "2024-08-02T03": 24.526523600215608, + "2024-08-04T01": 22.61225608136248, + "2024-08-02T21": 23.747488083652375, + "2024-08-02T02": 24.677556836333697, + "2024-08-02T10": 24.450717537375102, + "2024-08-04T23": 21.492491476027713, + "2024-08-04T03": 22.786350229924576, + "2024-08-01T05": 25.2706722756669, + "2024-08-02T17": 23.892919906332157, + "2024-07-31T16": 26.386717981167717, + "2024-08-04T04": 22.706089225280532, + "2024-08-01T02": 25.41551951331786, + "2024-08-05T21": 20.02432687882033, + "2024-08-05T07": 18.699843527982022, + "2024-08-05T00": 21.161069270116958, + "2024-08-02T20": 24.006938113139284, + "2024-07-31T01": 26.297542055879628, + "2024-07-31T22": 25.785785174431293, + "2024-08-04T07": 22.561747510204974, + "2024-08-04T05": 22.77621994507095, + "2024-08-01T14": 25.198897101491475, + "2024-08-03T02": 23.345147280278315, + "2024-08-01T04": 25.13856039597812, + "2024-08-01T17": 24.40923030559777, + "2024-08-06T02": 20.59310673594818, + "2024-08-04T14": 22.051528952133975, + "2024-07-31T20": 25.79619647773258, + "2024-08-03T21": 22.5938284298704, + "2024-08-06T08": 20.34315403751121, + "2024-08-02T13": 24.58835652143391, + "2024-08-05T04": 19.756464481504313, + "2024-08-01T03": 25.50462432965537, + "2024-07-31T17": 26.390331305786667, + "2024-07-31T07": 26.18622291185196, + "2024-08-03T07": 23.4660416160171, + "2024-08-03T13": 23.3385700305158, + "latest": 20.98, + "2024-08-06T11": 20.957800977620487 + }, + "USD bittorrent": { + "2024-07-31": 9.06502016548209e-7, + "2024-08-02": 8.661646674190951e-7, + "2024-07-30": 9.152728703241899e-7, + "2024-08-01": 8.779977646881202e-7, + "2024-08-06": 6.949532042162451e-7, + "2024-07-20": 8.883368143372145e-7, + "2024-07-21": 9.032010914001518e-7, + "2024-07-15": 8.243973154204264e-7, + "2024-08-03": 8.165427151142848e-7, + "2024-07-18": 8.949021584293824e-7, + "2024-07-11": 7.951232635862344e-7, + "2024-07-17": 9.173801459799816e-7, + "2024-07-22": 9.060786541186805e-7, + "2024-07-12": 7.948265993099029e-7, + "2024-07-24": 8.680759798404206e-7, + "2024-07-06": 7.532242874907583e-7, + "2024-07-08": 7.546908514885886e-7, + "2024-07-07": 7.921496176675759e-7, + "2024-07-13": 7.986212571376436e-7, + "2024-07-09": 7.738840971896627e-7, + "2024-07-23": 8.890738393360605e-7, + "2024-07-10": 7.871755563408201e-7, + "2024-07-14": 8.171382125255041e-7, + "2024-07-29": 8.881068145849185e-7, + "2024-07-27": 8.763772646449497e-7, + "2024-07-28": 8.944508234983068e-7, + "2024-07-19": 8.753879229934606e-7, + "2024-08-04": 7.8729053046043e-7, + "2024-07-26": 8.365810377776231e-7, + "2024-08-05": 7.589808828432039e-7, + "2024-07-25": 8.604435821082005e-7, + "2024-07-16": 8.903662388552079e-7, + "2024-08-02T16": 8.231992698475983e-7, + "2024-08-02T11": 8.475185179859028e-7, + "2024-07-31T00": 9.19282867675396e-7, + "2024-08-05T18": 7.045986289442268e-7, + "2024-07-31T11": 8.89855128887581e-7, + "2024-08-05T23": 6.977140270398919e-7, + "2024-08-02T06": 8.564096448464879e-7, + "2024-08-01T13": 8.727348008018809e-7, + "2024-08-05T01": 7.321012751057631e-7, + "2024-08-02T00": 8.610734559660166e-7, + "2024-08-06T06": 7.266883898391123e-7, + "2024-08-03T23": 7.865773043607166e-7, + "2024-08-01T11": 8.679346566043558e-7, + "2024-08-05T19": 6.986334736798996e-7, + "2024-08-04T19": 7.766839267657428e-7, + "2024-08-01T23": 8.61765750787701e-7, + "2024-08-04T17": 7.809496252844405e-7, + "2024-08-02T22": 8.12275208988745e-7, + "2024-08-02T01": 8.643164765431985e-7, + "2024-08-02T05": 8.619682983733673e-7, + "2024-08-03T20": 7.84767185649597e-7, + "2024-07-31T14": 8.986392160699659e-7, + "2024-08-03T12": 8.022912906239428e-7, + "2024-07-31T05": 8.921868604219374e-7, + "2024-08-02T08": 8.450585078662137e-7, + "2024-08-05T14": 6.625597623221733e-7, + "2024-08-01T07": 8.703414792987502e-7, + "2024-08-03T06": 7.980845223957238e-7, + "2024-08-04T13": 7.952908732812996e-7, + "2024-08-06T11": 7.100030864991096e-7, + "2024-08-05T16": 6.937566538195617e-7, + "2024-08-05T06": 6.84257198672557e-7, + "2024-08-01T22": 8.55708074539544e-7, + "2024-08-04T20": 7.765516995504953e-7, + "2024-08-06T10": 7.070330365780346e-7, + "2024-08-01T15": 8.629271709801431e-7, + "2024-08-06T05": 7.173704270812489e-7, + "2024-08-04T08": 7.904322860862504e-7, + "2024-08-01T00": 8.782095447547228e-7, + "2024-08-04T18": 7.746909171055412e-7, + "2024-07-31T15": 8.979241599313335e-7, + "2024-08-03T19": 7.863300656696434e-7, + "2024-08-02T12": 8.49597490102684e-7, + "2024-08-01T20": 8.527109003963045e-7, + "2024-08-01T21": 8.556628761743951e-7, + "2024-07-30T23": 9.12538437698996e-7, + "2024-08-03T16": 7.96703191737833e-7, + "2024-08-06T00": 6.949532042162451e-7, + "2024-08-04T06": 7.931618199079839e-7, + "2024-08-02T15": 8.303414833252866e-7, + "2024-08-05T10": 6.689532276082522e-7, + "2024-08-05T17": 7.013981558786512e-7, + "2024-08-03T04": 7.992553991655616e-7, + "2024-08-06T04": 7.186708638636854e-7, + "2024-08-06T03": 7.236438277340828e-7, + "2024-07-30T19": 9.088153384982013e-7, + "2024-08-02T04": 8.620810021495891e-7, + "2024-08-02T23": 8.086195187038497e-7, + "2024-08-05T08": 6.72476679466056e-7, + "2024-08-02T09": 8.470580388419622e-7, + "2024-08-04T12": 7.947495509618535e-7, + "2024-08-04T22": 7.72060885249986e-7, + "2024-07-31T23": 8.822112216782277e-7, + "2024-08-04T10": 7.946304728272432e-7, + "2024-07-30T16": 9.163204753557154e-7, + "2024-08-05T20": 6.966380189376523e-7, + "2024-08-03T10": 8.029593914364447e-7, + "2024-08-04T16": 7.898828440266779e-7, + "2024-07-31T06": 8.950650024682245e-7, + "2024-07-31T02": 8.994322964809244e-7, + "2024-08-03T09": 8.015550631834427e-7, + "2024-08-04T15": 7.766142389114396e-7, + "2024-08-03T00": 8.10979943312216e-7, + "2024-07-30T17": 9.133407898662497e-7, + "2024-08-03T15": 8.051161255586938e-7, + "2024-08-01T19": 8.478140932436085e-7, + "2024-07-30T13": 9.093413026418732e-7, + "2024-08-03T22": 7.869933572728534e-7, + "2024-07-30T22": 9.094841132499594e-7, + "2024-07-31T13": 8.916789508557626e-7, + "2024-07-30T18": 9.134117120292367e-7, + "2024-08-03T05": 7.954510701665307e-7, + "2024-08-05T09": 6.691876717626448e-7, + "2024-07-30T12": 9.157191240156994e-7, + "2024-08-03T01": 8.03530760382003e-7, + "2024-08-05T03": 7.054634831409963e-7, + "2024-07-31T08": 8.962327859539027e-7, + "2024-08-01T10": 8.698009045275311e-7, + "2024-07-31T21": 8.82777003413826e-7, + "2024-08-01T09": 8.710812964193415e-7, + "2024-08-06T09": 7.106700641781024e-7, + "2024-08-03T08": 8.019552460536571e-7, + "2024-08-03T14": 8.043366033906532e-7, + "2024-08-01T12": 8.674754865372034e-7, + "2024-07-30T20": 9.09533076327744e-7, + "2024-07-30T15": 9.095200313631498e-7, + "2024-08-01T01": 8.785219852034265e-7, + "2024-08-05T13": 6.518592367545012e-7, + "2024-08-01T16": 8.547321850476776e-7, + "2024-08-04T00": 7.865022797740013e-7, + "2024-08-02T14": 8.449423133160707e-7, + "2024-08-04T09": 7.903525290996931e-7, + "2024-08-04T02": 7.92273768741286e-7, + "2024-08-03T03": 7.959161942848698e-7, + "2024-08-03T11": 8.027472831630182e-7, + "2024-07-31T09": 8.967015374606471e-7, + "2024-07-31T12": 8.930707978467756e-7, + "2024-08-05T11": 6.594476297697297e-7, + "2024-08-03T18": 7.888781905323504e-7, + "2024-08-01T08": 8.727324996764485e-7, + "2024-07-31T10": 8.90959132112133e-7, + "2024-08-03T17": 8.025161174503641e-7, + "2024-07-31T03": 8.909767398957733e-7, + "2024-08-01T06": 8.727600023878747e-7, + "2024-08-02T07": 8.477066844391569e-7, + "2024-08-02T19": 8.216776662859496e-7, + "2024-07-30T11": 9.178360501177213e-7, + "2024-08-05T22": 6.970776007798924e-7, + "2024-08-06T01": 7.169996717274057e-7, + "2024-08-05T15": 6.856477246663089e-7, + "2024-07-31T18": 8.98671760322324e-7, + "2024-08-05T02": 7.040531974919522e-7, + "2024-08-05T12": 6.56386018503335e-7, + "2024-07-30T21": 9.072208776220104e-7, + "2024-08-06T07": 7.273856602331502e-7, + "2024-08-04T11": 7.989576245386179e-7, + "2024-08-05T05": 6.991249063086032e-7, + "2024-07-31T19": 8.978465391088774e-7, + "2024-08-04T21": 7.766847398982689e-7, + "2024-07-30T14": 9.12374535784814e-7, + "2024-08-01T18": 8.524679823254173e-7, + "2024-07-31T04": 8.897960832602274e-7, + "2024-08-02T18": 8.227008728521118e-7, + "2024-08-02T03": 8.620471656385911e-7, + "2024-08-04T01": 7.874142043599984e-7, + "2024-08-02T21": 8.180665790263157e-7, + "2024-08-02T02": 8.620833228809182e-7, + "2024-08-02T10": 8.464776741187917e-7, + "2024-08-04T23": 7.690042388285936e-7, + "2024-08-04T03": 7.947453771441652e-7, + "2024-08-01T05": 8.70363107368682e-7, + "2024-08-02T17": 8.234976656201442e-7, + "2024-07-31T16": 8.917592957370197e-7, + "2024-08-04T04": 7.9296429014359e-7, + "2024-08-01T02": 8.76763162392282e-7, + "2024-08-05T21": 7.029230605026889e-7, + "2024-08-05T07": 6.640077132648184e-7, + "2024-08-05T00": 7.671695743389062e-7, + "2024-08-02T20": 8.153499837241705e-7, + "2024-07-31T01": 9.089365379487202e-7, + "2024-07-31T22": 8.839290082347231e-7, + "2024-08-04T07": 7.934075028828939e-7, + "2024-08-04T05": 7.900607404500834e-7, + "2024-08-01T14": 8.716881505464374e-7, + "2024-08-03T02": 7.949654858176559e-7, + "2024-08-01T04": 8.736822597992492e-7, + "2024-08-01T17": 8.50972567605613e-7, + "2024-08-06T02": 7.17393854520673e-7, + "2024-08-04T14": 7.948240851986625e-7, + "2024-07-31T20": 8.869140076688208e-7, + "2024-08-03T21": 7.841253727067729e-7, + "2024-08-06T08": 7.267759109636805e-7, + "2024-08-02T13": 8.453687086850114e-7, + "2024-08-05T04": 7.049795830232946e-7, + "2024-08-01T03": 8.691299315899995e-7, + "2024-07-31T17": 8.968948628731427e-7, + "2024-07-31T07": 8.975572398772381e-7, + "2024-08-03T07": 8.036650215761168e-7, + "2024-08-03T13": 8.048754998995639e-7, + "latest": 7.12228e-7 + }, + "USD bsc": { + "2024-07-31": 585.6768463421488, + "2024-08-02": 567.027620423784, + "2024-07-30": 573.2804060287864, + "2024-08-01": 569.6885419903697, + "2024-08-06": 482.8128988178774, + "2024-07-20": 591.8144740960619, + "2024-07-21": 596.1195772220597, + "2024-07-15": 563.0731358912597, + "2024-08-03": 535.0822966397136, + "2024-07-18": 572.4992356059385, + "2024-07-11": 527.7806189759618, + "2024-07-17": 577.0018067921104, + "2024-07-22": 594.7345295078062, + "2024-07-12": 525.5288404925591, + "2024-07-24": 583.8320504083373, + "2024-07-06": 511.2405994784911, + "2024-07-08": 504.62687520468927, + "2024-07-07": 508.0010482244308, + "2024-07-13": 533.5021897560774, + "2024-07-09": 515.5292792630489, + "2024-07-23": 583.4615420503495, + "2024-07-10": 523.3253778163858, + "2024-07-14": 536.8875412034189, + "2024-07-29": 588.4072076133785, + "2024-07-27": 584.3964247309128, + "2024-07-28": 580.8052828964328, + "2024-07-19": 578.6373026700362, + "2024-08-04": 507.98759340617386, + "2024-07-26": 578.0299965164397, + "2024-08-05": 445.73318841206395, + "2024-07-25": 563.6984682508622, + "2024-07-16": 573.5095275132985, + "2024-08-02T16": 556.12689, + "2024-08-02T11": 573.2480668000001, + "2024-07-31T00": 585.25365, + "2024-08-05T18": 461.2099182635505, + "2024-07-31T11": 585.777645, + "2024-08-05T23": 468.39366, + "2024-08-02T06": 566.3892168000001, + "2024-08-01T13": 572.674984, + "2024-08-05T01": 454.9822117991468, + "2024-08-02T00": 575.4816, + "2024-08-06T06": 489.35696999999993, + "2024-08-03T23": 528.9036480000001, + "2024-08-01T11": 571.9567022, + "2024-08-05T19": 455.7707920228882, + "2024-08-04T19": 507.34620000000007, + "2024-08-01T23": 574.764971, + "2024-08-04T17": 493.68989700000003, + "2024-08-02T22": 541.981436, + "2024-08-02T01": 570.691632, + "2024-08-02T05": 569.5041, + "2024-08-03T20": 523.64892, + "2024-07-31T14": 586.33603, + "2024-08-03T12": 541.58808, + "2024-07-31T05": 582.671784, + "2024-08-02T08": 570.126402, + "2024-08-05T14": 454.65684714864193, + "2024-08-01T07": 569.1767382463676, + "2024-08-03T06": 542.508021, + "2024-08-04T13": 526.3367000000001, + "2024-08-06T11": 479.053248, + "2024-08-05T16": 466.7422507300311, + "2024-08-05T06": 417.9216652961005, + "2024-08-01T22": 575.721754, + "2024-08-04T20": 507.5951977951917, + "2024-08-06T10": 479.258103, + "2024-08-01T15": 560.7195, + "2024-08-06T05": 482.4244626, + "2024-08-04T08": 523.68036, + "2024-08-01T00": 576.309755, + "2024-08-04T18": 496.482048, + "2024-07-31T15": 586.7993136, + "2024-08-03T19": 525.539759, + "2024-08-02T12": 571.493951, + "2024-08-01T20": 565.628138, + "2024-08-01T21": 571.074128, + "2024-07-30T23": 584.130553, + "2024-08-03T16": 529.9022749999999, + "2024-08-06T00": 481.0962, + "2024-08-04T06": 527.972454, + "2024-08-02T15": 551.658844, + "2024-08-05T10": 431.924139148841, + "2024-08-05T17": 467.5650790890101, + "2024-08-03T04": 540.353691, + "2024-08-06T04": 480.01591, + "2024-08-06T03": 480.28723899999994, + "2024-07-30T19": 571.588434, + "2024-08-02T04": 571.7792069999999, + "2024-08-02T23": 542.8043200000001, + "2024-08-05T08": 441.33469035998064, + "2024-08-02T09": 571.5080800000001, + "2024-08-04T12": 525.7370000000001, + "2024-08-04T22": 504.513261, + "2024-07-31T23": 576.81536, + "2024-08-04T10": 525.72648, + "2024-07-30T16": 574.915968, + "2024-08-05T20": 461.36037296334405, + "2024-08-03T10": 539.624712, + "2024-08-04T16": 501.738488, + "2024-07-31T06": 586.1999527, + "2024-07-31T02": 585.8828, + "2024-08-03T09": 537.7210020000001, + "2024-08-04T15": 503.562387, + "2024-08-03T00": 536.895744, + "2024-07-30T17": 573.1122800999999, + "2024-08-03T15": 535.8407460000001, + "2024-08-01T19": 558.245254, + "2024-07-30T13": 573.68524, + "2024-08-03T22": 527.7310103020388, + "2024-07-30T22": 579.2719624, + "2024-07-31T13": 587.023969, + "2024-07-30T18": 573.0165760000001, + "2024-08-03T05": 541.2185798, + "2024-08-05T09": 446.2862639001029, + "2024-07-30T12": 573.48528, + "2024-08-03T01": 529.947362, + "2024-08-05T03": 446.8717272745395, + "2024-07-31T08": 587.635445, + "2024-08-01T10": 570.3975290000001, + "2024-07-31T21": 576.980664, + "2024-08-01T09": 570.8196812206082, + "2024-08-06T09": 479.14369999999997, + "2024-08-03T08": 538.2873543, + "2024-08-03T14": 543.3306054, + "2024-08-01T12": 573.2262006742072, + "2024-07-30T20": 573.12801, + "2024-07-30T15": 573.2050439999999, + "2024-08-01T01": 573.9990300000001, + "2024-08-05T13": 421.5309809327644, + "2024-08-01T16": 556.3103100000001, + "2024-08-04T00": 529.587359, + "2024-08-02T14": 567.191328, + "2024-08-04T09": 526.099952, + "2024-08-04T02": 529.1822999999999, + "2024-08-03T03": 539.3474119, + "2024-08-03T11": 540.2458120000001, + "2024-07-31T09": 586.970992, + "2024-07-31T12": 585.8717280000001, + "2024-08-05T11": 427.7740350311762, + "2024-08-03T18": 526.950876, + "2024-08-01T08": 569.403756, + "2024-07-31T10": 585.119008, + "2024-08-03T17": 527.519912, + "2024-07-31T03": 585.1770869999999, + "2024-08-01T06": 568.821141, + "2024-08-02T07": 569.9379759999999, + "2024-08-02T19": 554.494941, + "2024-07-30T11": 573.3595692, + "2024-08-05T22": 467.4796271545576, + "2024-08-06T01": 486.74598000000003, + "2024-08-05T15": 461.3798401466033, + "2024-07-31T18": 588.905597, + "2024-08-05T02": 448.7818828023278, + "2024-08-05T12": 423.84991710222704, + "2024-07-30T21": 575.6502919999999, + "2024-08-06T07": 488.72722799999997, + "2024-08-04T11": 526.9311280000001, + "2024-08-05T05": 435.4866608581124, + "2024-07-31T19": 583.80144, + "2024-08-04T21": 503.553927, + "2024-07-30T14": 573.3853, + "2024-08-01T18": 555.188756, + "2024-07-31T04": 583.477444, + "2024-08-02T18": 556.7130750725617, + "2024-08-02T03": 570.075048, + "2024-08-04T01": 528.787831, + "2024-08-02T21": 549.7497, + "2024-08-02T02": 566.906362, + "2024-08-02T10": 571.1955612, + "2024-08-04T23": 499.19524599999994, + "2024-08-04T03": 528.072392, + "2024-08-01T05": 567.4943767663733, + "2024-08-02T17": 558.1692350000001, + "2024-07-31T16": 586.371226, + "2024-08-04T04": 528.177615, + "2024-08-01T02": 570.70308, + "2024-08-05T21": 465.483772, + "2024-08-05T07": 434.62286871920776, + "2024-08-05T00": 485.6850010169071, + "2024-08-02T20": 554.095377, + "2024-07-31T01": 584.465542, + "2024-07-31T22": 578.220696, + "2024-08-04T07": 523.391017, + "2024-08-04T05": 527.6379444, + "2024-08-01T14": 571.0800456000001, + "2024-08-03T02": 536.29116, + "2024-08-01T04": 566.0055239999999, + "2024-08-01T17": 556.4189353, + "2024-08-06T02": 483.18354000000005, + "2024-08-04T14": 511.479969, + "2024-07-31T20": 578.1744239999999, + "2024-08-03T21": 524.9848199999999, + "2024-08-06T08": 483.0672632760613, + "2024-08-02T13": 574.1518120000001, + "2024-08-05T04": 443.82974666867375, + "2024-08-01T03": 569.6979, + "2024-07-31T17": 590.5895802, + "2024-07-31T07": 585.918309, + "2024-08-03T07": 542.8185619999999, + "2024-08-03T13": 541.63144, + "latest": 478.13, + "2023-10-23": 220.5091952798105, + "2023-08-20": 216.618336, + "2024-02-23": 376.112191819906, + "2024-04-05": 579.7678898402488, + "2023-12-19": 250.94325489168887, + "2024-05-17": 578.1626366726023, + "2023-08-06": 243.6591723827042, + "2023-12-02": 228.513216205564, + "2024-06-11": 609.7280922293237, + "2024-04-26": 603.9230668660296, + "2024-01-08": 300.47783891605053, + "2023-10-31": 226.56784583322704, + "2023-08-29": 219.30972527948762, + "2023-09-09": 214.80836236101464, + "2023-10-01": 215.12565361910697, + "2024-03-07": 443.7933978645574, + "2023-10-12": 205.34160599198583, + "2024-04-22": 598.1263977292064, + "2024-06-24": 566.7793840417162, + "2023-09-26": 211.7802953394111, + "2023-08-24": 217.89837373479307, + "2023-12-05": 231.1238844460889, + "2024-02-19": 352.57630990098255, + "2024-01-07": 306.54019443597207, + "2024-04-28": 601.8950729021188, + "2023-10-18": 211.99674703085557, + "2023-10-07": 212.9472573792375, + "2024-06-28": 574.883047964823, + "2024-05-19": 578.7186144994533, + "2024-05-12": 592.9281959421463, + "2023-09-16": 214.6181337772882, + "2023-08-25": 216.70308076350668, + "2024-03-09": 487.42553893358604, + "2023-09-05": 214.65622980316186, + "2024-04-29": 590.5819300918249, + "2024-04-25": 608.0123087390568, + "2023-08-12": 240.48300766151527, + "2024-06-12": 616.1014951634891, + "2023-09-01": 214.09424371454406, + "2024-05-30": 595.2154456181476, + "2024-06-05": 699.6734192783208, + "2023-09-08": 214.53986095300485, + "2024-03-22": 563.0219256999558, + "2023-08-10": 241.8969053325372, + "2023-11-18": 243.48219711200568, + "2023-09-13": 211.5799786926339, + "2023-12-07": 231.95264473679225, + "2024-06-30": 575.7213620959285, + "2024-06-20": 597.689017297533, + "2023-09-07": 215.04294031205046, + "2024-03-26": 589.773683382556, + "2024-05-14": 579.0933629106509, + "2024-06-16": 607.3751618149998, + "2024-02-22": 380.4994082258852, + "2024-04-15": 564.9446919173535, + "2023-12-30": 316.6141836900157, + "2023-09-17": 215.0381675235388, + "2024-04-17": 537.0252054610914, + "2024-02-12": 320.84772394194624, + "2023-10-26": 223.83511390037017, + "2024-01-03": 316.26271551033767, + "2024-05-07": 590.1037888039405, + "2024-01-22": 312.781613359664, + "2023-10-03": 214.03943314910507, + "2024-05-26": 601.2820190763459, + "2024-04-30": 577.4766849114121, + "2023-12-24": 268.97092082540644, + "2023-09-24": 210.41228938911857, + "2024-01-16": 316.25623826574, + "2023-10-17": 212.52499644670243, + "2024-04-24": 605.83988208529, + "2024-03-18": 559.2588756974279, + "2024-02-17": 356.1385675420734, + "2023-12-27": 307.6839535995551, + "2023-09-03": 214.1351610536007, + "2024-02-24": 380.09424610781383, + "2024-01-06": 306.62087290923995, + "2024-03-20": 526.6901360769571, + "2023-11-21": 257.4021945797481, + "2023-12-25": 265.4599015472991, + "2023-09-22": 210.9301432174549, + "2024-03-01": 406.2725803880665, + "2023-10-02": 218.30592165643995, + "2024-03-27": 575.220715733154, + "2024-05-13": 594.1671932148007, + "2024-05-06": 591.0226222937928, + "2024-06-19": 598.1267109581496, + "2023-08-30": 224.52045012771563, + "2023-10-06": 212.14216977212953, + "2023-10-13": 205.65293700437098, + "2024-02-05": 303.0000924018602, + "2023-12-10": 239.79487017537076, + "2023-11-23": 234.11419196438783, + "2024-01-13": 299.130375622892, + "2024-03-28": 584.7182500650164, + "2023-08-05": 241.36742322447, + "2024-02-09": 322.8077519736376, + "2023-10-09": 207.35620896013415, + "2024-01-09": 301.2825080805941, + "2024-05-10": 593.09072071853, + "2023-08-18": 217.4170923254432, + "2023-11-05": 242.72269371741407, + "2024-04-18": 547.5074334084135, + "2023-10-22": 214.89665206534548, + "2023-11-01": 225.10399849936618, + "2024-05-20": 576.8951154577288, + "2023-12-08": 235.2393062766521, + "2024-04-12": 612.4703519532749, + "2024-03-12": 535.1591629747446, + "2024-07-02": 577.9507746445573, + "2023-09-11": 207.36996755973806, + "2024-03-03": 412.690146638127, + "2024-02-04": 303.98096941206904, + "2024-01-28": 305.96105735967063, + "2024-01-26": 301.54670900178115, + "2023-11-07": 247.83001419411542, + "2023-11-25": 233.66050973829405, + "2024-06-29": 570.2805487811781, + "2024-02-25": 384.33717918451856, + "2023-12-01": 228.56833916401848, + "2024-02-28": 409.1882096527963, + "2023-09-15": 212.38934756289663, + "2023-12-21": 269.84100820495297, + "2024-06-01": 595.7537857562854, + "2024-03-06": 420.1693784927538, + "2023-09-30": 214.98950191938016, + "2023-12-12": 252.2641805220811, + "2023-10-04": 212.42029717462933, + "2024-02-13": 325.7945574789206, + "2023-09-20": 215.92025469939801, + "2024-04-16": 540.4356542126285, + "2023-09-19": 217.10921393156045, + "2023-09-29": 215.50684614286283, + "2023-09-12": 211.34441147877416, + "2024-03-02": 409.2955678616332, + "2024-06-02": 600.6726653147169, + "2023-10-08": 211.63240180608975, + "2023-11-20": 247.79271991682498, + "2023-12-20": 256.99327675257547, + "2023-12-31": 317.99493352580396, + "2023-11-06": 249.77186550824686, + "2024-05-29": 598.2482675695182, + "2023-08-22": 208.84957196372352, + "2024-03-17": 576.5160131730488, + "2023-09-18": 217.45088539676618, + "2024-07-01": 580.8647575198895, + "2024-04-01": 584.1767747366358, + "2024-05-21": 615.1440832504978, + "2024-01-19": 311.67425739107756, + "2023-11-11": 250.92796627671788, + "2023-09-23": 210.6424793273035, + "2023-08-15": 238.9875459653054, + "2023-11-19": 244.23108014926373, + "2024-01-25": 291.72943031938087, + "2024-03-13": 585.9501450722977, + "2024-01-21": 318.6695251214524, + "2024-02-01": 299.3625146289332, + "2024-03-15": 584.5740325144257, + "2024-03-16": 603.2192092350505, + "2024-06-23": 588.7142152419534, + "2023-11-27": 226.95340887310562, + "2024-01-10": 299.00280831338296, + "2024-06-03": 626.1642056290573, + "2024-01-02": 317.5208832646844, + "2023-10-25": 225.15446061238393, + "2024-01-01": 311.2616629122003, + "2024-02-14": 332.1938110978222, + "2023-09-04": 214.80381000705574, + "2023-09-06": 214.61082009454952, + "2024-04-03": 557.7269941465872, + "2024-06-15": 606.5212554595867, + "2023-11-28": 228.6222789046403, + "2023-12-03": 227.88561177128227, + "2023-08-27": 216.92565887171665, + "2024-04-11": 604.5917062894114, + "2023-10-20": 212.9623492987543, + "2023-10-10": 207.8040304103923, + "2024-05-03": 569.1156380100607, + "2024-03-08": 474.3487067225153, + "2024-01-14": 304.10342673636313, + "2023-12-15": 248.9260986800519, + "2023-10-19": 210.49014029727024, + "2024-02-08": 316.1269980888149, + "2023-11-12": 248.76259551231507, + "2023-12-22": 271.01303136903846, + "2024-06-21": 585.0204927036143, + "2024-03-23": 556.4950977022785, + "2023-09-27": 212.5370282426415, + "2024-03-04": 417.0730737423619, + "2023-09-10": 212.73969849001574, + "2024-04-13": 582.6947206881686, + "2024-02-29": 409.99353793764845, + "2023-09-21": 210.98965102577648, + "2023-11-08": 246.39633391600725, + "2023-12-29": 317.4355395447448, + "2023-12-04": 230.5647480926243, + "2024-04-10": 587.6802168992567, + "2024-05-08": 584.0061337016855, + "2024-04-21": 575.988722924686, + "2023-10-11": 206.20223581906836, + "2024-05-05": 587.0137089525787, + "2024-03-21": 554.558637930936, + "2024-05-23": 605.580167868116, + "2024-04-08": 589.0822590228153, + "2024-05-18": 579.1691716965809, + "2024-06-10": 645.6682822869349, + "2023-10-05": 212.3772328166511, + "2023-10-16": 213.14993910311233, + "2024-05-22": 619.088396424963, + "2024-02-10": 322.45063630328, + "2024-04-07": 587.2515348116202, + "2024-02-20": 354.39953830868325, + "2023-11-17": 244.01882037890525, + "2023-12-11": 239.86814465572718, + "2023-11-26": 232.78999747599488, + "2023-10-27": 224.55317963614868, + "2024-02-02": 301.876103000816, + "2023-09-14": 212.38978190752383, + "2024-01-27": 304.0003000118611, + "2024-03-30": 605.5598099243202, + "2023-11-22": 234.1704421309798, + "2023-09-28": 213.52985035935149, + "2024-06-04": 647.6701176685301, + "2023-11-16": 250.76759411853325, + "2024-06-26": 574.5677470778579, + "2024-01-18": 310.94166542205346, + "2023-08-26": 216.89518429052606, + "2024-02-15": 348.4635632079457, + "2023-10-28": 226.38043038185745, + "2024-03-24": 558.4803879918632, + "2024-07-04": 526.239872024073, + "2024-04-27": 592.8963659071369, + "2023-12-06": 230.98849971755897, + "2024-01-30": 310.4137941445524, + "2023-11-14": 243.58101069683246, + "2023-08-09": 244.1505807630548, + "2024-06-06": 704.7263597193983, + "2024-05-15": 573.9792936573589, + "2023-11-10": 252.35442380075244, + "2024-01-23": 296.69585850652254, + "2024-01-31": 304.3698326362538, + "2024-05-11": 589.1835875833015, + "2024-01-11": 308.0540921286191, + "2024-02-18": 352.6823193885013, + "2024-03-11": 521.0732489499187, + "2023-10-30": 227.83223092662726, + "2023-12-17": 241.6077607170643, + "2024-02-26": 392.1326783418328, + "2024-06-17": 603.8719724678867, + "2024-01-05": 318.47289571845613, + "2024-06-14": 602.4138729739859, + "2023-08-23": 214.9237502371401, + "2024-06-13": 605.1987428915721, + "2023-08-28": 217.64819968401366, + "2024-03-14": 605.2737809440197, + "2024-02-21": 366.48672229213656, + "2023-12-13": 250.577985494497, + "2024-02-27": 397.886273884578, + "2023-08-13": 240.31518740606114, + "2024-03-31": 605.4382219127687, + "2023-12-09": 241.11349477089794, + "2024-04-02": 558.0574246162291, + "2024-02-06": 302.4053450586894, + "2024-05-31": 593.2750232508379, + "2024-04-09": 581.2790347234657, + "2024-05-25": 601.8682577351411, + "2023-11-04": 234.92412915138954, + "2024-04-20": 560.1241408836844, + "2024-01-15": 316.12277196111063, + "2023-12-28": 327.51751016628225, + "2024-06-09": 678.2505599210789, + "2024-02-07": 303.23572643377776, + "2023-09-25": 208.94942077099364, + "2024-03-19": 523.9979447364007, + "2024-03-10": 526.9193170421624, + "2024-05-02": 558.9777109717553, + "2023-09-02": 214.3571961713428, + "2024-01-12": 308.3922349550046, + "2024-04-19": 557.9983083675111, + "2023-11-29": 228.95224781328747, + "2023-10-15": 207.89984532902878, + "2024-05-28": 599.574517846286, + "2023-11-30": 227.54407817455245, + "2024-01-24": 293.6114053587279, + "2023-08-11": 240.22113245652486, + "2024-02-11": 322.4705880252867, + "2024-06-08": 684.4646761804144, + "2023-11-15": 250.02478404906253, + "2023-12-16": 246.21273659192684, + "2024-03-29": 611.2996023991407, + "2024-04-04": 585.2806338919738, + "2024-06-25": 573.7018141234399, + "2024-01-20": 314.32641665129796, + "2023-10-21": 213.08620185434253, + "2023-08-16": 234.02752482367353, + "2024-05-24": 597.7979013415531, + "2023-11-03": 229.10823246608228, + "2023-08-31": 222.91440679439563, + "2024-05-27": 603.759020160105, + "2024-01-04": 319.3861361318378, + "2023-11-13": 245.64931684832652, + "2023-10-24": 229.14049649384876, + "2023-10-29": 226.13854954886864, + "2024-05-16": 580.9624207770868, + "2024-01-29": 307.85414263970864, + "2024-07-03": 558.9505496339965, + "2024-05-04": 587.7113856460244, + "2023-11-02": 230.70882721962687, + "2023-12-18": 237.0472091874086, + "2023-11-24": 234.5952921922867, + "2023-08-21": 210.99116827797425, + "2024-07-05": 484.4279061233261, + "2024-03-25": 585.6804751211843, + "2023-08-07": 241.81681287712016, + "2024-06-07": 701.4439048786948, + "2023-08-14": 240.29869801629675, + "2024-06-18": 586.6766886206418, + "2024-05-01": 552.75275930061, + "2024-02-16": 358.43166612585475, + "2024-06-22": 586.2494519303239, + "2024-03-05": 418.27635449655173, + "2024-04-06": 583.0489771263564, + "2023-12-23": 269.11836533355444, + "2023-12-14": 251.57922238058933, + "2024-02-03": 301.4927264308478, + "2024-06-27": 574.2420619940895, + "2023-12-26": 290.1327975127294, + "2023-11-09": 248.97973984161797, + "2023-10-14": 206.34417572702384, + "2023-08-19": 215.8606605512631, + "2024-05-09": 595.7608661823807, + "2024-01-17": 311.4201541810842, + "2024-04-23": 606.0432559891801, + "2023-08-08": 243.30272381996738, + "2023-08-17": 229.91033888697316, + "2024-04-14": 552.8679276606184 + }, + "USD cardano": { + "2024-07-31": 0.4016923515099759, + "2024-08-02": 0.3797450254586762, + "2024-07-30": 0.402321709099549, + "2024-08-01": 0.38536729326423935, + "2024-08-06": 0.3263178732586456, + "2024-07-20": 0.43627124530077177, + "2024-07-21": 0.43227165092992453, + "2024-07-15": 0.4371604062883676, + "2024-08-03": 0.36237776852709075, + "2024-07-18": 0.43648208011776235, + "2024-07-11": 0.3941053261899817, + "2024-07-17": 0.44558813484103554, + "2024-07-22": 0.4331111284178898, + "2024-07-12": 0.4018237805378646, + "2024-07-24": 0.4125526156370177, + "2024-07-06": 0.3565185572497045, + "2024-07-08": 0.36506809906789006, + "2024-07-07": 0.3640270256717183, + "2024-07-13": 0.42520503116387764, + "2024-07-09": 0.372893703260361, + "2024-07-23": 0.4195298914954284, + "2024-07-10": 0.3838095515427311, + "2024-07-14": 0.4317886977808115, + "2024-07-29": 0.41538544491312696, + "2024-07-27": 0.42033382966108074, + "2024-07-28": 0.4109410961522807, + "2024-07-19": 0.4258043503379379, + "2024-08-04": 0.35134709376210393, + "2024-07-26": 0.413091477170967, + "2024-08-05": 0.30837955360297997, + "2024-07-25": 0.3941894434089657, + "2024-07-16": 0.4403338062063021, + "2024-08-02T16": 0.365988645, + "2024-08-02T11": 0.38467660000000004, + "2024-07-31T00": 0.4012576605, + "2024-08-05T18": 0.31416645012, + "2024-07-31T11": 0.40097933999999996, + "2024-08-05T23": 0.3149139119312432, + "2024-08-02T06": 0.378512112, + "2024-08-01T13": 0.39211169599999995, + "2024-08-05T01": 0.31351257831394996, + "2024-08-02T00": 0.3926463, + "2024-08-06T06": 0.3316419219999999, + "2024-08-03T23": 0.36259683200000004, + "2024-08-01T11": 0.389293565, + "2024-08-05T19": 0.309717648, + "2024-08-04T19": 0.34942520000000005, + "2024-08-01T23": 0.39163544, + "2024-08-04T17": 0.3397178, + "2024-08-02T22": 0.36365196361999996, + "2024-08-02T01": 0.38925325600000005, + "2024-08-02T05": 0.38166765999999996, + "2024-08-03T20": 0.3540792791505522, + "2024-07-31T14": 0.401919055, + "2024-08-03T12": 0.370118496, + "2024-07-31T05": 0.401011758, + "2024-08-02T08": 0.38408094800000003, + "2024-08-05T14": 0.313284564, + "2024-08-01T07": 0.385126615, + "2024-08-03T06": 0.37029593699999996, + "2024-08-04T13": 0.3582208, + "2024-08-06T11": 0.324303744, + "2024-08-05T16": 0.32042413999999997, + "2024-08-05T06": 0.28700695294700324, + "2024-08-01T22": 0.3892602838929098, + "2024-08-04T20": 0.3501505950538142, + "2024-08-06T10": 0.324507052, + "2024-08-01T15": 0.3790104, + "2024-08-06T05": 0.32859375600000007, + "2024-08-04T08": 0.357381864, + "2024-08-01T00": 0.389471432, + "2024-08-04T18": 0.33863115369173813, + "2024-07-31T15": 0.40288474950000003, + "2024-08-03T19": 0.353424114, + "2024-08-02T12": 0.3823629146449137, + "2024-08-01T20": 0.37841741200000006, + "2024-08-01T21": 0.38533116887999996, + "2024-07-30T23": 0.401383565, + "2024-08-03T16": 0.35746095262020583, + "2024-08-06T00": 0.32326464, + "2024-08-04T06": 0.36022951914000007, + "2024-08-02T15": 0.36174514199999996, + "2024-08-05T10": 0.295441356, + "2024-08-05T17": 0.318888033, + "2024-08-03T04": 0.3663617901638823, + "2024-08-06T04": 0.326246745, + "2024-08-06T03": 0.326227179, + "2024-07-30T19": 0.3977332696794328, + "2024-08-02T04": 0.38439787931999997, + "2024-08-02T23": 0.36393356800000004, + "2024-08-05T08": 0.3034482906094033, + "2024-08-02T09": 0.3864773434, + "2024-08-04T12": 0.3582208, + "2024-08-04T22": 0.34945399237909025, + "2024-07-31T23": 0.3889186116719078, + "2024-08-04T10": 0.358213632, + "2024-07-30T16": 0.404570496, + "2024-08-05T20": 0.313031710969036, + "2024-08-03T10": 0.36847545600000003, + "2024-08-04T16": 0.34605066399999995, + "2024-07-31T06": 0.403782869, + "2024-07-31T02": 0.40531891999999997, + "2024-08-03T09": 0.36808910887, + "2024-08-04T15": 0.34756697400000003, + "2024-08-03T00": 0.36252447, + "2024-07-30T17": 0.40184938806, + "2024-08-03T15": 0.3644617831744257, + "2024-08-01T19": 0.37648541, + "2024-07-30T13": 0.40441910000000003, + "2024-08-03T22": 0.360094629, + "2024-07-30T22": 0.40136057166999994, + "2024-07-31T13": 0.404609744, + "2024-07-30T18": 0.399772032, + "2024-08-03T05": 0.367491631, + "2024-08-05T09": 0.30114427270098815, + "2024-07-30T12": 0.404734037, + "2024-08-03T01": 0.35726002900000003, + "2024-08-05T03": 0.3093466012513111, + "2024-07-31T08": 0.4007217179241506, + "2024-08-01T10": 0.38719967535, + "2024-07-31T21": 0.38935199, + "2024-08-01T09": 0.3861459054, + "2024-08-06T09": 0.32439728999999995, + "2024-08-03T08": 0.367543137, + "2024-08-03T14": 0.36951266055, + "2024-08-01T12": 0.39400201236, + "2024-07-30T20": 0.39868036, + "2024-07-30T15": 0.401331966583918, + "2024-08-01T01": 0.38806413, + "2024-08-05T13": 0.29362182626128186, + "2024-08-01T16": 0.3749727481819228, + "2024-08-04T00": 0.36339450890494246, + "2024-08-02T14": 0.37522964, + "2024-08-04T09": 0.35883834549, + "2024-08-04T02": 0.36498088, + "2024-08-03T03": 0.364765412, + "2024-08-03T11": 0.36903774768000003, + "2024-07-31T09": 0.40084361, + "2024-07-31T12": 0.404073592, + "2024-08-05T11": 0.290637778, + "2024-08-03T18": 0.35109194981646435, + "2024-08-01T08": 0.385599384, + "2024-07-31T10": 0.40030975904, + "2024-08-03T17": 0.3520577698944765, + "2024-07-31T03": 0.4057188213281752, + "2024-08-01T06": 0.384911301, + "2024-08-02T07": 0.380791309, + "2024-08-02T19": 0.36420258599999994, + "2024-07-30T11": 0.40407938624543716, + "2024-08-05T22": 0.316653822, + "2024-08-06T01": 0.32729816, + "2024-08-05T15": 0.31823858714754155, + "2024-07-31T18": 0.4018473466, + "2024-08-05T02": 0.30938092722841287, + "2024-08-05T12": 0.29073197700000003, + "2024-07-30T21": 0.39941712454, + "2024-08-06T07": 0.33162203799999995, + "2024-08-04T11": 0.35812226445, + "2024-08-05T05": 0.3066210149811726, + "2024-07-31T19": 0.39711245704061404, + "2024-08-04T21": 0.347499196, + "2024-07-30T14": 0.40131972, + "2024-08-01T18": 0.370858496, + "2024-07-31T04": 0.403015349, + "2024-08-02T18": 0.3651345, + "2024-08-02T03": 0.38491673576612806, + "2024-08-04T01": 0.36232710081, + "2024-08-02T21": 0.3654342, + "2024-08-02T02": 0.38396565899999996, + "2024-08-02T10": 0.38390800799999997, + "2024-08-04T23": 0.345758181, + "2024-08-04T03": 0.36377432, + "2024-08-01T05": 0.3829061831196122, + "2024-08-02T17": 0.3675118311968879, + "2024-07-31T16": 0.402442986, + "2024-08-04T04": 0.36201603543, + "2024-08-01T02": 0.386498916, + "2024-08-05T21": 0.315156718, + "2024-08-05T07": 0.30238880232669435, + "2024-08-05T00": 0.33743036721717007, + "2024-08-02T20": 0.366899643, + "2024-07-31T01": 0.40400705700000006, + "2024-07-31T22": 0.38939624973, + "2024-08-04T07": 0.35839042482, + "2024-08-04T05": 0.361179546, + "2024-08-01T14": 0.387037376, + "2024-08-03T02": 0.36339668236, + "2024-08-01T04": 0.38346949212, + "2024-08-01T17": 0.375095926, + "2024-08-06T02": 0.32716027368, + "2024-08-04T14": 0.3498495, + "2024-07-31T20": 0.39123804180868094, + "2024-08-03T21": 0.35674249104776923, + "2024-08-06T08": 0.328590472, + "2024-08-02T13": 0.38220165, + "2024-08-05T04": 0.30878456000000004, + "2024-08-01T03": 0.386894837, + "2024-07-31T17": 0.40284283000000004, + "2024-07-31T07": 0.40240621539, + "2024-08-03T07": 0.3708702274242548, + "2024-08-03T13": 0.36894894399999995, + "latest": 0.32243 + }, + "USD casper": { + "2024-07-31": 0.01754403204742785, + "2024-08-02": 0.016086148310340373, + "2024-07-30": 0.018056115760237062, + "2024-08-01": 0.01683106737372804, + "2024-08-06": 0.014897295396208205, + "2024-07-20": 0.022710895394385186, + "2024-07-21": 0.02242737333307113, + "2024-07-15": 0.02232094124399471, + "2024-08-03": 0.01581766229031559, + "2024-07-18": 0.02251959545116545, + "2024-07-11": 0.021750160423292836, + "2024-07-17": 0.022885450727997886, + "2024-07-22": 0.021893294365172976, + "2024-07-12": 0.021352885252382072, + "2024-07-24": 0.02089084411552204, + "2024-07-06": 0.020422042, + "2024-07-08": 0.020318322074976466, + "2024-07-07": 0.020480213421457203, + "2024-07-13": 0.021814565433900937, + "2024-07-09": 0.02088002809285459, + "2024-07-23": 0.021303314615654965, + "2024-07-10": 0.02137000008325415, + "2024-07-14": 0.021767398426954052, + "2024-07-29": 0.018737615300913633, + "2024-07-27": 0.019131823873440243, + "2024-07-28": 0.018969620600000004, + "2024-07-19": 0.02203998634865348, + "2024-08-04": 0.016181725036654455, + "2024-07-26": 0.020978285365511433, + "2024-08-05": 0.013982489004869387, + "2024-07-25": 0.020575277658435965, + "2024-07-16": 0.022608347839883216, + "2024-08-02T16": 0.016126281000000003, + "2024-08-02T11": 0.016546089599999998, + "2024-07-31T00": 0.017615595, + "2024-08-05T18": 0.014616720599999999, + "2024-07-31T11": 0.0175803255, + "2024-08-05T23": 0.014562911999999999, + "2024-08-02T06": 0.0163675512, + "2024-08-01T13": 0.017341672, + "2024-08-05T01": 0.0143141288, + "2024-08-02T00": 0.016934745, + "2024-08-06T06": 0.015171066799999999, + "2024-08-03T23": 0.0158311296, + "2024-08-01T11": 0.0173108204, + "2024-08-05T19": 0.014505510000000001, + "2024-08-04T19": 0.01612491129086099, + "2024-08-01T23": 0.0169342365, + "2024-08-04T17": 0.0152573259, + "2024-08-02T22": 0.0159517942, + "2024-08-02T01": 0.016745083600000002, + "2024-08-02T05": 0.016559914518111767, + "2024-08-03T20": 0.0153796887, + "2024-07-31T14": 0.0175620935, + "2024-08-03T12": 0.0161776956, + "2024-07-31T05": 0.017566134599999998, + "2024-08-02T08": 0.0163664046, + "2024-08-05T14": 0.0135436558, + "2024-08-01T07": 0.016862408500000002, + "2024-08-03T06": 0.0158626908, + "2024-08-04T13": 0.016341825, + "2024-08-05T16": 0.014370051999999998, + "2024-08-05T06": 0.0133490655, + "2024-08-01T22": 0.0168360145, + "2024-08-04T20": 0.016134512400000002, + "2024-08-06T10": 0.0150048, + "2024-08-01T15": 0.016861565000000002, + "2024-08-06T05": 0.014918796900000001, + "2024-08-04T08": 0.0162800631, + "2024-08-01T00": 0.016504551699999998, + "2024-08-04T18": 0.0156100032, + "2024-07-31T15": 0.0175727922, + "2024-08-03T19": 0.015348846892218285, + "2024-08-02T12": 0.016488285000000002, + "2024-08-01T20": 0.016563254200000002, + "2024-08-01T21": 0.0167445808, + "2024-07-30T23": 0.017594896000000002, + "2024-08-03T16": 0.01542842, + "2024-08-06T00": 0.014772954, + "2024-08-04T06": 0.0165097576, + "2024-08-02T15": 0.015774525799999998, + "2024-08-05T10": 0.0137719278, + "2024-08-05T17": 0.0145385727, + "2024-08-03T04": 0.015903920800000002, + "2024-08-06T04": 0.0147566375, + "2024-08-06T03": 0.014795768099999997, + "2024-07-30T19": 0.017333584200000002, + "2024-08-02T04": 0.016634848500000004, + "2024-08-02T23": 0.0160594176, + "2024-08-05T08": 0.013821520200000001, + "2024-08-02T09": 0.0164958014, + "2024-08-04T12": 0.016281855, + "2024-08-04T22": 0.016213998599999998, + "2024-07-31T23": 0.016435083076896048, + "2024-08-04T10": 0.0163514928, + "2024-07-30T16": 0.018024640325288596, + "2024-08-05T20": 0.01450145, + "2024-08-03T10": 0.016035875999999998, + "2024-08-04T16": 0.015628739200000002, + "2024-07-31T06": 0.017894808999999998, + "2024-07-31T02": 0.017756448, + "2024-08-03T09": 0.015735982500000002, + "2024-08-04T15": 0.01583027327423347, + "2024-08-03T00": 0.0162287125, + "2024-07-30T17": 0.0180144138, + "2024-08-03T15": 0.01598928, + "2024-08-01T19": 0.016391949, + "2024-07-30T13": 0.018326334, + "2024-08-03T22": 0.0156810567, + "2024-07-30T22": 0.0174849279, + "2024-07-31T13": 0.0177216669, + "2024-07-30T18": 0.0179242624, + "2024-08-03T05": 0.0158324065, + "2024-08-05T09": 0.013922505600000001, + "2024-07-30T12": 0.018256348, + "2024-08-03T01": 0.015980320000000003, + "2024-08-05T03": 0.0143092845, + "2024-07-31T08": 0.017742012499999998, + "2024-08-01T10": 0.0171708946, + "2024-07-31T21": 0.0169835438, + "2024-08-01T09": 0.0172300008, + "2024-08-06T09": 0.014916722120955343, + "2024-08-03T08": 0.0158146449, + "2024-08-03T14": 0.016089535, + "2024-08-01T12": 0.017241212102272068, + "2024-07-30T20": 0.017274816000000002, + "2024-07-30T15": 0.018060244226968204, + "2024-08-01T01": 0.01659419, + "2024-08-05T13": 0.013309201400000002, + "2024-08-01T16": 0.016468464000000002, + "2024-08-04T00": 0.0157407075, + "2024-08-02T14": 0.01624839688030068, + "2024-08-04T09": 0.0163806577, + "2024-08-04T02": 0.016180286, + "2024-08-03T03": 0.015970971900000002, + "2024-08-03T11": 0.0160265264, + "2024-07-31T09": 0.0177730658, + "2024-07-31T12": 0.0176001384, + "2024-08-05T11": 0.0135217576, + "2024-08-03T18": 0.015409206, + "2024-08-01T08": 0.016821248400000002, + "2024-07-31T10": 0.0177314848, + "2024-08-03T17": 0.015338948, + "2024-07-31T03": 0.0178562494, + "2024-08-01T06": 0.0169516896, + "2024-08-02T07": 0.0163767241, + "2024-08-02T19": 0.0157927671, + "2024-07-30T11": 0.0182261717, + "2024-08-05T22": 0.0145924803, + "2024-08-06T01": 0.014884464, + "2024-08-05T15": 0.0140488452, + "2024-07-31T18": 0.0175442085, + "2024-08-05T02": 0.014067185999999999, + "2024-08-05T12": 0.013361469600000002, + "2024-07-30T21": 0.01732540407388409, + "2024-08-06T07": 0.0152902376, + "2024-08-04T11": 0.016291687, + "2024-08-05T05": 0.0139291642, + "2024-07-31T19": 0.0173141112, + "2024-08-04T21": 0.0160853339, + "2024-07-30T14": 0.018116376, + "2024-08-01T18": 0.01610656539369771, + "2024-07-31T04": 0.017621048489254453, + "2024-08-02T18": 0.01575423, + "2024-08-02T03": 0.016634682, + "2024-08-04T01": 0.0156807429, + "2024-08-02T21": 0.01587411, + "2024-08-02T02": 0.016595549299999998, + "2024-08-02T10": 0.0165773916, + "2024-08-04T23": 0.0160134318, + "2024-08-04T03": 0.0161699684, + "2024-08-01T05": 0.0167397825, + "2024-08-02T17": 0.0159548285, + "2024-07-31T16": 0.0176231243, + "2024-08-04T04": 0.0163800021, + "2024-08-01T02": 0.0167213004, + "2024-08-05T21": 0.0145326154, + "2024-08-05T07": 0.01365, + "2024-08-05T00": 0.0155726774, + "2024-08-02T20": 0.0159625818, + "2024-07-31T01": 0.017685931300000002, + "2024-07-31T22": 0.0168547734, + "2024-08-04T07": 0.016470276800000003, + "2024-08-04T05": 0.0164299716, + "2024-08-01T14": 0.017172784400000002, + "2024-08-03T02": 0.0160188272, + "2024-08-01T04": 0.016821248400000002, + "2024-08-01T17": 0.016366732199999998, + "2024-08-06T02": 0.0149156658, + "2024-08-04T14": 0.0159831243, + "2024-07-31T20": 0.01699366812986371, + "2024-08-03T21": 0.015370772, + "2024-08-06T08": 0.0151888044, + "2024-08-02T13": 0.0165270988, + "2024-08-05T04": 0.014119294000000001, + "2024-08-01T03": 0.0168310748, + "2024-07-31T17": 0.017603132100000002, + "2024-07-31T07": 0.017824472699999996, + "2024-08-03T07": 0.0159429228, + "2024-08-03T13": 0.016129024800000002, + "latest": 0.0150023, + "2024-08-06T11": 0.0149956962 + }, + "USD celo": { + "2024-07-31": 0.5485134122178724, + "2024-08-02": 0.5154561436835156, + "2024-07-30": 0.5523811755474579, + "2024-08-01": 0.5242217837007337, + "2024-08-06": 0.42210520625589265, + "2024-07-20": 0.5985871680379145, + "2024-07-21": 0.5968962385300421, + "2024-07-15": 0.5562726701672194, + "2024-08-03": 0.4788265173417076, + "2024-07-18": 0.5854894820895813, + "2024-07-11": 0.5264038826124758, + "2024-07-17": 0.5834389602115895, + "2024-07-22": 0.5912889734440504, + "2024-07-12": 0.5221705569212496, + "2024-07-24": 0.5728231454940653, + "2024-07-06": 0.48258744147113797, + "2024-07-08": 0.5020526710403824, + "2024-07-07": 0.4975976253107996, + "2024-07-13": 0.5322113831902195, + "2024-07-09": 0.5071879911466705, + "2024-07-23": 0.5832907583477788, + "2024-07-10": 0.5248438515170861, + "2024-07-14": 0.5396834311156911, + "2024-07-29": 0.5733270338070372, + "2024-07-27": 0.5754548592147158, + "2024-07-28": 0.571588568, + "2024-07-19": 0.5771996424883298, + "2024-08-04": 0.452592408104222, + "2024-07-26": 0.5578544044527564, + "2024-08-05": 0.39354630214606157, + "2024-07-25": 0.5379765261420987, + "2024-07-16": 0.573111614047305, + "2024-08-02T16": 0.501873045, + "2024-08-02T11": 0.51906362, + "2024-07-31T00": 0.5386653, + "2024-08-05T18": 0.40358556399999995, + "2024-07-31T11": 0.548398215, + "2024-08-05T23": 0.40648128, + "2024-08-02T06": 0.514708524, + "2024-08-01T13": 0.5321444479999999, + "2024-08-05T01": 0.39853653299999997, + "2024-08-02T00": 0.5291233599999999, + "2024-08-06T06": 0.42701149099999997, + "2024-08-03T23": 0.46743808800000003, + "2024-08-01T11": 0.529918994, + "2024-08-05T19": 0.398951544, + "2024-08-04T19": 0.44747615, + "2024-08-01T23": 0.530006635, + "2024-08-04T17": 0.432940361, + "2024-08-02T22": 0.495834104, + "2024-08-02T01": 0.524033195, + "2024-08-02T05": 0.519147948, + "2024-08-03T20": 0.45919213500000006, + "2024-07-31T14": 0.5502522750000001, + "2024-08-03T12": 0.496322508, + "2024-07-31T05": 0.54537999, + "2024-08-02T08": 0.5155717200000001, + "2024-08-05T14": 0.394206407, + "2024-08-01T07": 0.52636303, + "2024-08-03T06": 0.49645827, + "2024-08-04T13": 0.46896540000000003, + "2024-08-06T11": 0.414532608, + "2024-08-05T16": 0.40698469, + "2024-08-05T06": 0.371174016, + "2024-08-01T22": 0.5295601, + "2024-08-04T20": 0.45034683000000003, + "2024-08-06T10": 0.414736818, + "2024-08-01T15": 0.5154640629131428, + "2024-08-06T05": 0.423749865, + "2024-08-04T08": 0.468114276, + "2024-08-01T00": 0.537022724, + "2024-08-04T18": 0.43322256000000003, + "2024-07-31T15": 0.549574582, + "2024-08-03T19": 0.46203932799999997, + "2024-08-02T12": 0.515833498, + "2024-08-01T20": 0.508001186829152, + "2024-08-01T21": 0.5180278729509138, + "2024-07-30T23": 0.53884369, + "2024-08-03T16": 0.47814112499999994, + "2024-08-06T00": 0.42118421999999994, + "2024-08-04T06": 0.476104632, + "2024-08-02T15": 0.497112352, + "2024-08-05T10": 0.37455243, + "2024-08-05T17": 0.4075675465127235, + "2024-08-03T04": 0.494200353, + "2024-08-06T04": 0.42088931500000004, + "2024-08-06T03": 0.42086407299999995, + "2024-07-30T19": 0.538400718, + "2024-08-02T04": 0.522024525, + "2024-08-02T23": 0.49536512000000005, + "2024-08-05T08": 0.38504235000000003, + "2024-08-02T09": 0.518154004, + "2024-08-04T12": 0.46846565, + "2024-08-04T22": 0.44883387, + "2024-07-31T23": 0.5359284480000001, + "2024-08-04T10": 0.468656172, + "2024-07-30T16": 0.550023936, + "2024-08-05T20": 0.40374037, + "2024-08-03T10": 0.493465368, + "2024-08-04T16": 0.439083632, + "2024-07-31T06": 0.5574382959999999, + "2024-07-31T02": 0.54409116, + "2024-08-03T09": 0.493160696, + "2024-08-04T15": 0.44809957200000006, + "2024-08-03T00": 0.491655087, + "2024-07-30T17": 0.5445311429999999, + "2024-08-03T15": 0.48497484900000004, + "2024-08-01T19": 0.5059428499999999, + "2024-07-30T13": 0.5549889800000001, + "2024-08-03T22": 0.466633867, + "2024-07-30T22": 0.535444676, + "2024-07-31T13": 0.551240795, + "2024-07-30T18": 0.5414266879999999, + "2024-08-03T05": 0.494949995, + "2024-08-05T09": 0.382868904, + "2024-07-30T12": 0.55318934, + "2024-08-03T01": 0.484503327, + "2024-08-05T03": 0.39338033000000006, + "2024-07-31T08": 0.550452185, + "2024-08-01T10": 0.5293193119999999, + "2024-07-31T21": 0.5370958259999999, + "2024-08-01T09": 0.5309918459999999, + "2024-08-06T09": 0.41632486, + "2024-08-03T08": 0.49352081999999997, + "2024-08-03T14": 0.494778185, + "2024-08-01T12": 0.5334224759999999, + "2024-07-30T20": 0.53713881, + "2024-07-30T15": 0.5506403136850642, + "2024-08-01T01": 0.538911315, + "2024-08-05T13": 0.371077734, + "2024-08-01T16": 0.50644524, + "2024-08-04T00": 0.470322346, + "2024-08-02T14": 0.513330136, + "2024-08-04T09": 0.47033175800000004, + "2024-08-04T02": 0.47531464, + "2024-08-03T03": 0.492912735, + "2024-08-03T11": 0.49398470400000005, + "2024-07-31T09": 0.549885461, + "2024-07-31T12": 0.549791944, + "2024-08-05T11": 0.367247736, + "2024-08-03T18": 0.46697289, + "2024-08-01T08": 0.527825388, + "2024-07-31T10": 0.548136768, + "2024-08-03T17": 0.470860736, + "2024-07-31T03": 0.5437857810000001, + "2024-08-01T06": 0.5266418190000001, + "2024-08-02T07": 0.516281473, + "2024-08-02T19": 0.49955489099999995, + "2024-07-30T11": 0.5536837019999999, + "2024-08-05T22": 0.40739642614917043, + "2024-08-06T01": 0.42682801000000004, + "2024-08-05T15": 0.40245338599999997, + "2024-07-31T18": 0.5505182689999999, + "2024-08-05T02": 0.3939212, + "2024-08-05T12": 0.37044074400000004, + "2024-07-30T21": 0.5335646364772617, + "2024-08-06T07": 0.425484884, + "2024-08-04T11": 0.4702023639667022, + "2024-08-05T05": 0.38887666600000004, + "2024-07-31T19": 0.5467140540000001, + "2024-08-04T21": 0.446270544, + "2024-07-30T14": 0.55108976, + "2024-08-01T18": 0.49824119599999994, + "2024-07-31T04": 0.5436858019999999, + "2024-08-02T18": 0.5018975999999999, + "2024-08-02T03": 0.5210202199999999, + "2024-08-04T01": 0.470022523, + "2024-08-02T21": 0.4950045, + "2024-08-02T02": 0.517948992, + "2024-08-02T10": 0.517506396, + "2024-08-04T23": 0.443218206, + "2024-08-04T03": 0.476104632, + "2024-08-01T05": 0.52767792, + "2024-08-02T17": 0.5051196800000001, + "2024-07-31T16": 0.550285305, + "2024-08-04T04": 0.47580957900000004, + "2024-08-01T02": 0.5366208120000001, + "2024-08-05T21": 0.40527293600000003, + "2024-08-05T07": 0.3864, + "2024-08-05T00": 0.43119724200000004, + "2024-08-02T20": 0.5010532560000001, + "2024-07-31T01": 0.542775133, + "2024-07-31T22": 0.537433344, + "2024-08-04T07": 0.470322346, + "2024-08-04T05": 0.47520994499999997, + "2024-08-01T14": 0.526078954, + "2024-08-03T02": 0.49135056, + "2024-08-01T04": 0.528025284, + "2024-08-01T17": 0.503391922, + "2024-08-06T02": 0.422260398, + "2024-08-04T14": 0.45580392, + "2024-07-31T20": 0.5381900239999999, + "2024-08-03T21": 0.4604387373708136, + "2024-08-06T08": 0.418642672, + "2024-08-02T13": 0.5205266795139354, + "2024-08-05T04": 0.39498025000000003, + "2024-08-01T03": 0.535116238, + "2024-07-31T17": 0.550185344, + "2024-07-31T07": 0.5555277329999999, + "2024-08-03T07": 0.497267354, + "2024-08-03T13": 0.49416373999999996, + "latest": 0.41271 + }, + "USD cosmos": { + "2024-07-31": 5.980391683603718, + "2024-08-02": 5.53744591908073, + "2024-07-30": 6.140420760140405, + "2024-08-01": 5.764166744846545, + "2024-08-06": 4.833232214820489, + "2024-07-20": 6.522445989006485, + "2024-07-21": 6.444132020971223, + "2024-07-15": 6.3152267640252315, + "2024-08-03": 5.2832014852967655, + "2024-07-18": 6.438789730012257, + "2024-07-11": 6.074354615172453, + "2024-07-17": 6.6359892328275, + "2024-07-22": 6.377054100757235, + "2024-07-12": 5.980065162227088, + "2024-07-24": 6.223129952176763, + "2024-07-06": 5.849371073304179, + "2024-07-08": 5.869515284454324, + "2024-07-07": 6.000062525763628, + "2024-07-13": 6.208455523781979, + "2024-07-09": 5.86866250489695, + "2024-07-23": 6.228597125848731, + "2024-07-10": 6.002992907518935, + "2024-07-14": 6.1784897591244565, + "2024-07-29": 6.27414215135665, + "2024-07-27": 6.2868635768261845, + "2024-07-28": 6.297687478227745, + "2024-07-19": 6.336338516841229, + "2024-08-04": 5.066057676496645, + "2024-07-26": 6.12076902008204, + "2024-08-05": 4.4662529519793255, + "2024-07-25": 5.852348855779187, + "2024-07-16": 6.5212687317753035, + "2024-08-02T16": 5.33646015, + "2024-08-02T11": 5.6040886080000005, + "2024-07-31T00": 5.99750025, + "2024-08-05T18": 4.6801518799999995, + "2024-07-31T11": 5.985805995, + "2024-08-05T23": 4.690937999999999, + "2024-08-02T06": 5.621724240000001, + "2024-08-01T13": 5.8072112, + "2024-08-05T01": 4.55912999, + "2024-08-02T00": 5.7837898999999995, + "2024-08-06T06": 4.916086124999999, + "2024-08-03T23": 5.115333808, + "2024-08-01T11": 5.7962263709999995, + "2024-08-05T19": 4.60975104, + "2024-08-04T19": 5.04437655, + "2024-08-01T23": 5.797303489, + "2024-08-04T17": 4.89293549, + "2024-08-02T22": 5.322924939999999, + "2024-08-02T01": 5.772857580000001, + "2024-08-02T05": 5.670562315, + "2024-08-03T20": 5.037622530000001, + "2024-07-31T14": 5.983852988505116, + "2024-08-03T12": 5.36991576, + "2024-07-31T05": 5.994680880000001, + "2024-08-02T08": 5.633620211, + "2024-08-05T14": 4.61424551, + "2024-08-01T07": 5.754109485000001, + "2024-08-03T06": 5.39511291, + "2024-08-04T13": 5.0522726, + "2024-08-06T11": 4.793169979427178, + "2024-08-05T16": 4.724123093015205, + "2024-08-05T06": 4.194006399, + "2024-08-01T22": 5.810173549999999, + "2024-08-04T20": 5.1022646400000005, + "2024-08-06T10": 4.800983802, + "2024-08-01T15": 5.661168, + "2024-08-06T05": 4.86186681, + "2024-08-04T08": 5.1179761290000005, + "2024-08-01T00": 5.83107511, + "2024-08-04T18": 4.8921670079999995, + "2024-07-31T15": 5.9429623860000005, + "2024-08-03T19": 5.04206412, + "2024-08-02T12": 5.550256518, + "2024-08-01T20": 5.683354009, + "2024-08-01T21": 5.75569988, + "2024-07-30T23": 6.008557013, + "2024-08-03T16": 5.1311487499999995, + "2024-08-06T00": 4.8049608, + "2024-08-04T06": 5.2017729, + "2024-08-02T15": 5.2718285400000005, + "2024-08-05T10": 4.36361082, + "2024-08-05T17": 4.7463987240000005, + "2024-08-03T04": 5.367473371, + "2024-08-06T04": 4.841477685, + "2024-08-06T03": 4.83488487, + "2024-07-30T19": 6.02077149, + "2024-08-02T04": 5.721614219465007, + "2024-08-02T23": 5.348045728, + "2024-08-05T08": 4.463166460547721, + "2024-08-02T09": 5.63115304, + "2024-08-04T12": 5.0642666, + "2024-08-04T22": 5.13210042, + "2024-07-31T23": 5.81713792, + "2024-08-04T10": 5.076258972, + "2024-07-30T16": 6.1382351360000005, + "2024-08-05T20": 4.6654665, + "2024-08-03T10": 5.372567976, + "2024-08-04T16": 4.9064648, + "2024-07-31T06": 6.05624318, + "2024-07-31T02": 6.0415914399999995, + "2024-08-03T09": 5.362123459, + "2024-08-04T15": 4.898016129, + "2024-08-03T00": 5.3469862599999995, + "2024-07-30T17": 6.071217339, + "2024-08-03T15": 5.2037111760000005, + "2024-08-01T19": 5.6288015, + "2024-07-30T13": 6.1602677, + "2024-08-03T22": 5.12007989, + "2024-07-30T22": 5.9992597100000005, + "2024-07-31T13": 6.0071753, + "2024-07-30T18": 6.0561614079999995, + "2024-08-03T05": 5.379621984, + "2024-08-05T09": 4.44680028, + "2024-07-30T12": 6.156868380000001, + "2024-08-03T01": 5.2834933, + "2024-08-05T03": 4.4518773949999995, + "2024-07-31T08": 6.023522221053431, + "2024-08-01T10": 5.7869313, + "2024-07-31T21": 5.80079486, + "2024-08-01T09": 5.783588554963502, + "2024-08-06T09": 4.8144439, + "2024-08-03T08": 5.363392458, + "2024-08-03T14": 5.339327180000001, + "2024-08-01T12": 5.81597412, + "2024-07-30T20": 5.9992495130896675, + "2024-07-30T15": 6.13491342, + "2024-08-01T01": 5.8219616, + "2024-08-05T13": 4.287742720000001, + "2024-08-01T16": 5.5980786, + "2024-08-04T00": 5.129471825, + "2024-08-02T14": 5.42908824, + "2024-08-04T09": 5.10308958, + "2024-08-04T02": 5.17552103081654, + "2024-08-03T03": 5.35262279, + "2024-08-03T11": 5.365489200000001, + "2024-07-31T09": 6.001558479, + "2024-07-31T12": 5.98864448, + "2024-08-05T11": 4.28155653, + "2024-08-03T18": 5.056457999999999, + "2024-08-01T08": 5.7712973640000005, + "2024-07-31T10": 5.983326624, + "2024-08-03T17": 5.0863352, + "2024-07-31T03": 6.03373265, + "2024-08-01T06": 5.76617319, + "2024-08-02T07": 5.638129413, + "2024-08-02T19": 5.356854657, + "2024-07-30T11": 6.162005707, + "2024-08-05T22": 4.710700683, + "2024-08-06T01": 4.8764625, + "2024-08-05T15": 4.6919540699999995, + "2024-07-31T18": 5.918946103, + "2024-08-05T02": 4.458940874496586, + "2024-08-05T12": 4.32247542, + "2024-07-30T21": 5.976445719999999, + "2024-08-06T07": 4.9132897, + "2024-08-04T11": 5.090205795112967, + "2024-08-05T05": 4.41073534, + "2024-07-31T19": 5.88599808, + "2024-08-04T21": 5.10152013, + "2024-07-30T14": 6.132773200000001, + "2024-08-01T18": 5.54639262, + "2024-07-31T04": 6.011328490079504, + "2024-08-02T18": 5.358636, + "2024-08-02T03": 5.718571660066454, + "2024-08-04T01": 5.137067341000001, + "2024-08-02T21": 5.3221725, + "2024-08-02T02": 5.710077043740368, + "2024-08-02T10": 5.6037379199999995, + "2024-08-04T23": 5.054926630000001, + "2024-08-04T03": 5.17279088, + "2024-08-01T05": 5.753688108, + "2024-08-02T17": 5.36789565, + "2024-07-31T16": 5.94268145, + "2024-08-04T04": 5.1848353199999995, + "2024-08-01T02": 5.808019706259398, + "2024-08-05T21": 4.690944218, + "2024-08-05T07": 4.422691613675556, + "2024-08-05T00": 4.97066269, + "2024-08-02T20": 5.376133619999999, + "2024-07-31T01": 6.036611260000001, + "2024-07-31T22": 5.83419084, + "2024-08-04T07": 5.163440685175095, + "2024-08-04T05": 5.18383593, + "2024-08-01T14": 5.747585, + "2024-08-03T02": 5.33098055547902, + "2024-08-01T04": 5.7520074, + "2024-08-01T17": 5.5734818200000005, + "2024-08-06T02": 4.83283578, + "2024-08-04T14": 4.95986634, + "2024-07-31T20": 5.82172864, + "2024-08-03T21": 5.0879454, + "2024-08-06T08": 4.85681532, + "2024-08-02T13": 5.572759353734711, + "2024-08-05T04": 4.4507774499999995, + "2024-08-01T03": 5.81091858, + "2024-07-31T17": 5.93468457, + "2024-07-31T07": 6.0631198500000005, + "2024-08-03T07": 5.390549882652673, + "2024-08-03T13": 5.3367685279999995, + "latest": 4.77 + }, + "USD cronos": { + "2024-07-31": 0.0887761114759266, + "2024-08-02": 0.08733646804221767, + "2024-07-30": 0.08991681869517011, + "2024-08-01": 0.08645689446298901, + "2024-08-06": 0.07525893752732614, + "2024-07-20": 0.09446443011631082, + "2024-07-21": 0.09404265374223157, + "2024-07-15": 0.09195248466278892, + "2024-08-03": 0.08316045853196379, + "2024-07-18": 0.09290522496779026, + "2024-07-11": 0.08468148684006772, + "2024-07-17": 0.09508040743840482, + "2024-07-22": 0.09516288562245825, + "2024-07-12": 0.0863475077017308, + "2024-07-24": 0.09198498913517598, + "2024-07-06": 0.08411463422386914, + "2024-07-08": 0.08192895763787966, + "2024-07-07": 0.0876644247406729, + "2024-07-13": 0.08800888932592967, + "2024-07-09": 0.08383256684599644, + "2024-07-23": 0.09286080827384838, + "2024-07-10": 0.08565785705464461, + "2024-07-14": 0.0913450765907743, + "2024-07-29": 0.09072199903386957, + "2024-07-27": 0.09146700808783216, + "2024-07-28": 0.09071209736035935, + "2024-07-19": 0.09332992956951691, + "2024-08-04": 0.08209956385548638, + "2024-07-26": 0.08927841224096689, + "2024-08-05": 0.07791924261585952, + "2024-07-25": 0.0917522993629981, + "2024-07-16": 0.09535614275536396, + "2024-08-02T16": 0.08403407608646908, + "2024-08-02T11": 0.08528614518795279, + "2024-07-31T00": 0.08904624286422105, + "2024-08-05T18": 0.07509777445241882, + "2024-07-31T11": 0.08881801387205526, + "2024-08-05T23": 0.07546057335883011, + "2024-08-02T06": 0.08542627353972683, + "2024-08-01T13": 0.08646931380729354, + "2024-08-05T01": 0.075804167338474, + "2024-08-02T00": 0.08733646804221767, + "2024-08-06T06": 0.07888935813756333, + "2024-08-03T23": 0.08177212941807581, + "2024-08-01T11": 0.08636639883048008, + "2024-08-05T19": 0.07358839115775782, + "2024-08-04T19": 0.0791407000307521, + "2024-08-01T23": 0.0871345310958936, + "2024-08-04T17": 0.07898626610736952, + "2024-08-02T22": 0.0831228936945229, + "2024-08-02T01": 0.08763773699940633, + "2024-08-02T05": 0.08570349820668409, + "2024-08-03T20": 0.08172780527836002, + "2024-07-31T14": 0.08923234005583243, + "2024-08-03T12": 0.08458110198816732, + "2024-07-31T05": 0.08877286002357533, + "2024-08-02T08": 0.08558507181978728, + "2024-08-05T14": 0.07086589058609166, + "2024-08-01T07": 0.08637015684852523, + "2024-08-03T06": 0.08334823160151407, + "2024-08-04T13": 0.08150278356725686, + "2024-08-06T11": 0.07828183994832252, + "2024-08-05T16": 0.07442455060493253, + "2024-08-05T06": 0.07072111219486649, + "2024-08-01T22": 0.08668248412236464, + "2024-08-04T20": 0.07902245602349764, + "2024-08-06T10": 0.078619431854343, + "2024-08-01T15": 0.08594774239125522, + "2024-08-06T05": 0.0777897636971054, + "2024-08-04T08": 0.08212772564714556, + "2024-08-01T00": 0.08627148468002109, + "2024-08-04T18": 0.07843370268998846, + "2024-07-31T15": 0.08918700416136752, + "2024-08-03T19": 0.08190486166861648, + "2024-08-02T12": 0.08492046723200415, + "2024-08-01T20": 0.08555798187255002, + "2024-08-01T21": 0.08631262063469697, + "2024-07-30T23": 0.0890655023912347, + "2024-08-03T16": 0.08303207827035788, + "2024-08-06T00": 0.07525893752732614, + "2024-08-04T06": 0.08183257312007104, + "2024-08-02T15": 0.08392474256728172, + "2024-08-05T10": 0.07170105957539767, + "2024-08-05T17": 0.07497347270946637, + "2024-08-03T04": 0.08297343962123631, + "2024-08-06T04": 0.07736120035899635, + "2024-08-06T03": 0.07777724558794911, + "2024-07-30T19": 0.08908908054666304, + "2024-08-02T04": 0.08609208770489, + "2024-08-02T23": 0.08327927021611042, + "2024-08-05T08": 0.0727109640969736, + "2024-08-02T09": 0.08509790346668382, + "2024-08-04T12": 0.0811952023594211, + "2024-08-04T22": 0.07854386938674689, + "2024-07-31T23": 0.08666549124929578, + "2024-08-04T10": 0.08198597541032329, + "2024-07-30T16": 0.08898612032919416, + "2024-08-05T20": 0.07386759274130536, + "2024-08-03T10": 0.0834572836374174, + "2024-08-04T16": 0.07914993230143495, + "2024-07-31T06": 0.08917793018427758, + "2024-07-31T02": 0.08870502706805275, + "2024-08-03T09": 0.08336031949189335, + "2024-08-04T15": 0.07984049818764809, + "2024-08-03T00": 0.08317585892023624, + "2024-07-30T17": 0.08922001274084752, + "2024-08-03T15": 0.0840659757381136, + "2024-08-01T19": 0.08498239517264741, + "2024-07-30T13": 0.08954168465071118, + "2024-08-03T22": 0.08223817386696528, + "2024-07-30T22": 0.08893456693981287, + "2024-07-31T13": 0.08887738840932316, + "2024-07-30T18": 0.0891872602582903, + "2024-08-03T05": 0.08306080056739165, + "2024-08-05T09": 0.0727451031529518, + "2024-07-30T12": 0.0895632953792577, + "2024-08-03T01": 0.08296626368063502, + "2024-08-05T03": 0.07266202374401023, + "2024-07-31T08": 0.08847417336856844, + "2024-08-01T10": 0.08635038005591437, + "2024-07-31T21": 0.08656397315319773, + "2024-08-01T09": 0.08628723830883744, + "2024-08-06T09": 0.07878462441822741, + "2024-08-03T08": 0.08372872125683248, + "2024-08-03T14": 0.08407748545434805, + "2024-08-01T12": 0.08617867876217387, + "2024-07-30T20": 0.0891125355860633, + "2024-07-30T15": 0.08883430344056852, + "2024-08-01T01": 0.08704079910966507, + "2024-08-05T13": 0.06879870601887517, + "2024-08-01T16": 0.08477159236962403, + "2024-08-04T00": 0.08209929964268388, + "2024-08-02T14": 0.08555861203401185, + "2024-08-04T09": 0.08193798550134951, + "2024-08-04T02": 0.08205087127004729, + "2024-08-03T03": 0.08283729394111738, + "2024-08-03T11": 0.08462977293770187, + "2024-07-31T09": 0.0886325631677552, + "2024-07-31T12": 0.08877548979725991, + "2024-08-05T11": 0.0704299057747943, + "2024-08-03T18": 0.08209222355067151, + "2024-08-01T08": 0.08598933662415244, + "2024-07-31T10": 0.08902929652132778, + "2024-08-03T17": 0.08243388765231567, + "2024-07-31T03": 0.08873819719920105, + "2024-08-01T06": 0.08680481248233007, + "2024-08-02T07": 0.08539082189528793, + "2024-08-02T19": 0.08386021847241797, + "2024-07-30T11": 0.08960320652351898, + "2024-08-05T22": 0.0751107709952005, + "2024-08-06T01": 0.07754829992422901, + "2024-08-05T15": 0.07276670157421074, + "2024-07-31T18": 0.08875590892935752, + "2024-08-05T02": 0.07423738186091229, + "2024-08-05T12": 0.06922759332086852, + "2024-07-30T21": 0.08879349034947694, + "2024-08-06T07": 0.0792594453963692, + "2024-08-04T11": 0.08113313321973198, + "2024-08-05T05": 0.07177817235825815, + "2024-07-31T19": 0.08864843127230956, + "2024-08-04T21": 0.07848686102254011, + "2024-07-30T14": 0.08922435812136774, + "2024-08-01T18": 0.08468508305831345, + "2024-07-31T04": 0.08878931926758013, + "2024-08-02T18": 0.08384849286752943, + "2024-08-02T03": 0.0861782094081778, + "2024-08-04T01": 0.0822171168542995, + "2024-08-02T21": 0.08367630350325403, + "2024-08-02T02": 0.0868477355177947, + "2024-08-02T10": 0.08506690755384455, + "2024-08-04T23": 0.07835999039350748, + "2024-08-04T03": 0.08211590172815167, + "2024-08-01T05": 0.08655642011157823, + "2024-08-02T17": 0.08371532743795475, + "2024-07-31T16": 0.08892770314241227, + "2024-08-04T04": 0.08209071371163539, + "2024-08-01T02": 0.08721893244859119, + "2024-08-05T21": 0.07467116862545282, + "2024-08-05T07": 0.06826273468640146, + "2024-08-05T00": 0.07773673747654138, + "2024-08-02T20": 0.08365272066256571, + "2024-07-31T01": 0.08873618598254153, + "2024-07-31T22": 0.08639482764583283, + "2024-08-04T07": 0.08204282771802297, + "2024-08-04T05": 0.08156581523075916, + "2024-08-01T14": 0.0861447791474528, + "2024-08-03T02": 0.08273746993817177, + "2024-08-01T04": 0.08720140602270203, + "2024-08-01T17": 0.08434410621765848, + "2024-08-06T02": 0.07715487518952044, + "2024-08-04T14": 0.08122150769759387, + "2024-07-31T20": 0.08790311728495465, + "2024-08-03T21": 0.08156260618613127, + "2024-08-06T08": 0.08031134754032493, + "2024-08-02T13": 0.08531925475687936, + "2024-08-05T04": 0.07225494283656662, + "2024-08-01T03": 0.08721885299948172, + "2024-07-31T17": 0.08840874670124857, + "2024-07-31T07": 0.08920089407057556, + "2024-08-03T07": 0.0835134323165676, + "2024-08-03T13": 0.08433725340424658, + "latest": 0.07816 + }, + "USD crypto_org": { + "2024-07-31": 0.0886, + "2024-08-02": 0.08505006787314964, + "2024-07-30": 0.0895, + "2024-08-01": 0.0855231203984742, + "2024-08-06": 0.0772, + "2024-07-20": 0.09436527107803062, + "2024-07-21": 0.0940009041975332, + "2024-07-15": 0.095, + "2024-08-03": 0.08275606730050296, + "2024-07-18": 0.093, + "2024-07-11": 0.0854, + "2024-07-17": 0.0942, + "2024-07-22": 0.09413416471676932, + "2024-07-12": 0.0873, + "2024-07-24": 0.09266374453466562, + "2024-07-06": 0.0856, + "2024-07-08": 0.084, + "2024-07-07": 0.0841, + "2024-07-13": 0.09011049637189125, + "2024-07-09": 0.0855, + "2024-07-23": 0.0922, + "2024-07-10": 0.0847, + "2024-07-14": 0.0926815011147653, + "2024-07-29": 0.0907, + "2024-07-27": 0.0912, + "2024-07-28": 0.0902, + "2024-07-19": 0.0932, + "2024-08-04": 0.0791, + "2024-07-26": 0.0909, + "2024-08-05": 0.0721, + "2024-07-25": 0.0894, + "2024-07-16": 0.0945, + "2024-08-02T16": 0.083788719, + "2024-08-02T11": 0.0850984572, + "2024-07-31T00": 0.0889, + "2024-08-05T18": 0.0744, + "2024-07-31T11": 0.0889, + "2024-08-05T23": 0.0754, + "2024-08-02T06": 0.085135248, + "2024-08-01T13": 0.0863, + "2024-08-05T01": 0.0738, + "2024-08-02T00": 0.087491187, + "2024-08-06T06": 0.0792, + "2024-08-03T23": 0.08199669064237251, + "2024-08-01T11": 0.0861, + "2024-08-05T19": 0.0736, + "2024-08-04T19": 0.0793, + "2024-08-01T23": 0.0872, + "2024-08-04T17": 0.0783, + "2024-08-02T22": 0.0832350038, + "2024-08-02T01": 0.0872822496, + "2024-08-02T05": 0.0854955541, + "2024-08-03T20": 0.0816752409, + "2024-07-31T14": 0.089, + "2024-08-03T12": 0.0843458484, + "2024-07-31T05": 0.0887, + "2024-08-02T08": 0.0851492674, + "2024-08-05T14": 0.0723, + "2024-08-01T07": 0.08620551693688858, + "2024-08-03T06": 0.0834789087, + "2024-08-04T13": 0.0812, + "2024-08-06T11": 0.0787, + "2024-08-05T16": 0.0752, + "2024-08-05T06": 0.069, + "2024-08-01T22": 0.0869, + "2024-08-04T20": 0.0787, + "2024-08-06T10": 0.0787, + "2024-08-01T15": 0.0847, + "2024-08-06T05": 0.0782, + "2024-08-04T08": 0.08183424413909768, + "2024-08-01T00": 0.0865, + "2024-08-04T18": 0.0786, + "2024-07-31T15": 0.08903891324016688, + "2024-08-03T19": 0.08181457649847612, + "2024-08-02T12": 0.08510009357538256, + "2024-08-01T20": 0.0853, + "2024-08-01T21": 0.0862, + "2024-07-30T23": 0.0887, + "2024-08-03T16": 0.0827678775, + "2024-08-06T00": 0.0769, + "2024-08-04T06": 0.0818, + "2024-08-02T15": 0.08369789559999999, + "2024-08-05T10": 0.0703, + "2024-08-05T17": 0.075, + "2024-08-03T04": 0.08314516856313325, + "2024-08-06T04": 0.0777, + "2024-08-06T03": 0.0774, + "2024-07-30T19": 0.0889, + "2024-08-02T04": 0.08579171890946037, + "2024-08-02T23": 0.08316961501495036, + "2024-08-05T08": 0.0725, + "2024-08-02T09": 0.08499686324510103, + "2024-08-04T12": 0.0811, + "2024-08-04T22": 0.0784, + "2024-07-31T23": 0.0863, + "2024-08-04T10": 0.0811, + "2024-07-30T16": 0.089, + "2024-08-05T20": 0.07424864515597755, + "2024-08-03T10": 0.0837562296, + "2024-08-04T16": 0.079, + "2024-07-31T06": 0.0889, + "2024-07-31T02": 0.0887, + "2024-08-03T09": 0.08340562625435397, + "2024-08-04T15": 0.0795, + "2024-08-03T00": 0.08294270530566157, + "2024-07-30T17": 0.089, + "2024-08-03T15": 0.08358396120000001, + "2024-08-01T19": 0.0851, + "2024-07-30T13": 0.0895, + "2024-08-03T22": 0.08180635539399386, + "2024-07-30T22": 0.0886, + "2024-07-31T13": 0.0888, + "2024-07-30T18": 0.0889, + "2024-08-03T05": 0.08314960138, + "2024-08-05T09": 0.0723, + "2024-07-30T12": 0.0896, + "2024-08-03T01": 0.0827081437, + "2024-08-05T03": 0.0719, + "2024-07-31T08": 0.0886, + "2024-08-01T10": 0.0861, + "2024-07-31T21": 0.0864, + "2024-08-01T09": 0.0861, + "2024-08-06T09": 0.07873131295194954, + "2024-08-03T08": 0.0834289953, + "2024-08-03T14": 0.0840353415, + "2024-08-01T12": 0.0863, + "2024-07-30T20": 0.0887, + "2024-07-30T15": 0.0889, + "2024-08-01T01": 0.0869, + "2024-08-05T13": 0.0684, + "2024-08-01T16": 0.0842, + "2024-08-04T00": 0.08174654932525094, + "2024-08-02T14": 0.0852785552, + "2024-08-04T09": 0.0818, + "2024-08-04T02": 0.082, + "2024-08-03T03": 0.0827913609, + "2024-08-03T11": 0.08471877640000001, + "2024-07-31T09": 0.08894774318603338, + "2024-07-31T12": 0.0887, + "2024-08-05T11": 0.0692, + "2024-08-03T18": 0.08204253, + "2024-08-01T08": 0.0861, + "2024-07-31T10": 0.0891, + "2024-08-03T17": 0.08209085199999999, + "2024-07-31T03": 0.0886, + "2024-08-01T06": 0.0866, + "2024-08-02T07": 0.08537270538636639, + "2024-08-02T19": 0.08360892294667804, + "2024-07-30T11": 0.09, + "2024-08-05T22": 0.0753, + "2024-08-06T01": 0.0774, + "2024-08-05T15": 0.07364306594800896, + "2024-07-31T18": 0.0884, + "2024-08-05T02": 0.072, + "2024-08-05T12": 0.0683, + "2024-07-30T21": 0.0886, + "2024-08-06T07": 0.0793, + "2024-08-04T11": 0.0811, + "2024-08-05T05": 0.0711, + "2024-07-31T19": 0.088, + "2024-08-04T21": 0.0783, + "2024-07-30T14": 0.0889, + "2024-08-01T18": 0.0846, + "2024-07-31T04": 0.0887, + "2024-08-02T18": 0.08377614, + "2024-08-02T03": 0.085820972, + "2024-08-04T01": 0.0819, + "2024-08-02T21": 0.08311706620175151, + "2024-08-02T02": 0.08645501838325517, + "2024-08-02T10": 0.08503390066074035, + "2024-08-04T23": 0.0782, + "2024-08-04T03": 0.0821, + "2024-08-01T05": 0.08661002042210958, + "2024-08-02T17": 0.08384027599999999, + "2024-07-31T16": 0.0887, + "2024-08-04T04": 0.082, + "2024-08-01T02": 0.0871, + "2024-08-05T21": 0.0748, + "2024-08-05T07": 0.0707, + "2024-08-05T00": 0.0765, + "2024-08-02T20": 0.0834789087, + "2024-07-31T01": 0.0888, + "2024-07-31T22": 0.0863, + "2024-08-04T07": 0.0819, + "2024-08-04T05": 0.0817, + "2024-08-01T14": 0.0862, + "2024-08-03T02": 0.082590836, + "2024-08-01T04": 0.0868, + "2024-08-01T17": 0.0837, + "2024-08-06T02": 0.0774, + "2024-08-04T14": 0.0801, + "2024-07-31T20": 0.0866, + "2024-08-03T21": 0.081820878, + "2024-08-06T08": 0.0793, + "2024-08-02T13": 0.0854932632, + "2024-08-05T04": 0.0721, + "2024-08-01T03": 0.0871, + "2024-07-31T17": 0.0885, + "2024-07-31T07": 0.0887, + "2024-08-03T07": 0.08368779552258228, + "2024-08-03T13": 0.08420155659495407, + "latest": 0.07816 + }, + "USD dash": { + "2024-07-31": 26.71309859122797, + "2024-08-02": 25.225514529673713, + "2024-07-30": 26.80019996802434, + "2024-08-01": 25.769864264277654, + "2024-08-06": 22.597654667771433, + "2024-07-20": 27.89150631883806, + "2024-07-21": 28.268313374013776, + "2024-07-15": 27.153309835140888, + "2024-08-03": 24.508442724930013, + "2024-07-18": 27.639503475586725, + "2024-07-11": 23.96365226828571, + "2024-07-17": 28.136701441371525, + "2024-07-22": 27.41170091562234, + "2024-07-12": 24.1138572286122, + "2024-07-24": 26.90228372669829, + "2024-07-06": 22.882288, + "2024-07-08": 22.75409935216314, + "2024-07-07": 23.23024207891485, + "2024-07-13": 25.44532529291334, + "2024-07-09": 23.683853698365898, + "2024-07-23": 26.75416287003272, + "2024-07-10": 23.80000009272105, + "2024-07-14": 26.26099296573511, + "2024-07-29": 27.54399346747456, + "2024-07-27": 26.85255990600473, + "2024-07-28": 26.790324893560395, + "2024-07-19": 27.03998325170554, + "2024-08-04": 22.82940769276544, + "2024-07-26": 26.442772484680578, + "2024-08-05": 20.50364982831348, + "2024-07-25": 25.393169114239384, + "2024-07-16": 27.350098670018017, + "2024-08-02T16": 24.735811386914364, + "2024-08-02T11": 25.51373062165214, + "2024-07-31T00": 26.22786629866652, + "2024-08-05T18": 22.230221199999995, + "2024-07-31T11": 26.44806837371512, + "2024-08-05T23": 22.124424, + "2024-08-02T06": 25.057566909118318, + "2024-08-01T13": 25.99031156620953, + "2024-08-05T01": 20.435836177946133, + "2024-08-02T00": 25.727510054937355, + "2024-08-06T06": 22.59491783685584, + "2024-08-03T23": 23.307571596359494, + "2024-08-01T11": 25.957330536812126, + "2024-08-05T19": 21.8883144, + "2024-08-04T19": 22.504845110908388, + "2024-08-01T23": 25.70167591513066, + "2024-08-04T17": 21.9120225081212, + "2024-08-02T22": 24.306261246968127, + "2024-08-02T01": 25.613067966173368, + "2024-08-02T05": 25.167852617143456, + "2024-08-03T20": 23.150769379774335, + "2024-07-31T14": 26.763180331173128, + "2024-08-03T12": 24.694221938016742, + "2024-07-31T05": 26.28458953174713, + "2024-08-02T08": 25.158646485936, + "2024-08-05T14": 21.905912999999998, + "2024-08-01T07": 25.874673695057442, + "2024-08-03T06": 24.701573516549832, + "2024-08-04T13": 23.28556129724905, + "2024-08-05T16": 22.675862, + "2024-08-05T06": 19.62960501038122, + "2024-08-01T22": 25.53737477429941, + "2024-08-04T20": 22.581669235332527, + "2024-08-06T10": 22.238376309048142, + "2024-08-01T15": 25.080768095014616, + "2024-08-06T05": 22.35515679915293, + "2024-08-04T08": 23.30796446572842, + "2024-08-01T00": 26.51499541697417, + "2024-08-04T18": 21.99789335180454, + "2024-07-31T15": 26.82535079399244, + "2024-08-03T19": 23.05532766194304, + "2024-08-02T12": 25.485275389937286, + "2024-08-01T20": 24.89223813776595, + "2024-08-01T21": 25.40415121278797, + "2024-07-30T23": 26.284801184191974, + "2024-08-03T16": 23.598353757847466, + "2024-08-06T00": 22.707043977126148, + "2024-08-04T06": 23.452881740824488, + "2024-08-02T15": 24.61868369923382, + "2024-08-05T10": 20.4728658, + "2024-08-05T17": 22.713393, + "2024-08-03T04": 24.60471847433643, + "2024-08-06T04": 22.219940498690494, + "2024-08-06T03": 22.36865632473481, + "2024-07-30T19": 26.43888658701439, + "2024-08-02T04": 25.418569185370277, + "2024-08-02T23": 24.31648231596533, + "2024-08-05T08": 20.6522715, + "2024-08-02T09": 25.28915467128012, + "2024-08-04T12": 23.2996250063423, + "2024-08-04T22": 22.669022362746233, + "2024-07-31T23": 26.659337310465535, + "2024-08-04T10": 23.369467336451997, + "2024-07-30T16": 26.99574515323586, + "2024-08-05T20": 22.012201, + "2024-08-03T10": 24.692387911546227, + "2024-08-04T16": 22.20992319349852, + "2024-07-31T06": 26.6738421898237, + "2024-07-31T02": 26.465586757621303, + "2024-08-03T09": 24.676590665615016, + "2024-08-04T15": 22.47259795621578, + "2024-08-03T00": 24.701398545351633, + "2024-07-30T17": 26.648075911059923, + "2024-08-03T15": 24.255980968035246, + "2024-08-01T19": 24.58636123594948, + "2024-07-30T13": 26.986578939827556, + "2024-08-03T22": 23.341326867155757, + "2024-07-30T22": 26.278848406555795, + "2024-07-31T13": 26.852213817079914, + "2024-07-30T18": 26.52878591502235, + "2024-08-03T05": 24.557477226802956, + "2024-08-05T09": 20.7737386, + "2024-07-30T12": 26.903698069658553, + "2024-08-03T01": 24.17382716601741, + "2024-08-05T03": 20.239435180426707, + "2024-07-31T08": 26.53941180704321, + "2024-08-01T10": 25.88325359959743, + "2024-07-31T21": 26.56612505303998, + "2024-08-01T09": 25.943460458690996, + "2024-08-06T09": 22.305282769368432, + "2024-08-03T08": 24.75019593823007, + "2024-08-03T14": 24.77120937009383, + "2024-08-01T12": 26.021184123553702, + "2024-07-30T20": 26.36820747475293, + "2024-07-30T15": 26.93133805632701, + "2024-08-01T01": 26.823791471106794, + "2024-08-05T13": 20.713229631082502, + "2024-08-01T16": 24.779621318478082, + "2024-08-04T00": 23.410212680697487, + "2024-08-02T14": 25.41844618584776, + "2024-08-04T09": 23.398141058176247, + "2024-08-04T02": 23.48160050870774, + "2024-08-03T03": 24.652501217941793, + "2024-08-03T11": 24.68604521058543, + "2024-07-31T09": 26.378650611378607, + "2024-07-31T12": 26.568716664965326, + "2024-08-05T11": 20.0926117, + "2024-08-03T18": 23.011558704125402, + "2024-08-01T08": 25.889410737227916, + "2024-07-31T10": 26.373779000811687, + "2024-08-03T17": 23.125669856525285, + "2024-07-31T03": 26.469652376369087, + "2024-08-01T06": 25.804980619479693, + "2024-08-02T07": 25.149842042311388, + "2024-08-02T19": 24.490350904990116, + "2024-07-30T11": 26.89790825981208, + "2024-08-05T22": 22.2537825, + "2024-08-06T01": 22.565920915919463, + "2024-08-05T15": 22.3340616, + "2024-07-31T18": 27.038111627795818, + "2024-08-05T02": 20.325934, + "2024-08-05T12": 20.283816869978953, + "2024-07-30T21": 26.230230474908602, + "2024-08-06T07": 22.66557047860519, + "2024-08-04T11": 23.308014504494096, + "2024-08-05T05": 20.398775999999998, + "2024-07-31T19": 26.932995716479557, + "2024-08-04T21": 22.504570332074916, + "2024-07-30T14": 26.914785574455994, + "2024-08-01T18": 24.37172692428067, + "2024-07-31T04": 26.351852022792514, + "2024-08-02T18": 24.627173726204326, + "2024-08-02T03": 25.449141142468985, + "2024-08-04T01": 23.33039690498161, + "2024-08-02T21": 24.410678394504544, + "2024-08-02T02": 25.32417405441514, + "2024-08-02T10": 25.326847600856023, + "2024-08-04T23": 22.381414981401228, + "2024-08-04T03": 23.5054105436858, + "2024-08-01T05": 25.769534107909585, + "2024-08-02T17": 24.832304361426242, + "2024-07-31T16": 26.807290934017516, + "2024-08-04T04": 23.5194798965274, + "2024-08-01T02": 26.89995446837664, + "2024-08-05T21": 22.103978, + "2024-08-05T07": 20.59, + "2024-08-05T00": 21.9596741, + "2024-08-02T20": 24.509274127659097, + "2024-07-31T01": 26.415040409175152, + "2024-07-31T22": 26.641522686646123, + "2024-08-04T07": 23.323453723003464, + "2024-08-04T05": 23.502740121737073, + "2024-08-01T14": 25.760522044941776, + "2024-08-03T02": 24.527469249815294, + "2024-08-01T04": 26.02455456097937, + "2024-08-01T17": 24.488320967603663, + "2024-08-06T02": 22.470970811215892, + "2024-08-04T14": 22.648182334613903, + "2024-07-31T20": 26.59236232174733, + "2024-08-03T21": 23.224001249422553, + "2024-08-06T08": 22.467351424256243, + "2024-08-02T13": 25.68115136514382, + "2024-08-05T04": 20.418979, + "2024-08-01T03": 26.674797290114444, + "2024-07-31T17": 26.869941266979453, + "2024-07-31T07": 26.661126214000774, + "2024-08-03T07": 24.860812760286233, + "2024-08-03T13": 24.720278102310566, + "latest": 22.25, + "2024-08-06T11": 22.211886334132526 + }, + "USD dogecoin": { + "2024-07-31": 0.12557502731321057, + "2024-08-02": 0.11585949179866466, + "2024-07-30": 0.12828395051739683, + "2024-08-01": 0.11937728407138144, + "2024-08-06": 0.09887009427028737, + "2024-07-20": 0.1292902426940222, + "2024-07-21": 0.1321387773928469, + "2024-07-15": 0.11855718914861056, + "2024-08-03": 0.11115071291435782, + "2024-07-18": 0.12121225345793822, + "2024-07-11": 0.1081778325856798, + "2024-07-17": 0.12495729123767864, + "2024-07-22": 0.13903780116884903, + "2024-07-12": 0.10664228788058969, + "2024-07-24": 0.13145603831206254, + "2024-07-06": 0.10865162734191858, + "2024-07-08": 0.10660949726678125, + "2024-07-07": 0.10946903337606277, + "2024-07-13": 0.1099502692048102, + "2024-07-09": 0.10784550233721958, + "2024-07-23": 0.13357182593983072, + "2024-07-10": 0.10888037942419591, + "2024-07-14": 0.11325568626596415, + "2024-07-29": 0.13204739882454736, + "2024-07-27": 0.13423257394393528, + "2024-07-28": 0.13008344213962725, + "2024-07-19": 0.12084138676918117, + "2024-08-04": 0.10524710191979393, + "2024-07-26": 0.12972735085049866, + "2024-08-05": 0.09155234517030987, + "2024-07-25": 0.12389098083961017, + "2024-07-16": 0.12438456399635171, + "2024-08-02T16": 0.112664154, + "2024-08-02T11": 0.11732936048, + "2024-07-31T00": 0.12539864250000002, + "2024-08-05T18": 0.0948187198056466, + "2024-07-31T11": 0.1253650113, + "2024-08-05T23": 0.095149026, + "2024-08-02T06": 0.115462182, + "2024-08-01T13": 0.12015229919999999, + "2024-08-05T01": 0.09387357169839568, + "2024-08-02T00": 0.1188249612, + "2024-08-06T06": 0.09964268609999999, + "2024-08-03T23": 0.10804546064, + "2024-08-01T11": 0.12039315779, + "2024-08-05T19": 0.0935852224690008, + "2024-08-04T19": 0.10469762218054696, + "2024-08-01T23": 0.11922701566, + "2024-08-04T17": 0.100932696537384, + "2024-08-02T22": 0.111223061, + "2024-08-02T01": 0.11789098356000001, + "2024-08-02T05": 0.1167683231, + "2024-08-03T20": 0.10591898670000001, + "2024-07-31T14": 0.1265130435, + "2024-08-03T12": 0.11319390720000001, + "2024-07-31T05": 0.12435281491404186, + "2024-08-02T08": 0.11652420457, + "2024-08-05T14": 0.09264715582558825, + "2024-08-01T07": 0.12039479795000001, + "2024-08-03T06": 0.1134861651, + "2024-08-04T13": 0.10728633000000001, + "2024-08-06T11": 0.09633278688481138, + "2024-08-05T16": 0.09651665687052158, + "2024-08-05T06": 0.08532179679085876, + "2024-08-01T22": 0.1194707569, + "2024-08-04T20": 0.10504041759252605, + "2024-08-06T10": 0.09642681034999999, + "2024-08-01T15": 0.116111915, + "2024-08-06T05": 0.09888031734, + "2024-08-04T08": 0.10659301561612083, + "2024-08-01T00": 0.12245457665, + "2024-08-04T18": 0.10112015477693506, + "2024-07-31T15": 0.12662006448000002, + "2024-08-03T19": 0.106516852, + "2024-08-02T12": 0.1170268519, + "2024-08-01T20": 0.11515879353153083, + "2024-08-01T21": 0.11770729788525106, + "2024-07-30T23": 0.12555157948, + "2024-08-03T16": 0.10972664325, + "2024-08-06T00": 0.0982936548, + "2024-08-04T06": 0.10792538721483033, + "2024-08-02T15": 0.11189226464129386, + "2024-08-05T10": 0.08426497645381212, + "2024-08-05T17": 0.09617483460848479, + "2024-08-03T04": 0.1123364255, + "2024-08-06T04": 0.09814414500000002, + "2024-08-06T03": 0.09869857412939693, + "2024-07-30T19": 0.12512268747, + "2024-08-02T04": 0.11750297490000002, + "2024-08-02T23": 0.11135005343394674, + "2024-08-05T08": 0.08770063619564504, + "2024-08-02T09": 0.11707621267885565, + "2024-08-04T12": 0.1074732365, + "2024-08-04T22": 0.10527593717364227, + "2024-07-31T23": 0.122110912, + "2024-08-04T10": 0.10695335532000001, + "2024-07-30T16": 0.12750718464, + "2024-08-05T20": 0.09462356506397634, + "2024-08-03T10": 0.1127057316, + "2024-08-04T16": 0.10225032671999999, + "2024-07-31T06": 0.126163402, + "2024-07-31T02": 0.125544886, + "2024-08-03T09": 0.11276122946381074, + "2024-08-04T15": 0.103430655, + "2024-08-03T00": 0.11112623367999999, + "2024-07-30T17": 0.1258709679, + "2024-08-03T15": 0.1116951141, + "2024-08-01T19": 0.1144203495265132, + "2024-07-30T13": 0.128594276, + "2024-08-03T22": 0.1077685369, + "2024-07-30T22": 0.12573452641, + "2024-07-31T13": 0.1266204604, + "2024-07-30T18": 0.1258397184, + "2024-08-03T05": 0.11273992743550316, + "2024-08-05T09": 0.08675713709248713, + "2024-07-30T12": 0.12887421999999998, + "2024-08-03T01": 0.10959403332999999, + "2024-08-05T03": 0.09167625341246889, + "2024-07-31T08": 0.1260132685, + "2024-08-01T10": 0.12061304119, + "2024-07-31T21": 0.12198162936, + "2024-08-01T09": 0.1210497504, + "2024-08-06T09": 0.096558959, + "2024-08-03T08": 0.11272055489999999, + "2024-08-03T14": 0.1136980482, + "2024-08-01T12": 0.1208395987976975, + "2024-07-30T20": 0.124652593, + "2024-07-30T15": 0.127256718, + "2024-08-01T01": 0.12233716700000001, + "2024-08-05T13": 0.08561098004714554, + "2024-08-01T16": 0.11500943699999999, + "2024-08-04T00": 0.10814915433000001, + "2024-08-02T14": 0.1162862136, + "2024-08-04T09": 0.10695699974, + "2024-08-04T02": 0.108594804, + "2024-08-03T03": 0.11234215356, + "2024-08-03T11": 0.11272423204000001, + "2024-07-31T09": 0.1260608171, + "2024-07-31T12": 0.12562261192, + "2024-08-05T11": 0.08224482898870665, + "2024-08-03T18": 0.10707499499999999, + "2024-08-01T08": 0.1209070956, + "2024-07-31T10": 0.1255297168, + "2024-08-03T17": 0.10754251359999999, + "2024-07-31T03": 0.1254636471, + "2024-08-01T06": 0.12034100399999999, + "2024-08-02T07": 0.1161158699, + "2024-08-02T19": 0.11219657229, + "2024-07-30T11": 0.12923785435, + "2024-08-05T22": 0.0957662775, + "2024-08-06T01": 0.09990436295831838, + "2024-08-05T15": 0.09444680903833272, + "2024-07-31T18": 0.1257884761, + "2024-08-05T02": 0.0916732854808878, + "2024-08-05T12": 0.08409050926128182, + "2024-07-30T21": 0.12520478680929573, + "2024-08-06T07": 0.0991263702, + "2024-08-04T11": 0.10756511379999999, + "2024-08-05T05": 0.09084141366674951, + "2024-07-31T19": 0.1239278502, + "2024-08-04T21": 0.10470149952629251, + "2024-07-30T14": 0.1275484852, + "2024-08-01T18": 0.1134255524, + "2024-07-31T04": 0.1244338634, + "2024-08-02T18": 0.11299689, + "2024-08-02T03": 0.1173619276, + "2024-08-04T01": 0.10776138325000001, + "2024-08-02T21": 0.11139849, + "2024-08-02T02": 0.11671651216578068, + "2024-08-02T10": 0.11693027753467472, + "2024-08-04T23": 0.10418933116396398, + "2024-08-04T03": 0.1085626494, + "2024-08-01T05": 0.119726922, + "2024-08-02T17": 0.1132782833, + "2024-07-31T16": 0.12593186741, + "2024-08-04T04": 0.10791413220000001, + "2024-08-01T02": 0.12127490424000001, + "2024-08-05T21": 0.09515553491660769, + "2024-08-05T07": 0.08798708205464947, + "2024-08-05T00": 0.10082686128986344, + "2024-08-02T20": 0.11277094553999999, + "2024-07-31T01": 0.1257153588351742, + "2024-07-31T22": 0.12235531526974847, + "2024-08-04T07": 0.10720471188, + "2024-08-04T05": 0.10780451631079005, + "2024-08-01T14": 0.1183302804, + "2024-08-03T02": 0.1113228596, + "2024-08-01T04": 0.11981766240000001, + "2024-08-01T17": 0.11464306384, + "2024-08-06T02": 0.09880453146, + "2024-08-04T14": 0.10410835192258239, + "2024-07-31T20": 0.12204338451, + "2024-08-03T21": 0.10678589, + "2024-08-06T08": 0.09704625420000002, + "2024-08-02T13": 0.1179679132, + "2024-08-05T04": 0.09184002921499362, + "2024-08-01T03": 0.1210757958, + "2024-07-31T17": 0.12605082099999998, + "2024-07-31T07": 0.12648177849, + "2024-08-03T07": 0.11404584024, + "2024-08-03T13": 0.1131130308, + "latest": 0.095886 + }, + "USD elrond": { + "2024-07-31": 31.44930189242622, + "2024-08-02": 29.53456795364357, + "2024-07-30": 32.053104955749326, + "2024-08-01": 30.78366241750734, + "2024-08-06": 26.672354689368568, + "2024-07-20": 36.26739903288383, + "2024-07-21": 35.87179338643759, + "2024-07-15": 35.72751268286223, + "2024-08-03": 28.03813037689548, + "2024-07-18": 37.419327787860176, + "2024-07-11": 36.16493281994954, + "2024-07-17": 37.01881693370637, + "2024-07-22": 37.125586424633205, + "2024-07-12": 35.66858425086628, + "2024-07-24": 34.271384769695565, + "2024-07-06": 33.65832322009126, + "2024-07-08": 33.860445234735124, + "2024-07-07": 33.824591929085614, + "2024-07-13": 35.467758267385435, + "2024-07-09": 36.768105560257425, + "2024-07-23": 35.08545919554197, + "2024-07-10": 36.76736690826082, + "2024-07-14": 35.58073767011118, + "2024-07-29": 32.88581468767606, + "2024-07-27": 33.353179622542186, + "2024-07-28": 32.489391751328725, + "2024-07-19": 35.75997785062833, + "2024-08-04": 27.274094500953098, + "2024-07-26": 33.24728257403504, + "2024-08-05": 24.430027820386012, + "2024-07-25": 32.352574588289, + "2024-07-16": 36.10333068767192, + "2024-08-02T16": 29.195162999999997, + "2024-08-02T11": 30.1946152, + "2024-07-31T00": 31.3221675, + "2024-08-05T18": 26.2220566, + "2024-07-31T11": 30.932977499999996, + "2024-08-05T23": 25.9755145120612, + "2024-08-02T06": 29.8972608, + "2024-08-01T13": 30.60979179820979, + "2024-08-05T01": 24.230087531744825, + "2024-08-02T00": 30.902162999999998, + "2024-08-06T06": 27.329936299999996, + "2024-08-03T23": 28.1242416, + "2024-08-01T11": 30.5138191, + "2024-08-05T19": 25.709766000000002, + "2024-08-04T19": 27.02648, + "2024-08-01T23": 30.9012351, + "2024-08-04T17": 26.0083951, + "2024-08-02T22": 28.5773846, + "2024-08-02T01": 30.882490100000002, + "2024-08-02T05": 30.233673800000002, + "2024-08-03T20": 27.531541500000003, + "2024-07-31T14": 31.665744, + "2024-08-03T12": 29.0878764, + "2024-07-31T05": 31.3131096, + "2024-08-02T08": 30.234884200000003, + "2024-08-05T14": 25.5368931, + "2024-08-01T07": 30.236387500000003, + "2024-08-03T06": 29.0483028, + "2024-08-04T13": 27.8362748447457, + "2024-08-06T11": 26.5684992, + "2024-08-05T16": 26.688669, + "2024-08-05T06": 22.7284089, + "2024-08-01T22": 30.947659627855764, + "2024-08-04T20": 27.240735, + "2024-08-06T10": 26.568764799999997, + "2024-08-01T15": 29.755115, + "2024-08-06T05": 27.055953600000002, + "2024-08-04T08": 27.882980999999997, + "2024-08-01T00": 31.489604999999997, + "2024-08-04T18": 26.0932896, + "2024-07-31T15": 31.608623846094204, + "2024-08-03T19": 27.4985344, + "2024-08-02T12": 30.038657399999998, + "2024-08-01T20": 30.1295384, + "2024-08-01T21": 30.711719199999997, + "2024-07-30T23": 31.2709288, + "2024-08-03T16": 27.949022499999998, + "2024-08-06T00": 26.595318, + "2024-08-04T06": 28.352410600000002, + "2024-08-02T15": 29.0015506, + "2024-08-05T10": 24.1133754, + "2024-08-05T17": 26.705747100000004, + "2024-08-03T04": 28.760922100000002, + "2024-08-06T04": 26.8820915, + "2024-08-06T03": 26.700409099999998, + "2024-07-30T19": 31.408374600000002, + "2024-08-02T04": 30.5321904, + "2024-08-02T23": 28.513456, + "2024-08-05T08": 24.662712600000003, + "2024-08-02T09": 30.2639506, + "2024-08-04T12": 27.746120000000005, + "2024-08-04T22": 27.289899000000002, + "2024-07-31T23": 31.0300672, + "2024-08-04T10": 27.6955908, + "2024-07-30T16": 32.189696000000005, + "2024-08-05T20": 25.962596, + "2024-08-03T10": 28.864576800000002, + "2024-08-04T16": 26.291056799999996, + "2024-07-31T06": 31.9007461, + "2024-07-31T02": 31.604272428225737, + "2024-08-03T09": 28.7144214, + "2024-08-04T15": 26.6721177, + "2024-08-03T00": 28.3727829, + "2024-07-30T17": 31.9700862, + "2024-08-03T15": 28.4609184, + "2024-08-01T19": 29.86711, + "2024-07-30T13": 32.213556, + "2024-08-03T22": 27.994034300000003, + "2024-07-30T22": 31.2209433, + "2024-07-31T13": 31.745072800000003, + "2024-07-30T18": 31.689856, + "2024-08-03T05": 28.8878988, + "2024-08-05T09": 24.5444172, + "2024-07-30T12": 32.173564, + "2024-08-03T01": 27.8057568, + "2024-08-05T03": 23.838808, + "2024-07-31T08": 31.755703500000003, + "2024-08-01T10": 30.4538509, + "2024-07-31T21": 31.0781858, + "2024-08-01T09": 30.502298399999997, + "2024-08-06T09": 26.557965, + "2024-08-03T08": 28.7920446, + "2024-08-03T14": 28.861227999999997, + "2024-08-01T12": 30.683529249937326, + "2024-07-30T20": 31.19074008322738, + "2024-07-30T15": 32.239035, + "2024-08-01T01": 31.029136, + "2024-08-05T13": 23.948563, + "2024-08-01T16": 29.439378, + "2024-08-04T00": 28.083421, + "2024-08-02T14": 29.81941785547407, + "2024-08-04T09": 27.854114100000004, + "2024-08-04T02": 28.292417301952394, + "2024-08-03T03": 28.6258946, + "2024-08-03T11": 28.825873639705307, + "2024-07-31T09": 31.667644799999998, + "2024-07-31T12": 31.1625392, + "2024-08-05T11": 23.493053699999997, + "2024-08-03T18": 27.400806, + "2024-08-01T08": 30.3142284, + "2024-07-31T10": 31.1050624, + "2024-08-03T17": 27.470207199999997, + "2024-07-31T03": 31.5633703, + "2024-08-01T06": 30.439184855410243, + "2024-08-02T07": 30.1655461, + "2024-08-02T19": 28.858509899999998, + "2024-07-30T11": 32.093259, + "2024-08-05T22": 26.00442, + "2024-08-06T01": 27.0081, + "2024-08-05T15": 26.246524899999997, + "2024-07-31T18": 31.6695456, + "2024-08-05T02": 23.915216, + "2024-08-05T12": 23.662602600000003, + "2024-07-30T21": 31.1618958, + "2024-08-06T07": 27.248244099999997, + "2024-08-04T11": 27.775827099999997, + "2024-08-05T05": 23.898566, + "2024-07-31T19": 31.49408735740901, + "2024-08-04T21": 27.2420975, + "2024-07-30T14": 32.043589999999995, + "2024-08-01T18": 29.3929336, + "2024-07-31T04": 31.393406, + "2024-08-02T18": 29.26071, + "2024-08-02T03": 30.501912400000002, + "2024-08-04T01": 28.0734269, + "2024-08-02T21": 28.71126, + "2024-08-02T02": 30.3935346, + "2024-08-02T10": 30.1470708, + "2024-08-04T23": 26.888970999999998, + "2024-08-04T03": 28.252522093811212, + "2024-08-01T05": 30.3214926, + "2024-08-02T17": 29.451994, + "2024-07-31T16": 31.5077072, + "2024-08-04T04": 28.3327065, + "2024-08-01T02": 30.903921600000004, + "2024-08-05T21": 26.0146818, + "2024-08-05T07": 24.44, + "2024-08-05T00": 26.0177659, + "2024-08-02T20": 28.96839, + "2024-07-31T01": 31.5327458, + "2024-07-31T22": 31.1203497, + "2024-08-04T07": 28.1034092, + "2024-08-04T05": 28.402663800000003, + "2024-08-01T14": 30.2572866, + "2024-08-03T02": 28.4424064, + "2024-08-01T04": 30.5940828, + "2024-08-01T17": 29.406161700000002, + "2024-08-06T02": 26.5500852, + "2024-08-04T14": 27.148321199999998, + "2024-07-31T20": 31.1078632, + "2024-08-03T21": 27.663391999999998, + "2024-08-06T08": 26.8055382, + "2024-08-02T13": 30.236397200000003, + "2024-08-05T04": 24.1687915, + "2024-08-01T03": 30.871084467651176, + "2024-07-31T17": 31.568113243047993, + "2024-07-31T07": 31.8701172, + "2024-08-03T07": 29.081638114370126, + "2024-08-03T13": 28.970286799999997, + "latest": 26.54 + }, + "USD eos": { + "2024-07-31": 0.5897930383557509, + "2024-08-02": 0.5368184476022658, + "2024-07-30": 0.5769975285119734, + "2024-08-01": 0.5545302716391464, + "2024-08-06": 0.4593028771355799, + "2024-07-20": 0.6086124003350165, + "2024-07-21": 0.6083855925723918, + "2024-07-15": 0.5801616572162792, + "2024-08-03": 0.5150826403175675, + "2024-07-18": 0.6007620288862388, + "2024-07-11": 0.5279234448630916, + "2024-07-17": 0.6101416004307993, + "2024-07-22": 0.5924126549097222, + "2024-07-12": 0.5217820466095838, + "2024-07-24": 0.5920607303284923, + "2024-07-06": 0.4963630889691166, + "2024-07-08": 0.50575977149531, + "2024-07-07": 0.5125240920006846, + "2024-07-13": 0.539856658448935, + "2024-07-09": 0.5184382739640568, + "2024-07-23": 0.5831410664422647, + "2024-07-10": 0.5221645106679732, + "2024-07-14": 0.5502923825651321, + "2024-07-29": 0.5803377369151784, + "2024-07-27": 0.5783148174906856, + "2024-07-28": 0.5721885560000001, + "2024-07-19": 0.5894348675472472, + "2024-08-04": 0.48394182430602106, + "2024-07-26": 0.5704405742899679, + "2024-08-05": 0.4324802111026525, + "2024-07-25": 0.5671174086669903, + "2024-07-16": 0.5945930369535982, + "2024-08-02T16": 0.51236412, + "2024-08-02T11": 0.544941864, + "2024-07-31T00": 0.57085725, + "2024-08-05T18": 0.44660534399999996, + "2024-07-31T11": 0.59267385, + "2024-08-05T23": 0.44718942, + "2024-08-02T06": 0.5397894480000001, + "2024-08-01T13": 0.556432784, + "2024-08-05T01": 0.430323495, + "2024-08-02T00": 0.5511035599999999, + "2024-08-06T06": 0.46693061069999997, + "2024-08-03T23": 0.496122016, + "2024-08-01T11": 0.556005161, + "2024-08-05T19": 0.439767048, + "2024-08-04T19": 0.4801598, + "2024-08-01T23": 0.5494885, + "2024-08-04T17": 0.468310979, + "2024-08-02T22": 0.5123053054, + "2024-08-02T01": 0.547212547, + "2024-08-02T05": 0.543726546, + "2024-08-03T20": 0.48797283900000005, + "2024-07-31T14": 0.5983306300000001, + "2024-08-03T12": 0.520504116, + "2024-07-31T05": 0.5776728839999999, + "2024-08-02T08": 0.53755346, + "2024-08-05T14": 0.448621095, + "2024-08-01T07": 0.5577489000000001, + "2024-08-03T06": 0.517535271, + "2024-08-04T13": 0.5007495000000001, + "2024-08-06T11": 0.45364512000000007, + "2024-08-05T16": 0.45601898999999996, + "2024-08-05T06": 0.415670901, + "2024-08-01T22": 0.541650057, + "2024-08-04T20": 0.482635848, + "2024-08-06T10": 0.453749688, + "2024-08-01T15": 0.54142915, + "2024-08-06T05": 0.46237263900000003, + "2024-08-04T08": 0.507090486, + "2024-08-01T00": 0.584507049, + "2024-08-04T18": 0.46530201600000004, + "2024-07-31T15": 0.596455353, + "2024-08-03T19": 0.48791912600000004, + "2024-08-02T12": 0.545912127, + "2024-08-01T20": 0.519175103, + "2024-08-01T21": 0.533408812, + "2024-07-30T23": 0.570634468, + "2024-08-03T16": 0.49902545, + "2024-08-06T00": 0.45839166, + "2024-08-04T06": 0.508084792, + "2024-08-02T15": 0.5139006745984981, + "2024-08-05T10": 0.42385933200000003, + "2024-08-05T17": 0.453467388, + "2024-08-03T04": 0.519674598, + "2024-08-06T04": 0.46060718, + "2024-08-06T03": 0.45927904899999994, + "2024-07-30T19": 0.5670900990000001, + "2024-08-02T04": 0.548999955, + "2024-08-02T23": 0.518535424, + "2024-08-05T08": 0.433247652, + "2024-08-02T09": 0.540234998, + "2024-08-04T12": 0.5023487000000001, + "2024-08-04T22": 0.480622104, + "2024-07-31T23": 0.5849127679999999, + "2024-08-04T10": 0.505836828, + "2024-07-30T16": 0.583713152, + "2024-08-05T20": 0.44354435, + "2024-08-03T10": 0.5202417840000001, + "2024-08-04T16": 0.47765583999999994, + "2024-07-31T06": 0.585930031, + "2024-07-31T02": 0.58318334, + "2024-08-03T09": 0.518138446, + "2024-08-04T15": 0.479378601, + "2024-08-03T00": 0.520417359, + "2024-07-30T17": 0.575321595, + "2024-08-03T15": 0.509358501, + "2024-08-01T19": 0.52002734, + "2024-07-30T13": 0.5815836600000001, + "2024-08-03T22": 0.495917166, + "2024-07-30T22": 0.5688349899999999, + "2024-07-31T13": 0.599418141, + "2024-07-30T18": 0.571117184, + "2024-08-03T05": 0.5188389879206202, + "2024-08-05T09": 0.43367804800000004, + "2024-07-30T12": 0.58548288, + "2024-08-03T01": 0.5151655660000001, + "2024-08-05T03": 0.426878655, + "2024-07-31T08": 0.59213342, + "2024-08-01T10": 0.555105638, + "2024-07-31T21": 0.58427789, + "2024-08-01T09": 0.556077288, + "2024-08-06T09": 0.45573668, + "2024-08-03T08": 0.517297734, + "2024-08-03T14": 0.5187625849999999, + "2024-08-01T12": 0.5573100480000001, + "2024-07-30T20": 0.56413071, + "2024-07-30T15": 0.581502222, + "2024-08-01T01": 0.5817962999999999, + "2024-08-05T13": 0.42567445800000003, + "2024-08-01T16": 0.52713075, + "2024-08-04T00": 0.496207065, + "2024-08-02T14": 0.53661336, + "2024-08-04T09": 0.508809813, + "2024-08-04T02": 0.5001996999999999, + "2024-08-03T03": 0.5189816759999999, + "2024-08-03T11": 0.5202626120000001, + "2024-07-31T09": 0.592368886, + "2024-07-31T12": 0.594866688, + "2024-08-05T11": 0.418854444, + "2024-08-03T18": 0.48685896, + "2024-08-01T08": 0.556410516, + "2024-07-31T10": 0.590416464, + "2024-08-03T17": 0.489946984, + "2024-07-31T03": 0.5839073537, + "2024-08-01T06": 0.556027413, + "2024-08-02T07": 0.54056179, + "2024-08-02T19": 0.507546171, + "2024-07-30T11": 0.5869767089999999, + "2024-08-05T22": 0.447176007, + "2024-08-06T01": 0.46203857, + "2024-08-05T15": 0.454686272, + "2024-07-31T18": 0.5958033199999999, + "2024-08-05T02": 0.42401518, + "2024-08-05T12": 0.420946299, + "2024-07-30T21": 0.562253776, + "2024-08-06T07": 0.46571181799999994, + "2024-08-04T11": 0.505342144, + "2024-08-05T05": 0.430574164, + "2024-07-31T19": 0.589699434, + "2024-08-04T21": 0.479760829, + "2024-07-30T14": 0.57858426, + "2024-08-01T18": 0.5145267920331842, + "2024-07-31T04": 0.5819777589999999, + "2024-08-02T18": 0.5131863000000001, + "2024-08-02T03": 0.54649676, + "2024-08-04T01": 0.496606829, + "2024-08-02T21": 0.5103891, + "2024-08-02T02": 0.5440262849999999, + "2024-08-02T10": 0.540688764, + "2024-08-04T23": 0.473905619, + "2024-08-04T03": 0.501988574, + "2024-08-01T05": 0.559358583, + "2024-08-02T17": 0.51870676, + "2024-07-31T16": 0.593568418, + "2024-08-04T04": 0.502493292, + "2024-08-01T02": 0.5751007920000001, + "2024-08-05T21": 0.44397990200000004, + "2024-08-05T07": 0.4317, + "2024-08-05T00": 0.463681967, + "2024-08-02T20": 0.519832764, + "2024-07-31T01": 0.5761674510000001, + "2024-07-31T22": 0.587417844, + "2024-08-04T07": 0.510798451, + "2024-08-04T05": 0.504292194, + "2024-08-01T14": 0.549369168, + "2024-08-03T02": 0.5098261399999999, + "2024-08-01T04": 0.561407916, + "2024-08-01T17": 0.521477261, + "2024-08-06T02": 0.457973964, + "2024-08-04T14": 0.48589097699999995, + "2024-07-31T20": 0.584072123, + "2024-08-03T21": 0.49140498, + "2024-08-06T08": 0.45876593000000004, + "2024-08-02T13": 0.5490713899999999, + "2024-08-05T04": 0.43047847499999997, + "2024-08-01T03": 0.569398059, + "2024-07-31T17": 0.595567638, + "2024-07-31T07": 0.5885175029999999, + "2024-08-03T07": 0.518544563, + "2024-08-03T13": 0.518946876, + "latest": 0.452042 + }, + "USD ethereum": { + "2024-07-31": 3301.242187479457, + "2024-08-02": 3132.18973912412, + "2024-07-30": 3315.867677645932, + "2024-08-01": 3172.1108948690935, + "2024-08-06": 2510.7111179651833, + "2024-07-20": 3500.958479782853, + "2024-07-21": 3502.0867955422245, + "2024-07-15": 3358.7627027551152, + "2024-08-03": 2959.508110294467, + "2024-07-18": 3425.1822620831067, + "2024-07-11": 3122.049647791965, + "2024-07-17": 3462.3414737770986, + "2024-07-22": 3483.3191762110705, + "2024-07-12": 3098.3262109929324, + "2024-07-24": 3438.744625887542, + "2024-07-06": 3006.5744160021704, + "2024-07-08": 2985.067144269928, + "2024-07-07": 3001.1479939037986, + "2024-07-13": 3153.0593396857184, + "2024-07-09": 3066.815164240923, + "2024-07-23": 3474.416113568106, + "2024-07-10": 3101.483437962154, + "2024-07-14": 3194.881628773647, + "2024-07-29": 3332.379008680967, + "2024-07-27": 3269.6729672327506, + "2024-07-28": 3254.4088150831517, + "2024-07-19": 3438.75533788233, + "2024-08-04": 2838.8292435099947, + "2024-07-26": 3250.924387072937, + "2024-08-05": 2335.980916680292, + "2024-07-25": 3168.2454067372873, + "2024-07-16": 3439.4586245819264, + "2024-08-02T16": 3032.22859282549, + "2024-08-02T11": 3156.0276076718224, + "2024-07-31T00": 3275.1425668970605, + "2024-08-05T18": 2419.805752951516, + "2024-07-31T11": 3315.4018031957135, + "2024-08-05T23": 2443.4194550006805, + "2024-08-02T06": 3141.1082447682484, + "2024-08-01T13": 3182.732074922598, + "2024-08-05T01": 2337.3583881969957, + "2024-08-02T00": 3202.4508671867616, + "2024-08-06T06": 2521.82497562834, + "2024-08-03T23": 2905.078985103651, + "2024-08-01T11": 3187.8936987462844, + "2024-08-05T19": 2390.926771101388, + "2024-08-04T19": 2746.7382114878383, + "2024-08-01T23": 3204.1200195139468, + "2024-08-04T17": 2732.4576601987796, + "2024-08-02T22": 2991.7326124565775, + "2024-08-02T01": 3176.1041641892425, + "2024-08-02T05": 3155.609674176225, + "2024-08-03T20": 2901.238427233495, + "2024-07-31T14": 3319.461186787208, + "2024-08-03T12": 3005.319202631516, + "2024-07-31T05": 3278.5081686600356, + "2024-08-02T08": 3147.3556946042686, + "2024-08-05T14": 2387.767332841104, + "2024-08-01T07": 3170.856429538238, + "2024-08-03T06": 2978.7837395846645, + "2024-08-04T13": 2914.971719228542, + "2024-08-05T16": 2475.994142597416, + "2024-08-05T06": 2237.036689207073, + "2024-08-01T22": 3199.5878398440027, + "2024-08-04T20": 2752.595953307489, + "2024-08-06T10": 2465.052763025427, + "2024-08-01T15": 3119.020523811139, + "2024-08-06T05": 2502.2492498791394, + "2024-08-04T08": 2895.951342507091, + "2024-08-01T00": 3232.8170290336766, + "2024-08-04T18": 2697.5298782893315, + "2024-07-31T15": 3309.0326399681035, + "2024-08-03T19": 2902.132603842404, + "2024-08-02T12": 3146.0924017843417, + "2024-08-01T20": 3133.5012855455834, + "2024-08-01T21": 3166.5128450904326, + "2024-07-30T23": 3276.1233192018694, + "2024-08-03T16": 2930.232445730243, + "2024-08-06T00": 2511.3490365480643, + "2024-08-04T06": 2914.436085749824, + "2024-08-02T15": 3016.6780610907135, + "2024-08-05T10": 2271.409114810374, + "2024-08-05T17": 2462.9867565030954, + "2024-08-03T04": 2974.4519101745245, + "2024-08-06T04": 2494.6962517592583, + "2024-08-06T03": 2497.8844148838625, + "2024-07-30T19": 3270.9090199253756, + "2024-08-02T04": 3165.6569341240215, + "2024-08-02T23": 2984.6328792161503, + "2024-08-05T08": 2328.957773358065, + "2024-08-02T09": 3151.2414139235366, + "2024-08-04T12": 2916.2892338818174, + "2024-08-04T22": 2730.921348488978, + "2024-07-31T23": 3232.460483373134, + "2024-08-04T10": 2909.182036444694, + "2024-07-30T16": 3319.1838288188032, + "2024-08-05T20": 2423.5366877971464, + "2024-08-03T10": 2989.003845794143, + "2024-08-04T16": 2823.214866263843, + "2024-07-31T06": 3315.9997988009186, + "2024-07-31T02": 3289.1994180888096, + "2024-08-03T09": 2980.4512270586106, + "2024-08-04T15": 2840.2592970525484, + "2024-08-03T00": 2981.2747325635323, + "2024-07-30T17": 3294.492674625726, + "2024-08-03T15": 2970.5078574088234, + "2024-08-01T19": 3117.391157079486, + "2024-07-30T13": 3348.415144240603, + "2024-08-03T22": 2910.5078791115266, + "2024-07-30T22": 3277.1717214862488, + "2024-07-31T13": 3330.245494805577, + "2024-07-30T18": 3285.8033530546813, + "2024-08-03T05": 2964.1694920770647, + "2024-08-05T09": 2320.342949687979, + "2024-07-30T12": 3339.0384365958694, + "2024-08-03T01": 2937.150740974736, + "2024-08-05T03": 2318.0302714620257, + "2024-07-31T08": 3319.808890200836, + "2024-08-01T10": 3184.6030377971965, + "2024-07-31T21": 3229.564989507734, + "2024-08-01T09": 3184.7247221786415, + "2024-08-06T09": 2454.563850004987, + "2024-08-03T08": 2977.6978988167943, + "2024-08-03T14": 3007.340539065321, + "2024-08-01T12": 3196.093005419754, + "2024-07-30T20": 3263.196629209654, + "2024-07-30T15": 3314.695991382133, + "2024-08-01T01": 3215.2468882325215, + "2024-08-05T13": 2248.7532112254894, + "2024-08-01T16": 3104.6183509258817, + "2024-08-04T00": 2907.9805652547225, + "2024-08-02T14": 3112.732271714797, + "2024-08-04T09": 2909.3855639438466, + "2024-08-04T02": 2916.107448912298, + "2024-08-03T03": 2971.690228376648, + "2024-08-03T11": 2993.1544944804346, + "2024-07-31T09": 3318.3188079778165, + "2024-07-31T12": 3318.6938708818057, + "2024-08-05T11": 2257.599241416022, + "2024-08-03T18": 2905.455298366033, + "2024-08-01T08": 3176.136678552874, + "2024-07-31T10": 3313.221752332976, + "2024-08-03T17": 2910.353455443218, + "2024-07-31T03": 3293.0926254773817, + "2024-08-01T06": 3172.649019369437, + "2024-08-02T07": 3146.9386161771436, + "2024-08-02T19": 3009.8684824281927, + "2024-07-30T11": 3335.391571910874, + "2024-08-05T22": 2446.896970986999, + "2024-08-06T01": 2528.920122558688, + "2024-08-05T15": 2426.4401130332812, + "2024-07-31T18": 3304.6494052583225, + "2024-08-05T02": 2290.3010351945195, + "2024-08-05T12": 2250.188579985134, + "2024-07-30T21": 3274.341119216456, + "2024-08-06T07": 2511.5211066224733, + "2024-08-04T11": 2913.9554672246545, + "2024-08-05T05": 2324.3131788390733, + "2024-07-31T19": 3275.65924376031, + "2024-08-04T21": 2739.5582072839593, + "2024-07-30T14": 3322.035104458687, + "2024-08-01T18": 3097.3039147963514, + "2024-07-31T04": 3277.433923771512, + "2024-08-02T18": 3019.28232499224, + "2024-08-02T03": 3161.6643422245847, + "2024-08-04T01": 2897.7700375651566, + "2024-08-02T21": 2994.905825791376, + "2024-08-02T02": 3154.5927408688517, + "2024-08-02T10": 3149.599040637847, + "2024-08-04T23": 2704.9650248586777, + "2024-08-04T03": 2911.9802350257296, + "2024-08-01T05": 3166.9622837387847, + "2024-08-02T17": 3029.1910051021114, + "2024-07-31T16": 3298.8287651101887, + "2024-08-04T04": 2912.5866621457994, + "2024-08-01T02": 3193.8633268135395, + "2024-08-05T21": 2443.180417171059, + "2024-08-05T07": 2331.8371235985915, + "2024-08-05T00": 2628.8735130699283, + "2024-08-02T20": 3010.281580253381, + "2024-07-31T01": 3278.9002460240513, + "2024-07-31T22": 3233.1258094453997, + "2024-08-04T07": 2898.6103768981534, + "2024-08-04T05": 2907.3410704824955, + "2024-08-01T14": 3165.545712917224, + "2024-08-03T02": 2959.4554383318386, + "2024-08-01T04": 3163.2942285696276, + "2024-08-01T17": 3096.896105897972, + "2024-08-06T02": 2510.7515290551737, + "2024-08-04T14": 2870.6119040070166, + "2024-07-31T20": 3234.6392546549814, + "2024-08-03T21": 2891.485107651313, + "2024-08-06T08": 2482.2756072694838, + "2024-08-02T13": 3151.82368666432, + "2024-08-05T04": 2349.7151985249666, + "2024-08-01T03": 3183.4436289472515, + "2024-07-31T17": 3306.8069752229803, + "2024-07-31T07": 3323.5483017341894, + "2024-08-03T07": 2986.44031442835, + "2024-08-03T13": 3002.7656414749454, + "latest": 2455.17, + "2024-08-06T11": 2453.459629924287, + "2023-10-23": 1686.499262221828, + "2023-08-20": 1671.2576000814242, + "2024-02-23": 2941.9404144517216, + "2024-04-05": 3294.9210601271734, + "2023-12-19": 2217.8985157110114, + "2024-05-17": 3050.368537640859, + "2023-08-06": 1830.6881807210773, + "2023-12-02": 2103.732381694795, + "2024-06-11": 3527.985369085746, + "2024-04-26": 3139.223724464589, + "2024-01-08": 2260.422334037217, + "2023-10-31": 1802.2390433065395, + "2023-08-29": 1710.8912841814258, + "2023-09-09": 1634.0453244747537, + "2023-10-01": 1680.4357216898898, + "2024-03-07": 3809.534653835918, + "2023-10-12": 1546.311147980805, + "2024-04-22": 3197.878397981945, + "2024-06-24": 3321.4411778068215, + "2023-09-26": 1588.3146790811957, + "2023-08-24": 1662.8822118714863, + "2023-12-05": 2229.5982270850436, + "2024-02-19": 2912.9134569309467, + "2024-01-07": 2242.92882749182, + "2024-04-28": 3308.1346572578764, + "2023-10-18": 1572.011544858536, + "2023-10-07": 1640.1186588134608, + "2024-06-28": 3432.546246597025, + "2024-05-19": 3087.6507799600254, + "2024-05-12": 2926.915946090738, + "2023-09-16": 1636.6611825109562, + "2023-08-25": 1651.9817571605513, + "2024-03-09": 3917.432948907231, + "2023-09-05": 1630.3240293903898, + "2024-04-29": 3178.824872768968, + "2024-04-25": 3148.156683884522, + "2023-08-12": 1848.5237874789213, + "2024-06-12": 3549.1023198137414, + "2023-09-01": 1638.457230622314, + "2024-05-30": 3763.9743362008467, + "2024-06-05": 3812.1502583365036, + "2023-09-08": 1634.8619729540403, + "2024-03-22": 3405.48183404067, + "2023-08-10": 1850.6871387211859, + "2023-11-18": 1945.7789175206647, + "2023-09-13": 1598.9140487235034, + "2023-12-07": 2264.1757762203033, + "2024-06-30": 3389.1861961869904, + "2024-06-20": 3550.625824780388, + "2023-09-07": 1634.3060051177995, + "2024-03-26": 3610.887374058141, + "2024-05-14": 2904.5335614794594, + "2024-06-16": 3571.6671019457453, + "2024-02-22": 2977.4033833672484, + "2024-04-15": 3145.5972353127, + "2023-12-30": 2299.27431411389, + "2023-09-17": 1628.4732780267682, + "2024-04-17": 3032.1970616471344, + "2024-02-12": 2528.2241926247025, + "2023-10-26": 1804.5536753415352, + "2024-01-03": 2230.118502923756, + "2024-05-07": 3069.0544917080815, + "2024-01-22": 2377.4657415809816, + "2023-10-03": 1657.02789476554, + "2024-05-26": 3807.364815743826, + "2024-04-30": 3013.6947855206436, + "2023-12-24": 2292.603414419228, + "2023-09-24": 1592.171925952727, + "2024-01-16": 2537.8461865504237, + "2023-10-17": 1579.340490503536, + "2024-04-24": 3231.487870210601, + "2024-03-18": 3570.0680786728644, + "2024-02-17": 2779.7504824427433, + "2023-12-27": 2296.2182411536915, + "2023-09-03": 1635.0030725620195, + "2024-02-24": 2958.3252100329546, + "2024-01-06": 2241.8182078650243, + "2024-03-20": 3260.4225543635093, + "2023-11-21": 1997.5299587398706, + "2023-12-25": 2278.2531401717224, + "2023-09-22": 1593.7319756987447, + "2024-03-01": 3411.4895791211425, + "2023-10-02": 1720.8638221537046, + "2024-03-27": 3567.199641077595, + "2024-05-13": 2951.6633460598855, + "2024-05-06": 3130.2255273417018, + "2024-06-19": 3541.376623924257, + "2023-08-30": 1715.9447351886356, + "2023-10-06": 1634.2683083056747, + "2023-10-13": 1545.0007049052335, + "2024-02-05": 2298.5858429272675, + "2023-12-10": 2348.936937113697, + "2023-11-23": 2061.7212151047393, + "2024-01-13": 2548.5951539857506, + "2024-03-28": 3564.6484944572676, + "2023-08-05": 1830.3770021418813, + "2024-02-09": 2486.7991595720214, + "2023-10-09": 1591.7822453390916, + "2024-01-09": 2298.012239503609, + "2024-05-10": 3008.4276688561504, + "2023-08-18": 1676.305407110091, + "2023-11-05": 1885.1891781421405, + "2024-04-18": 3028.8294874968446, + "2023-10-22": 1634.4144043699887, + "2023-11-01": 1809.9347293122614, + "2024-05-20": 3125.448999464766, + "2023-12-08": 2359.5635330524424, + "2024-04-12": 3448.7375602336842, + "2024-03-12": 3999.3272099039905, + "2024-07-02": 3436.4275308498154, + "2023-09-11": 1584.1528990458285, + "2024-03-03": 3428.7819410221714, + "2024-02-04": 2299.4265724684906, + "2024-01-28": 2277.9574300035815, + "2024-01-26": 2247.718533416445, + "2023-11-07": 1886.025271039351, + "2023-11-25": 2081.4506856208604, + "2024-06-29": 3383.1807648078943, + "2024-02-25": 3038.6117233554296, + "2023-12-01": 2090.8666623401623, + "2024-02-28": 3314.8494159030956, + "2023-09-15": 1627.1087062566464, + "2023-12-21": 2227.436877288254, + "2024-06-01": 3791.7060066113604, + "2024-03-06": 3809.6152546376575, + "2023-09-30": 1675.708053330938, + "2023-12-12": 2218.382456514459, + "2023-10-04": 1642.6956137954494, + "2024-02-13": 2646.4629050667127, + "2023-09-20": 1629.9825637295735, + "2024-04-16": 3070.375186030533, + "2023-09-19": 1643.491792260601, + "2023-09-29": 1666.908593366313, + "2023-09-12": 1592.5300911426323, + "2024-03-02": 3422.5787366731174, + "2024-06-02": 3791.293168920246, + "2023-10-08": 1632.5610521456554, + "2023-11-20": 2023.6273713319138, + "2023-12-20": 2211.0648807022985, + "2023-12-31": 2295.466028963214, + "2023-11-06": 1894.531094921208, + "2024-05-29": 3798.142320765543, + "2023-08-22": 1654.2307705895992, + "2024-03-17": 3567.0046423018125, + "2023-09-18": 1639.32625399374, + "2024-07-01": 3471.513401689452, + "2024-04-01": 3535.3872581903934, + "2024-05-21": 3730.150143298192, + "2024-01-19": 2468.694670431303, + "2023-11-11": 2059.691463780839, + "2023-09-23": 1592.9439393752575, + "2023-08-15": 1839.4733469554126, + "2023-11-19": 1962.1984407552197, + "2024-01-25": 2215.0656363265157, + "2024-03-13": 4008.4805236146312, + "2024-01-21": 2472.0160592695374, + "2024-02-01": 2273.1432864862945, + "2024-03-15": 3697.5756690784724, + "2024-03-16": 3675.3969459884647, + "2024-06-23": 3493.4261105621144, + "2023-11-27": 2024.7559427086544, + "2024-01-10": 2411.611547455281, + "2024-06-03": 3800.800395042959, + "2024-01-02": 2380.7222627716787, + "2023-10-25": 1788.692674247013, + "2024-01-01": 2302.770349848175, + "2024-02-14": 2745.099291044224, + "2023-09-04": 1632.4443734796612, + "2023-09-06": 1630.553627874499, + "2024-04-03": 3314.2879535300726, + "2024-06-15": 3543.996298560991, + "2023-11-28": 2031.415143354589, + "2023-12-03": 2162.037001064913, + "2023-08-27": 1651.1841537694993, + "2024-04-11": 3535.8368606748554, + "2023-10-20": 1606.5432848705484, + "2023-10-10": 1578.5558058095608, + "2024-05-03": 3029.944346821867, + "2024-03-08": 3929.2306788103338, + "2024-01-14": 2538.8736196547684, + "2023-12-15": 2263.882257171251, + "2023-10-19": 1556.514618700774, + "2024-02-08": 2426.4523429986957, + "2023-11-12": 2051.289923748857, + "2023-12-22": 2308.306944466685, + "2024-06-21": 3503.4086322375006, + "2024-03-23": 3362.48793481736, + "2023-09-27": 1596.3807228815979, + "2024-03-04": 3522.624224920206, + "2023-09-10": 1622.8878733469708, + "2024-04-13": 3222.499860621223, + "2024-02-29": 3448.50143974521, + "2023-09-21": 1593.3856646450424, + "2023-11-08": 1887.1852795037541, + "2023-12-29": 2343.8291710796184, + "2023-12-04": 2228.718584367442, + "2024-04-10": 3510.3727506127843, + "2024-05-08": 3004.220940383108, + "2024-04-21": 3160.0744500944834, + "2023-10-11": 1562.8549057814826, + "2024-05-05": 3135.3330927964575, + "2024-03-21": 3516.237639992645, + "2024-05-23": 3793.7398128160985, + "2024-04-08": 3629.472537231993, + "2024-05-18": 3113.68870791231, + "2024-06-10": 3676.1390638746598, + "2023-10-05": 1635.8071668018285, + "2023-10-16": 1583.0219938427456, + "2024-05-22": 3747.0418368053024, + "2024-02-10": 2495.3644253912607, + "2024-04-07": 3391.934131364736, + "2024-02-20": 2930.558692672859, + "2023-11-17": 1961.6382846915578, + "2023-12-11": 2233.4536016954585, + "2023-11-26": 2075.4218333783856, + "2023-10-27": 1782.5209736384847, + "2024-02-02": 2305.1128776101946, + "2023-09-14": 1625.8528080021156, + "2024-01-27": 2268.124824707984, + "2024-03-30": 3512.9501512018664, + "2023-11-22": 2022.2359702805072, + "2023-09-28": 1627.8947971238524, + "2024-06-04": 3775.1330579601354, + "2023-11-16": 2040.4606507238966, + "2024-06-26": 3381.8123580500587, + "2024-01-18": 2515.8051722859677, + "2023-08-26": 1649.285330192964, + "2024-02-15": 2805.2145033779693, + "2023-10-28": 1786.7779765000002, + "2024-03-24": 3374.3778903277753, + "2024-07-04": 3147.0574805721967, + "2024-04-27": 3136.055848545026, + "2023-12-06": 2266.2584334605513, + "2024-01-30": 2316.354552355012, + "2023-11-14": 2041.7978598922618, + "2023-08-09": 1855.9314628077407, + "2024-06-06": 3843.7452064045483, + "2024-05-15": 2947.4008735314424, + "2023-11-10": 2098.007559052888, + "2024-01-23": 2221.502060888, + "2024-01-31": 2324.8627731319557, + "2024-05-11": 2916.2954645949453, + "2024-01-11": 2609.008959188797, + "2024-02-18": 2805.2015219288805, + "2024-03-11": 4027.7623335224225, + "2023-10-30": 1807.7457141222906, + "2023-12-17": 2215.3903323415457, + "2024-02-26": 3107.5455618426317, + "2024-06-17": 3534.693937325542, + "2024-01-05": 2245.422589130324, + "2024-06-14": 3484.8567080128055, + "2023-08-23": 1647.0333552641366, + "2024-06-13": 3495.310128436806, + "2023-08-28": 1648.499874372775, + "2024-03-14": 3919.753888578037, + "2024-02-21": 2920.9307937642025, + "2023-12-13": 2187.359727574453, + "2024-02-27": 3241.8718324083225, + "2023-08-13": 1848.6781665903065, + "2024-03-31": 3619.860033867718, + "2023-12-09": 2358.1513105130784, + "2024-04-02": 3308.0816238498596, + "2024-02-06": 2333.8509773090886, + "2024-05-31": 3763.999239968519, + "2024-04-09": 3620.5532915283566, + "2024-05-25": 3746.1617285885654, + "2023-11-04": 1837.2556369608346, + "2024-04-20": 3064.139645567434, + "2024-01-15": 2516.7430294778214, + "2023-12-28": 2383.326084047728, + "2024-06-09": 3689.903661827545, + "2024-02-07": 2375.5035757867963, + "2023-09-25": 1578.4425589096595, + "2024-03-19": 3300.3576156892395, + "2024-03-10": 3928.588844479554, + "2024-05-02": 2977.679973598208, + "2023-09-02": 1633.5154446535207, + "2024-01-12": 2604.1839946723853, + "2024-04-19": 3078.762155705607, + "2023-11-29": 2048.4794618957053, + "2023-10-15": 1555.6069132682233, + "2024-05-28": 3851.4960658873383, + "2023-11-30": 2035.5856128150128, + "2024-01-24": 2229.5761271233982, + "2023-08-11": 1846.4334362617592, + "2024-02-11": 2514.2240204384098, + "2024-06-08": 3685.037187207125, + "2023-11-15": 2010.6243510382453, + "2023-12-16": 2243.6231784401084, + "2024-03-29": 3540.054396186204, + "2024-04-04": 3331.9586108704134, + "2024-06-25": 3378.681897789209, + "2024-01-20": 2469.6469880842915, + "2023-10-21": 1611.0161735378147, + "2023-08-16": 1821.8319790596506, + "2024-05-24": 3719.2025991200912, + "2023-11-03": 1799.7320912800644, + "2023-08-31": 1699.0924346535755, + "2024-05-27": 3911.4958000180764, + "2024-01-04": 2239.449004040109, + "2023-11-13": 2058.926291897119, + "2023-10-24": 1810.5978038432124, + "2023-10-29": 1791.3292765096062, + "2024-05-16": 2992.142027099908, + "2024-01-29": 2270.720413251889, + "2024-07-03": 3307.497282099869, + "2024-05-04": 3121.114418683782, + "2023-11-02": 1832.9253555569676, + "2023-12-18": 2168.634993815699, + "2023-11-24": 2089.6268200219065, + "2023-08-21": 1671.7101325508556, + "2024-07-05": 2944.6400104742397, + "2024-03-25": 3490.6157713892703, + "2023-08-07": 1827.7778931325702, + "2024-06-07": 3800.5875633517303, + "2023-08-14": 1845.471727544141, + "2024-06-18": 3427.3268789370245, + "2024-05-01": 2920.6713086264863, + "2024-02-16": 2819.8693147377617, + "2024-06-22": 3498.600744950452, + "2024-03-05": 3682.621744949228, + "2024-04-06": 3337.250477175273, + "2023-12-23": 2292.445414040708, + "2023-12-14": 2282.347515370628, + "2024-02-03": 2307.63822350803, + "2024-06-27": 3419.1244390698284, + "2023-12-26": 2235.6352659808026, + "2023-11-09": 1943.613431942541, + "2023-10-14": 1552.9106074786898, + "2023-08-19": 1663.2305554855504, + "2024-05-09": 2996.4332682297763, + "2024-01-17": 2544.651699826289, + "2024-04-23": 3205.6089684957246, + "2023-08-08": 1840.3356250275526, + "2023-08-17": 1757.2955451414255, + "2024-04-14": 3053.206029700923 + }, + "USD ethereum_classic": { + "2024-07-31": 22.32704554877236, + "2024-08-02": 20.998293143220547, + "2024-07-30": 22.73224710705492, + "2024-08-01": 21.617207715101372, + "2024-08-06": 18.131883565960408, + "2024-07-20": 23.651906125456932, + "2024-07-21": 23.704244762350697, + "2024-07-15": 23.023909859470187, + "2024-08-03": 20.095694181740466, + "2024-07-18": 23.157351507003877, + "2024-07-11": 21.09773749847807, + "2024-07-17": 23.6190667478151, + "2024-07-22": 23.533263924979533, + "2024-07-12": 20.957046598969658, + "2024-07-24": 23.608824645154648, + "2024-07-06": 20.660210077230317, + "2024-07-08": 20.17829374800562, + "2024-07-07": 20.548681699599115, + "2024-07-13": 21.96442739127849, + "2024-07-09": 20.732296826108982, + "2024-07-23": 24.249368232802563, + "2024-07-10": 20.95587110284127, + "2024-07-14": 22.41788778045527, + "2024-07-29": 23.050825704755066, + "2024-07-27": 22.942255947769734, + "2024-07-28": 22.639870819216952, + "2024-07-19": 23.029985735457792, + "2024-08-04": 19.21901150157346, + "2024-07-26": 22.584987063636103, + "2024-08-05": 17.028924646653046, + "2024-07-25": 22.011164634251227, + "2024-07-16": 23.5926738992917, + "2024-08-02T16": 20.39764725, + "2024-08-02T11": 21.2371458, + "2024-07-31T00": 22.2444375, + "2024-08-05T18": 17.6381098, + "2024-07-31T11": 22.3497009, + "2024-08-05T23": 17.793557999999997, + "2024-08-02T06": 20.994032400000002, + "2024-08-01T13": 21.7595504, + "2024-08-05T01": 17.0530054, + "2024-08-02T00": 21.488642799999997, + "2024-08-06T06": 18.349385279999996, + "2024-08-03T23": 19.655155655259886, + "2024-08-01T11": 21.778451299999997, + "2024-08-05T19": 17.436623400000002, + "2024-08-04T19": 19.13043, + "2024-08-01T23": 21.599893400000003, + "2024-08-04T17": 18.6445122, + "2024-08-02T22": 20.326801, + "2024-08-02T01": 21.3110163, + "2024-08-02T05": 21.13659515, + "2024-08-03T20": 19.3170489, + "2024-07-31T14": 22.3599335, + "2024-08-03T12": 20.4744276, + "2024-07-31T05": 22.2051138, + "2024-08-02T08": 21.0425202, + "2024-08-05T14": 17.3646872, + "2024-08-01T07": 21.680239500000003, + "2024-08-03T06": 20.477655, + "2024-08-04T13": 19.640175, + "2024-08-06T11": 17.905728, + "2024-08-05T16": 17.782438999999997, + "2024-08-05T06": 16.199908151680877, + "2024-08-01T22": 21.6020554, + "2024-08-04T20": 19.29243834, + "2024-08-06T10": 17.9159103, + "2024-08-01T15": 21.298345500000003, + "2024-08-06T05": 18.174716760000003, + "2024-08-04T08": 19.488105, + "2024-08-01T00": 21.8827763, + "2024-08-04T18": 18.678038400000002, + "2024-07-31T15": 22.370824199999998, + "2024-08-03T19": 19.3748758, + "2024-08-02T12": 21.184948, + "2024-08-01T20": 20.9088607, + "2024-08-01T21": 21.290394799999998, + "2024-07-30T23": 22.2435475, + "2024-08-03T16": 19.885074999999997, + "2024-08-06T00": 18.173058795267224, + "2024-08-04T06": 19.80371408, + "2024-08-02T15": 20.32400797444099, + "2024-08-05T10": 16.372291800000003, + "2024-08-05T17": 17.810502000000003, + "2024-08-03T04": 20.3893859, + "2024-08-06T04": 18.1381585, + "2024-08-06T03": 18.087051199999998, + "2024-07-30T19": 22.191786, + "2024-08-02T04": 21.240653400000003, + "2024-08-02T23": 20.204105600000002, + "2024-08-05T08": 16.8818568, + "2024-08-02T09": 21.223731880000003, + "2024-08-04T12": 19.59024491918918, + "2024-08-04T22": 19.226883420000004, + "2024-07-31T23": 21.813017600000002, + "2024-08-04T10": 19.4798652, + "2024-07-30T16": 22.7027328, + "2024-08-05T20": 17.621762, + "2024-08-03T10": 20.48196, + "2024-08-04T16": 18.9063776, + "2024-07-31T06": 22.433492400000002, + "2024-07-31T02": 22.331532799999998, + "2024-08-03T09": 20.401826200000002, + "2024-08-04T15": 19.017249900000003, + "2024-08-03T00": 20.073669000000002, + "2024-07-30T17": 22.432064251475058, + "2024-08-03T15": 20.186466, + "2024-08-01T19": 20.77712, + "2024-07-30T13": 22.8674256, + "2024-08-03T22": 19.588828000000003, + "2024-07-30T22": 22.27057677974382, + "2024-07-31T13": 22.478461866654875, + "2024-07-30T18": 22.322854399999997, + "2024-08-03T05": 20.397333800000002, + "2024-08-05T09": 16.7430132, + "2024-07-30T12": 22.815436000000002, + "2024-08-03T01": 19.8255845, + "2024-08-05T03": 16.899155, + "2024-07-31T08": 22.339942500000003, + "2024-08-01T10": 21.708488399999997, + "2024-07-31T21": 21.751731200000002, + "2024-08-01T09": 21.7673676, + "2024-08-06T09": 17.885364, + "2024-08-03T08": 20.4001926, + "2024-08-03T14": 20.468025106380868, + "2024-08-01T12": 21.8486328, + "2024-07-30T20": 22.13530005154696, + "2024-07-30T15": 22.6522956, + "2024-08-01T01": 22.012293, + "2024-08-05T13": 16.399016, + "2024-08-01T16": 20.855391, + "2024-08-04T00": 19.648400600000002, + "2024-08-02T14": 20.92392392, + "2024-08-04T09": 19.558845100000003, + "2024-08-04T02": 19.748144, + "2024-08-03T03": 20.2958192, + "2024-08-03T11": 20.4528052, + "2024-07-31T09": 22.351279599999998, + "2024-07-31T12": 22.3674672, + "2024-08-05T11": 16.062087799999997, + "2024-08-03T18": 19.576287, + "2024-08-01T08": 21.658731600000003, + "2024-07-31T10": 22.349289118852898, + "2024-08-03T17": 19.5958808, + "2024-07-31T03": 22.355304399999998, + "2024-08-01T06": 21.789318, + "2024-08-02T07": 21.0729171, + "2024-08-02T19": 20.3977422, + "2024-07-30T11": 22.775229900162437, + "2024-08-05T22": 17.81902872, + "2024-08-06T01": 18.245472, + "2024-08-05T15": 17.642107529999997, + "2024-07-31T18": 22.3126344, + "2024-08-05T02": 16.89662, + "2024-08-05T12": 16.187780460000003, + "2024-07-30T21": 22.1742332, + "2024-08-06T07": 18.335307713362564, + "2024-08-04T11": 19.56601624, + "2024-08-05T05": 17.0189788, + "2024-07-31T19": 22.058504941060143, + "2024-08-04T21": 19.144446499999997, + "2024-07-30T14": 22.675464, + "2024-08-01T18": 20.541084799999997, + "2024-07-31T04": 22.21544466187146, + "2024-08-02T18": 20.425554, + "2024-08-02T03": 21.2104684, + "2024-08-04T01": 19.6084242, + "2024-08-02T21": 20.35962, + "2024-08-02T02": 21.131599499999997, + "2024-08-02T10": 21.2038728, + "2024-08-04T23": 19.0122018, + "2024-08-04T03": 19.737755, + "2024-08-01T05": 21.701754535965335, + "2024-08-02T17": 20.426720014939416, + "2024-07-31T16": 22.301299099999998, + "2024-08-04T04": 19.7479464, + "2024-08-01T02": 21.918596400000002, + "2024-08-05T21": 17.7932022, + "2024-08-05T07": 16.94, + "2024-08-05T00": 18.291399000000002, + "2024-08-02T20": 20.5276005, + "2024-07-31T01": 22.32586387, + "2024-07-31T22": 21.853223399999997, + "2024-08-04T07": 19.598430099999998, + "2024-08-04T05": 19.771931759999998, + "2024-08-01T14": 21.596925480000003, + "2024-08-03T02": 20.17354357895594, + "2024-08-01T04": 21.6687264, + "2024-08-01T17": 20.7232006, + "2024-08-06T02": 18.096874200000002, + "2024-08-04T14": 19.1317698, + "2024-07-31T20": 21.8314824, + "2024-08-03T21": 19.3736915510275, + "2024-08-06T08": 18.060469, + "2024-08-02T13": 21.3733158, + "2024-08-05T04": 17.259137000000003, + "2024-08-01T03": 21.92537339, + "2024-07-31T17": 22.336345452296193, + "2024-07-31T07": 22.4030529, + "2024-08-03T07": 20.514026480000002, + "2024-08-03T13": 20.43309604, + "latest": 17.85 + }, + "USD fantom": { + "2024-07-31": 0.43064692385209735, + "2024-08-02": 0.40488278197009514, + "2024-07-30": 0.45297066331178754, + "2024-08-01": 0.40809071353214016, + "2024-08-06": 0.31005757758012464, + "2024-07-20": 0.5213556075168528, + "2024-07-21": 0.5206005841418861, + "2024-07-15": 0.495869382606702, + "2024-08-03": 0.37974770830628396, + "2024-07-18": 0.4962263789077636, + "2024-07-11": 0.471031526966163, + "2024-07-17": 0.5221239213850473, + "2024-07-22": 0.5216142959820759, + "2024-07-12": 0.4658463843005151, + "2024-07-24": 0.4881726066551621, + "2024-07-06": 0.43548387931075344, + "2024-07-08": 0.43093095017110616, + "2024-07-07": 0.432303066287366, + "2024-07-13": 0.47920340694901237, + "2024-07-09": 0.4433481124951998, + "2024-07-23": 0.49745986416452725, + "2024-07-10": 0.47089477135695995, + "2024-07-14": 0.48625577672329434, + "2024-07-29": 0.46207786355901037, + "2024-07-27": 0.46016575127735687, + "2024-07-28": 0.44518768872532205, + "2024-07-19": 0.48758511690836326, + "2024-08-04": 0.3530093722003155, + "2024-07-26": 0.45132050400680473, + "2024-08-05": 0.29241834889560975, + "2024-07-25": 0.4384383088296017, + "2024-07-16": 0.5203017936178627, + "2024-08-02T16": 0.39747829456858963, + "2024-08-02T11": 0.4121153291379649, + "2024-07-31T00": 0.43309169999999997, + "2024-08-05T18": 0.29103381399999995, + "2024-07-31T11": 0.43076295, + "2024-08-05T23": 0.293218632, + "2024-08-02T06": 0.402493872, + "2024-08-01T13": 0.410902672, + "2024-08-05T01": 0.30757384299999996, + "2024-08-02T00": 0.41722416, + "2024-08-06T06": 0.316030534, + "2024-08-03T23": 0.3589088984, + "2024-08-01T11": 0.414879997, + "2024-08-05T19": 0.288009402, + "2024-08-04T19": 0.35042470000000003, + "2024-08-01T23": 0.413914701, + "2024-08-04T17": 0.33372278, + "2024-08-02T22": 0.38655882, + "2024-08-02T01": 0.41682869200000006, + "2024-08-02T05": 0.41014311724380526, + "2024-08-03T20": 0.35536174800000003, + "2024-07-31T14": 0.43340488, + "2024-08-03T12": 0.3953421358133223, + "2024-07-31T05": 0.424606566, + "2024-08-02T08": 0.406262522, + "2024-08-05T14": 0.29708018999999997, + "2024-08-01T07": 0.4083345846899664, + "2024-08-03T06": 0.38946468930872397, + "2024-08-04T13": 0.36609686, + "2024-08-06T11": 0.30460744320000005, + "2024-08-05T16": 0.29810853, + "2024-08-05T06": 0.271780974, + "2024-08-01T22": 0.41065886999999995, + "2024-08-04T20": 0.352180218, + "2024-08-06T10": 0.304600485, + "2024-08-01T15": 0.3992003, + "2024-08-06T05": 0.31318467000000005, + "2024-08-04T08": 0.3670506133717628, + "2024-08-01T00": 0.413463512, + "2024-08-04T18": 0.334485792, + "2024-07-31T15": 0.42742468399999994, + "2024-08-03T19": 0.356621618, + "2024-08-02T12": 0.40990875800000004, + "2024-08-01T20": 0.3941710138652548, + "2024-08-01T21": 0.4032800436876523, + "2024-07-30T23": 0.434673908, + "2024-08-03T16": 0.3675741125, + "2024-08-06T00": 0.30516101999999995, + "2024-08-04T06": 0.370570104, + "2024-08-02T15": 0.3933241642, + "2024-08-05T10": 0.28433980200000003, + "2024-08-05T17": 0.2959752193117036, + "2024-08-03T04": 0.39177390830000003, + "2024-08-06T04": 0.3101395, + "2024-08-06T03": 0.3099908492999999, + "2024-07-30T19": 0.439537311, + "2024-08-02T04": 0.4126242534252692, + "2024-08-02T23": 0.386704384, + "2024-08-05T08": 0.29057097663446596, + "2024-08-02T09": 0.4108663508, + "2024-08-04T12": 0.3663898832742482, + "2024-08-04T22": 0.3503207307185274, + "2024-07-31T23": 0.4115940487612634, + "2024-08-04T10": 0.368108484, + "2024-07-30T16": 0.4656212938602877, + "2024-08-05T20": 0.29082908, + "2024-08-03T10": 0.39115548, + "2024-08-04T16": 0.3397751856, + "2024-07-31T06": 0.43587356, + "2024-07-31T02": 0.4339132, + "2024-08-03T09": 0.39057208120000003, + "2024-08-04T15": 0.348666237, + "2024-08-03T00": 0.38519473299999996, + "2024-07-30T17": 0.4591015864918418, + "2024-08-03T15": 0.38514178200000004, + "2024-08-01T19": 0.38937121999999996, + "2024-07-30T13": 0.4729054, + "2024-08-03T22": 0.358895313, + "2024-07-30T22": 0.437173183, + "2024-07-31T13": 0.434095879, + "2024-07-30T18": 0.453254912, + "2024-08-03T05": 0.389267433, + "2024-08-05T09": 0.2903722576, + "2024-07-30T12": 0.4709058, + "2024-08-03T01": 0.3777048509, + "2024-08-05T03": 0.2934153285, + "2024-07-31T08": 0.4344139691080639, + "2024-08-01T10": 0.41378057999999995, + "2024-07-31T21": 0.413442832, + "2024-08-01T09": 0.414459474, + "2024-08-06T09": 0.30569167999999997, + "2024-08-03T08": 0.38994138959999997, + "2024-08-03T14": 0.394243575, + "2024-08-01T12": 0.4169430828597779, + "2024-07-30T20": 0.43936815, + "2024-07-30T15": 0.469540302, + "2024-08-01T01": 0.41495471500000003, + "2024-08-05T13": 0.27740508051988133, + "2024-08-01T16": 0.39152573999999996, + "2024-08-04T00": 0.35936784780000003, + "2024-08-02T14": 0.40770623999999994, + "2024-08-04T09": 0.36699069600000006, + "2024-08-04T02": 0.3617828301452268, + "2024-08-03T03": 0.39153352, + "2024-08-03T11": 0.391770636, + "2024-07-31T09": 0.435330155, + "2024-07-31T12": 0.4307886232, + "2024-08-05T11": 0.276435932, + "2024-08-03T18": 0.3563105177928143, + "2024-08-01T08": 0.41298513600000003, + "2024-07-31T10": 0.431992544, + "2024-08-03T17": 0.36054022399999996, + "2024-07-31T03": 0.432009259, + "2024-08-01T06": 0.412097973, + "2024-08-02T07": 0.4033634273776536, + "2024-08-02T19": 0.388476099, + "2024-07-30T11": 0.45908651462799455, + "2024-08-05T22": 0.29404998, + "2024-08-06T01": 0.31269378, + "2024-08-05T15": 0.29958862199999997, + "2024-07-31T18": 0.43147825440149945, + "2024-08-05T02": 0.298930202, + "2024-08-05T12": 0.278330613, + "2024-07-30T21": 0.43808606799999994, + "2024-08-06T07": 0.315311117, + "2024-08-04T11": 0.36831206499999997, + "2024-08-05T05": 0.29058256400000004, + "2024-07-31T19": 0.42466445412087805, + "2024-08-04T21": 0.3489327528811967, + "2024-07-30T14": 0.46950608000000005, + "2024-08-01T18": 0.3846458, + "2024-07-31T04": 0.42747933834559, + "2024-08-02T18": 0.3927069, + "2024-08-02T03": 0.41291976399999997, + "2024-08-04T01": 0.358288485, + "2024-08-02T21": 0.38391569999999997, + "2024-08-02T02": 0.410842256, + "2024-08-02T10": 0.41168688, + "2024-08-04T23": 0.343059288, + "2024-08-04T03": 0.36427401, + "2024-08-01T05": 0.41274806999999997, + "2024-08-02T17": 0.399320285, + "2024-07-31T16": 0.427233314, + "2024-08-04T04": 0.36635434484403523, + "2024-08-01T02": 0.41540392525047587, + "2024-08-05T21": 0.293952902, + "2024-08-05T07": 0.2914, + "2024-08-05T00": 0.336941563, + "2024-08-02T20": 0.3897547038, + "2024-07-31T01": 0.4354547773931659, + "2024-07-31T22": 0.4123722562267236, + "2024-08-04T07": 0.366083883, + "2024-08-04T05": 0.36767558100000003, + "2024-08-01T14": 0.40303303469070384, + "2024-08-03T02": 0.385690216, + "2024-08-01T04": 0.4100887873941845, + "2024-08-01T17": 0.390583371, + "2024-08-06T02": 0.3106279938, + "2024-08-04T14": 0.35484734999999995, + "2024-07-31T20": 0.414738189, + "2024-08-03T21": 0.359784, + "2024-08-06T08": 0.309279278, + "2024-08-02T13": 0.4196724, + "2024-08-05T04": 0.29251909622255606, + "2024-08-01T03": 0.41520599591626833, + "2024-07-31T17": 0.4294024677, + "2024-07-31T07": 0.43584484619999997, + "2024-08-03T07": 0.393078955, + "2024-08-03T13": 0.39276844417223017, + "latest": 0.305868 + }, + "USD filecoin": { + "2024-07-31": 4.318334206228315, + "2024-08-02": 4.0461527616973925, + "2024-07-30": 4.422032996605202, + "2024-08-01": 4.150620470990192, + "2024-08-06": 3.3773122745336526, + "2024-07-20": 4.689210322984871, + "2024-07-21": 4.66466484765461, + "2024-07-15": 4.31274762392486, + "2024-08-03": 3.805332328400535, + "2024-07-18": 4.51090466629842, + "2024-07-11": 4.089690772654018, + "2024-07-17": 4.594063104871014, + "2024-07-22": 4.6541163739647535, + "2024-07-12": 4.018303268381266, + "2024-07-24": 4.442179508126318, + "2024-07-06": 3.6854743730771964, + "2024-07-08": 3.7765629159686447, + "2024-07-07": 3.8367193632861976, + "2024-07-13": 4.23238754082201, + "2024-07-09": 3.8654620889542946, + "2024-07-23": 4.482756998441715, + "2024-07-10": 3.9126736805279325, + "2024-07-14": 4.260882074783119, + "2024-07-29": 4.561656641092287, + "2024-07-27": 4.608157197320969, + "2024-07-28": 4.528886532538974, + "2024-07-19": 4.449624605298049, + "2024-08-04": 3.5694662116048756, + "2024-07-26": 4.414857703595346, + "2024-08-05": 3.1518179905958426, + "2024-07-25": 4.162543395214572, + "2024-07-16": 4.436620061792932, + "2024-08-02T16": 3.9306561, + "2024-08-02T11": 4.09455768, + "2024-07-31T00": 4.32591825, + "2024-08-05T18": 3.2555968859999997, + "2024-07-31T11": 4.296935384999999, + "2024-08-05T23": 3.2583515399999996, + "2024-08-02T06": 4.03992732, + "2024-08-01T13": 4.2379648, + "2024-08-05T01": 3.20268636, + "2024-08-02T00": 4.15385816, + "2024-08-06T06": 3.4595236099999993, + "2024-08-03T23": 3.68693416, + "2024-08-01T11": 4.2277581, + "2024-08-05T19": 3.216521814, + "2024-08-04T19": 3.5392295000000003, + "2024-08-01T23": 4.156530828, + "2024-08-04T17": 3.437849007442019, + "2024-08-02T22": 3.8770523314192773, + "2024-08-02T01": 4.1118372050000005, + "2024-08-02T05": 4.0764504, + "2024-08-03T20": 3.62456991, + "2024-07-31T14": 4.334048800000001, + "2024-08-03T12": 3.91302384, + "2024-07-31T05": 4.3065523500000005, + "2024-08-02T08": 4.04563933, + "2024-08-05T14": 3.2368737199999997, + "2024-08-01T07": 4.15712845, + "2024-08-03T06": 3.9258161909999996, + "2024-08-04T13": 3.6927527, + "2024-08-06T11": 3.3950860800000005, + "2024-08-05T16": 3.3053120999999996, + "2024-08-05T06": 2.97579168, + "2024-08-01T22": 4.155548029999999, + "2024-08-04T20": 3.55179198, + "2024-08-06T10": 3.39612035, + "2024-08-01T15": 4.1099440000000005, + "2024-08-06T05": 3.4240189800000005, + "2024-08-04T08": 3.69574422, + "2024-08-01T00": 4.2140587390112385, + "2024-08-04T18": 3.4367990400000004, + "2024-07-31T15": 4.33122347, + "2024-08-03T19": 3.64415534, + "2024-08-02T12": 4.085996881, + "2024-08-01T20": 4.05689839, + "2024-08-01T21": 4.07824456, + "2024-07-30T23": 4.3287443, + "2024-08-03T16": 3.7471875, + "2024-08-06T00": 3.3446688, + "2024-08-04T06": 3.7249890740000002, + "2024-08-02T15": 3.89717702, + "2024-08-05T10": 3.02942406, + "2024-08-05T17": 3.2999458200000005, + "2024-08-03T04": 3.9170397900000005, + "2024-08-06T04": 3.3855228, + "2024-08-06T03": 3.3783170299999994, + "2024-07-30T19": 4.302807372, + "2024-08-02T04": 4.10126445, + "2024-08-02T23": 3.8660451200000003, + "2024-08-05T08": 3.1207644471863043, + "2024-08-02T09": 4.062603154, + "2024-08-04T12": 3.7061460000000004, + "2024-08-04T22": 3.57767577, + "2024-07-31T23": 4.2196492800000005, + "2024-08-04T10": 3.7020739199999997, + "2024-07-30T16": 4.4245836800000005, + "2024-08-05T20": 3.2408490728419492, + "2024-08-03T10": 3.89556888, + "2024-08-04T16": 3.50447496, + "2024-07-31T06": 4.34773879, + "2024-07-31T02": 4.34913, + "2024-08-03T09": 3.91051654, + "2024-08-04T15": 3.5356295400000004, + "2024-08-03T00": 3.87891196, + "2024-07-30T17": 4.35664902, + "2024-08-03T15": 3.8274339000000004, + "2024-08-01T19": 4.0305615, + "2024-07-30T13": 4.4421114, + "2024-08-03T22": 3.6674083850000003, + "2024-07-30T22": 4.30777793298809, + "2024-07-31T13": 4.345456675, + "2024-07-30T18": 4.33161344, + "2024-08-03T05": 3.92963326, + "2024-08-05T09": 3.09455692, + "2024-07-30T12": 4.4265145200000005, + "2024-08-03T01": 3.80831001, + "2024-08-05T03": 3.147378349063837, + "2024-07-31T08": 4.321054650000001, + "2024-08-01T10": 4.21076711, + "2024-07-31T21": 4.206300998000001, + "2024-08-01T09": 4.201561679999999, + "2024-08-06T09": 3.3950182, + "2024-08-03T08": 3.90321021, + "2024-08-03T14": 3.90785824, + "2024-08-01T12": 4.273376688, + "2024-07-30T20": 4.2767166, + "2024-07-30T15": 4.423598576642644, + "2024-08-01T01": 4.21552405, + "2024-08-05T13": 3.02581844, + "2024-08-01T16": 4.0121895, + "2024-08-04T00": 3.6968175899999998, + "2024-08-02T14": 4.071066719999999, + "2024-08-04T09": 3.70888473, + "2024-08-04T02": 3.7408541399999997, + "2024-08-03T03": 3.90135186, + "2024-08-03T11": 3.89522526, + "2024-07-31T09": 4.31631598, + "2024-07-31T12": 4.31058472, + "2024-08-05T11": 2.97938727, + "2024-08-03T18": 3.6464456999999997, + "2024-08-01T08": 4.176826920000001, + "2024-07-31T10": 4.299935039999999, + "2024-08-03T17": 3.6833460799999997, + "2024-07-31T03": 4.34208797, + "2024-08-01T06": 4.16096013, + "2024-08-02T07": 4.05371383, + "2024-08-02T19": 3.8940508529999995, + "2024-07-30T11": 4.41407285, + "2024-08-05T22": 3.2645548800000004, + "2024-08-06T01": 3.3950182, + "2024-08-05T15": 3.29107207, + "2024-07-31T18": 4.357066770283387, + "2024-08-05T02": 3.1653668, + "2024-08-05T12": 3.0103311, + "2024-07-30T21": 4.27688772, + "2024-08-06T07": 3.45531351, + "2024-08-04T11": 3.71610382, + "2024-08-05T05": 3.1278123200000003, + "2024-07-31T19": 4.299884280708563, + "2024-08-04T21": 3.54997021, + "2024-07-30T14": 4.415116800000001, + "2024-08-01T18": 3.9763384, + "2024-07-31T04": 4.319792653, + "2024-08-02T18": 3.913083, + "2024-08-02T03": 4.08823536, + "2024-08-04T01": 3.69381936, + "2024-08-02T21": 3.8993966999999996, + "2024-08-02T02": 4.0664591, + "2024-08-02T10": 4.07709582620053, + "2024-08-04T23": 3.53654942, + "2024-08-04T03": 3.7372814480000005, + "2024-08-01T05": 4.160460570000001, + "2024-08-02T17": 3.958735625, + "2024-07-31T16": 4.31631598, + "2024-08-04T04": 3.72572592, + "2024-08-01T02": 4.197816, + "2024-08-05T21": 3.2485846400000002, + "2024-08-05T07": 3.126, + "2024-08-05T00": 3.46037286, + "2024-08-02T20": 3.92371848, + "2024-07-31T01": 4.35499812, + "2024-07-31T22": 4.240784949, + "2024-08-04T07": 3.69881641, + "2024-08-04T05": 3.71873019, + "2024-08-01T14": 4.1822427200000005, + "2024-08-03T02": 3.8848652, + "2024-08-01T04": 4.13984616, + "2024-08-01T17": 3.9787745800000005, + "2024-08-06T02": 3.37228098, + "2024-08-04T14": 3.57446232, + "2024-07-31T20": 4.21335615, + "2024-08-03T21": 3.6478099999999998, + "2024-08-06T08": 3.41397896, + "2024-08-02T13": 4.13876924, + "2024-08-05T04": 3.13484325, + "2024-08-01T03": 4.18378142, + "2024-07-31T17": 4.32531247, + "2024-07-31T07": 4.3386546, + "2024-08-03T07": 3.935384628, + "2024-08-03T13": 3.897348, + "latest": 3.4 + }, + "USD flare": { + "2024-07-31": 0.01763, + "2024-08-02": 0.01726, + "2024-07-30": 0.01821, + "2024-08-01": 0.01706, + "2024-08-06": 0.01565, + "2024-07-20": 0.02031, + "2024-07-21": 0.02008, + "2024-07-15": 0.02066, + "2024-08-03": 0.01673, + "2024-07-18": 0.02053, + "2024-07-11": 0.01909775843856714, + "2024-07-17": 0.02131507670514139, + "2024-07-22": 0.019993008422101773, + "2024-07-12": 0.01894, + "2024-07-24": 0.01949, + "2024-07-06": 0.02127, + "2024-07-08": 0.020310907940231365, + "2024-07-07": 0.02092021800649585, + "2024-07-13": 0.01979, + "2024-07-09": 0.020079920552412863, + "2024-07-23": 0.01971, + "2024-07-10": 0.019570000076241635, + "2024-07-14": 0.01999, + "2024-07-29": 0.01874, + "2024-07-27": 0.01913, + "2024-07-28": 0.01888, + "2024-07-19": 0.020232637428630545, + "2024-08-04": 0.01595, + "2024-07-26": 0.0191, + "2024-08-05": 0.01446, + "2024-07-25": 0.01839, + "2024-07-16": 0.02092, + "2024-08-02T16": 0.017067286172754277, + "2024-08-02T11": 0.01743, + "2024-07-31T00": 0.01806, + "2024-08-05T18": 0.014793198781728073, + "2024-07-31T11": 0.01758, + "2024-08-05T23": 0.01528, + "2024-08-02T06": 0.01661, + "2024-08-01T13": 0.017444012978219493, + "2024-08-05T01": 0.01455, + "2024-08-02T00": 0.0172, + "2024-08-06T06": 0.01586, + "2024-08-03T23": 0.0166, + "2024-08-01T11": 0.01718, + "2024-08-05T19": 0.014700901817552414, + "2024-08-04T19": 0.01605, + "2024-08-01T23": 0.01715001420588033, + "2024-08-04T17": 0.01539, + "2024-08-02T22": 0.01672, + "2024-08-02T01": 0.017, + "2024-08-02T05": 0.01669, + "2024-08-03T20": 0.01633, + "2024-07-31T14": 0.01779, + "2024-08-03T12": 0.01682, + "2024-07-31T05": 0.0176, + "2024-08-02T08": 0.01734, + "2024-08-05T14": 0.01437, + "2024-08-01T07": 0.01701, + "2024-08-03T06": 0.01682268588801966, + "2024-08-04T13": 0.016534766065647327, + "2024-08-06T11": 0.01580341014822182, + "2024-08-05T16": 0.01523, + "2024-08-05T06": 0.01385, + "2024-08-01T22": 0.01713034638530674, + "2024-08-04T20": 0.0158428695700372, + "2024-08-06T10": 0.01580216639775928, + "2024-08-01T15": 0.01723, + "2024-08-06T05": 0.01565568777156753, + "2024-08-04T08": 0.0166, + "2024-08-01T00": 0.01727, + "2024-08-04T18": 0.01591, + "2024-07-31T15": 0.017684412428447704, + "2024-08-03T19": 0.01629, + "2024-08-02T12": 0.0175, + "2024-08-01T20": 0.016912698639250212, + "2024-08-01T21": 0.017, + "2024-07-30T23": 0.01799, + "2024-08-03T16": 0.01701048850989023, + "2024-08-06T00": 0.0155, + "2024-08-04T06": 0.01674, + "2024-08-02T15": 0.01693, + "2024-08-05T10": 0.01451, + "2024-08-05T17": 0.01507, + "2024-08-03T04": 0.0166, + "2024-08-06T04": 0.01561, + "2024-08-06T03": 0.015622396218467059, + "2024-07-30T19": 0.01808543169139331, + "2024-08-02T04": 0.01673, + "2024-08-02T23": 0.01664, + "2024-08-05T08": 0.01441, + "2024-08-02T09": 0.01736, + "2024-08-04T12": 0.01655, + "2024-08-04T22": 0.01592, + "2024-07-31T23": 0.01727, + "2024-08-04T10": 0.0166429205126366, + "2024-07-30T16": 0.0181, + "2024-08-05T20": 0.014983075197110859, + "2024-08-03T10": 0.01684350619284529, + "2024-08-04T16": 0.01556, + "2024-07-31T06": 0.01786, + "2024-07-31T02": 0.01797, + "2024-08-03T09": 0.01677, + "2024-08-04T15": 0.01584, + "2024-08-03T00": 0.01673, + "2024-07-30T17": 0.01804, + "2024-08-03T15": 0.01679, + "2024-08-01T19": 0.01682, + "2024-07-30T13": 0.01821, + "2024-08-03T22": 0.01657, + "2024-07-30T22": 0.01795, + "2024-07-31T13": 0.01791, + "2024-07-30T18": 0.01804, + "2024-08-03T05": 0.01667, + "2024-08-05T09": 0.01444, + "2024-07-30T12": 0.01828, + "2024-08-03T01": 0.01654, + "2024-08-05T03": 0.01447, + "2024-07-31T08": 0.017589094768520056, + "2024-08-01T10": 0.017064647457867024, + "2024-07-31T21": 0.01736, + "2024-08-01T09": 0.017074509170843744, + "2024-08-06T09": 0.01575, + "2024-08-03T08": 0.01678, + "2024-08-03T14": 0.01689785242679097, + "2024-08-01T12": 0.017327887816344437, + "2024-07-30T20": 0.01797, + "2024-07-30T15": 0.01804, + "2024-08-01T01": 0.01743, + "2024-08-05T13": 0.013963231880327612, + "2024-08-01T16": 0.01691047722280919, + "2024-08-04T00": 0.01664, + "2024-08-02T14": 0.01744, + "2024-08-04T09": 0.01662, + "2024-08-04T02": 0.01683, + "2024-08-03T03": 0.01658, + "2024-08-03T11": 0.01675, + "2024-07-31T09": 0.01757, + "2024-07-31T12": 0.01768, + "2024-08-05T11": 0.01393, + "2024-08-03T18": 0.01668, + "2024-08-01T08": 0.01707, + "2024-07-31T10": 0.017612586056939362, + "2024-08-03T17": 0.01686, + "2024-07-31T03": 0.01795, + "2024-08-01T06": 0.01701, + "2024-08-02T07": 0.01679465298657487, + "2024-08-02T19": 0.01727, + "2024-07-30T11": 0.0183, + "2024-08-05T22": 0.01522, + "2024-08-06T01": 0.01585, + "2024-08-05T15": 0.01474, + "2024-07-31T18": 0.01771, + "2024-08-05T02": 0.014474644169603305, + "2024-08-05T12": 0.01399, + "2024-07-30T21": 0.01796, + "2024-08-06T07": 0.01609, + "2024-08-04T11": 0.016630150067467847, + "2024-08-05T05": 0.01444, + "2024-07-31T19": 0.01751, + "2024-08-04T21": 0.01587, + "2024-07-30T14": 0.01802, + "2024-08-01T18": 0.01671, + "2024-07-31T04": 0.0177, + "2024-08-02T18": 0.01737, + "2024-08-02T03": 0.016764506139051682, + "2024-08-04T01": 0.01666, + "2024-08-02T21": 0.01696, + "2024-08-02T02": 0.01686, + "2024-08-02T10": 0.01719, + "2024-08-04T23": 0.01573, + "2024-08-04T03": 0.01676, + "2024-08-01T05": 0.01706, + "2024-08-02T17": 0.01703, + "2024-07-31T16": 0.017671885661802715, + "2024-08-04T04": 0.016672498651255876, + "2024-08-01T02": 0.01725, + "2024-08-05T21": 0.01525, + "2024-08-05T07": 0.01434, + "2024-08-05T00": 0.015213000857112441, + "2024-08-02T20": 0.01715, + "2024-07-31T01": 0.01802, + "2024-07-31T22": 0.01729, + "2024-08-04T07": 0.01672, + "2024-08-04T05": 0.01682, + "2024-08-01T14": 0.01734, + "2024-08-03T02": 0.0166, + "2024-08-01T04": 0.017, + "2024-08-01T17": 0.01683, + "2024-08-06T02": 0.0156, + "2024-08-04T14": 0.016020836298743485, + "2024-07-31T20": 0.01728, + "2024-08-03T21": 0.01629, + "2024-08-06T08": 0.0161, + "2024-08-02T13": 0.01785, + "2024-08-05T04": 0.01449, + "2024-08-01T03": 0.01711, + "2024-07-31T17": 0.01769, + "2024-07-31T07": 0.01764490275317558, + "2024-08-03T07": 0.01675, + "2024-08-03T13": 0.01685, + "latest": 0.01590472 + }, + "USD flow": { + "2024-07-31": 0.681965651150363, + "2024-08-02": 0.6985099292422321, + "2024-07-30": 0.6625130252288813, + "2024-08-01": 0.6713588180562747, + "2024-08-06": 0.5074338030349546, + "2024-07-20": 0.6421397916312632, + "2024-07-21": 0.6510973223462865, + "2024-07-15": 0.5848197417831521, + "2024-08-03": 0.591500377480221, + "2024-07-18": 0.6165627838531885, + "2024-07-11": 0.5526651377350303, + "2024-07-17": 0.6176562993333411, + "2024-07-22": 0.6539698705373936, + "2024-07-12": 0.5449317266561473, + "2024-07-24": 0.602352317367184, + "2024-07-06": 0.5083696501950137, + "2024-07-08": 0.5049242843834498, + "2024-07-07": 0.541176033973014, + "2024-07-13": 0.5565001251141938, + "2024-07-09": 0.5227089538016407, + "2024-07-23": 0.6299378323984198, + "2024-07-10": 0.5442383427165549, + "2024-07-14": 0.5743235597625703, + "2024-07-29": 0.6556033708922862, + "2024-07-27": 0.6747434147187781, + "2024-07-28": 0.6799094559415592, + "2024-07-19": 0.6080584013315211, + "2024-08-04": 0.5593248012196703, + "2024-07-26": 0.6315664896781336, + "2024-08-05": 0.5296999631546392, + "2024-07-25": 0.6658594573225695, + "2024-07-16": 0.6267229527124681, + "2024-08-02T16": 0.6473304147541461, + "2024-08-02T11": 0.6644258538199169, + "2024-07-31T00": 0.6802030047065432, + "2024-08-05T18": 0.5207058450317261, + "2024-07-31T11": 0.6849662054604693, + "2024-08-05T23": 0.5144508521553309, + "2024-08-02T06": 0.6801246321725046, + "2024-08-01T13": 0.6819065240286275, + "2024-08-05T01": 0.5097074639883987, + "2024-08-02T00": 0.6985099292422321, + "2024-08-06T06": 0.5311750046390384, + "2024-08-03T23": 0.5597543797027148, + "2024-08-01T11": 0.6888537860826052, + "2024-08-05T19": 0.5032168448968124, + "2024-08-04T19": 0.5299806546412529, + "2024-08-01T23": 0.6932783174250902, + "2024-08-04T17": 0.5228615373105729, + "2024-08-02T22": 0.624764353911167, + "2024-08-02T01": 0.6956736666341486, + "2024-08-02T05": 0.6912820338072019, + "2024-08-03T20": 0.5436639588906323, + "2024-07-31T14": 0.7070604029934743, + "2024-08-03T12": 0.5900662341404477, + "2024-07-31T05": 0.676986812232814, + "2024-08-02T08": 0.681452314712657, + "2024-08-05T14": 0.4938386643189975, + "2024-08-01T07": 0.6590465173863236, + "2024-08-03T06": 0.595545892695027, + "2024-08-04T13": 0.5622089593102482, + "2024-08-06T11": 0.5170758232920531, + "2024-08-05T16": 0.5164150146901061, + "2024-08-05T06": 0.475387384604379, + "2024-08-01T22": 0.6696315164349805, + "2024-08-04T20": 0.5391872625961529, + "2024-08-06T10": 0.5206694877262065, + "2024-08-01T15": 0.6736142665786319, + "2024-08-06T05": 0.5253767188717534, + "2024-08-04T08": 0.555855690516445, + "2024-08-01T00": 0.6713588180562747, + "2024-08-04T18": 0.5248132708654163, + "2024-07-31T15": 0.7037153312583335, + "2024-08-03T19": 0.5440155446305381, + "2024-08-02T12": 0.6598032167746678, + "2024-08-01T20": 0.6404964807557205, + "2024-08-01T21": 0.6508433927049249, + "2024-07-30T23": 0.6842264148777446, + "2024-08-03T16": 0.5667745072803891, + "2024-08-06T00": 0.5074338030349546, + "2024-08-04T06": 0.5608532376466856, + "2024-08-02T15": 0.6430733811935879, + "2024-08-05T10": 0.47629041581384385, + "2024-08-05T17": 0.5164603219987748, + "2024-08-03T04": 0.6037845341344202, + "2024-08-06T04": 0.522089897663473, + "2024-08-06T03": 0.528013063636113, + "2024-07-30T19": 0.6860542072211328, + "2024-08-02T04": 0.6947438355055976, + "2024-08-02T23": 0.6119774075157187, + "2024-08-05T08": 0.48426136367977995, + "2024-08-02T09": 0.678242582556553, + "2024-08-04T12": 0.5600438106839878, + "2024-08-04T22": 0.5342513728905833, + "2024-07-31T23": 0.6723564180397031, + "2024-08-04T10": 0.5548428063958275, + "2024-07-30T16": 0.6880487885165217, + "2024-08-05T20": 0.5073371899961953, + "2024-08-03T10": 0.594560967123038, + "2024-08-04T16": 0.5294887579121295, + "2024-07-31T06": 0.6886686897142804, + "2024-07-31T02": 0.6920603289362157, + "2024-08-03T09": 0.5949548677224388, + "2024-08-04T15": 0.5393338987303322, + "2024-08-03T00": 0.6043343726805382, + "2024-07-30T17": 0.7029771454409482, + "2024-08-03T15": 0.5840686969360251, + "2024-08-01T19": 0.6395042014236592, + "2024-07-30T13": 0.6787019723749974, + "2024-08-03T22": 0.555391747471766, + "2024-07-30T22": 0.6838485731178048, + "2024-07-31T13": 0.6946531508257192, + "2024-07-30T18": 0.6864816977680973, + "2024-08-03T05": 0.5954597915645994, + "2024-08-05T09": 0.4755165441485589, + "2024-07-30T12": 0.6843957289771615, + "2024-08-03T01": 0.585381870558791, + "2024-08-05T03": 0.48275973128277494, + "2024-07-31T08": 0.6929058249788304, + "2024-08-01T10": 0.6859320922516128, + "2024-07-31T21": 0.6663279404540877, + "2024-08-01T09": 0.6732779870236654, + "2024-08-06T09": 0.5222827227436038, + "2024-08-03T08": 0.5984057488243334, + "2024-08-03T14": 0.5880884303670841, + "2024-08-01T12": 0.6975281509604032, + "2024-07-30T20": 0.6790827486832607, + "2024-07-30T15": 0.6780239950658589, + "2024-08-01T01": 0.6823836165271359, + "2024-08-05T13": 0.4524302126054111, + "2024-08-01T16": 0.6583448896567917, + "2024-08-04T00": 0.5593248012196703, + "2024-08-02T14": 0.6698140760527113, + "2024-08-04T09": 0.5540461516794178, + "2024-08-04T02": 0.5570090053442938, + "2024-08-03T03": 0.598839075892533, + "2024-08-03T11": 0.5918768115508881, + "2024-07-31T09": 0.6952796694382612, + "2024-07-31T12": 0.6923113247272775, + "2024-08-05T11": 0.4618060375241765, + "2024-08-03T18": 0.5491695467670558, + "2024-08-01T08": 0.664422990254941, + "2024-07-31T10": 0.6922274737417706, + "2024-08-03T17": 0.5636736376796896, + "2024-07-31T03": 0.6723870241819371, + "2024-08-01T06": 0.6640115822840608, + "2024-08-02T07": 0.6788332706060082, + "2024-08-02T19": 0.6290739295595396, + "2024-07-30T11": 0.6837970481257071, + "2024-08-05T22": 0.5086571622753386, + "2024-08-06T01": 0.5328172926357533, + "2024-08-05T15": 0.506676107322186, + "2024-07-31T18": 0.6924789893014253, + "2024-08-05T02": 0.4826685502502716, + "2024-08-05T12": 0.46373688261632734, + "2024-07-30T21": 0.6797371121636417, + "2024-08-06T07": 0.5317975374988042, + "2024-08-04T11": 0.5579238764182458, + "2024-08-05T05": 0.4831227386249818, + "2024-07-31T19": 0.6873735605203459, + "2024-08-04T21": 0.5361590545682832, + "2024-07-30T14": 0.674112221528493, + "2024-08-01T18": 0.6527294532539921, + "2024-07-31T04": 0.6779097507820648, + "2024-08-02T18": 0.6356637369542109, + "2024-08-02T03": 0.6890086433354694, + "2024-08-04T01": 0.5592237028113174, + "2024-08-02T21": 0.629993324311356, + "2024-08-02T02": 0.6955832044869019, + "2024-08-02T10": 0.6737627878351178, + "2024-08-04T23": 0.5389143711457007, + "2024-08-04T03": 0.5616992788658662, + "2024-08-01T05": 0.6535887585514667, + "2024-08-02T17": 0.6405925593761704, + "2024-07-31T16": 0.698057314130058, + "2024-08-04T04": 0.5588811820306565, + "2024-08-01T02": 0.6867158666306549, + "2024-08-05T21": 0.509364995255215, + "2024-08-05T07": 0.46363077940623576, + "2024-08-05T00": 0.5307733682779668, + "2024-08-02T20": 0.6289362165270452, + "2024-07-31T01": 0.6867388588912895, + "2024-07-31T22": 0.6710604185477581, + "2024-08-04T07": 0.5620758463423748, + "2024-08-04T05": 0.557068558652826, + "2024-08-01T14": 0.6798777477070429, + "2024-08-03T02": 0.5886918305608395, + "2024-08-01T04": 0.6766114555769427, + "2024-08-01T17": 0.6494400825805944, + "2024-08-06T02": 0.5262453317740649, + "2024-08-04T14": 0.5592331420420611, + "2024-07-31T20": 0.6690822011431086, + "2024-08-03T21": 0.5447213193172272, + "2024-08-06T08": 0.5363678128735256, + "2024-08-02T13": 0.6613695565151858, + "2024-08-05T04": 0.4758654213406017, + "2024-08-01T03": 0.6828919450053855, + "2024-07-31T17": 0.6901044356791092, + "2024-07-31T07": 0.6971397930386792, + "2024-08-03T07": 0.5961946131024143, + "2024-08-03T13": 0.5905824658700913, + "latest": 0.515471 + }, + "USD hedera": { + "2024-07-31": 0.06570328767425551, + "2024-08-02": 0.06093149928796677, + "2024-07-30": 0.06662566794295494, + "2024-08-01": 0.06216919924210415, + "2024-08-06": 0.05465060332899578, + "2024-07-20": 0.0746259591857448, + "2024-07-21": 0.07377637486130702, + "2024-07-15": 0.07440449517968652, + "2024-08-03": 0.05846034162921176, + "2024-07-18": 0.07444888708607376, + "2024-07-11": 0.0668, + "2024-07-17": 0.07741432812036483, + "2024-07-22": 0.07215852744800255, + "2024-07-12": 0.06594055429217406, + "2024-07-24": 0.06820795540775139, + "2024-07-06": 0.06800662767184291, + "2024-07-08": 0.0658, + "2024-07-07": 0.06750595240703904, + "2024-07-13": 0.06832135170624055, + "2024-07-09": 0.0673766088307683, + "2024-07-23": 0.06953839865148086, + "2024-07-10": 0.06707565740138442, + "2024-07-14": 0.0711147531204219, + "2024-07-29": 0.0684165452566318, + "2024-07-27": 0.06890377090814345, + "2024-07-28": 0.06816084045128509, + "2024-07-19": 0.07305335692844855, + "2024-08-04": 0.05633188537979161, + "2024-07-26": 0.06747977949396343, + "2024-08-05": 0.05020910297660031, + "2024-07-25": 0.06519198011075661, + "2024-07-16": 0.0767812525218559, + "2024-08-02T16": 0.060048915, + "2024-08-02T11": 0.061338432400000004, + "2024-07-31T00": 0.06584353500000001, + "2024-08-05T18": 0.052294044199999994, + "2024-07-31T11": 0.06590373299999999, + "2024-08-05T23": 0.05241048, + "2024-08-02T06": 0.0609136704, + "2024-08-01T13": 0.0624100288, + "2024-08-05T01": 0.0504892909, + "2024-08-02T00": 0.063822508, + "2024-08-06T06": 0.056040879999999994, + "2024-08-03T23": 0.0580474752, + "2024-08-01T11": 0.0621970181, + "2024-08-05T19": 0.05171964600000001, + "2024-08-04T19": 0.056041965000000006, + "2024-08-01T23": 0.0634009822, + "2024-08-04T17": 0.054554682, + "2024-08-02T22": 0.059332284, + "2024-08-02T01": 0.0631837164, + "2024-08-02T05": 0.061546408, + "2024-08-03T20": 0.0566020512, + "2024-07-31T14": 0.06617021, + "2024-08-03T12": 0.059364848399999996, + "2024-07-31T05": 0.065685546, + "2024-08-02T08": 0.0610293036, + "2024-08-05T14": 0.0518039833, + "2024-08-01T07": 0.0618821405, + "2024-08-03T06": 0.059435144999999995, + "2024-08-04T13": 0.05827085, + "2024-08-06T11": 0.054217344, + "2024-08-05T16": 0.053317296, + "2024-08-05T06": 0.046896717, + "2024-08-01T22": 0.0635172369, + "2024-08-04T20": 0.056070929400000004, + "2024-08-06T10": 0.05421788599999999, + "2024-08-01T15": 0.060569700000000004, + "2024-08-06T05": 0.055432686, + "2024-08-04T08": 0.0579546261, + "2024-08-01T00": 0.06299920340000001, + "2024-08-04T18": 0.0545550624, + "2024-07-31T15": 0.0658429933, + "2024-08-03T19": 0.056605813, + "2024-08-02T12": 0.061346413100000004, + "2024-08-01T20": 0.0620672487, + "2024-08-01T21": 0.06317182839999999, + "2024-07-30T23": 0.06575092669999999, + "2024-08-03T16": 0.0575468075, + "2024-08-06T00": 0.054190836, + "2024-08-04T06": 0.05866360600000001, + "2024-08-02T15": 0.05944169, + "2024-08-05T10": 0.048986857200000004, + "2024-08-05T17": 0.05320137030000001, + "2024-08-03T04": 0.0591901575, + "2024-08-06T04": 0.054924705000000004, + "2024-08-06T03": 0.054791360299999994, + "2024-07-30T19": 0.0654157872, + "2024-08-02T04": 0.061954840362216185, + "2024-08-02T23": 0.059323968000000005, + "2024-08-05T08": 0.050405544000000004, + "2024-08-02T09": 0.061387161600000004, + "2024-08-04T12": 0.058170900000000005, + "2024-08-04T22": 0.0561829872285371, + "2024-07-31T23": 0.06297984, + "2024-08-04T10": 0.0578400587029399, + "2024-07-30T16": 0.066778624, + "2024-08-05T20": 0.052255224999999995, + "2024-08-03T10": 0.0589880448, + "2024-08-04T16": 0.055480025599999996, + "2024-07-31T06": 0.06668065699999999, + "2024-07-31T02": 0.06628674, + "2024-08-03T09": 0.0589974455, + "2024-08-04T15": 0.0560524197, + "2024-08-03T00": 0.0594120681, + "2024-07-30T17": 0.0659195586, + "2024-08-03T15": 0.0583708653, + "2024-08-01T19": 0.060962867000000004, + "2024-07-30T13": 0.06678664, + "2024-08-03T22": 0.057467225000000004, + "2024-07-30T22": 0.06582090639999999, + "2024-07-31T13": 0.0664887356, + "2024-07-30T18": 0.065678976, + "2024-08-03T05": 0.059417680223638254, + "2024-08-05T09": 0.050409072000000006, + "2024-07-30T12": 0.06668666, + "2024-08-03T01": 0.05832816800000001, + "2024-08-05T03": 0.04959752, + "2024-07-31T08": 0.0665200525, + "2024-08-01T10": 0.0622270022, + "2024-07-31T21": 0.062676174, + "2024-08-01T09": 0.062343819599999996, + "2024-08-06T09": 0.05441632, + "2024-08-03T08": 0.0590226924, + "2024-08-03T14": 0.059171513499999995, + "2024-08-01T12": 0.06256744800000001, + "2024-07-30T20": 0.065370383, + "2024-07-30T15": 0.066577356, + "2024-08-01T01": 0.06307791500000001, + "2024-08-05T13": 0.0480171188, + "2024-08-01T16": 0.059908035, + "2024-08-04T00": 0.0580757151, + "2024-08-02T14": 0.0612658568, + "2024-08-04T09": 0.058066883, + "2024-08-04T02": 0.058344972, + "2024-08-03T03": 0.0588498852, + "2024-08-03T11": 0.05895044, + "2024-07-31T09": 0.066474065, + "2024-07-31T12": 0.066013012, + "2024-08-05T11": 0.0477362049, + "2024-08-03T18": 0.056620338, + "2024-08-01T08": 0.062267604000000004, + "2024-07-31T10": 0.06596832, + "2024-08-03T17": 0.056859032, + "2024-07-31T03": 0.0660661232, + "2024-08-01T06": 0.0621295416, + "2024-08-02T07": 0.060960581900000005, + "2024-08-02T19": 0.059375210399999996, + "2024-07-30T11": 0.0666759951, + "2024-08-05T22": 0.052708959, + "2024-08-06T01": 0.055066514999999996, + "2024-08-05T15": 0.05292332069999999, + "2024-07-31T18": 0.06397888, + "2024-08-05T02": 0.04969006, + "2024-08-05T12": 0.0481252932, + "2024-07-30T21": 0.06541264792580702, + "2024-08-06T07": 0.055837386, + "2024-08-04T11": 0.0581603231, + "2024-08-05T05": 0.049297042, + "2024-07-31T19": 0.06335093673825148, + "2024-08-04T21": 0.055953768699999996, + "2024-07-30T14": 0.066306736, + "2024-08-01T18": 0.0598049288, + "2024-07-31T04": 0.06575618829999999, + "2024-08-02T18": 0.0598401, + "2024-08-02T03": 0.062042868, + "2024-08-04T01": 0.057915809500000005, + "2024-08-02T21": 0.059320620000000004, + "2024-08-02T02": 0.0619560513, + "2024-08-02T10": 0.061253412, + "2024-08-04T23": 0.055377286, + "2024-08-04T03": 0.0582838416, + "2024-08-01T05": 0.062182045799999995, + "2024-08-02T17": 0.060242715, + "2024-07-31T16": 0.0655944082, + "2024-08-04T04": 0.0582744309, + "2024-08-01T02": 0.0628373076, + "2024-08-05T21": 0.052409432000000006, + "2024-08-05T07": 0.04982, + "2024-08-05T00": 0.054564342700000004, + "2024-08-02T20": 0.05966489429999999, + "2024-07-31T01": 0.066184774, + "2024-07-31T22": 0.06303133038669705, + "2024-08-04T07": 0.0580757151, + "2024-08-04T05": 0.058364376, + "2024-08-01T14": 0.061464174200000006, + "2024-08-03T02": 0.058852212400000006, + "2024-08-01T04": 0.061967760000000004, + "2024-08-01T17": 0.0598414891, + "2024-08-06T02": 0.054620748000000004, + "2024-08-04T14": 0.0566856147, + "2024-07-31T20": 0.0626355626, + "2024-08-03T21": 0.056895842, + "2024-08-06T08": 0.054951853599999996, + "2024-08-02T13": 0.06195164, + "2024-08-05T04": 0.049517524, + "2024-08-01T03": 0.06286666299999999, + "2024-07-31T17": 0.06430507591895569, + "2024-07-31T07": 0.06677929199999999, + "2024-08-03T07": 0.059536228, + "2024-08-03T13": 0.0591497508, + "latest": 0.054098 + }, + "USD injective": { + "2024-07-31": 23.059648730161737, + "2024-08-02": 20.763266122099672, + "2024-07-30": 24.09180424806856, + "2024-08-01": 21.46367505750249, + "2024-08-06": 16.355686199866717, + "2024-07-20": 27.12718365252579, + "2024-07-21": 27.32958200180076, + "2024-07-15": 22.061881700798295, + "2024-08-03": 19.414077222968228, + "2024-07-18": 25.863523231707205, + "2024-07-11": 20.45171142981854, + "2024-07-17": 25.909690866932813, + "2024-07-22": 26.633079436031803, + "2024-07-12": 19.671140106592222, + "2024-07-24": 24.74704557045426, + "2024-07-06": 19.373888691329608, + "2024-07-08": 19.49513844767768, + "2024-07-07": 19.369034744191808, + "2024-07-13": 20.205706303493102, + "2024-07-09": 20.282957558541288, + "2024-07-23": 24.7463700391517, + "2024-07-10": 20.749013507019175, + "2024-07-14": 20.615666004194797, + "2024-07-29": 25.069059254811442, + "2024-07-27": 25.457169307347332, + "2024-07-28": 24.640443450396734, + "2024-07-19": 26.36828447506886, + "2024-08-04": 18.100373349472445, + "2024-07-26": 25.46190228176444, + "2024-08-05": 15.30464192416004, + "2024-07-25": 23.74178895545976, + "2024-07-16": 23.57792344315337, + "2024-08-02T16": 20.3726685, + "2024-08-02T11": 21.3620408, + "2024-07-31T00": 23.196199500000002, + "2024-08-05T18": 15.667203599999999, + "2024-07-31T11": 23.0952906, + "2024-08-05T23": 15.373073999999999, + "2024-08-02T06": 20.947261199542023, + "2024-08-01T13": 21.61462, + "2024-08-05T01": 15.88148592, + "2024-08-02T00": 21.645501499999998, + "2024-08-06T06": 16.886318019999997, + "2024-08-03T23": 18.48283683758993, + "2024-08-01T11": 21.3686686, + "2024-08-05T19": 15.432719037581194, + "2024-08-04T19": 18.074958000000002, + "2024-08-01T23": 21.579912, + "2024-08-04T17": 17.045840199999997, + "2024-08-02T22": 19.627598999999996, + "2024-08-02T01": 21.510838300000003, + "2024-08-02T05": 21.2315125, + "2024-08-03T20": 18.0778797, + "2024-07-31T14": 23.153576200000003, + "2024-08-03T12": 19.9048608, + "2024-07-31T05": 23.02693296, + "2024-08-02T08": 20.952594899999998, + "2024-08-05T14": 15.09607484, + "2024-08-01T07": 21.5802845, + "2024-08-03T06": 19.884302459999997, + "2024-08-04T13": 18.520735000000002, + "2024-08-06T11": 16.00512, + "2024-08-05T16": 15.796683751126219, + "2024-08-05T06": 14.1790074, + "2024-08-01T22": 21.6320305, + "2024-08-04T20": 18.1688205, + "2024-08-06T10": 16.00528, + "2024-08-01T15": 20.84957, + "2024-08-06T05": 16.629805800000003, + "2024-08-04T08": 18.207041199036446, + "2024-08-01T00": 22.071324304343737, + "2024-08-04T18": 17.288578857607636, + "2024-07-31T15": 23.070537199999997, + "2024-08-03T19": 18.130846899999998, + "2024-08-02T12": 21.261893330000003, + "2024-08-01T20": 20.78798291, + "2024-08-01T21": 21.230449999999998, + "2024-07-30T23": 23.186558385680648, + "2024-08-03T16": 18.7759075, + "2024-08-06T00": 16.193238, + "2024-08-04T06": 18.376900973722893, + "2024-08-02T15": 20.2201648, + "2024-08-05T10": 14.4320202, + "2024-08-05T17": 15.910381590000002, + "2024-08-03T04": 19.664119160000002, + "2024-08-06T04": 16.487416000000003, + "2024-08-06T03": 16.3963921, + "2024-07-30T19": 23.25039417, + "2024-08-02T04": 21.4604532, + "2024-08-02T23": 19.683772480000002, + "2024-08-05T08": 15.0216522, + "2024-08-02T09": 21.131811, + "2024-08-04T12": 18.430780000000002, + "2024-08-04T22": 18.1032993, + "2024-07-31T23": 21.99296, + "2024-08-04T10": 18.2505048, + "2024-07-30T16": 23.9823232, + "2024-08-05T20": 15.481548, + "2024-08-03T10": 19.742611200000002, + "2024-08-04T16": 17.304264464341266, + "2024-07-31T06": 23.448298021000003, + "2024-07-31T02": 23.2913408, + "2024-08-03T09": 19.7124403, + "2024-08-04T15": 17.6231135327252, + "2024-08-03T00": 19.6142716, + "2024-07-30T17": 23.5626933, + "2024-08-03T15": 19.156156770000003, + "2024-08-01T19": 20.6392718, + "2024-07-30T13": 24.3191352, + "2024-08-03T22": 18.45447495, + "2024-07-30T22": 23.152923759409077, + "2024-07-31T13": 23.24307062, + "2024-07-30T18": 23.442496, + "2024-08-03T05": 19.7380664, + "2024-08-05T09": 14.928686680000002, + "2024-07-30T12": 24.235152, + "2024-08-03T01": 19.378135540000002, + "2024-08-05T03": 15.709214500000002, + "2024-07-31T08": 23.2395375, + "2024-08-01T10": 21.388658, + "2024-07-31T21": 22.14258262, + "2024-08-01T09": 21.721714254566898, + "2024-08-06T09": 16.084823999999998, + "2024-08-03T08": 19.6509201, + "2024-08-03T14": 19.657214500000002, + "2024-08-01T12": 21.65673264, + "2024-07-30T20": 23.131058600000003, + "2024-07-30T15": 24.072654613249256, + "2024-08-01T01": 22.1758073509212, + "2024-08-05T13": 14.216444684708595, + "2024-08-01T16": 20.5985709, + "2024-08-04T00": 18.4391145, + "2024-08-02T14": 20.834988, + "2024-08-04T09": 18.26158496, + "2024-08-04T02": 18.526916339489425, + "2024-08-03T03": 19.5267355, + "2024-08-03T11": 19.7933596, + "2024-07-31T09": 23.258925480000002, + "2024-07-31T12": 23.17901248, + "2024-08-05T11": 13.982847529392409, + "2024-08-03T18": 18.1932558, + "2024-08-01T08": 21.58976748, + "2024-07-31T10": 23.068921599999996, + "2024-08-03T17": 18.363768559999997, + "2024-07-31T03": 23.23678084487595, + "2024-08-01T06": 21.7393425, + "2024-08-02T07": 20.97599567, + "2024-08-02T19": 19.72247904, + "2024-07-30T11": 24.39287642, + "2024-08-05T22": 15.46762905, + "2024-08-06T01": 16.434929, + "2024-08-05T15": 15.45455591849057, + "2024-07-31T18": 22.882446299999998, + "2024-08-05T02": 15.586882000000001, + "2024-08-05T12": 14.0415444, + "2024-07-30T21": 23.11298906, + "2024-08-06T07": 16.6411421, + "2024-08-04T11": 18.399956757351404, + "2024-08-05T05": 15.3390796, + "2024-07-31T19": 22.5723228, + "2024-08-04T21": 18.0747568, + "2024-07-30T14": 24.023194399999998, + "2024-08-01T18": 20.38023292, + "2024-07-31T04": 23.021164539999997, + "2024-08-02T18": 19.87011, + "2024-08-02T03": 21.5002016, + "2024-08-04T01": 18.37315344, + "2024-08-02T21": 19.65033, + "2024-08-02T02": 21.329427239999998, + "2024-08-02T10": 21.1688994, + "2024-08-04T23": 17.7327266, + "2024-08-04T03": 18.408579600000003, + "2024-08-01T05": 21.749435101784176, + "2024-08-02T17": 20.280715, + "2024-07-31T16": 22.73013179, + "2024-08-04T04": 18.34680162, + "2024-08-01T02": 22.158471600000002, + "2024-08-05T21": 15.5227936, + "2024-08-05T07": 15.065, + "2024-08-05T00": 17.4219822, + "2024-08-02T20": 19.832359139999998, + "2024-07-31T01": 23.364624900000003, + "2024-07-31T22": 22.1831211, + "2024-08-04T07": 18.179267900000003, + "2024-08-04T05": 18.283840050000002, + "2024-08-01T14": 21.224584600600046, + "2024-08-03T02": 19.47426, + "2024-08-01T04": 21.748517857123133, + "2024-08-01T17": 20.565328580000003, + "2024-08-06T02": 16.3862244, + "2024-08-04T14": 17.982264299999997, + "2024-07-31T20": 22.2413225, + "2024-08-03T21": 18.2500434, + "2024-08-06T08": 16.3244627, + "2024-08-02T13": 21.313362599999998, + "2024-08-05T04": 15.519291133711706, + "2024-08-01T03": 22.1082764, + "2024-07-31T17": 22.83009279, + "2024-07-31T07": 23.450728019999996, + "2024-08-03T07": 19.85273482, + "2024-08-03T13": 19.7165836, + "latest": 16 + }, + "USD internet_computer": { + "2024-07-31": 9.034777895797436, + "2024-08-02": 8.772004555661729, + "2024-07-30": 9.010274909442717, + "2024-08-01": 8.757212521991068, + "2024-08-06": 7.385652550460328, + "2024-07-20": 10.255233749876536, + "2024-07-21": 10.248566218345452, + "2024-07-15": 9.238362592686407, + "2024-08-03": 8.128697843111823, + "2024-07-18": 9.884051215151635, + "2024-07-11": 7.398046173678546, + "2024-07-17": 10.055941552531024, + "2024-07-22": 10.382261207214158, + "2024-07-12": 7.273532268262174, + "2024-07-24": 9.760628860991034, + "2024-07-06": 7.047316300800466, + "2024-07-08": 6.910937721435742, + "2024-07-07": 7.346229297826785, + "2024-07-13": 8.078920858958597, + "2024-07-09": 7.121037528038093, + "2024-07-23": 9.836130930937214, + "2024-07-10": 7.229458809970471, + "2024-07-14": 8.749515938824768, + "2024-07-29": 9.471642811227742, + "2024-07-27": 9.792291294103848, + "2024-07-28": 9.527424905313719, + "2024-07-19": 9.687076194197079, + "2024-08-04": 7.713903786567115, + "2024-07-26": 9.737398026503136, + "2024-08-05": 6.897371251143111, + "2024-07-25": 9.569719157041206, + "2024-07-16": 9.53886680615282, + "2024-08-02T16": 8.69160585, + "2024-08-02T11": 8.908110896, + "2024-07-31T00": 8.821794, + "2024-08-05T18": 7.135580857999999, + "2024-07-31T11": 8.88211215, + "2024-08-05T23": 7.120423799999999, + "2024-08-02T06": 8.716370520000002, + "2024-08-01T13": 8.832758239999999, + "2024-08-05T01": 6.81220585, + "2024-08-02T00": 8.9139702, + "2024-08-06T06": 7.526490329999999, + "2024-08-03T23": 7.78463816, + "2024-08-01T11": 8.742364089999999, + "2024-08-05T19": 6.966646320000001, + "2024-08-04T19": 7.5122420000000005, + "2024-08-01T23": 8.90670905, + "2024-08-04T17": 7.194024, + "2024-08-02T22": 8.38942514, + "2024-08-02T01": 8.87909057, + "2024-08-02T05": 8.80533269, + "2024-08-03T20": 7.77178941, + "2024-07-31T14": 9.08291085, + "2024-08-03T12": 8.232961604041124, + "2024-07-31T05": 8.893115960080642, + "2024-08-02T08": 8.751430279, + "2024-08-05T14": 7.039700206, + "2024-08-01T07": 8.7840454, + "2024-08-03T06": 8.319921390000001, + "2024-08-04T13": 7.829117571288496, + "2024-08-06T11": 7.331345280000001, + "2024-08-05T16": 7.238063099999999, + "2024-08-05T06": 6.53454255, + "2024-08-01T22": 8.93058146, + "2024-08-04T20": 7.55642994, + "2024-08-06T10": 7.336420219999999, + "2024-08-01T15": 8.681357150000002, + "2024-08-06T05": 7.45139373, + "2024-08-04T08": 7.8052359000000004, + "2024-08-01T00": 8.970884669921551, + "2024-08-04T18": 7.25935104, + "2024-07-31T15": 9.099267769999999, + "2024-08-03T19": 7.7239706, + "2024-08-02T12": 8.8537094, + "2024-08-01T20": 8.750521401216966, + "2024-08-01T21": 8.87982304, + "2024-07-30T23": 8.832437850000002, + "2024-08-03T16": 7.84311325, + "2024-08-06T00": 7.348469399999999, + "2024-08-04T06": 7.88166692455173, + "2024-08-02T15": 8.68847694, + "2024-08-05T10": 6.68893632, + "2024-08-05T17": 7.25928045, + "2024-08-03T04": 8.290552109607612, + "2024-08-06T04": 7.37631785, + "2024-08-06T03": 7.370008458784067, + "2024-07-30T19": 8.83972809, + "2024-08-02T04": 8.85093831, + "2024-08-02T23": 8.2843824, + "2024-08-05T08": 6.86275482, + "2024-08-02T09": 8.80641996, + "2024-08-04T12": 7.844171149978484, + "2024-08-04T22": 7.497225, + "2024-07-31T23": 9.009116160000001, + "2024-08-04T10": 7.79694348, + "2024-07-30T16": 9.10608512, + "2024-08-05T20": 7.060706, + "2024-08-03T10": 8.1628104, + "2024-08-04T16": 7.29574328, + "2024-07-31T06": 9.03337956, + "2024-07-31T02": 8.8602276, + "2024-08-03T09": 8.200499335839597, + "2024-08-04T15": 7.480584648, + "2024-08-03T00": 8.32208377, + "2024-07-30T17": 8.974517037, + "2024-08-03T15": 8.06759109, + "2024-08-01T19": 8.6554685, + "2024-07-30T13": 9.061187400000001, + "2024-08-03T22": 7.801550580000001, + "2024-07-30T22": 8.85343176, + "2024-07-31T13": 9.028754489999999, + "2024-07-30T18": 8.913146880000001, + "2024-08-03T05": 8.34565151393058, + "2024-08-05T09": 6.88323876, + "2024-07-30T12": 9.042191200000001, + "2024-08-03T01": 8.154972089000259, + "2024-08-05T03": 6.82725862, + "2024-07-31T08": 8.947571779999999, + "2024-08-01T10": 8.736167376, + "2024-07-31T21": 9.109874879826489, + "2024-08-01T09": 8.777905859999999, + "2024-08-06T09": 7.3021899999999995, + "2024-08-03T08": 8.211027569999999, + "2024-08-03T14": 8.27361865, + "2024-08-01T12": 8.84639748, + "2024-07-30T20": 8.827351, + "2024-07-30T15": 9.05392062, + "2024-08-01T01": 8.9328724, + "2024-08-05T13": 6.60860346, + "2024-08-01T16": 8.613966, + "2024-08-04T00": 7.788402130000001, + "2024-08-02T14": 9.012706176, + "2024-08-04T09": 7.812544310000001, + "2024-08-04T02": 7.8522858, + "2024-08-03T03": 8.236541587423797, + "2024-08-03T11": 8.12799620623397, + "2024-07-31T09": 8.93251496, + "2024-07-31T12": 8.940506993504616, + "2024-08-05T11": 6.52888820753673, + "2024-08-03T18": 7.634651999999999, + "2024-08-01T08": 8.86338864, + "2024-07-31T10": 8.895728, + "2024-08-03T17": 7.6704732799999995, + "2024-07-31T03": 8.87613562, + "2024-08-01T06": 8.727721319999999, + "2024-08-02T07": 8.760897920000001, + "2024-08-02T19": 8.59562055, + "2024-07-30T11": 9.02610412, + "2024-08-05T22": 7.170218729999999, + "2024-08-06T01": 7.4082218, + "2024-08-05T15": 7.147500089999999, + "2024-07-31T18": 9.34191615, + "2024-08-05T02": 6.7996398000000005, + "2024-08-05T12": 6.55172061, + "2024-07-30T21": 8.81470758, + "2024-08-06T07": 7.491115687, + "2024-08-04T11": 7.848095429, + "2024-08-05T05": 6.8845869, + "2024-07-31T19": 9.372812159999999, + "2024-08-04T21": 7.51681949, + "2024-07-30T14": 9.0241948, + "2024-08-01T18": 8.476020520381761, + "2024-07-31T04": 8.87313625, + "2024-08-02T18": 8.665326, + "2024-08-02T03": 8.90380096, + "2024-08-04T01": 7.77041275, + "2024-08-02T21": 8.4332583, + "2024-08-02T02": 8.81832138, + "2024-08-02T10": 8.86525728, + "2024-08-04T23": 7.381972149999999, + "2024-08-04T03": 7.88610758, + "2024-08-01T05": 8.74366311, + "2024-08-02T17": 8.70871885, + "2024-07-31T16": 9.120441640000001, + "2024-08-04T04": 7.8831883199999995, + "2024-08-01T02": 8.82141048, + "2024-08-05T21": 7.11728088, + "2024-08-05T07": 6.943, + "2024-08-05T00": 7.25059062, + "2024-08-02T20": 8.538183225, + "2024-07-31T01": 8.88195668, + "2024-07-31T22": 9.105800160827654, + "2024-08-04T07": 7.818384430000001, + "2024-08-04T05": 7.861201739999999, + "2024-08-01T14": 8.742326680000001, + "2024-08-03T02": 8.24460274, + "2024-08-01T04": 8.67848484, + "2024-08-01T17": 8.56006073, + "2024-08-06T02": 7.410815040000001, + "2024-08-04T14": 7.5867824054009745, + "2024-07-31T20": 9.17941863, + "2024-08-03T21": 7.7793296, + "2024-08-06T08": 7.3542629999999996, + "2024-08-02T13": 9.045270672105975, + "2024-08-05T04": 6.9576521, + "2024-08-01T03": 8.777345539999999, + "2024-07-31T17": 9.2064081, + "2024-07-31T07": 9.01220535, + "2024-08-03T07": 8.28912114, + "2024-08-03T13": 8.243390680000001, + "latest": 7.34 + }, + "USD iota": { + "2024-07-31": 0.15609135269714244, + "2024-08-02": 0.14923724790898657, + "2024-07-30": 0.16087147701893395, + "2024-08-01": 0.15096092324501295, + "2024-08-06": 0.12063227556015207, + "2024-07-20": 0.1759892859348843, + "2024-07-21": 0.17530238692957556, + "2024-07-15": 0.1637583153233829, + "2024-08-03": 0.13929558233360365, + "2024-07-18": 0.17231487994428596, + "2024-07-11": 0.15544378806336223, + "2024-07-17": 0.17110819904194863, + "2024-07-22": 0.18102253187044418, + "2024-07-12": 0.15377388827331803, + "2024-07-24": 0.16995435335534878, + "2024-07-06": 0.15022514173538726, + "2024-07-08": 0.14454137885817725, + "2024-07-07": 0.1578205659480986, + "2024-07-13": 0.15644751250479436, + "2024-07-09": 0.14945985699513445, + "2024-07-23": 0.17352941589641535, + "2024-07-10": 0.1536793629143608, + "2024-07-14": 0.1592445357436711, + "2024-07-29": 0.16686681634651565, + "2024-07-27": 0.1650087442373747, + "2024-07-28": 0.1650405112083268, + "2024-07-19": 0.17032098631786916, + "2024-08-04": 0.13420055474179024, + "2024-07-26": 0.15825216839118875, + "2024-08-05": 0.12697962037396818, + "2024-07-25": 0.1647966245307115, + "2024-07-16": 0.17252368084492223, + "2024-08-02T16": 0.14032488413438574, + "2024-08-02T11": 0.14499403462682836, + "2024-07-31T00": 0.15609135269714244, + "2024-08-05T18": 0.1228008430257598, + "2024-07-31T11": 0.15539755729599705, + "2024-08-05T23": 0.12153499186374941, + "2024-08-02T06": 0.14391454309342058, + "2024-08-01T13": 0.1507697100573881, + "2024-08-05T01": 0.1215600349444176, + "2024-08-02T00": 0.1491965718163826, + "2024-08-06T06": 0.12754792116704045, + "2024-08-03T23": 0.1339537753867304, + "2024-08-01T11": 0.14985319280189924, + "2024-08-05T19": 0.11903449206806584, + "2024-08-04T19": 0.12871866057213416, + "2024-08-01T23": 0.14813942240345523, + "2024-08-04T17": 0.127121204624337, + "2024-08-02T22": 0.13919346110301417, + "2024-08-02T01": 0.14812314471768764, + "2024-08-02T05": 0.14580829256790576, + "2024-08-03T20": 0.13265048409020805, + "2024-07-31T14": 0.15672392138307595, + "2024-08-03T12": 0.13994973936630747, + "2024-07-31T05": 0.15606395476857432, + "2024-08-02T08": 0.14360194698252385, + "2024-08-05T14": 0.11572680612848027, + "2024-08-01T07": 0.14837275178706807, + "2024-08-03T06": 0.13987268100591, + "2024-08-04T13": 0.13636927361884923, + "2024-08-06T11": 0.1241197407370776, + "2024-08-05T16": 0.12179064965015206, + "2024-08-05T06": 0.11234983726692427, + "2024-08-01T22": 0.14662122973151867, + "2024-08-04T20": 0.13160090679492786, + "2024-08-06T10": 0.12517698077421194, + "2024-08-01T15": 0.1471617464061678, + "2024-08-06T05": 0.12616853728865435, + "2024-08-04T08": 0.13413133389378146, + "2024-08-01T00": 0.15098040330355433, + "2024-08-04T18": 0.12709239343120388, + "2024-07-31T15": 0.1563661247457285, + "2024-08-03T19": 0.13241271589006293, + "2024-08-02T12": 0.14454883417888348, + "2024-08-01T20": 0.14346602494310876, + "2024-08-01T21": 0.14514801614825157, + "2024-07-30T23": 0.1560782974657093, + "2024-08-03T16": 0.1350408180695287, + "2024-08-06T00": 0.12063227556015207, + "2024-08-04T06": 0.1352646241297841, + "2024-08-02T15": 0.14031470421182943, + "2024-08-05T10": 0.11298407574699675, + "2024-08-05T17": 0.12205519947645659, + "2024-08-03T04": 0.13963786429060884, + "2024-08-06T04": 0.12460762295254331, + "2024-08-06T03": 0.12504828395042564, + "2024-07-30T19": 0.15743227774155988, + "2024-08-02T04": 0.14668367415463524, + "2024-08-02T23": 0.13929288214980154, + "2024-08-05T08": 0.11431102772755314, + "2024-08-02T09": 0.1443958541862367, + "2024-08-04T12": 0.134824454924669, + "2024-08-04T22": 0.13001149990455035, + "2024-07-31T23": 0.1517003423837491, + "2024-08-04T10": 0.13504969178141532, + "2024-07-30T16": 0.15965035050722712, + "2024-08-05T20": 0.12064934955206151, + "2024-08-03T10": 0.13976901504060404, + "2024-08-04T16": 0.1291801012911335, + "2024-07-31T06": 0.1572222882255097, + "2024-07-31T02": 0.15659520227425702, + "2024-08-03T09": 0.13973365677160415, + "2024-08-04T15": 0.1316112068637632, + "2024-08-03T00": 0.13929558233360365, + "2024-07-30T17": 0.15948663417255052, + "2024-08-03T15": 0.13950591978364857, + "2024-08-01T19": 0.14158025778363978, + "2024-07-30T13": 0.16009127966228145, + "2024-08-03T22": 0.13364443862656172, + "2024-07-30T22": 0.15614026392149205, + "2024-07-31T13": 0.15650056721618777, + "2024-07-30T18": 0.15792103513023015, + "2024-08-03T05": 0.13935630539710905, + "2024-08-05T09": 0.11227388721409978, + "2024-07-30T12": 0.159532122147659, + "2024-08-03T01": 0.13776908251478653, + "2024-08-05T03": 0.1145139199636623, + "2024-07-31T08": 0.15693011641383778, + "2024-08-01T10": 0.1491837225119172, + "2024-07-31T21": 0.15181177820128247, + "2024-08-01T09": 0.14971216704545084, + "2024-08-06T09": 0.12570801015256214, + "2024-08-03T08": 0.13978366218925736, + "2024-08-03T14": 0.14032188956154593, + "2024-08-01T12": 0.14962071907026533, + "2024-07-30T20": 0.15641308053090028, + "2024-07-30T15": 0.15852240167284956, + "2024-08-01T01": 0.15126060179280335, + "2024-08-05T13": 0.10926264482826778, + "2024-08-01T16": 0.14508934739877438, + "2024-08-04T00": 0.13387244011859692, + "2024-08-02T14": 0.14638465319040664, + "2024-08-04T09": 0.13478835205537504, + "2024-08-04T02": 0.13475911269105836, + "2024-08-03T03": 0.13879410143419538, + "2024-08-03T11": 0.1396285900600451, + "2024-07-31T09": 0.15750081601907862, + "2024-07-31T12": 0.15607027186308975, + "2024-08-05T11": 0.10972426003799655, + "2024-08-03T18": 0.1333791521624479, + "2024-08-01T08": 0.14809765819421686, + "2024-07-31T10": 0.1564283190678299, + "2024-08-03T17": 0.13569022827247912, + "2024-07-31T03": 0.15628457824415387, + "2024-08-01T06": 0.14895824392797763, + "2024-08-02T07": 0.14399199455829995, + "2024-08-02T19": 0.1401097231067396, + "2024-07-30T11": 0.1602147603992495, + "2024-08-05T22": 0.12053873912071661, + "2024-08-06T01": 0.12646124751466534, + "2024-08-05T15": 0.12097218878046644, + "2024-07-31T18": 0.1569092858515981, + "2024-08-05T02": 0.11360510388046925, + "2024-08-05T12": 0.11042662274714234, + "2024-07-30T21": 0.15626297382186388, + "2024-08-06T07": 0.1283017665459538, + "2024-08-04T11": 0.1352026802189943, + "2024-08-05T05": 0.11340497729999661, + "2024-07-31T19": 0.15707606499322344, + "2024-08-04T21": 0.13089173848666436, + "2024-07-30T14": 0.15956941540969014, + "2024-08-01T18": 0.14323845985164482, + "2024-07-31T04": 0.15686861355339435, + "2024-08-02T18": 0.1402864209556766, + "2024-08-02T03": 0.14547115620008716, + "2024-08-04T01": 0.13569132473042306, + "2024-08-02T21": 0.14083340296066726, + "2024-08-02T02": 0.14672945129622453, + "2024-08-02T10": 0.1447829377802626, + "2024-08-04T23": 0.13005038296818966, + "2024-08-04T03": 0.13593116094092636, + "2024-08-01T05": 0.14700209842791648, + "2024-08-02T17": 0.1404379221130758, + "2024-07-31T16": 0.15645996527852726, + "2024-08-04T04": 0.13554605339399228, + "2024-08-01T02": 0.15175184541521913, + "2024-08-05T21": 0.12049499821872475, + "2024-08-05T07": 0.1095995167695044, + "2024-08-05T00": 0.1275175098134888, + "2024-08-02T20": 0.13975036945923183, + "2024-07-31T01": 0.1560585827166446, + "2024-07-31T22": 0.1525014916941328, + "2024-08-04T07": 0.13560258933125624, + "2024-08-04T05": 0.13493114313762464, + "2024-08-01T14": 0.15024713844571105, + "2024-08-03T02": 0.13814616334778324, + "2024-08-01T04": 0.15065435588577536, + "2024-08-01T17": 0.14279937330119874, + "2024-08-06T02": 0.1252971524931655, + "2024-08-04T14": 0.13535429981935898, + "2024-07-31T20": 0.15451522812199642, + "2024-08-03T21": 0.13275619916967096, + "2024-08-06T08": 0.1282177396280056, + "2024-08-02T13": 0.14428707148514802, + "2024-08-05T04": 0.11261216435021046, + "2024-08-01T03": 0.15110133828047587, + "2024-07-31T17": 0.1562326084492804, + "2024-07-31T07": 0.15783721219173283, + "2024-08-03T07": 0.14007965878041911, + "2024-08-03T13": 0.14054869861439157, + "latest": 0.124665 + }, + "USD klaytn": { + "2024-07-31": 0.1392526304391282, + "2024-08-02": 0.13198634731651945, + "2024-07-30": 0.140769718582954, + "2024-08-01": 0.1350283374222481, + "2024-08-06": 0.1206178603648958, + "2024-07-20": 0.15885621016389778, + "2024-07-21": 0.15685156728927535, + "2024-07-15": 0.15247473908900042, + "2024-08-03": 0.12869961484476616, + "2024-07-18": 0.1564971886370956, + "2024-07-11": 0.14730108645292114, + "2024-07-17": 0.15913790257099927, + "2024-07-22": 0.14462176177268216, + "2024-07-12": 0.14211920348306756, + "2024-07-24": 0.14268576536154545, + "2024-07-06": 0.14791479, + "2024-07-08": 0.14308818351029196, + "2024-07-07": 0.147201533965401, + "2024-07-13": 0.14653066648631302, + "2024-07-09": 0.14690019764561013, + "2024-07-23": 0.14272220716088482, + "2024-07-10": 0.1477000005754159, + "2024-07-14": 0.14915069418468976, + "2024-07-29": 0.14408166301289513, + "2024-07-27": 0.1442337500798511, + "2024-07-28": 0.14328713420000003, + "2024-07-19": 0.15507990394506269, + "2024-08-04": 0.12433641720567103, + "2024-07-26": 0.14241835960961838, + "2024-08-05": 0.10957220831736388, + "2024-07-25": 0.13566886191689795, + "2024-07-16": 0.15615765919494556, + "2024-08-02T16": 0.1308986415, + "2024-08-02T11": 0.1333179188, + "2024-07-31T00": 0.1391652, + "2024-08-05T18": 0.11662362219999999, + "2024-07-31T11": 0.138963528, + "2024-08-05T23": 0.11792358, + "2024-08-02T06": 0.13195963440000003, + "2024-08-01T13": 0.13683806090321268, + "2024-08-05T01": 0.111554244, + "2024-08-02T00": 0.13537805, + "2024-08-06T06": 0.12350008929999999, + "2024-08-03T23": 0.127728432, + "2024-08-01T11": 0.1377369607, + "2024-08-05T19": 0.115643928, + "2024-08-04T19": 0.12363815000000002, + "2024-08-01T23": 0.135373985, + "2024-08-04T17": 0.120300068, + "2024-08-02T22": 0.12935237, + "2024-08-02T01": 0.13418047300000002, + "2024-08-02T05": 0.133184029, + "2024-08-03T20": 0.1261554192, + "2024-07-31T14": 0.13943722500000003, + "2024-08-03T12": 0.1310902956, + "2024-07-31T05": 0.1392160819273335, + "2024-08-02T08": 0.13250992539999998, + "2024-08-05T14": 0.114730969, + "2024-08-01T07": 0.13613871, + "2024-08-03T06": 0.1307673081, + "2024-08-04T13": 0.12607693, + "2024-08-06T11": 0.12063859200000002, + "2024-08-05T16": 0.11918336999999998, + "2024-08-05T06": 0.102292839, + "2024-08-01T22": 0.1348180081, + "2024-08-04T20": 0.124307721, + "2024-08-06T10": 0.1207198244, + "2024-08-01T15": 0.13393300000000002, + "2024-08-06T05": 0.12220205670000002, + "2024-08-04T08": 0.12602307899999998, + "2024-08-01T00": 0.136754856, + "2024-08-04T18": 0.120322944, + "2024-07-31T15": 0.139442805, + "2024-08-03T19": 0.12640133, + "2024-08-02T12": 0.133205357, + "2024-08-01T20": 0.130967589, + "2024-08-01T21": 0.13316858156368352, + "2024-07-30T23": 0.13901967259999998, + "2024-08-03T16": 0.12810385, + "2024-08-06T00": 0.11992398, + "2024-08-04T06": 0.127520888, + "2024-08-02T15": 0.129772698, + "2024-08-05T10": 0.10751505, + "2024-08-05T17": 0.11856991500000001, + "2024-08-03T04": 0.1300784879, + "2024-08-06T04": 0.1213045625, + "2024-08-06T03": 0.12061702229999999, + "2024-07-30T19": 0.138648681, + "2024-08-02T04": 0.13321866059999998, + "2024-08-02T23": 0.12944409920000002, + "2024-08-05T08": 0.108811968, + "2024-08-02T09": 0.1331553878, + "2024-08-04T12": 0.12583705, + "2024-08-04T22": 0.12513368340000003, + "2024-07-31T23": 0.1367462272, + "2024-08-04T10": 0.1254647244, + "2024-07-30T16": 0.14095487999999998, + "2024-08-05T20": 0.11661165999999999, + "2024-08-03T10": 0.130784808, + "2024-08-04T16": 0.12091287999999999, + "2024-07-31T06": 0.14075916800000002, + "2024-07-31T02": 0.13937212, + "2024-08-03T09": 0.1304138283, + "2024-08-04T15": 0.12201819300000001, + "2024-08-03T00": 0.129729831, + "2024-07-30T17": 0.1397966496, + "2024-08-03T15": 0.129713034, + "2024-08-01T19": 0.13015667, + "2024-07-30T13": 0.14117176, + "2024-08-03T22": 0.12732738200000002, + "2024-07-30T22": 0.13904966389999998, + "2024-07-31T13": 0.139834247, + "2024-07-30T18": 0.13925542400000002, + "2024-08-03T05": 0.13042506729999997, + "2024-08-05T09": 0.11011981800000001, + "2024-07-30T12": 0.14097179999999998, + "2024-08-03T01": 0.128242068, + "2024-08-05T03": 0.109094545, + "2024-07-31T08": 0.14033682, + "2024-08-01T10": 0.137527072, + "2024-07-31T21": 0.136048282, + "2024-08-01T09": 0.13692054, + "2024-08-06T09": 0.12093626999999998, + "2024-08-03T08": 0.13057322100000002, + "2024-08-03T14": 0.13091485, + "2024-08-01T12": 0.1375984116, + "2024-07-30T20": 0.13822940673061523, + "2024-07-30T15": 0.140552196, + "2024-08-01T01": 0.137052015, + "2024-08-05T13": 0.10549367, + "2024-08-01T16": 0.131118153, + "2024-08-04T00": 0.12802658655362087, + "2024-08-02T14": 0.13300416799999998, + "2024-08-04T09": 0.126028123, + "2024-08-04T02": 0.12852284, + "2024-08-03T03": 0.12944690381275759, + "2024-08-03T11": 0.13034732998437554, + "2024-07-31T09": 0.1398754273, + "2024-07-31T12": 0.13922199200000002, + "2024-08-05T11": 0.10491363699999999, + "2024-08-03T18": 0.1259118, + "2024-08-01T08": 0.13667889000000003, + "2024-07-31T10": 0.13929310720000002, + "2024-08-03T17": 0.12708843039999998, + "2024-07-31T03": 0.139870621, + "2024-08-01T06": 0.1356934776, + "2024-08-02T07": 0.13198695694297258, + "2024-08-02T19": 0.130357755, + "2024-07-30T11": 0.14097038999999997, + "2024-08-05T22": 0.1176800022, + "2024-08-06T01": 0.12143641999999999, + "2024-08-05T15": 0.11817440299999998, + "2024-07-31T18": 0.13885416299999997, + "2024-08-05T02": 0.10947810000000001, + "2024-08-05T12": 0.104711517, + "2024-07-30T21": 0.1383740134, + "2024-08-06T07": 0.12368281199999999, + "2024-08-04T11": 0.125635893, + "2024-08-05T05": 0.107693538, + "2024-07-31T19": 0.138153012, + "2024-08-04T21": 0.124064011, + "2024-07-30T14": 0.14053674945412772, + "2024-08-01T18": 0.128581596, + "2024-07-31T04": 0.139470705, + "2024-08-02T18": 0.1310688, + "2024-08-02T03": 0.132677824, + "2024-08-04T01": 0.1281843266, + "2024-08-02T21": 0.1293705, + "2024-08-02T02": 0.132684464, + "2024-08-02T10": 0.13289892, + "2024-08-04T23": 0.123049529, + "2024-08-04T03": 0.1280605532, + "2024-08-01T05": 0.1354573206, + "2024-08-02T17": 0.1315848755, + "2024-07-31T16": 0.13906574319999998, + "2024-08-04T04": 0.1277820054, + "2024-08-01T02": 0.136329072, + "2024-08-05T21": 0.11692104200000002, + "2024-08-05T07": 0.1069, + "2024-08-05T00": 0.1199436, + "2024-08-02T20": 0.130657428, + "2024-07-31T01": 0.13951858319462412, + "2024-07-31T22": 0.136357716, + "2024-08-04T07": 0.12632542400000002, + "2024-08-04T05": 0.1274622006, + "2024-08-01T14": 0.13644267000000002, + "2024-08-03T02": 0.1293190732, + "2024-08-01T04": 0.1350497376, + "2024-08-01T17": 0.129794781, + "2024-08-06T02": 0.120445752, + "2024-08-04T14": 0.124046637, + "2024-07-31T20": 0.136446765, + "2024-08-03T21": 0.12642409999999998, + "2024-08-06T08": 0.121970702, + "2024-08-02T13": 0.134195246, + "2024-08-05T04": 0.10909883619431866, + "2024-08-01T03": 0.1360078776, + "2024-07-31T17": 0.138845829, + "2024-07-31T07": 0.14095628999999998, + "2024-08-03T07": 0.131159509, + "2024-08-03T13": 0.131110784, + "latest": 0.120115 + }, + "USD kusama": { + "2024-07-31": 20.932879263426734, + "2024-08-02": 19.38330914413685, + "2024-07-30": 21.39139842898355, + "2024-08-01": 19.749999851485406, + "2024-08-06": 16.818228246581757, + "2024-07-20": 22.79093379225086, + "2024-07-21": 23.0475772343425, + "2024-07-15": 23.281412046067093, + "2024-08-03": 18.335698232930582, + "2024-07-18": 22.711592002081247, + "2024-07-11": 21.120155776549186, + "2024-07-17": 23.19552457964471, + "2024-07-22": 22.822301562600124, + "2024-07-12": 21.022840655975227, + "2024-07-24": 21.16085502558384, + "2024-07-06": 20.482048, + "2024-07-08": 20.55130283498973, + "2024-07-07": 21.05021936122073, + "2024-07-13": 21.52174902932419, + "2024-07-09": 21.05002832157994, + "2024-07-23": 21.67337219348559, + "2024-07-10": 21.03100008193346, + "2024-07-14": 22.237558245971847, + "2024-07-29": 21.707237363011473, + "2024-07-27": 21.8320812941558, + "2024-07-28": 21.539569200000003, + "2024-07-19": 21.96998639201075, + "2024-08-04": 17.87, + "2024-07-26": 21.14027212572177, + "2024-08-05": 15.59, + "2024-07-25": 20.35532814022139, + "2024-07-16": 23.18856207648199, + "2024-08-02T16": 19.0338075, + "2024-08-02T11": 19.5935276, + "2024-07-31T00": 20.824792499999997, + "2024-08-05T18": 15.942091364456918, + "2024-07-31T11": 20.908494, + "2024-08-05T23": 16.033830111230614, + "2024-08-02T06": 19.3952484, + "2024-08-01T13": 20.40424759143506, + "2024-08-05T01": 15.89, + "2024-08-02T00": 20.251756999999998, + "2024-08-06T06": 17.252585199999995, + "2024-08-03T23": 18.11385056, + "2024-08-01T11": 20.439161499999997, + "2024-08-05T19": 15.74, + "2024-08-04T19": 17.61, + "2024-08-01T23": 20.2011954, + "2024-08-04T17": 16.95, + "2024-08-02T22": 18.828511000000002, + "2024-08-02T01": 20.032155500000002, + "2024-08-02T05": 19.66387753, + "2024-08-03T20": 17.6481678, + "2024-07-31T14": 21.110496, + "2024-08-03T12": 19.01253948, + "2024-07-31T05": 20.7654306, + "2024-08-02T08": 19.4638316, + "2024-08-05T14": 15.99, + "2024-08-01T07": 20.150928, + "2024-08-03T06": 19.03522896, + "2024-08-04T13": 18.14, + "2024-08-06T11": 16.8353856, + "2024-08-05T16": 16.49, + "2024-08-05T06": 14.341560391427183, + "2024-08-01T22": 20.0033834, + "2024-08-04T20": 17.74, + "2024-08-06T10": 16.838154757999998, + "2024-08-01T15": 19.73013, + "2024-08-06T05": 16.9600005, + "2024-08-04T08": 18.21, + "2024-08-01T00": 20.526124143, + "2024-08-04T18": 17.14, + "2024-07-31T15": 21.02737524, + "2024-08-03T19": 17.636232999999997, + "2024-08-02T12": 19.498608350665574, + "2024-08-01T20": 19.2505373, + "2024-08-01T21": 19.557315073922275, + "2024-07-30T23": 20.8639477, + "2024-08-03T16": 18.242379024279465, + "2024-08-06T00": 16.713342, + "2024-08-04T06": 18.49, + "2024-08-02T15": 18.9114486, + "2024-08-05T10": 14.88, + "2024-08-05T17": 16.25, + "2024-08-03T04": 18.890900900000002, + "2024-08-06T04": 16.7375285, + "2024-08-06T03": 16.636485699999998, + "2024-07-30T19": 20.99223, + "2024-08-02T04": 19.8519183, + "2024-08-02T23": 18.825872000000004, + "2024-08-05T08": 15.282450109535677, + "2024-08-02T09": 19.583144, + "2024-08-04T12": 18.1, + "2024-08-04T22": 17.91, + "2024-07-31T23": 20.543424, + "2024-08-04T10": 18.15, + "2024-07-30T16": 21.703052800000002, + "2024-08-05T20": 15.92, + "2024-08-03T10": 19.0032624, + "2024-08-04T16": 17.07, + "2024-07-31T06": 21.2138462, + "2024-07-31T02": 20.89582, + "2024-08-03T09": 19.013063300000002, + "2024-08-04T15": 17.37, + "2024-08-03T00": 18.8253065, + "2024-07-30T17": 21.5133288, + "2024-08-03T15": 18.640950094940987, + "2024-08-01T19": 19.27877, + "2024-07-30T13": 21.805638, + "2024-08-03T22": 18.1296602, + "2024-07-30T22": 20.8639477, + "2024-07-31T13": 21.1400595, + "2024-07-30T18": 21.3031808, + "2024-08-03T05": 18.9888989, + "2024-08-05T09": 15.21, + "2024-07-30T12": 21.685662, + "2024-08-03T01": 18.4572696, + "2024-08-05T03": 15.5, + "2024-07-31T08": 21.0805095, + "2024-08-01T10": 20.3292198, + "2024-07-31T21": 20.5122024, + "2024-08-01T09": 20.3082144, + "2024-08-06T09": 16.685004, + "2024-08-03T08": 19.043873464336396, + "2024-08-03T14": 18.9736591, + "2024-08-01T12": 20.499334800000003, + "2024-07-30T20": 20.873736, + "2024-07-30T15": 21.742605, + "2024-08-01T01": 20.6027865, + "2024-08-05T13": 14.71, + "2024-08-01T16": 19.296483, + "2024-08-04T00": 18.38, + "2024-08-02T14": 19.435996, + "2024-08-04T09": 18.18, + "2024-08-04T02": 18.48, + "2024-08-03T03": 18.8275685, + "2024-08-03T11": 18.994031600000003, + "2024-07-31T09": 21.0417905, + "2024-07-31T12": 20.928571992903443, + "2024-08-05T11": 14.45, + "2024-08-03T18": 17.667624, + "2024-08-01T08": 20.2255655686118, + "2024-07-31T10": 20.95236624312484, + "2024-08-03T17": 17.9170904, + "2024-07-31T03": 20.8656173, + "2024-08-01T06": 20.180106900000002, + "2024-08-02T07": 19.4242536, + "2024-08-02T19": 18.8594208, + "2024-07-30T11": 21.575468199999996, + "2024-08-05T22": 16.17, + "2024-08-06T01": 16.845052, + "2024-08-05T15": 16.330335171890596, + "2024-07-31T18": 21.047883246104234, + "2024-08-05T02": 15.64, + "2024-08-05T12": 14.72, + "2024-07-30T21": 20.7645998, + "2024-08-06T07": 17.0614235, + "2024-08-04T11": 18.183218722691667, + "2024-08-05T05": 15.34, + "2024-07-31T19": 20.962870199999998, + "2024-08-04T21": 17.76, + "2024-07-30T14": 21.755648, + "2024-08-01T18": 18.8926028, + "2024-07-31T04": 20.77810905288672, + "2024-08-02T18": 18.97101, + "2024-08-02T03": 19.901673600000002, + "2024-08-04T01": 18.29, + "2024-08-02T21": 18.77121, + "2024-08-02T02": 19.752800099999998, + "2024-08-02T10": 19.5751116, + "2024-08-04T23": 17.63, + "2024-08-04T03": 18.44, + "2024-08-01T05": 20.187678, + "2024-08-02T17": 19.061874, + "2024-07-31T16": 21.00197372291593, + "2024-08-04T04": 18.48, + "2024-08-01T02": 20.4593556, + "2024-08-05T21": 15.97, + "2024-08-05T07": 15.27, + "2024-08-05T00": 17.53, + "2024-08-02T20": 18.9093663, + "2024-07-31T01": 20.905190700000002, + "2024-07-31T22": 20.640150708964118, + "2024-08-04T07": 18.16, + "2024-08-04T05": 18.46, + "2024-08-01T14": 20.1215454, + "2024-08-03T02": 18.76120248, + "2024-08-01T04": 20.180954303332015, + "2024-08-01T17": 19.064545199999998, + "2024-08-06T02": 16.6863384, + "2024-08-04T14": 17.61, + "2024-07-31T20": 20.601962099999998, + "2024-08-03T21": 17.909248, + "2024-08-06T08": 16.7797266, + "2024-08-02T13": 19.681363012954726, + "2024-08-05T04": 15.5, + "2024-08-01T03": 20.401181639999997, + "2024-07-31T17": 20.99181, + "2024-07-31T07": 21.2034249, + "2024-08-03T07": 19.129509499999998, + "2024-08-03T13": 18.937465633995565, + "latest": 16.8 + }, + "USD litecoin": { + "2024-07-31": 71.61581733653809, + "2024-08-02": 67.74396510806561, + "2024-07-30": 73.361522031725, + "2024-08-01": 69.7106419383458, + "2024-08-06": 57.999149531498034, + "2024-07-20": 73.2097217634264, + "2024-07-21": 73.27708421927517, + "2024-07-15": 70.6095650136007, + "2024-08-03": 64.70587392513981, + "2024-07-18": 71.93376424175818, + "2024-07-11": 67.81313741782456, + "2024-07-17": 72.73455069484123, + "2024-07-22": 73.01831905462348, + "2024-07-12": 68.81227718591022, + "2024-07-24": 72.86326121521151, + "2024-07-06": 63.19252865435933, + "2024-07-08": 64.52695928455707, + "2024-07-07": 63.93029667054925, + "2024-07-13": 69.87407969772856, + "2024-07-09": 65.58229154619195, + "2024-07-23": 72.11519768431921, + "2024-07-10": 66.09699623527591, + "2024-07-14": 70.0033156628916, + "2024-07-29": 74.2264001354402, + "2024-07-27": 71.49251241246913, + "2024-07-28": 71.18258277422935, + "2024-07-19": 71.57764862542234, + "2024-08-04": 63.46322175457437, + "2024-07-26": 71.0963953909035, + "2024-08-05": 55.291548559896164, + "2024-07-25": 68.83817543859296, + "2024-07-16": 72.88419813694655, + "2024-08-02T16": 65.4143505, + "2024-08-02T11": 68.991998, + "2024-07-31T00": 71.5721025, + "2024-08-05T18": 56.15976695490462, + "2024-07-31T11": 71.580609, + "2024-08-05T23": 56.371272, + "2024-08-02T06": 67.9683048, + "2024-08-01T13": 70.17130159999999, + "2024-08-05T01": 56.635773084062954, + "2024-08-02T00": 69.5783231, + "2024-08-06T06": 58.58273419999999, + "2024-08-03T23": 64.37804445431898, + "2024-08-01T11": 70.3027198, + "2024-08-05T19": 55.301006400000006, + "2024-08-04T19": 63.248360000000005, + "2024-08-01T23": 69.53527199999999, + "2024-08-04T17": 61.6188139, + "2024-08-02T22": 64.9358886, + "2024-08-02T01": 69.04349655000001, + "2024-08-02T05": 68.45039630000001, + "2024-08-03T20": 63.13067409000001, + "2024-07-31T14": 71.74769900000001, + "2024-08-03T12": 66.07474500000001, + "2024-07-31T05": 71.6242392, + "2024-08-02T08": 68.2033442, + "2024-08-05T14": 55.05361262262088, + "2024-08-01T07": 69.8225657, + "2024-08-03T06": 65.87012322, + "2024-08-04T13": 64.885541, + "2024-08-06T11": 57.29832960000001, + "2024-08-05T16": 57.14997699999999, + "2024-08-05T06": 51.99295228973305, + "2024-08-01T22": 69.50626188, + "2024-08-04T20": 63.4384236, + "2024-08-06T10": 57.3089057, + "2024-08-01T15": 68.50573000000001, + "2024-08-06T05": 58.0042023, + "2024-08-04T08": 64.4106855, + "2024-08-01T00": 70.5067251, + "2024-08-04T18": 61.7204736, + "2024-07-31T15": 71.42370427, + "2024-08-03T19": 63.1207274, + "2024-08-02T12": 68.6112514, + "2024-08-01T20": 67.22203710000001, + "2024-08-01T21": 68.5169064, + "2024-07-30T23": 71.6092273, + "2024-08-03T16": 64.58152749999999, + "2024-08-06T00": 57.801558, + "2024-08-04T06": 64.90973100000001, + "2024-08-02T15": 65.11612360000001, + "2024-08-05T10": 52.51635126, + "2024-08-05T17": 56.88354150000001, + "2024-08-03T04": 65.1541278, + "2024-08-06T04": 57.84643597327406, + "2024-08-06T03": 57.852553699999994, + "2024-07-30T19": 72.073323, + "2024-08-02T04": 68.72740110000001, + "2024-08-02T23": 64.8868384, + "2024-08-05T08": 53.6559015, + "2024-08-02T09": 68.8307546, + "2024-08-04T12": 64.86755000000001, + "2024-08-04T22": 63.27957789, + "2024-07-31T23": 70.34448256, + "2024-08-04T10": 64.74131700000001, + "2024-07-30T16": 73.24355455999999, + "2024-08-05T20": 55.9005895, + "2024-08-03T10": 65.8819728, + "2024-08-04T16": 62.8447192, + "2024-07-31T06": 72.19405765, + "2024-07-31T02": 72.4435084, + "2024-08-03T09": 65.6315359, + "2024-08-04T15": 63.057723, + "2024-08-03T00": 64.8349548, + "2024-07-30T17": 72.4575312, + "2024-08-03T15": 65.3861619, + "2024-08-01T19": 67.106102, + "2024-07-30T13": 73.495298, + "2024-08-03T22": 64.15041341, + "2024-07-30T22": 71.7391896, + "2024-07-31T13": 71.9761553, + "2024-07-30T18": 72.48479744, + "2024-08-03T05": 65.2874504, + "2024-08-05T09": 53.486625860000004, + "2024-07-30T12": 73.4313108, + "2024-08-03T01": 63.91129230000001, + "2024-08-05T03": 55.59722, + "2024-07-31T08": 71.85764950000001, + "2024-08-01T10": 70.28173093, + "2024-07-31T21": 70.3132708, + "2024-08-01T09": 70.5490578, + "2024-08-06T09": 57.227163, + "2024-08-03T08": 65.5163874, + "2024-08-03T14": 66.1669635, + "2024-08-01T12": 70.47433428, + "2024-07-30T20": 71.7744612, + "2024-07-30T15": 73.21109976000001, + "2024-08-01T01": 70.915171, + "2024-08-05T13": 51.57740539240539, + "2024-08-01T16": 67.68258900000001, + "2024-08-04T00": 64.6918093, + "2024-08-02T14": 67.80314656, + "2024-08-04T09": 64.63113924000001, + "2024-08-04T02": 64.81109, + "2024-08-03T03": 64.95361311, + "2024-08-03T11": 66.01649952000001, + "2024-07-31T09": 71.8419707, + "2024-07-31T12": 71.7198144, + "2024-08-05T11": 52.046765199999996, + "2024-08-03T18": 63.285669, + "2024-08-01T08": 70.1335116, + "2024-07-31T10": 71.63259984, + "2024-08-03T17": 63.354352, + "2024-07-31T03": 72.3248086, + "2024-08-01T06": 70.11062894999999, + "2024-08-02T07": 67.78504960000001, + "2024-08-02T19": 64.96311294, + "2024-07-30T11": 73.46356940999999, + "2024-08-05T22": 56.6796339, + "2024-08-06T01": 58.487541, + "2024-08-05T15": 56.64566429999999, + "2024-07-31T18": 71.4664083, + "2024-08-05T02": 55.58442252637187, + "2024-08-05T12": 51.94601119040839, + "2024-07-30T21": 71.68335748, + "2024-08-06T07": 58.44813403, + "2024-08-04T11": 64.99983317, + "2024-08-05T05": 55.20700081934678, + "2024-07-31T19": 70.8658974, + "2024-08-04T21": 62.99272681, + "2024-07-30T14": 73.205356, + "2024-08-01T18": 66.5687004, + "2024-07-31T04": 71.884901, + "2024-08-02T18": 65.11482000000001, + "2024-08-02T03": 68.636796, + "2024-08-04T01": 64.44595444, + "2024-08-02T21": 64.87505999999999, + "2024-08-02T02": 68.36946677, + "2024-08-02T10": 68.9875296, + "2024-08-04T23": 62.67129423, + "2024-08-04T03": 64.8547651, + "2024-08-01T05": 69.9672939, + "2024-08-02T17": 65.317889, + "2024-07-31T16": 71.52209549999999, + "2024-08-04T04": 64.87540185, + "2024-08-01T02": 70.9480878, + "2024-08-05T21": 56.370144800000006, + "2024-08-05T07": 53.54166258566999, + "2024-08-05T00": 60.4415791, + "2024-08-02T20": 65.25179793, + "2024-07-31T01": 72.07241953, + "2024-07-31T22": 70.9280055, + "2024-08-04T07": 64.64483703, + "2024-08-04T05": 64.7274849129124, + "2024-08-01T14": 69.4408226, + "2024-08-03T02": 64.7294442, + "2024-08-01T04": 70.3833816, + "2024-08-01T17": 67.1855356, + "2024-08-06T02": 58.0020324, + "2024-08-04T14": 63.5626563, + "2024-07-31T20": 70.29202007627964, + "2024-08-03T21": 63.142092, + "2024-08-06T08": 57.7734892, + "2024-08-02T13": 68.7563282, + "2024-08-05T04": 55.736035041862436, + "2024-08-01T03": 70.662529, + "2024-07-31T17": 71.44912397, + "2024-07-31T07": 72.1176366, + "2024-08-03T07": 65.7595619, + "2024-08-03T13": 66.1449908, + "latest": 57.24 + }, + "USD monero": { + "2024-07-31": 159.1187570317732, + "2024-08-02": 160.3691707540676, + "2024-07-30": 160.05445046652775, + "2024-08-01": 156.10070777674125, + "2024-08-06": 149.80661870841524, + "2024-07-20": 162.88602823235536, + "2024-07-21": 163.65462492098624, + "2024-07-15": 159.06284572853463, + "2024-08-03": 157.2840746511159, + "2024-07-18": 160.84089460390544, + "2024-07-11": 158.29790938715033, + "2024-07-17": 161.56700654200154, + "2024-07-22": 163.06284538795987, + "2024-07-12": 159.00192806886636, + "2024-07-24": 161.32862831190292, + "2024-07-06": 156.54157311800597, + "2024-07-08": 152.33743016153707, + "2024-07-07": 154.87734031087882, + "2024-07-13": 159.74576132380085, + "2024-07-09": 154.48800285226937, + "2024-07-23": 160.13510151760804, + "2024-07-10": 155.17641791135344, + "2024-07-14": 156.9629169101725, + "2024-07-29": 164.13422923057763, + "2024-07-27": 163.33799239651844, + "2024-07-28": 162.79902716518865, + "2024-07-19": 160.2119201854699, + "2024-08-04": 150.80104652004965, + "2024-07-26": 163.9765228551999, + "2024-08-05": 144.48006378664743, + "2024-07-25": 155.4416809233061, + "2024-07-16": 160.5475309619398, + "2024-08-02T16": 162.19201950000001, + "2024-08-02T11": 163.3027104, + "2024-07-31T00": 158.0304825, + "2024-08-05T18": 146.8775326, + "2024-07-31T11": 160.6415985, + "2024-08-05T23": 146.149224, + "2024-08-02T06": 157.1604672, + "2024-08-01T13": 156.075048, + "2024-08-05T01": 145.9301441, + "2024-08-02T00": 156.86869099999998, + "2024-08-06T06": 150.49978469999996, + "2024-08-03T23": 146.80774159999999, + "2024-08-01T11": 156.7968536, + "2024-08-05T19": 144.3948492, + "2024-08-04T19": 149.195365, + "2024-08-01T23": 156.5742504, + "2024-08-04T17": 147.277658, + "2024-08-02T22": 159.2782156, + "2024-08-02T01": 156.9202166, + "2024-08-02T05": 156.4337841, + "2024-08-03T20": 150.47911140000002, + "2024-07-31T14": 160.227865, + "2024-08-03T12": 160.3580352, + "2024-07-31T05": 159.0550002, + "2024-08-02T08": 160.2868514, + "2024-08-05T14": 146.79962519999998, + "2024-08-01T07": 157.26352888317751, + "2024-08-03T06": 160.6946517, + "2024-08-04T13": 153.133395, + "2024-08-06T11": 148.70757120000002, + "2024-08-05T16": 151.936281, + "2024-08-05T06": 139.7702154, + "2024-08-01T22": 157.05506157740686, + "2024-08-04T20": 150.248898, + "2024-08-06T10": 148.7590743, + "2024-08-01T15": 154.79256500000002, + "2024-08-06T05": 149.39809290000002, + "2024-08-04T08": 150.108378, + "2024-08-01T00": 157.36883336984715, + "2024-08-04T18": 146.96588160000002, + "2024-07-31T15": 160.14431390000001, + "2024-08-03T19": 150.8222668, + "2024-08-02T12": 162.7743481, + "2024-08-01T20": 152.7655508, + "2024-08-01T21": 155.5073810954853, + "2024-07-30T23": 157.9641771, + "2024-08-03T16": 157.8115525, + "2024-08-06T00": 148.959786, + "2024-08-04T06": 150.5665908, + "2024-08-02T15": 161.7812988, + "2024-08-05T10": 142.219908, + "2024-08-05T17": 150.2586003, + "2024-08-03T04": 158.75949079999998, + "2024-08-06T04": 148.8769645, + "2024-08-06T03": 148.55791499999998, + "2024-07-30T19": 159.7808592, + "2024-08-02T04": 156.457494, + "2024-08-02T23": 158.4669024, + "2024-08-05T08": 141.2655375, + "2024-08-02T09": 161.2512046, + "2024-08-04T12": 152.78357000000003, + "2024-08-04T22": 150.8741559, + "2024-07-31T23": 157.69952, + "2024-08-04T10": 151.7410536, + "2024-07-30T16": 158.849152, + "2024-08-05T20": 145.784577, + "2024-08-03T10": 159.0199392, + "2024-08-04T16": 150.4216184, + "2024-07-31T06": 159.3437769, + "2024-07-31T02": 158.108372, + "2024-08-03T09": 159.18819630000002, + "2024-08-04T15": 150.7489305, + "2024-08-03T00": 157.37357020000002, + "2024-07-30T17": 157.351206, + "2024-08-03T15": 159.692934, + "2024-08-01T19": 151.81282199999998, + "2024-07-30T13": 160.79783400000002, + "2024-08-03T22": 147.77571980000002, + "2024-07-30T22": 157.4243337, + "2024-07-31T13": 160.5644992, + "2024-07-30T18": 158.44037439550434, + "2024-08-03T05": 159.3029772, + "2024-08-05T09": 141.68739828136216, + "2024-07-30T12": 160.977798, + "2024-08-03T01": 155.7481938, + "2024-08-05T03": 145.312734, + "2024-07-31T08": 159.748081, + "2024-08-01T10": 156.73688539999998, + "2024-07-31T21": 156.4305338, + "2024-08-01T09": 157.8783774, + "2024-08-06T09": 148.104418, + "2024-08-03T08": 160.9037718, + "2024-08-03T14": 160.69548, + "2024-08-01T12": 156.8483964, + "2024-07-30T20": 157.422759, + "2024-07-30T15": 159.6157122, + "2024-08-01T01": 156.9950325, + "2024-08-05T13": 140.7215562, + "2024-08-01T16": 152.41374551901137, + "2024-08-04T00": 149.62167110000001, + "2024-08-02T14": 163.70204959999998, + "2024-08-04T09": 150.9039357, + "2024-08-04T02": 150.599586, + "2024-08-03T03": 158.4711946, + "2024-08-03T11": 159.665768, + "2024-07-31T09": 159.8676273, + "2024-07-31T12": 160.5000696, + "2024-08-05T11": 142.27849379999998, + "2024-08-03T18": 152.583117, + "2024-08-01T08": 157.617996, + "2024-07-31T10": 160.622864, + "2024-08-03T17": 153.3794872, + "2024-07-31T03": 158.6166835, + "2024-08-01T06": 156.3633444, + "2024-08-02T07": 159.10102369999998, + "2024-08-02T19": 160.65469530000001, + "2024-07-30T11": 163.5583682077519, + "2024-08-05T22": 146.7349407, + "2024-08-06T01": 150.93526699999998, + "2024-08-05T15": 149.82601432871044, + "2024-07-31T18": 159.0974805, + "2024-08-05T02": 144.531088, + "2024-08-05T12": 140.6754726, + "2024-07-30T21": 157.7489746, + "2024-08-06T07": 150.67088189999998, + "2024-08-04T11": 152.622123, + "2024-08-05T05": 144.0613558, + "2024-07-31T19": 158.0262528, + "2024-08-04T21": 151.69599540000002, + "2024-07-30T14": 160.307932, + "2024-08-01T18": 150.6512732, + "2024-07-31T04": 159.29696584825066, + "2024-08-02T18": 159.48036, + "2024-08-02T03": 155.6666548, + "2024-08-04T01": 150.12137610000002, + "2024-08-02T21": 158.70114, + "2024-08-02T02": 156.34386239999998, + "2024-08-02T10": 162.1166976, + "2024-08-04T23": 150.7081843, + "2024-08-04T03": 151.43626956262682, + "2024-08-01T05": 155.1453036, + "2024-08-02T17": 160.04781, + "2024-07-31T16": 159.3178418, + "2024-08-04T04": 152.26706040000002, + "2024-08-01T02": 156.2508536423934, + "2024-08-05T21": 146.60638440000002, + "2024-08-05T07": 142.35, + "2024-08-05T00": 148.2717636, + "2024-08-02T20": 160.25748449155128, + "2024-07-31T01": 158.2535933, + "2024-07-31T22": 157.4311812, + "2024-08-04T07": 150.111382, + "2024-08-04T05": 152.32702379999998, + "2024-08-01T14": 155.49684691860887, + "2024-08-03T02": 157.2721264, + "2024-08-01T04": 155.68899960000002, + "2024-08-01T17": 152.87607, + "2024-08-06T02": 150.3471102, + "2024-08-04T14": 152.4844035, + "2024-07-31T20": 156.838809, + "2024-08-03T21": 148.500846, + "2024-08-06T08": 148.9463388, + "2024-08-02T13": 162.9328132, + "2024-08-05T04": 146.3626815, + "2024-08-01T03": 156.01726699999998, + "2024-07-31T17": 158.88800949999998, + "2024-07-31T07": 159.89099985853187, + "2024-08-03T07": 160.7078584, + "2024-08-03T13": 161.1203636, + "latest": 148.35 + }, + "USD near": { + "2024-07-31": 5.169010919518756, + "2024-08-02": 4.798345187353719, + "2024-07-30": 5.244874674356381, + "2024-08-01": 4.992419839586975, + "2024-08-06": 3.7003487858620563, + "2024-07-20": 6.331931099910532, + "2024-07-21": 6.184654545679756, + "2024-07-15": 5.600690091115816, + "2024-08-03": 4.545577964514977, + "2024-07-18": 6.083681760155467, + "2024-07-11": 4.8935711581139865, + "2024-07-17": 6.198297891551166, + "2024-07-22": 6.163948987506248, + "2024-07-12": 4.942653891495454, + "2024-07-24": 5.758837512946294, + "2024-07-06": 4.563987564281788, + "2024-07-08": 4.473692947537101, + "2024-07-07": 4.692149494687023, + "2024-07-13": 5.179164852764435, + "2024-07-09": 4.517294070559305, + "2024-07-23": 5.867564319629732, + "2024-07-10": 4.625896691697447, + "2024-07-14": 5.366981733124768, + "2024-07-29": 5.53087813169511, + "2024-07-27": 5.728219722351934, + "2024-07-28": 5.531026155040114, + "2024-07-19": 6.112062773860554, + "2024-08-04": 4.241795578398128, + "2024-07-26": 5.640285919218731, + "2024-08-05": 3.4895673688708064, + "2024-07-25": 5.456761984966314, + "2024-07-16": 6.0902523251247125, + "2024-08-02T16": 4.731674654999999, + "2024-08-02T11": 4.87390248, + "2024-07-31T00": 5.16145579265715, + "2024-08-05T18": 3.5188555569727513, + "2024-07-31T11": 5.1651576, + "2024-08-05T23": 3.5747147999999997, + "2024-08-02T06": 4.775068188, + "2024-08-01T13": 5.080760064, + "2024-08-05T01": 3.717681266417323, + "2024-08-02T00": 4.9955, + "2024-08-06T06": 3.7587418799999996, + "2024-08-03T23": 4.3525612, + "2024-08-01T11": 5.04532456, + "2024-08-05T19": 3.459078612693595, + "2024-08-04T19": 4.2164907000000005, + "2024-08-01T23": 4.98036395, + "2024-08-04T17": 4.05563103, + "2024-08-02T22": 4.622124764, + "2024-08-02T01": 4.95258827, + "2024-08-02T05": 4.8198031199999996, + "2024-08-03T20": 4.289950957550025, + "2024-07-31T14": 5.18066765, + "2024-08-03T12": 4.6114926, + "2024-07-31T05": 5.14086876, + "2024-08-02T08": 4.797247953341756, + "2024-08-05T14": 3.438503283281681, + "2024-08-01T07": 5.019740100000001, + "2024-08-03T06": 4.657617657, + "2024-08-04T13": 4.4067955, + "2024-08-06T11": 3.5935495680000002, + "2024-08-05T16": 3.5816281921327686, + "2024-08-05T06": 3.304066546842657, + "2024-08-01T22": 5.014652686848436, + "2024-08-04T20": 4.21656588, + "2024-08-06T10": 3.596386416, + "2024-08-01T15": 4.887555, + "2024-08-06T05": 3.7231953900000003, + "2024-08-04T08": 4.29238005, + "2024-08-01T00": 5.002348679999999, + "2024-08-04T18": 4.047408, + "2024-07-31T15": 5.16088317, + "2024-08-03T19": 4.296646, + "2024-08-02T12": 4.81457922, + "2024-08-01T20": 4.75818937, + "2024-08-01T21": 4.912476359999999, + "2024-07-30T23": 5.16950041, + "2024-08-03T16": 4.43667, + "2024-08-06T00": 3.6927384, + "2024-08-04T06": 4.36329308, + "2024-08-02T15": 4.7053842, + "2024-08-05T10": 3.2907922617410357, + "2024-08-05T17": 3.5773521061536178, + "2024-08-03T04": 4.642006833, + "2024-08-06T04": 3.6864581600000004, + "2024-08-06T03": 3.6979416349999994, + "2024-07-30T19": 5.122903824, + "2024-08-02T04": 4.888747188, + "2024-08-02T23": 4.593113280000001, + "2024-08-05T08": 3.4339457264476065, + "2024-08-02T09": 4.853822119999999, + "2024-08-04T12": 4.393402200000001, + "2024-08-04T22": 4.208642226, + "2024-07-31T23": 4.988538818258918, + "2024-08-04T10": 4.287469356, + "2024-07-30T16": 5.20233472, + "2024-08-05T20": 3.5083508, + "2024-08-03T10": 4.5759696000000005, + "2024-08-04T16": 4.124128488, + "2024-07-31T06": 5.234181647, + "2024-07-31T02": 5.208958, + "2024-08-03T09": 4.63487129, + "2024-08-04T15": 4.187192700000001, + "2024-08-03T00": 4.589280424728256, + "2024-07-30T17": 5.149403189999999, + "2024-08-03T15": 4.51297428, + "2024-08-01T19": 4.7517673, + "2024-07-30T13": 5.2829432, + "2024-08-03T22": 4.35851423, + "2024-07-30T22": 5.183445890901661, + "2024-07-31T13": 5.2295409600000005, + "2024-07-30T18": 5.14135424, + "2024-08-03T05": 4.654527733, + "2024-08-05T09": 3.3917353424550223, + "2024-07-30T12": 5.2769444000000005, + "2024-08-03T01": 4.476599788908544, + "2024-08-05T03": 3.6146212384176315, + "2024-07-31T08": 5.1836663000000005, + "2024-08-01T10": 5.0461241359999995, + "2024-07-31T21": 5.0030981, + "2024-08-01T09": 5.0966678283187274, + "2024-08-06T09": 3.6080821000000003, + "2024-08-03T08": 4.64449047, + "2024-08-03T14": 4.61000155, + "2024-08-01T12": 5.100784519833939, + "2024-07-30T20": 5.1264616, + "2024-07-30T15": 5.2182252, + "2024-08-01T01": 5.0162437, + "2024-08-05T13": 3.2135381177293625, + "2024-08-01T16": 4.7946414, + "2024-08-04T00": 4.3720189860000005, + "2024-08-02T14": 4.86799252, + "2024-08-04T09": 4.312740336, + "2024-08-04T02": 4.4099524400000005, + "2024-08-03T03": 4.620594941, + "2024-08-03T11": 4.569158680000001, + "2024-07-31T09": 5.18397746, + "2024-07-31T12": 5.167204743999999, + "2024-08-05T11": 3.222131929705613, + "2024-08-03T18": 4.29089427, + "2024-08-01T08": 5.042976288, + "2024-07-31T10": 5.160121952, + "2024-08-03T17": 4.347067856, + "2024-07-31T03": 5.18990989, + "2024-08-01T06": 5.0005485300000005, + "2024-08-02T07": 4.783022611000001, + "2024-08-02T19": 4.6649097, + "2024-07-30T11": 5.263894349999999, + "2024-08-05T22": 3.58560945, + "2024-08-06T01": 3.7271178, + "2024-08-05T15": 3.4858304793631874, + "2024-07-31T18": 5.18228928, + "2024-08-05T02": 3.6500252710450574, + "2024-08-05T12": 3.2469700418998633, + "2024-07-30T21": 5.14166282, + "2024-08-06T07": 3.72849642, + "2024-08-04T11": 4.36977028, + "2024-08-05T05": 3.5170862045007407, + "2024-07-31T19": 5.08926906, + "2024-08-04T21": 4.19178403, + "2024-07-30T14": 5.2189682587117145, + "2024-08-01T18": 4.723590368216718, + "2024-07-31T04": 5.143019739, + "2024-08-02T18": 4.698297, + "2024-08-02T03": 4.90148648, + "2024-08-04T01": 4.36942052, + "2024-08-02T21": 4.641354, + "2024-08-02T02": 4.8717578800000005, + "2024-08-02T10": 4.858604652, + "2024-08-04T23": 4.13730301, + "2024-08-04T03": 4.3985711940000005, + "2024-08-01T05": 5.001547194, + "2024-08-02T17": 4.74768541, + "2024-07-31T16": 5.15298955, + "2024-08-04T04": 4.38632271, + "2024-08-01T02": 5.0073948, + "2024-08-05T21": 3.550639, + "2024-08-05T07": 3.4866262558465406, + "2024-08-05T00": 4.104993119852779, + "2024-08-02T20": 4.69287918, + "2024-07-31T01": 5.19580469, + "2024-07-31T22": 5.013645288, + "2024-08-04T07": 4.312424556865224, + "2024-08-04T05": 4.36433613, + "2024-08-01T14": 5.0178916, + "2024-08-03T02": 4.55298212, + "2024-08-01T04": 4.97391222, + "2024-08-01T17": 4.7531468299999995, + "2024-08-06T02": 3.70040562, + "2024-08-04T14": 4.24617336, + "2024-07-31T20": 5.0310371300000005, + "2024-08-03T21": 4.308228725286352, + "2024-08-06T08": 3.6771314999999998, + "2024-08-02T13": 4.9561312, + "2024-08-05T04": 3.5607118551263834, + "2024-08-01T03": 5.009343639999999, + "2024-07-31T17": 5.17598058, + "2024-07-31T07": 5.21138397, + "2024-08-03T07": 4.700165436, + "2024-08-03T13": 4.596871999999999, + "latest": 3.59 + }, + "USD neo": { + "2024-07-31": 11.321148885306005, + "2024-08-02": 10.23118998123512, + "2024-07-30": 11.512523504848831, + "2024-08-01": 10.474440978424576, + "2024-08-06": 8.803084733478043, + "2024-07-20": 11.775649285987384, + "2024-07-21": 11.863900433997484, + "2024-07-15": 11.018400982524147, + "2024-08-03": 9.763416574193394, + "2024-07-18": 11.660790522026657, + "2024-07-11": 9.910073094015265, + "2024-07-17": 11.74279683333458, + "2024-07-22": 11.651753282515541, + "2024-07-12": 9.851331135173929, + "2024-07-24": 11.56046711227548, + "2024-07-06": 9.6259625, + "2024-07-08": 9.429221317275003, + "2024-07-07": 9.711301200032624, + "2024-07-13": 10.202135141026572, + "2024-07-09": 9.697013046762976, + "2024-07-23": 11.398773552799044, + "2024-07-10": 9.834000038311713, + "2024-07-14": 10.706639042133903, + "2024-07-29": 11.768502246091431, + "2024-07-27": 11.731118349997598, + "2024-07-28": 11.58477185976387, + "2024-07-19": 11.419992926570904, + "2024-08-04": 9.255267068525031, + "2024-07-26": 11.339073214723529, + "2024-08-05": 8.210875866482743, + "2024-07-25": 11.017471321475428, + "2024-07-16": 11.324181307410532, + "2024-08-02T16": 10.197025155, + "2024-08-02T11": 10.480189240000001, + "2024-07-31T00": 11.35716, + "2024-08-05T18": 8.5139146, + "2024-07-31T11": 11.31877125, + "2024-08-05T23": 8.5657128, + "2024-08-02T06": 10.3121568, + "2024-08-01T13": 10.7248496, + "2024-08-05T01": 8.296597, + "2024-08-02T00": 10.6494069, + "2024-08-06T06": 9.00456854, + "2024-08-03T23": 9.554646400000001, + "2024-08-01T11": 10.694329, + "2024-08-05T19": 8.4231996, + "2024-08-04T19": 9.2718026009485, + "2024-08-01T23": 10.636698661999999, + "2024-08-04T17": 9.00067298528914, + "2024-08-02T22": 10.04953046, + "2024-08-02T01": 10.6205393, + "2024-08-02T05": 10.4608911, + "2024-08-03T20": 9.418885116, + "2024-07-31T14": 11.3848745, + "2024-08-03T12": 9.9624228, + "2024-07-31T05": 11.297514000000001, + "2024-08-02T08": 10.391368, + "2024-08-05T14": 8.4122707, + "2024-08-01T07": 10.675194, + "2024-08-03T06": 10.1389365, + "2024-08-04T13": 9.622186500000002, + "2024-08-06T11": 8.7928128, + "2024-08-05T16": 8.6610585, + "2024-08-05T06": 7.7894547, + "2024-08-01T22": 10.58021113, + "2024-08-04T20": 9.3068346, + "2024-08-06T10": 8.800784334059664, + "2024-08-01T15": 10.444775, + "2024-08-06T05": 8.936302163329584, + "2024-08-04T08": 9.55616718, + "2024-08-01T00": 10.926393099999999, + "2024-08-04T18": 9.0142272, + "2024-07-31T15": 11.3653383, + "2024-08-03T19": 9.452621200000001, + "2024-08-02T12": 10.4425805, + "2024-08-01T20": 10.239090321330611, + "2024-08-01T21": 10.4603676, + "2024-07-30T23": 11.39069574, + "2024-08-03T16": 9.612784999999999, + "2024-08-06T00": 8.7897576, + "2024-08-04T06": 9.7039798, + "2024-08-02T15": 10.090102, + "2024-08-05T10": 7.968143591797796, + "2024-08-05T17": 8.645097600000001, + "2024-08-03T04": 10.10778082, + "2024-08-06T04": 8.853311012086222, + "2024-08-06T03": 8.801621107284781, + "2024-07-30T19": 11.3158116, + "2024-08-02T04": 10.51841952, + "2024-08-02T23": 10.06732881515279, + "2024-08-05T08": 8.14589595, + "2024-08-02T09": 10.4510044, + "2024-08-04T12": 9.61519, + "2024-08-04T22": 9.277566030000001, + "2024-07-31T23": 10.9764864, + "2024-08-04T10": 9.5250444, + "2024-07-30T16": 11.446335999999999, + "2024-08-05T20": 8.52455237, + "2024-08-03T10": 9.99719472, + "2024-08-04T16": 9.1234264, + "2024-07-31T06": 11.4866679, + "2024-07-31T02": 11.437712, + "2024-08-03T09": 10.03206351, + "2024-08-04T15": 9.233809200000001, + "2024-08-03T00": 10.03233427484756, + "2024-07-30T17": 11.356478399999999, + "2024-08-03T15": 9.7134876, + "2024-08-01T19": 10.248714, + "2024-07-30T13": 11.467706000000002, + "2024-08-03T22": 9.5745394, + "2024-07-30T22": 11.3467085, + "2024-07-31T13": 11.424806358080861, + "2024-07-30T18": 11.36436224, + "2024-08-03T05": 10.092295147856593, + "2024-08-05T09": 8.125501332657027, + "2024-07-30T12": 11.5036988, + "2024-08-03T01": 9.86485129, + "2024-08-05T03": 8.236728488064744, + "2024-07-31T08": 11.446888758527146, + "2024-08-01T10": 10.67134119, + "2024-07-31T21": 11.0058162, + "2024-08-01T09": 10.700239962538825, + "2024-08-06T09": 8.80264, + "2024-08-03T08": 10.079760195839864, + "2024-08-03T14": 9.973513, + "2024-08-01T12": 10.73841312, + "2024-07-30T20": 11.296610000000001, + "2024-07-30T15": 11.436110399999999, + "2024-08-01T01": 10.856199, + "2024-08-05T13": 7.944523300000001, + "2024-08-01T16": 10.2578145, + "2024-08-04T00": 9.6243183, + "2024-08-02T14": 10.3025768, + "2024-08-04T09": 9.592546545173173, + "2024-08-04T02": 9.651589745057157, + "2024-08-03T03": 10.0779929, + "2024-08-03T11": 9.9916, + "2024-07-31T09": 11.4255423, + "2024-07-31T12": 11.343644, + "2024-08-05T11": 7.7910127, + "2024-08-03T18": 9.443385, + "2024-08-01T08": 10.660476327770036, + "2024-07-31T10": 11.394528, + "2024-08-03T17": 9.49316, + "2024-07-31T03": 11.4076039, + "2024-08-01T06": 10.6847619, + "2024-08-02T07": 10.391576, + "2024-08-02T19": 10.131714459202518, + "2024-07-30T11": 11.5275787, + "2024-08-05T22": 8.6214654, + "2024-08-06T01": 8.902793344765556, + "2024-08-05T15": 8.585405399999999, + "2024-07-31T18": 11.3162644, + "2024-08-05T02": 8.19836, + "2024-08-05T12": 7.814941173398866, + "2024-07-30T21": 11.2670698, + "2024-08-06T07": 8.99402196, + "2024-08-04T11": 9.625088700000001, + "2024-08-05T05": 8.15651058, + "2024-07-31T19": 11.186195399999999, + "2024-08-04T21": 9.224324170000001, + "2024-07-30T14": 11.415716399999999, + "2024-08-01T18": 10.0707264, + "2024-07-31T04": 11.34479342718572, + "2024-08-02T18": 10.1898, + "2024-08-02T03": 10.510340596756407, + "2024-08-04T01": 9.571362781471432, + "2024-08-02T21": 10.041554050903885, + "2024-08-02T02": 10.5108476, + "2024-08-02T10": 10.4320656, + "2024-08-04T23": 9.1662403, + "2024-08-04T03": 9.6640046, + "2024-08-01T05": 10.733448600000001, + "2024-08-02T17": 10.230272, + "2024-07-31T16": 11.3255813, + "2024-08-04T04": 9.6641013, + "2024-08-01T02": 10.814373600000001, + "2024-08-05T21": 8.5915462, + "2024-08-05T07": 8.14, + "2024-08-05T00": 8.905812300000001, + "2024-08-02T20": 10.188099554013949, + "2024-07-31T01": 11.4373688, + "2024-07-31T22": 11.067304225299408, + "2024-08-04T07": 9.5843419, + "2024-08-04T05": 9.654107400000001, + "2024-08-01T14": 10.5755564, + "2024-08-03T02": 10.046720800000001, + "2024-08-01T04": 10.694436, + "2024-08-01T17": 10.18074691, + "2024-08-06T02": 8.7933402, + "2024-08-04T14": 9.32198982, + "2024-07-31T20": 11.0157022, + "2024-08-03T21": 9.504294, + "2024-08-06T08": 8.8651388, + "2024-08-02T13": 10.5817398, + "2024-08-05T04": 8.232718055404126, + "2024-08-01T03": 10.784281299999998, + "2024-07-31T17": 11.3455735, + "2024-07-31T07": 11.473859217256452, + "2024-08-03T07": 10.1491288, + "2024-08-03T13": 9.943233999999999, + "latest": 8.79 + }, + "USD nervos": { + "2024-07-31": 0.011389407869204218, + "2024-08-02": 0.010442830071888521, + "2024-07-30": 0.011687545884999971, + "2024-08-01": 0.01086071403357392, + "2024-08-06": 0.006875439148452129, + "2024-07-20": 0.011975694433834684, + "2024-07-21": 0.012485497039142169, + "2024-07-15": 0.011190540738359527, + "2024-08-03": 0.009481603463245373, + "2024-07-18": 0.011840829377115463, + "2024-07-11": 0.010089987568228409, + "2024-07-17": 0.012389362029534019, + "2024-07-22": 0.012651587429356922, + "2024-07-12": 0.00975776916701758, + "2024-07-24": 0.011526458286169512, + "2024-07-06": 0.009321970843625378, + "2024-07-08": 0.009356765834393379, + "2024-07-07": 0.010157325486433678, + "2024-07-13": 0.010926377283890154, + "2024-07-09": 0.009552757706110231, + "2024-07-23": 0.011998447280556013, + "2024-07-10": 0.009889550009070117, + "2024-07-14": 0.010675565747696548, + "2024-07-29": 0.012274952948585808, + "2024-07-27": 0.012409545707884275, + "2024-07-28": 0.012338603475298525, + "2024-07-19": 0.01160877958612742, + "2024-08-04": 0.009019904719384181, + "2024-07-26": 0.012024205084715314, + "2024-08-05": 0.008045549846705543, + "2024-07-25": 0.01212923825778571, + "2024-07-16": 0.01278311861929004, + "2024-08-02T16": 0.00973272471631602, + "2024-08-02T11": 0.010111958670666337, + "2024-07-31T00": 0.011389407869204218, + "2024-08-05T18": 0.007038870382384169, + "2024-07-31T11": 0.011330690150761196, + "2024-08-05T23": 0.0069525612616294094, + "2024-08-02T06": 0.009969088091875113, + "2024-08-01T13": 0.010785341740406617, + "2024-08-05T01": 0.007702323499852557, + "2024-08-02T00": 0.010362929015422385, + "2024-08-06T06": 0.007482533144203899, + "2024-08-03T23": 0.00896267950486935, + "2024-08-01T11": 0.010617207364387047, + "2024-08-05T19": 0.006771158445907655, + "2024-08-04T19": 0.008121973620522518, + "2024-08-01T23": 0.010356222892503287, + "2024-08-04T17": 0.007943516904644524, + "2024-08-02T22": 0.009541570524513506, + "2024-08-02T01": 0.010339571659578698, + "2024-08-02T05": 0.01019837830320465, + "2024-08-03T20": 0.008866331406959615, + "2024-07-31T14": 0.011493620341264235, + "2024-08-03T12": 0.009410983213411522, + "2024-07-31T05": 0.01140559591476854, + "2024-08-02T08": 0.010026315683451843, + "2024-08-05T14": 0.006507942271366662, + "2024-08-01T07": 0.010549746327802274, + "2024-08-03T06": 0.009484430647766643, + "2024-08-04T13": 0.009020732448403623, + "2024-08-06T11": 0.007479728663760171, + "2024-08-05T16": 0.0070487958640025475, + "2024-08-05T06": 0.006797230680115392, + "2024-08-01T22": 0.010075302809427448, + "2024-08-04T20": 0.008357731867507287, + "2024-08-06T10": 0.0074970545230168915, + "2024-08-01T15": 0.010409122637359122, + "2024-08-06T05": 0.007384733436725025, + "2024-08-04T08": 0.009011712621410237, + "2024-08-01T00": 0.01086071403357392, + "2024-08-04T18": 0.007954731080204171, + "2024-07-31T15": 0.011426057765114135, + "2024-08-03T19": 0.008861449723071589, + "2024-08-02T12": 0.010045774614438386, + "2024-08-01T20": 0.009885099982029058, + "2024-08-01T21": 0.010091291164562715, + "2024-07-30T23": 0.011432062317295237, + "2024-08-03T16": 0.009162691346195401, + "2024-08-06T00": 0.006875439148452129, + "2024-08-04T06": 0.009084583251661876, + "2024-08-02T15": 0.009697572152797743, + "2024-08-05T10": 0.006753928951072459, + "2024-08-05T17": 0.007039882691963723, + "2024-08-03T04": 0.009509140420148584, + "2024-08-06T04": 0.007305605962548521, + "2024-08-06T03": 0.007347545968455579, + "2024-07-30T19": 0.011478880392529107, + "2024-08-02T04": 0.010220322272965127, + "2024-08-02T23": 0.009463828927838001, + "2024-08-05T08": 0.006841591960008222, + "2024-08-02T09": 0.010072494126006939, + "2024-08-04T12": 0.008950705740927708, + "2024-08-04T22": 0.008220069837164928, + "2024-07-31T23": 0.010966903877293238, + "2024-08-04T10": 0.008970348361663064, + "2024-07-30T16": 0.011676672849028291, + "2024-08-05T20": 0.00689649863793709, + "2024-08-03T10": 0.00945662145582711, + "2024-08-04T16": 0.008314820937141679, + "2024-07-31T06": 0.011545159786341148, + "2024-07-31T02": 0.011454800164359456, + "2024-08-03T09": 0.009424481983178539, + "2024-08-04T15": 0.008576864592589422, + "2024-08-03T00": 0.009481603463245373, + "2024-07-30T17": 0.011663882720595351, + "2024-08-03T15": 0.009473422861604366, + "2024-08-01T19": 0.009779556613578898, + "2024-07-30T13": 0.011732286245356268, + "2024-08-03T22": 0.008974998090858322, + "2024-07-30T22": 0.011391273526902251, + "2024-07-31T13": 0.011398168622778539, + "2024-07-30T18": 0.011560378327573922, + "2024-08-03T05": 0.009467080717786196, + "2024-08-05T09": 0.006772835001557377, + "2024-07-30T12": 0.011669478649534933, + "2024-08-03T01": 0.009301339511054293, + "2024-08-05T03": 0.007076668130014888, + "2024-07-31T08": 0.011494649495812984, + "2024-08-01T10": 0.010573406918199758, + "2024-07-31T21": 0.01092702521415967, + "2024-08-01T09": 0.010732068482045493, + "2024-08-06T09": 0.007450604642101474, + "2024-08-03T08": 0.00945942795750165, + "2024-08-03T14": 0.009497523392597134, + "2024-08-01T12": 0.010637300856242562, + "2024-07-30T20": 0.011405622544310927, + "2024-07-30T15": 0.011619035945813537, + "2024-08-01T01": 0.010984608224821571, + "2024-08-05T13": 0.006347447915431457, + "2024-08-01T16": 0.01022843984266638, + "2024-08-04T00": 0.009011994685917025, + "2024-08-02T14": 0.01028110550245031, + "2024-08-04T09": 0.008989134236687965, + "2024-08-04T02": 0.00903343823254724, + "2024-08-03T03": 0.009380022709542775, + "2024-08-03T11": 0.009438803066475, + "2024-07-31T09": 0.011481126169596886, + "2024-07-31T12": 0.011352805794765341, + "2024-08-05T11": 0.006473877637339445, + "2024-08-03T18": 0.008868982119868125, + "2024-08-01T08": 0.010590832140091651, + "2024-07-31T10": 0.011380760439089574, + "2024-08-03T17": 0.00909921619175085, + "2024-07-31T03": 0.01137432849046559, + "2024-08-01T06": 0.010664490889985927, + "2024-08-02T07": 0.009996212771180488, + "2024-08-02T19": 0.00962623976819377, + "2024-07-30T11": 0.0118075506792908, + "2024-08-05T22": 0.006929828685585738, + "2024-08-06T01": 0.007440256458062138, + "2024-08-05T15": 0.00695093196054237, + "2024-07-31T18": 0.011349690654865949, + "2024-08-05T02": 0.007078368796193516, + "2024-08-05T12": 0.006512486318300043, + "2024-07-30T21": 0.01142637237881641, + "2024-08-06T07": 0.007510710946922959, + "2024-08-04T11": 0.008944138667824446, + "2024-08-05T05": 0.00692185426642153, + "2024-07-31T19": 0.011448003345362567, + "2024-08-04T21": 0.008361240486764307, + "2024-07-30T14": 0.01164738662054102, + "2024-08-01T18": 0.009869165989407718, + "2024-07-31T04": 0.011430329513554372, + "2024-08-02T18": 0.00965996205533783, + "2024-08-02T03": 0.010081901169538188, + "2024-08-04T01": 0.00908914214726672, + "2024-08-02T21": 0.009603693656416525, + "2024-08-02T02": 0.010168767771495784, + "2024-08-02T10": 0.01009738636012012, + "2024-08-04T23": 0.008183802452853864, + "2024-08-04T03": 0.00912350737439847, + "2024-08-01T05": 0.010565319144209535, + "2024-08-02T17": 0.009733173495977002, + "2024-07-31T16": 0.011311191290848567, + "2024-08-04T04": 0.009099892899913734, + "2024-08-01T02": 0.010936769738327664, + "2024-08-05T21": 0.006934330827303646, + "2024-08-05T07": 0.006546846737094346, + "2024-08-05T00": 0.008037257178746352, + "2024-08-02T20": 0.009568837687191092, + "2024-07-31T01": 0.011428208186450094, + "2024-07-31T22": 0.011005956956200267, + "2024-08-04T07": 0.00911389754559171, + "2024-08-04T05": 0.009058225145115275, + "2024-08-01T14": 0.010701379461533964, + "2024-08-03T02": 0.009405237658906404, + "2024-08-01T04": 0.010837035405057736, + "2024-08-01T17": 0.009960175346189759, + "2024-08-06T02": 0.007405569591683908, + "2024-08-04T14": 0.008929820876779312, + "2024-07-31T20": 0.011137566933175433, + "2024-08-03T21": 0.00882772463408118, + "2024-08-06T08": 0.00763937333664688, + "2024-08-02T13": 0.010112098502027699, + "2024-08-05T04": 0.006962893144891377, + "2024-08-01T03": 0.010916256513682932, + "2024-07-31T17": 0.011316453722372161, + "2024-07-31T07": 0.011687586854513474, + "2024-08-03T07": 0.009504138604887505, + "2024-08-03T13": 0.009491805944663728, + "latest": 0.00752105 + }, + "USD osmo": { + "2024-07-31": 0.4606433029888748, + "2024-08-02": 0.42443452187780073, + "2024-07-30": 0.474597907750911, + "2024-08-01": 0.44366453724452953, + "2024-08-06": 0.3494224428868045, + "2024-07-20": 0.5522649452731553, + "2024-07-21": 0.5420782162886373, + "2024-07-15": 0.50254633493704, + "2024-08-03": 0.39539159622728237, + "2024-07-18": 0.5378903371750399, + "2024-07-11": 0.4909036207721588, + "2024-07-17": 0.5435294547899497, + "2024-07-22": 0.5337803199037376, + "2024-07-12": 0.4740640566571007, + "2024-07-24": 0.5011202482665436, + "2024-07-06": 0.45874587, + "2024-07-08": 0.47426083465360913, + "2024-07-07": 0.4760049603772478, + "2024-07-13": 0.4818008330816177, + "2024-07-09": 0.49990067258706944, + "2024-07-23": 0.5135799115424972, + "2024-07-10": 0.497400001937792, + "2024-07-14": 0.4841645605995294, + "2024-07-29": 0.48753795201309963, + "2024-07-27": 0.4877464978085105, + "2024-07-28": 0.4805903880000001, + "2024-07-19": 0.5312996709183119, + "2024-08-04": 0.375607922716167, + "2024-07-26": 0.4826605503304275, + "2024-08-05": 0.3311589491782728, + "2024-07-25": 0.46789261147463707, + "2024-07-16": 0.5250938841218894, + "2024-08-02T16": 0.410151075, + "2024-08-02T11": 0.42734073200000006, + "2024-07-31T00": 0.46088475, + "2024-08-05T18": 0.33645469799999994, + "2024-07-31T11": 0.460046835, + "2024-08-05T23": 0.335067, + "2024-08-02T06": 0.42617586, + "2024-08-01T13": 0.445985824, + "2024-08-05T01": 0.338061338, + "2024-08-02T00": 0.44100274, + "2024-08-06T06": 0.358461486, + "2024-08-03T23": 0.3848914042668789, + "2024-08-01T11": 0.44396457399999995, + "2024-08-05T19": 0.331926084, + "2024-08-04T19": 0.37371305000000005, + "2024-08-01T23": 0.44208847500000004, + "2024-08-04T17": 0.362498876, + "2024-08-02T22": 0.404238642, + "2024-08-02T01": 0.439108845, + "2024-08-02T05": 0.43152424699999997, + "2024-08-03T20": 0.37955129469619076, + "2024-07-31T14": 0.46253802925033716, + "2024-08-03T12": 0.40729022400000003, + "2024-07-31T05": 0.458699064, + "2024-08-02T08": 0.427444926, + "2024-08-05T14": 0.32839617532639465, + "2024-08-01T07": 0.44420002000000003, + "2024-08-03T06": 0.407255607, + "2024-08-04T13": 0.38670655000000004, + "2024-08-06T11": 0.35141241600000006, + "2024-08-05T16": 0.33953751, + "2024-08-05T06": 0.3129007495404165, + "2024-08-01T22": 0.440833804, + "2024-08-04T20": 0.37587216, + "2024-08-06T10": 0.351716028, + "2024-08-01T15": 0.43508235000000006, + "2024-08-06T05": 0.35410880100000003, + "2024-08-04T08": 0.38696380799999996, + "2024-08-01T00": 0.451251038, + "2024-08-04T18": 0.363067488, + "2024-07-31T15": 0.460711031, + "2024-08-03T19": 0.38020321, + "2024-08-02T12": 0.42489810800000005, + "2024-08-01T20": 0.42886640700000006, + "2024-08-01T21": 0.436398144, + "2024-07-30T23": 0.461666078, + "2024-08-03T16": 0.39070675, + "2024-08-06T00": 0.3430686, + "2024-08-04T06": 0.392556464, + "2024-08-02T15": 0.41139643600000003, + "2024-08-05T10": 0.31834456200000005, + "2024-08-05T17": 0.34014081697774845, + "2024-08-03T04": 0.405989536, + "2024-08-06T04": 0.35235849, + "2024-08-06T03": 0.35053665599999995, + "2024-07-30T19": 0.461529171, + "2024-08-02T04": 0.434803968, + "2024-08-02T23": 0.404781216, + "2024-08-05T08": 0.324835728, + "2024-08-02T09": 0.42863106, + "2024-08-04T12": 0.38690645, + "2024-08-04T22": 0.3766071239050906, + "2024-07-31T23": 0.449955968, + "2024-08-04T10": 0.385399488, + "2024-07-30T16": 0.47284864, + "2024-08-05T20": 0.33523352, + "2024-08-03T10": 0.404743512, + "2024-08-04T16": 0.36823468, + "2024-07-31T06": 0.465664918, + "2024-07-31T02": 0.46270744, + "2024-08-03T09": 0.40563866000000004, + "2024-08-04T15": 0.372250425, + "2024-08-03T00": 0.40446945, + "2024-07-30T17": 0.466955199, + "2024-08-03T15": 0.399532134, + "2024-08-01T19": 0.42822843000000005, + "2024-07-30T13": 0.47580482, + "2024-08-03T22": 0.384880493, + "2024-07-30T22": 0.46006654199999997, + "2024-07-31T13": 0.46328215500000003, + "2024-07-30T18": 0.465451008, + "2024-08-03T05": 0.405849007, + "2024-08-05T09": 0.324358374, + "2024-07-30T12": 0.4757423545732492, + "2024-08-03T01": 0.40000738500000005, + "2024-08-05T03": 0.332083395, + "2024-07-31T08": 0.463091515, + "2024-08-01T10": 0.44476414999999997, + "2024-07-31T21": 0.449829, + "2024-08-01T09": 0.44624103, + "2024-08-06T09": 0.35200557, + "2024-08-03T08": 0.405306471, + "2024-08-03T14": 0.40513648999999996, + "2024-08-01T12": 0.445967976, + "2024-07-30T20": 0.46106164, + "2024-07-30T15": 0.473039112, + "2024-08-01T01": 0.45044229, + "2024-08-05T13": 0.31148131, + "2024-08-01T16": 0.42979892999999997, + "2024-08-04T00": 0.386284117766624, + "2024-08-02T14": 0.423095152, + "2024-08-04T09": 0.38697929600000003, + "2024-08-04T02": 0.3887666, + "2024-08-03T03": 0.40431828799999997, + "2024-08-03T11": 0.404859632, + "2024-07-31T09": 0.462019742, + "2024-07-31T12": 0.461462330101841, + "2024-08-05T11": 0.31204055999999997, + "2024-08-03T18": 0.38333148, + "2024-08-01T08": 0.4447686, + "2024-07-31T10": 0.46027896, + "2024-08-03T17": 0.384922656, + "2024-07-31T03": 0.461003169, + "2024-08-01T06": 0.4447824631377761, + "2024-08-02T07": 0.42757587063208546, + "2024-08-02T19": 0.40765983483378976, + "2024-07-30T11": 0.476599893, + "2024-08-05T22": 0.336357171, + "2024-08-06T01": 0.34860454999999996, + "2024-08-05T15": 0.335711365, + "2024-07-31T18": 0.4598482, + "2024-08-05T02": 0.33343330000000004, + "2024-08-05T12": 0.313234452, + "2024-07-30T21": 0.4588782729320713, + "2024-08-06T07": 0.35723919, + "2024-08-04T11": 0.387502273, + "2024-08-05T05": 0.328780272, + "2024-07-31T19": 0.458743974, + "2024-08-04T21": 0.375291134, + "2024-07-30T14": 0.47250548000000003, + "2024-08-01T18": 0.42370982799999996, + "2024-07-31T04": 0.460203337, + "2024-08-02T18": 0.4082913, + "2024-08-02T03": 0.434499892, + "2024-08-04T01": 0.385872201, + "2024-08-02T21": 0.4042953, + "2024-08-02T02": 0.43432181099999995, + "2024-08-02T10": 0.426375708, + "2024-08-04T23": 0.3703580847075897, + "2024-08-04T03": 0.38917368757864224, + "2024-08-01T05": 0.444828489, + "2024-08-02T17": 0.40981031, + "2024-07-31T16": 0.4598206, + "2024-08-04T04": 0.3897621, + "2024-08-01T02": 0.448466676, + "2024-08-05T21": 0.336360534, + "2024-08-05T07": 0.3263, + "2024-08-05T00": 0.36284377371373105, + "2024-08-02T20": 0.409153536, + "2024-07-31T01": 0.46249360200000006, + "2024-07-31T22": 0.45185988, + "2024-08-04T07": 0.3894716143821081, + "2024-08-04T05": 0.390061917, + "2024-08-01T14": 0.440714822, + "2024-08-03T02": 0.401768964, + "2024-08-01T04": 0.445368288, + "2024-08-01T17": 0.427153725, + "2024-08-06T02": 0.35133345600000004, + "2024-08-04T14": 0.376637976, + "2024-07-31T20": 0.45162379799999997, + "2024-08-03T21": 0.38117116, + "2024-08-06T08": 0.35250433400000003, + "2024-08-02T13": 0.42736639400000004, + "2024-08-05T04": 0.332483375, + "2024-08-01T03": 0.44906187099999995, + "2024-07-31T17": 0.458421146, + "2024-07-31T07": 0.465902230009064, + "2024-08-03T07": 0.4081785218386333, + "2024-08-03T13": 0.406123648, + "latest": 0.349694 + }, + "USD polkadot": { + "2024-07-31": 5.4977355246994, + "2024-08-02": 5.197240047442856, + "2024-07-30": 5.657986688188726, + "2024-08-01": 5.318513445679658, + "2024-08-06": 4.344862759666136, + "2024-07-20": 6.332051864321539, + "2024-07-21": 6.2953301226950105, + "2024-07-15": 6.403134280290466, + "2024-08-03": 5.081670366488918, + "2024-07-18": 6.193160195071448, + "2024-07-11": 6.091174495357801, + "2024-07-17": 6.445443880934569, + "2024-07-22": 6.2509317070911425, + "2024-07-12": 5.917267397502996, + "2024-07-24": 5.917249261634868, + "2024-07-06": 5.936868307716907, + "2024-07-08": 5.971454509562169, + "2024-07-07": 6.197064578692867, + "2024-07-13": 6.233445570320021, + "2024-07-09": 6.079597841727698, + "2024-07-23": 6.005627234070037, + "2024-07-10": 6.126873718960431, + "2024-07-14": 6.241350734915403, + "2024-07-29": 5.786762346279409, + "2024-07-27": 5.852602765615216, + "2024-07-28": 5.739905979713342, + "2024-07-19": 6.158153264348902, + "2024-08-04": 4.783735849009637, + "2024-07-26": 5.835734985850814, + "2024-08-05": 4.037621245609297, + "2024-07-25": 5.69701083272247, + "2024-07-16": 6.362077020291528, + "2024-08-02T16": 5.087197082176196, + "2024-08-02T11": 5.24159336, + "2024-07-31T00": 5.518619999999999, + "2024-08-05T18": 4.17291866, + "2024-07-31T11": 5.5389519, + "2024-08-05T23": 4.225147183620002, + "2024-08-02T06": 5.193060352004102, + "2024-08-01T13": 5.34143488, + "2024-08-05T01": 4.17128907, + "2024-08-02T00": 5.3411886, + "2024-08-06T06": 4.430231709999999, + "2024-08-03T23": 5.043010886311089, + "2024-08-01T11": 5.3671539, + "2024-08-05T19": 4.114562940000001, + "2024-08-04T19": 4.7556210000000005, + "2024-08-01T23": 5.34302636, + "2024-08-04T17": 4.6091712099999995, + "2024-08-02T22": 5.09318714, + "2024-08-02T01": 5.31426609, + "2024-08-02T05": 5.227079649209002, + "2024-08-03T20": 4.91070762, + "2024-07-31T14": 5.500523650000001, + "2024-08-03T12": 5.1708671520000005, + "2024-07-31T05": 5.478794400000001, + "2024-08-02T08": 5.224662503325406, + "2024-08-05T14": 4.148119690000001, + "2024-08-01T07": 5.363285435000001, + "2024-08-03T06": 5.176950966, + "2024-08-04T13": 4.89565095, + "2024-08-06T11": 4.3463904, + "2024-08-05T16": 4.2319603, + "2024-08-05T06": 3.763603434883482, + "2024-08-01T22": 5.33856531, + "2024-08-04T20": 4.793190427825227, + "2024-08-06T10": 4.34743418, + "2024-08-01T15": 5.168414500000001, + "2024-08-06T05": 4.378581840000001, + "2024-08-04T08": 4.96996647, + "2024-08-01T00": 5.39921767, + "2024-08-04T18": 4.60804896, + "2024-07-31T15": 5.470756069999999, + "2024-08-03T19": 4.90916786, + "2024-08-02T12": 5.22129025, + "2024-08-01T20": 5.21772477, + "2024-08-01T21": 5.27614148, + "2024-07-30T23": 5.51140123, + "2024-08-03T16": 5.0182335, + "2024-08-06T00": 4.3288656, + "2024-08-04T06": 5.02588202, + "2024-08-02T15": 5.0454506079999994, + "2024-08-05T10": 3.87854292, + "2024-08-05T17": 4.22349039, + "2024-08-03T04": 5.14280052, + "2024-08-06T04": 4.3699656000000004, + "2024-08-06T03": 4.341692599999999, + "2024-07-30T19": 5.546347092, + "2024-08-02T04": 5.26120794, + "2024-08-02T23": 5.1084528, + "2024-08-05T08": 3.9444338400000003, + "2024-08-02T09": 5.2574746800000005, + "2024-08-04T12": 4.883557000000001, + "2024-08-04T22": 4.770917710171183, + "2024-07-31T23": 5.383176832, + "2024-08-04T10": 4.96041924, + "2024-07-30T16": 5.64619264, + "2024-08-05T20": 4.16521648, + "2024-08-03T10": 5.15645832, + "2024-08-04T16": 4.69461744, + "2024-07-31T06": 5.54139253, + "2024-07-31T02": 5.5058986, + "2024-08-03T09": 5.1554076, + "2024-08-04T15": 4.753546638790864, + "2024-08-03T00": 5.114099630503347, + "2024-07-30T17": 5.592965642999999, + "2024-08-03T15": 5.106376434, + "2024-08-01T19": 5.182539484052709, + "2024-07-30T13": 5.68106356, + "2024-08-03T22": 5.04312378, + "2024-07-30T22": 5.51540007, + "2024-07-31T13": 5.54439291, + "2024-07-30T18": 5.57521536, + "2024-08-03T05": 5.15926685, + "2024-08-05T09": 3.9478453561065123, + "2024-07-30T12": 5.6838630000000006, + "2024-08-03T01": 5.03879465, + "2024-08-05T03": 4.05479725, + "2024-07-31T08": 5.529928135890506, + "2024-08-01T10": 5.36415549, + "2024-07-31T21": 5.376955979999999, + "2024-08-01T09": 5.3568912, + "2024-08-06T09": 4.3332996, + "2024-08-03T08": 5.159890047, + "2024-08-03T14": 5.186153196732091, + "2024-08-01T12": 5.36620812, + "2024-07-30T20": 5.5213431, + "2024-07-30T15": 5.64408036, + "2024-08-01T01": 5.394512550453116, + "2024-08-05T13": 3.9547627000000003, + "2024-08-01T16": 5.1144174, + "2024-08-04T00": 5.043022860000001, + "2024-08-02T14": 5.17527112, + "2024-08-04T09": 4.97416311, + "2024-08-04T02": 5.0629604, + "2024-08-03T03": 5.1139072, + "2024-08-03T11": 5.16665636, + "2024-07-31T09": 5.533840959999999, + "2024-07-31T12": 5.544393400000001, + "2024-08-05T11": 3.8104953, + "2024-08-03T18": 4.894571399999999, + "2024-08-01T08": 5.36920656, + "2024-07-31T10": 5.536341279999999, + "2024-08-03T17": 4.93244608, + "2024-07-31T03": 5.49984479, + "2024-08-01T06": 5.351276589, + "2024-08-02T07": 5.220767749999999, + "2024-08-02T19": 5.086449719999999, + "2024-07-30T11": 5.68280636, + "2024-08-05T22": 4.2325369074728725, + "2024-08-06T01": 4.381314, + "2024-08-05T15": 4.219656709999999, + "2024-07-31T18": 5.492486881, + "2024-08-05T02": 4.0711856, + "2024-08-05T12": 3.86842548, + "2024-07-30T21": 5.52256376, + "2024-08-06T07": 4.40995269, + "2024-08-04T11": 4.92648621, + "2024-08-05T05": 3.9555516432322255, + "2024-07-31T19": 5.433152099999999, + "2024-08-04T21": 4.770616120000001, + "2024-07-30T14": 5.656473742229626, + "2024-08-01T18": 5.10429972, + "2024-07-31T04": 5.48484794, + "2024-08-02T18": 5.10489, + "2024-08-02T03": 5.27614148, + "2024-08-04T01": 5.050918199, + "2024-08-02T21": 5.092902, + "2024-08-02T02": 5.25942032, + "2024-08-02T10": 5.2520054400000005, + "2024-08-04T23": 4.7080689, + "2024-08-04T03": 5.05986094, + "2024-08-01T05": 5.31275724, + "2024-08-02T17": 5.11213885, + "2024-07-31T16": 5.44487567, + "2024-08-04T04": 5.051516694, + "2024-08-01T02": 5.3812003200000005, + "2024-08-05T21": 4.19675528, + "2024-08-05T07": 3.944623055924957, + "2024-08-05T00": 4.58884223, + "2024-08-02T20": 5.11741593, + "2024-07-31T01": 5.51673086, + "2024-07-31T22": 5.39032848, + "2024-08-04T07": 4.9820588500000005, + "2024-08-04T05": 5.039923770000001, + "2024-08-01T14": 5.2577907999999995, + "2024-08-03T02": 5.09926008, + "2024-08-01T04": 5.31423516, + "2024-08-01T17": 5.093371025000001, + "2024-08-06T02": 4.3416492, + "2024-08-04T14": 4.79393772, + "2024-07-31T20": 5.372004101, + "2024-08-03T21": 4.964019799999999, + "2024-08-06T08": 4.36052764, + "2024-08-02T13": 5.24890266, + "2024-08-05T04": 3.9568021499999997, + "2024-08-01T03": 5.37015231, + "2024-07-31T17": 5.483260694, + "2024-07-31T07": 5.535483468, + "2024-08-03T07": 5.18144991, + "2024-08-03T13": 5.167283856, + "latest": 4.34 + }, + "USD polygon": { + "2024-07-31": 0.5116822491399039, + "2024-08-02": 0.48000135929893667, + "2024-07-30": 0.5163246506872848, + "2024-08-01": 0.4887406162643104, + "2024-08-06": 0.39355932255676984, + "2024-07-20": 0.5363392912462562, + "2024-07-21": 0.5369464421923805, + "2024-07-15": 0.536789081046803, + "2024-08-03": 0.4641005209605169, + "2024-07-18": 0.5306332393531523, + "2024-07-11": 0.5108888714493965, + "2024-07-17": 0.5515194912692808, + "2024-07-22": 0.5389383100680454, + "2024-07-12": 0.5000345465064904, + "2024-07-24": 0.5334622236788786, + "2024-07-06": 0.48396254350456847, + "2024-07-08": 0.49390317756263574, + "2024-07-07": 0.495044501742339, + "2024-07-13": 0.517386819872156, + "2024-07-09": 0.49995819655136453, + "2024-07-23": 0.5363239462747732, + "2024-07-10": 0.5074128434758726, + "2024-07-14": 0.5283129534408879, + "2024-07-29": 0.5170364526549603, + "2024-07-27": 0.5155136337097186, + "2024-07-28": 0.5120014803069549, + "2024-07-19": 0.5188997555607686, + "2024-08-04": 0.429726226045297, + "2024-07-26": 0.5102531984182563, + "2024-08-05": 0.3705007201039541, + "2024-07-25": 0.500007586487168, + "2024-07-16": 0.5431983508598159, + "2024-08-02T16": 0.46450483499999995, + "2024-08-02T11": 0.48439276800000003, + "2024-07-31T00": 0.50567355, + "2024-08-05T18": 0.38307613399999996, + "2024-07-31T11": 0.51151851, + "2024-08-05T23": 0.38627723999999997, + "2024-08-02T06": 0.48013482, + "2024-08-01T13": 0.499360192, + "2024-08-05T01": 0.380643872, + "2024-08-02T00": 0.49225657, + "2024-08-06T06": 0.41300127099999995, + "2024-08-03T23": 0.453146096, + "2024-08-01T11": 0.496136908, + "2024-08-05T19": 0.37964421000000004, + "2024-08-04T19": 0.42558710000000005, + "2024-08-01T23": 0.49154244, + "2024-08-04T17": 0.416354139, + "2024-08-02T22": 0.46686716399999995, + "2024-08-02T01": 0.48996354400000003, + "2024-08-02T05": 0.483778746, + "2024-08-03T20": 0.445001649, + "2024-07-31T14": 0.514468385, + "2024-08-03T12": 0.471741204, + "2024-07-31T05": 0.509115267877778, + "2024-08-02T08": 0.482399276, + "2024-08-05T14": 0.3781141157952806, + "2024-08-01T07": 0.48638103, + "2024-08-03T06": 0.46998715499999993, + "2024-08-04T13": 0.4503747, + "2024-08-06T11": 0.40362912000000006, + "2024-08-05T16": 0.38677055, + "2024-08-05T06": 0.34804441218704346, + "2024-08-01T22": 0.489493383, + "2024-08-04T20": 0.429254004, + "2024-08-06T10": 0.40382918400000006, + "2024-08-01T15": 0.48925525000000003, + "2024-08-06T05": 0.40954148700000004, + "2024-08-04T08": 0.451524402, + "2024-08-01T00": 0.495936287, + "2024-08-04T18": 0.415933632, + "2024-07-31T15": 0.5143890139999999, + "2024-08-03T19": 0.446851184, + "2024-08-02T12": 0.48135799300000004, + "2024-08-01T20": 0.47911560400000003, + "2024-08-01T21": 0.484753616, + "2024-07-30T23": 0.505153463, + "2024-08-03T16": 0.456157625, + "2024-08-06T00": 0.39767952, + "2024-08-04T06": 0.45511765200000004, + "2024-08-02T15": 0.461846946, + "2024-08-05T10": 0.359350302, + "2024-08-05T17": 0.38572744500000006, + "2024-08-03T04": 0.470024795, + "2024-08-06T04": 0.40598261, + "2024-08-06T03": 0.40315716999999995, + "2024-07-30T19": 0.50481315, + "2024-08-02T04": 0.486057285, + "2024-08-02T23": 0.46710134400000003, + "2024-08-05T08": 0.36424006200000003, + "2024-08-02T09": 0.48508247, + "2024-08-04T12": 0.45107435, + "2024-08-04T22": 0.427341825, + "2024-07-31T23": 0.49534144, + "2024-08-04T10": 0.450465636, + "2024-07-30T16": 0.520633344, + "2024-08-05T20": 0.38433842999999995, + "2024-08-03T10": 0.471384816, + "2024-08-04T16": 0.424394216, + "2024-07-31T06": 0.5164501859999999, + "2024-07-31T02": 0.51109776, + "2024-08-03T09": 0.4695817, + "2024-08-04T15": 0.429212235, + "2024-08-03T00": 0.46588888500000003, + "2024-07-30T17": 0.514040598, + "2024-08-03T15": 0.46438865100000004, + "2024-08-01T19": 0.47367838, + "2024-07-30T13": 0.5193961, + "2024-08-03T22": 0.452441961, + "2024-07-30T22": 0.5054533760000001, + "2024-07-31T13": 0.517256775, + "2024-07-30T18": 0.51033664, + "2024-08-03T05": 0.468779077, + "2024-08-05T09": 0.36476564600000005, + "2024-07-30T12": 0.51879622, + "2024-08-03T01": 0.45953407700000004, + "2024-08-05T03": 0.369081545, + "2024-07-31T08": 0.51596771, + "2024-08-01T10": 0.48714167799999997, + "2024-07-31T21": 0.49401220399999995, + "2024-08-01T09": 0.48871638, + "2024-08-06T09": 0.4041212, + "2024-08-03T08": 0.46964400300000003, + "2024-08-03T14": 0.46959456499999996, + "2024-08-01T12": 0.500939376, + "2024-07-30T20": 0.50324898, + "2024-07-30T15": 0.520223064, + "2024-08-01T01": 0.49482675000000004, + "2024-08-05T13": 0.35616806458213923, + "2024-08-01T16": 0.47776533, + "2024-08-04T00": 0.45353225799999997, + "2024-08-02T14": 0.476556632, + "2024-08-04T09": 0.45214213200000003, + "2024-08-04T02": 0.45582634, + "2024-08-03T03": 0.468242128, + "2024-08-03T11": 0.47120385600000003, + "2024-07-31T09": 0.514199384, + "2024-07-31T12": 0.51371216, + "2024-08-05T11": 0.353745981, + "2024-08-03T18": 0.44728668, + "2024-08-01T08": 0.48674676, + "2024-07-31T10": 0.51175424, + "2024-08-03T17": 0.44967599999999996, + "2024-07-31T03": 0.510992669, + "2024-08-01T06": 0.489060243, + "2024-08-02T07": 0.480810228, + "2024-08-02T19": 0.464293368, + "2024-07-30T11": 0.5165019691098955, + "2024-08-05T22": 0.387365841, + "2024-08-06T01": 0.40382111, + "2024-08-05T15": 0.38058307015243487, + "2024-07-31T18": 0.51183104, + "2024-08-05T02": 0.3732272964607544, + "2024-08-05T12": 0.35761047735951124, + "2024-07-30T21": 0.5028666041063875, + "2024-08-06T07": 0.413576911, + "2024-08-04T11": 0.451269735, + "2024-08-05T05": 0.36649258203862495, + "2024-07-31T19": 0.503428776, + "2024-08-04T21": 0.427376025, + "2024-07-30T14": 0.51759646, + "2024-08-01T18": 0.469767416, + "2024-07-31T04": 0.508493194, + "2024-08-02T18": 0.465534, + "2024-08-02T03": 0.4832571688307159, + "2024-08-04T01": 0.45333237600000004, + "2024-08-02T21": 0.4648347, + "2024-08-02T02": 0.483079355, + "2024-08-02T10": 0.484231704, + "2024-08-04T23": 0.422626652, + "2024-08-04T03": 0.456516784, + "2024-08-01T05": 0.489101466, + "2024-08-02T17": 0.467055875, + "2024-07-31T16": 0.514699189, + "2024-08-04T04": 0.455322084, + "2024-08-01T02": 0.49294353600000007, + "2024-08-05T21": 0.38596946200000004, + "2024-08-05T07": 0.362420718544641, + "2024-08-05T00": 0.410606924, + "2024-08-02T20": 0.46738998899999995, + "2024-07-31T01": 0.5090037190659089, + "2024-07-31T22": 0.495346395, + "2024-08-04T07": 0.45113367400000004, + "2024-08-04T05": 0.455222145, + "2024-08-01T14": 0.496891218, + "2024-08-03T02": 0.465684484, + "2024-08-01T04": 0.48864577200000003, + "2024-08-01T17": 0.47431549300000003, + "2024-08-06T02": 0.402953064, + "2024-08-04T14": 0.4377685709452262, + "2024-07-31T20": 0.496906131, + "2024-08-03T21": 0.44733143999999997, + "2024-08-06T08": 0.408036524, + "2024-08-02T13": 0.483522558, + "2024-08-05T04": 0.36778161000000004, + "2024-08-01T03": 0.492438869, + "2024-07-31T17": 0.513599618, + "2024-07-31T07": 0.5174395439999999, + "2024-08-03T07": 0.471794639, + "2024-08-03T13": 0.46968039999999994, + "latest": 0.401431 + }, + "USD qtum": { + "2024-07-31": 2.661094775512988, + "2024-08-02": 2.4398990170093913, + "2024-07-30": 2.729412867410969, + "2024-08-01": 2.4467014804564275, + "2024-08-06": 2.056720705912597, + "2024-07-20": 2.73331128711279, + "2024-07-21": 2.7396381670113477, + "2024-07-15": 2.4882196595429398, + "2024-08-03": 2.22526430325539, + "2024-07-18": 2.697951533181367, + "2024-07-11": 2.282016831538127, + "2024-07-17": 2.6866398887850664, + "2024-07-22": 2.707407393628289, + "2024-07-12": 2.2683064989415707, + "2024-07-24": 2.6471069590132523, + "2024-07-06": 2.1862186, + "2024-07-08": 2.1658211424408966, + "2024-07-07": 2.2250231866373453, + "2024-07-13": 2.349491710418767, + "2024-07-09": 2.2170029828476356, + "2024-07-23": 2.6564133301983888, + "2024-07-10": 2.26820000883655, + "2024-07-14": 2.3888119229580087, + "2024-07-29": 2.7436508210089117, + "2024-07-27": 2.718259136853663, + "2024-07-28": 2.7079458400000003, + "2024-07-19": 2.6609983518043063, + "2024-08-04": 2.151899567876284, + "2024-07-26": 2.5344928463280185, + "2024-08-05": 1.9413455764271443, + "2024-07-25": 2.4954272611980644, + "2024-07-16": 2.561945965395616, + "2024-08-02T16": 2.3727503854294194, + "2024-08-02T11": 2.464383460839038, + "2024-07-31T00": 2.667333, + "2024-08-05T18": 1.9959177, + "2024-07-31T11": 2.6665326, + "2024-08-05T23": 2.0034006, + "2024-08-02T06": 2.44514028, + "2024-08-01T13": 2.5187904, + "2024-08-05T01": 1.95819681, + "2024-08-02T00": 2.5257248, + "2024-08-06T06": 2.0825191299999997, + "2024-08-03T23": 2.1837764, + "2024-08-01T11": 2.51766493, + "2024-08-05T19": 1.97676401185944, + "2024-08-04T19": 2.1519235, + "2024-08-01T23": 2.52864617, + "2024-08-04T17": 2.07028024, + "2024-08-02T22": 2.33633354, + "2024-08-02T01": 2.49877411, + "2024-08-02T05": 2.46485371, + "2024-08-03T20": 2.16754677, + "2024-07-31T14": 2.6667994000000004, + "2024-08-03T12": 2.3243600670182394, + "2024-07-31T05": 2.65041678, + "2024-08-02T08": 2.43497729, + "2024-08-05T14": 1.97253244, + "2024-08-01T07": 2.50587185, + "2024-08-03T06": 2.33345376, + "2024-08-04T13": 2.2028980000000002, + "2024-08-06T11": 2.0316986306466696, + "2024-08-05T16": 2.0374252, + "2024-08-05T06": 1.8358714799999998, + "2024-08-01T22": 2.52090591, + "2024-08-04T20": 2.15626662, + "2024-08-06T10": 2.03467122, + "2024-08-01T15": 2.4417785000000003, + "2024-08-06T05": 2.0652177600000003, + "2024-08-04T08": 2.19665922, + "2024-08-01T00": 2.5697517019999996, + "2024-08-04T18": 2.07667008, + "2024-07-31T15": 2.66390735, + "2024-08-03T19": 2.17230428, + "2024-08-02T12": 2.4522576600000003, + "2024-08-01T20": 2.430248421174609, + "2024-08-01T21": 2.4737298773493044, + "2024-07-30T23": 2.6747277959238684, + "2024-08-03T16": 2.2363215, + "2024-08-06T00": 2.0554110000000003, + "2024-08-04T06": 2.2236205, + "2024-08-02T15": 2.35369112, + "2024-08-05T10": 1.8942651600000002, + "2024-08-05T17": 2.02919652, + "2024-08-03T04": 2.32464973, + "2024-08-06T04": 2.0589261, + "2024-08-06T03": 2.05280028, + "2024-07-30T19": 2.66401395, + "2024-08-02T04": 2.48074047, + "2024-08-02T23": 2.3370048, + "2024-08-05T08": 1.9552150500000003, + "2024-08-02T09": 2.45089042, + "2024-08-04T12": 2.2028980000000002, + "2024-08-04T22": 2.1651985799999998, + "2024-07-31T23": 2.57017728, + "2024-08-04T10": 2.1958575600000003, + "2024-07-30T16": 2.7291264, + "2024-08-05T20": 1.9961996, + "2024-08-03T10": 2.3269504800000003, + "2024-08-04T16": 2.08949448, + "2024-07-31T06": 2.6942184499999997, + "2024-07-31T02": 2.689462, + "2024-08-03T09": 2.3239298600000002, + "2024-08-04T15": 2.11458228, + "2024-08-03T00": 2.3269477, + "2024-07-30T17": 2.6951642399999995, + "2024-08-03T15": 2.27647374, + "2024-08-01T19": 2.4093468, + "2024-07-30T13": 2.724340229368808, + "2024-08-03T22": 2.21173859, + "2024-07-30T22": 2.668407807857742, + "2024-07-31T13": 2.6777408700000005, + "2024-07-30T18": 2.68713984, + "2024-08-03T05": 2.3254159199999997, + "2024-08-05T09": 1.9553519000000001, + "2024-07-30T12": 2.7234552, + "2024-08-03T01": 2.28119068, + "2024-08-05T03": 1.93890305, + "2024-07-31T08": 2.6967859, + "2024-08-01T10": 2.51266758, + "2024-07-31T21": 2.5780199799999997, + "2024-08-01T09": 2.50754478, + "2024-08-06T09": 2.0346102, + "2024-08-03T08": 2.32674087, + "2024-08-03T14": 2.325387515, + "2024-08-01T12": 2.52768492, + "2024-07-30T20": 2.648057797456716, + "2024-07-30T15": 2.71607622, + "2024-08-01T01": 2.56350246, + "2024-08-05T13": 1.86788792, + "2024-08-01T16": 2.4023171999999997, + "2024-08-04T00": 2.2007008200000002, + "2024-08-02T14": 2.43224752, + "2024-08-04T09": 2.203384346033559, + "2024-08-04T02": 2.2166691999999997, + "2024-08-03T03": 2.31923682, + "2024-08-03T11": 2.32904196, + "2024-07-31T09": 2.68795129, + "2024-07-31T12": 2.6685048, + "2024-08-05T11": 1.8392390699999999, + "2024-08-03T18": 2.1754761, + "2024-08-01T08": 2.51069376, + "2024-07-31T10": 2.6767257853094613, + "2024-08-03T17": 2.1884232, + "2024-07-31T03": 2.6774376199999996, + "2024-08-01T06": 2.51776569, + "2024-08-02T07": 2.44202036, + "2024-08-02T19": 2.35542978, + "2024-07-30T11": 2.71642943, + "2024-08-05T22": 2.01434238, + "2024-08-06T01": 2.0736219, + "2024-08-05T15": 2.01827071, + "2024-07-31T18": 2.6751169200000002, + "2024-08-05T02": 1.9416115999999999, + "2024-08-05T12": 1.84120251, + "2024-07-30T21": 2.64831126, + "2024-08-06T07": 2.07839159, + "2024-08-04T11": 2.202776011, + "2024-08-05T05": 1.9348839000000002, + "2024-07-31T19": 2.6041143, + "2024-08-04T21": 2.1474670377728673, + "2024-07-30T14": 2.7074584, + "2024-08-01T18": 2.3937956799999998, + "2024-07-31T04": 2.66444035, + "2024-08-02T18": 2.369628, + "2024-08-02T03": 2.47572024, + "2024-08-04T01": 2.19170613, + "2024-08-02T21": 2.3279696999999997, + "2024-08-02T02": 2.4758441399999995, + "2024-08-02T10": 2.4571311600000003, + "2024-08-04T23": 2.1411217799999998, + "2024-08-04T03": 2.2226211200000003, + "2024-08-01T05": 2.52146097, + "2024-08-02T17": 2.3857314, + "2024-07-31T16": 2.66795909, + "2024-08-04T04": 2.21964519, + "2024-08-01T02": 2.5586688, + "2024-08-05T21": 2.00936162, + "2024-08-05T07": 1.95, + "2024-08-05T00": 2.1186026561463356, + "2024-08-02T20": 2.35642869, + "2024-07-31T01": 2.685982082, + "2024-07-31T22": 2.58819741, + "2024-08-04T07": 2.2106949200000003, + "2024-08-04T05": 2.21964519, + "2024-08-01T14": 2.4869550400000002, + "2024-08-03T02": 2.30894816, + "2024-08-01T04": 2.5186896, + "2024-08-01T17": 2.38106977, + "2024-08-06T02": 2.05378014, + "2024-08-04T14": 2.13208281, + "2024-07-31T20": 2.57199653, + "2024-08-03T21": 2.1806908, + "2024-08-06T08": 2.0481882756847964, + "2024-08-02T13": 2.47007184, + "2024-08-05T04": 1.9459027, + "2024-08-01T03": 2.5566442599999997, + "2024-07-31T17": 2.6711807615347762, + "2024-07-31T07": 2.7031617599999995, + "2024-08-03T07": 2.3416917059999998, + "2024-08-03T13": 2.3231688978279106, + "latest": 2.02 + }, + "USD ravencoin": { + "2024-07-31": 0.018283780407262414, + "2024-08-02": 0.017534900797917613, + "2024-07-30": 0.018496021262675064, + "2024-08-01": 0.017550685456215222, + "2024-08-06": 0.015025265011789081, + "2024-07-20": 0.02026972425948211, + "2024-07-21": 0.02005659390401767, + "2024-07-15": 0.019069347382812154, + "2024-08-03": 0.016127420680081724, + "2024-07-18": 0.020139638205438376, + "2024-07-11": 0.017700130551369344, + "2024-07-17": 0.019974757475442213, + "2024-07-22": 0.01990299487742998, + "2024-07-12": 0.017482362258156373, + "2024-07-24": 0.01926077825107489, + "2024-07-06": 0.017081708, + "2024-07-08": 0.01685860778465075, + "2024-07-07": 0.017250179761570433, + "2024-07-13": 0.017673698817837213, + "2024-07-09": 0.017390023397257724, + "2024-07-23": 0.019653057849653523, + "2024-07-10": 0.01757000006844995, + "2024-07-14": 0.01804613363730689, + "2024-07-29": 0.01904757585284977, + "2024-07-27": 0.019151825780260357, + "2024-07-28": 0.019039619200000003, + "2024-07-19": 0.020069987568850967, + "2024-08-04": 0.015888462793663957, + "2024-07-26": 0.01895845045424675, + "2024-08-05": 0.013952483663657223, + "2024-07-25": 0.018055855904341764, + "2024-07-16": 0.019477191700996738, + "2024-08-02T16": 0.017125431, + "2024-08-02T11": 0.0178549892, + "2024-07-31T00": 0.018195450000000002, + "2024-08-05T18": 0.014746780399999998, + "2024-07-31T11": 0.0182999295, + "2024-08-05T23": 0.014642928, + "2024-08-02T06": 0.017536662, + "2024-08-01T13": 0.017871417599999998, + "2024-08-05T01": 0.0140242477, + "2024-08-02T00": 0.018153647, + "2024-08-06T06": 0.015191081399999999, + "2024-08-03T23": 0.015791152000000003, + "2024-08-01T11": 0.017590672, + "2024-08-05T19": 0.014525517600000001, + "2024-08-04T19": 0.015742125000000003, + "2024-08-01T23": 0.018352915900000003, + "2024-08-04T17": 0.014967566600000001, + "2024-08-02T22": 0.016611041799999997, + "2024-08-02T01": 0.0179639978, + "2024-08-02T05": 0.0176945923, + "2024-08-03T20": 0.015569561400000001, + "2024-07-31T14": 0.01839172, + "2024-08-03T12": 0.016357558799999998, + "2024-07-31T05": 0.018245985, + "2024-08-02T08": 0.0176353505, + "2024-08-05T14": 0.0144739069, + "2024-08-01T07": 0.017462138500000002, + "2024-08-03T06": 0.0164620368, + "2024-08-04T13": 0.016361815, + "2024-08-06T11": 0.014824742400000002, + "2024-08-05T16": 0.015030514, + "2024-08-05T06": 0.0130790844, + "2024-08-01T22": 0.0184047114, + "2024-08-04T20": 0.015744645, + "2024-08-06T10": 0.014834893899999998, + "2024-08-01T15": 0.017311339999999998, + "2024-08-06T05": 0.0150588795, + "2024-08-04T08": 0.015960258300000002, + "2024-08-01T00": 0.017864102899999998, + "2024-08-04T18": 0.0152102592, + "2024-07-31T15": 0.0183324806, + "2024-08-03T19": 0.01554480789273249, + "2024-08-02T12": 0.017717411699999998, + "2024-08-01T20": 0.017312496700000003, + "2024-08-01T21": 0.0177236792, + "2024-07-30T23": 0.0182247133, + "2024-08-03T16": 0.015608285, + "2024-08-06T00": 0.015113022, + "2024-08-04T06": 0.0161499808, + "2024-08-02T15": 0.0169233988, + "2024-08-05T10": 0.013821934800000001, + "2024-08-05T17": 0.014978832300000001, + "2024-08-03T04": 0.016483335000000002, + "2024-08-06T04": 0.014956727500000001, + "2024-08-06T03": 0.014935822699999999, + "2024-07-30T19": 0.0181232919, + "2024-08-02T04": 0.017883711, + "2024-08-02T23": 0.0166386752, + "2024-08-05T08": 0.013951534500000001, + "2024-08-02T09": 0.017824657600000002, + "2024-08-04T12": 0.016111939999999998, + "2024-08-04T22": 0.0157441725, + "2024-07-31T23": 0.0178742784, + "2024-08-04T10": 0.015971690400000002, + "2024-07-30T16": 0.01849408, + "2024-08-05T20": 0.014591459000000001, + "2024-08-03T10": 0.016335612, + "2024-08-04T16": 0.0150991208, + "2024-07-31T06": 0.0184546466, + "2024-07-31T02": 0.018286342, + "2024-08-03T09": 0.016385404000000003, + "2024-08-04T15": 0.015389682000000002, + "2024-08-03T00": 0.016478385, + "2024-07-30T17": 0.0183543084, + "2024-08-03T15": 0.0159393135, + "2024-08-01T19": 0.017161102, + "2024-07-30T13": 0.018586282, + "2024-08-03T22": 0.0157809997, + "2024-07-30T22": 0.0181647307, + "2024-07-31T13": 0.018451323800000002, + "2024-07-30T18": 0.018264153600000003, + "2024-08-03T05": 0.0164716961, + "2024-08-05T09": 0.014122541600000002, + "2024-07-30T12": 0.018606278, + "2024-08-03T01": 0.0162699633, + "2024-08-05T03": 0.013889305499999999, + "2024-07-31T08": 0.018431702, + "2024-08-01T10": 0.017510714400000002, + "2024-07-31T21": 0.0177632474, + "2024-08-01T09": 0.0176097804, + "2024-08-06T09": 0.014814443, + "2024-08-03T08": 0.016374101699999997, + "2024-08-03T14": 0.016199463499999997, + "2024-08-01T12": 0.0179506608, + "2024-07-30T20": 0.0179952968662194, + "2024-07-30T15": 0.0184337304, + "2024-08-01T01": 0.017893735, + "2024-08-05T13": 0.0135891846, + "2024-08-01T16": 0.017018079, + "2024-08-04T00": 0.016075418647441924, + "2024-08-02T14": 0.0175273712, + "2024-08-04T09": 0.015990880000000002, + "2024-08-04T02": 0.016200273999999997, + "2024-08-03T03": 0.0164504007, + "2024-08-03T11": 0.016286308, + "2024-07-31T09": 0.0184428045, + "2024-07-31T12": 0.018339724, + "2024-08-05T11": 0.0134517485, + "2024-08-03T18": 0.015459170999999999, + "2024-08-01T08": 0.017540874, + "2024-07-31T10": 0.018341192000000003, + "2024-08-03T17": 0.015488839999999999, + "2024-07-31T03": 0.018256165399999996, + "2024-08-01T06": 0.0174314544, + "2024-08-02T07": 0.017616841545819453, + "2024-08-02T19": 0.016841622599999998, + "2024-07-30T11": 0.0186360856, + "2024-08-05T22": 0.0147725109, + "2024-08-06T01": 0.015094526999999998, + "2024-08-05T15": 0.014809323999999999, + "2024-07-31T18": 0.0181839973, + "2024-08-05T02": 0.013877224, + "2024-08-05T12": 0.013441478400000002, + "2024-07-30T21": 0.01799532, + "2024-08-06T07": 0.015180163899999998, + "2024-08-04T11": 0.0160618043, + "2024-08-05T05": 0.0138191708, + "2024-07-31T19": 0.018093846, + "2024-08-04T21": 0.0156554586, + "2024-07-30T14": 0.01844631, + "2024-08-01T18": 0.016934406, + "2024-07-31T04": 0.0182261717, + "2024-08-02T18": 0.0170829, + "2024-08-02T03": 0.017883531999999997, + "2024-08-04T01": 0.0160105482, + "2024-08-02T21": 0.01660338, + "2024-08-02T02": 0.0178244792, + "2024-08-02T10": 0.017886396, + "2024-08-04T23": 0.0154836491, + "2024-08-04T03": 0.016179962200000002, + "2024-08-01T05": 0.0174193677, + "2024-08-02T17": 0.017203641, + "2024-07-31T16": 0.018242882499999998, + "2024-08-04T04": 0.0161701302, + "2024-08-01T02": 0.0178107336, + "2024-08-05T21": 0.014702646, + "2024-08-05T07": 0.01394, + "2024-08-05T00": 0.0152328372, + "2024-08-02T20": 0.0167217534, + "2024-07-31T01": 0.018295791000000002, + "2024-07-31T22": 0.0178644603, + "2024-08-04T07": 0.0159805659, + "2024-08-04T05": 0.0161401485, + "2024-08-01T14": 0.017662578600000003, + "2024-08-03T02": 0.0164981936, + "2024-08-01T04": 0.017530879200000002, + "2024-08-01T17": 0.0169662462, + "2024-08-06T02": 0.014975688600000002, + "2024-08-04T14": 0.0160430985, + "2024-07-31T20": 0.0177830619, + "2024-08-03T21": 0.01564284981813211, + "2024-08-06T08": 0.014858613000000001, + "2024-08-02T13": 0.0176662096, + "2024-08-05T04": 0.013979301, + "2024-08-01T03": 0.017790566, + "2024-07-31T17": 0.0182028981, + "2024-07-31T07": 0.0184842681, + "2024-08-03T07": 0.0164723557, + "2024-08-03T13": 0.0162589364, + "latest": 0.01476314 + }, + "USD ripple": { + "2024-07-31": 0.6457895769596044, + "2024-08-02": 0.5700227769248362, + "2024-07-30": 0.6240430320622989, + "2024-08-01": 0.6057948878524115, + "2024-08-06": 0.5104726552548858, + "2024-07-20": 0.5917469672227897, + "2024-07-21": 0.5913060062291033, + "2024-07-15": 0.5310363129353027, + "2024-08-03": 0.560822191677207, + "2024-07-18": 0.5787703737182802, + "2024-07-11": 0.44576880885755565, + "2024-07-17": 0.611912448574446, + "2024-07-22": 0.606645020191631, + "2024-07-12": 0.4645768162945876, + "2024-07-24": 0.6192542587932082, + "2024-07-06": 0.4344382392909739, + "2024-07-08": 0.42792730160743125, + "2024-07-07": 0.43373598524339974, + "2024-07-13": 0.5163178079245069, + "2024-07-09": 0.433965834164462, + "2024-07-23": 0.5985390014285974, + "2024-07-10": 0.4375444919717685, + "2024-07-14": 0.5274241120897214, + "2024-07-29": 0.6057715715091085, + "2024-07-27": 0.5989383527547215, + "2024-07-28": 0.6020007740227368, + "2024-07-19": 0.5558764006539939, + "2024-08-04": 0.5360290593741195, + "2024-07-26": 0.6007942582478313, + "2024-08-05": 0.4736171474238443, + "2024-07-25": 0.6065793765732846, + "2024-07-16": 0.5574675329743143, + "2024-08-02T16": 0.5584105460329736, + "2024-08-02T11": 0.5754044506270909, + "2024-07-31T00": 0.631842, + "2024-08-05T18": 0.48414662186499485, + "2024-07-31T11": 0.652341015, + "2024-08-05T23": 0.4932909248685221, + "2024-08-02T06": 0.5636712840000001, + "2024-08-01T13": 0.607508256, + "2024-08-05T01": 0.47874086164636087, + "2024-08-02T00": 0.59196675, + "2024-08-06T06": 0.515827307996575, + "2024-08-03T23": 0.5555886959999999, + "2024-08-01T11": 0.60867723, + "2024-08-05T19": 0.4779093564973186, + "2024-08-04T19": 0.5344829515302996, + "2024-08-01T23": 0.5968544087, + "2024-08-04T17": 0.5227423242014881, + "2024-08-02T22": 0.563257154, + "2024-08-02T01": 0.5881760570000001, + "2024-08-02T05": 0.5757986190000001, + "2024-08-03T20": 0.5472902836287755, + "2024-07-31T14": 0.6518065550000001, + "2024-08-03T12": 0.570965736, + "2024-07-31T05": 0.6412888846353966, + "2024-08-02T08": 0.5713530412077388, + "2024-08-05T14": 0.4779703268177143, + "2024-08-01T07": 0.6083766080355254, + "2024-08-03T06": 0.5724853101, + "2024-08-04T13": 0.546736495, + "2024-08-06T11": 0.500560128, + "2024-08-05T16": 0.49227983156648986, + "2024-08-05T06": 0.4511552345191325, + "2024-08-01T22": 0.596905629566733, + "2024-08-04T20": 0.5350221736140665, + "2024-08-06T10": 0.5008952408999999, + "2024-08-01T15": 0.589705, + "2024-08-06T05": 0.5111529660731247, + "2024-08-04T08": 0.5468007013615924, + "2024-08-01T00": 0.626193288, + "2024-08-04T18": 0.5232434713414601, + "2024-07-31T15": 0.6535319420000001, + "2024-08-03T19": 0.5489694755774421, + "2024-08-02T12": 0.5715402646668, + "2024-08-01T20": 0.5821937002190458, + "2024-08-01T21": 0.5915958422808887, + "2024-07-30T23": 0.62681817, + "2024-08-03T16": 0.5600496475, + "2024-08-06T00": 0.5080345849407052, + "2024-08-04T06": 0.5547558380000001, + "2024-08-02T15": 0.554095953056611, + "2024-08-05T10": 0.4549405022558379, + "2024-08-05T17": 0.4903333082885371, + "2024-08-03T04": 0.5667270270000001, + "2024-08-06T04": 0.509722478419435, + "2024-08-06T03": 0.5119735466695995, + "2024-07-30T19": 0.6277473269890788, + "2024-08-02T04": 0.5814503982000001, + "2024-08-02T23": 0.5608511904000001, + "2024-08-05T08": 0.4666333027082809, + "2024-08-02T09": 0.5739380614933711, + "2024-08-04T12": 0.5448274500000001, + "2024-08-04T22": 0.5299814683906191, + "2024-07-31T23": 0.62579968, + "2024-08-04T10": 0.5466056172, + "2024-07-30T16": 0.6295865497887821, + "2024-08-05T20": 0.4858918528160187, + "2024-08-03T10": 0.5671304856, + "2024-08-04T16": 0.52861912, + "2024-07-31T06": 0.6438394300004747, + "2024-07-31T02": 0.6520629489442303, + "2024-08-03T09": 0.5680639727000001, + "2024-08-04T15": 0.5277961395, + "2024-08-03T00": 0.5578382733, + "2024-07-30T17": 0.6298085860978888, + "2024-08-03T15": 0.560124465, + "2024-08-01T19": 0.5803342874495798, + "2024-07-30T13": 0.6259064999411582, + "2024-08-03T22": 0.5541679210987488, + "2024-07-30T22": 0.628917561, + "2024-07-31T13": 0.6487949230000001, + "2024-07-30T18": 0.629527537185687, + "2024-08-03T05": 0.5700565341, + "2024-08-05T09": 0.466813910766221, + "2024-07-30T12": 0.6311805354292797, + "2024-08-03T01": 0.5514933086329026, + "2024-08-05T03": 0.4734871181276016, + "2024-07-31T08": 0.6471428538910571, + "2024-08-01T10": 0.6071780250000001, + "2024-07-31T21": 0.6284295905048743, + "2024-08-01T09": 0.606248172, + "2024-08-06T09": 0.50055012, + "2024-08-03T08": 0.567948555, + "2024-08-03T14": 0.57022911, + "2024-08-01T12": 0.611381916, + "2024-07-30T20": 0.6232719349759663, + "2024-07-30T15": 0.6170397579313374, + "2024-08-01T01": 0.625101138, + "2024-08-05T13": 0.4461573395394051, + "2024-08-01T16": 0.5844417096798886, + "2024-08-04T00": 0.5546425677, + "2024-08-02T14": 0.5699293551999999, + "2024-08-04T09": 0.548487184, + "2024-08-04T02": 0.55596622, + "2024-08-03T03": 0.5621402561000001, + "2024-08-03T11": 0.5698750500736431, + "2024-07-31T09": 0.648946812, + "2024-07-31T12": 0.650035776, + "2024-08-05T11": 0.44591585234996306, + "2024-08-03T18": 0.5504761552962514, + "2024-08-01T08": 0.608083632, + "2024-07-31T10": 0.647888864, + "2024-08-03T17": 0.5535011919999999, + "2024-07-31T03": 0.6500362147547999, + "2024-08-01T06": 0.6085142465094433, + "2024-08-02T07": 0.5683471271223073, + "2024-08-02T19": 0.5621120119574965, + "2024-07-30T11": 0.6302974594302934, + "2024-08-05T22": 0.4949001112315781, + "2024-08-06T01": 0.511808816201512, + "2024-08-05T15": 0.4871740163320719, + "2024-07-31T18": 0.6403784198862715, + "2024-08-05T02": 0.47220650046266976, + "2024-08-05T12": 0.44729841520210223, + "2024-07-30T21": 0.6236245705278796, + "2024-08-06T07": 0.514644581, + "2024-08-04T11": 0.5456415807999999, + "2024-08-05T05": 0.47215314797613417, + "2024-07-31T19": 0.6392289417513438, + "2024-08-04T21": 0.5298276673463918, + "2024-07-30T14": 0.6175771893134333, + "2024-08-01T18": 0.5753408180368134, + "2024-07-31T04": 0.6490703902179894, + "2024-08-02T18": 0.5621299069985317, + "2024-08-02T03": 0.5848352099482044, + "2024-08-04T01": 0.553073494, + "2024-08-02T21": 0.5655543239847685, + "2024-08-02T02": 0.583591833, + "2024-08-02T10": 0.574221396711082, + "2024-08-04T23": 0.5255244466, + "2024-08-04T03": 0.555755218, + "2024-08-01T05": 0.6060678418933659, + "2024-08-02T17": 0.5629317221637615, + "2024-07-31T16": 0.6417882778184317, + "2024-08-04T04": 0.556760169, + "2024-08-01T02": 0.614880096, + "2024-08-05T21": 0.4931191614445709, + "2024-08-05T07": 0.46578676222371745, + "2024-08-05T00": 0.5117550180563573, + "2024-08-02T20": 0.5691458708886358, + "2024-07-31T01": 0.643351995, + "2024-07-31T22": 0.6317255355704293, + "2024-08-04T07": 0.5486760900000001, + "2024-08-04T05": 0.5549112975, + "2024-08-01T14": 0.600847538, + "2024-08-03T02": 0.5595235993286115, + "2024-08-01T04": 0.6041548218032285, + "2024-08-01T17": 0.5804287904063656, + "2024-08-06T02": 0.5106864413263871, + "2024-08-04T14": 0.531571326, + "2024-07-31T20": 0.6285391656425248, + "2024-08-03T21": 0.5513614374086833, + "2024-08-06T08": 0.5077343152, + "2024-08-02T13": 0.5737521240000001, + "2024-08-05T04": 0.4769260954186392, + "2024-08-01T03": 0.6110259844999999, + "2024-07-31T17": 0.6377804169695321, + "2024-07-31T07": 0.6462297926852536, + "2024-08-03T07": 0.574784322, + "2024-08-03T13": 0.5693825564, + "latest": 0.498822 + }, + "USD solana": { + "2024-07-31": 180.60113229518754, + "2024-08-02": 160.87907862283578, + "2024-07-30": 180.88542132452105, + "2024-08-01": 167.87131993398756, + "2024-08-06": 138.75019516131593, + "2024-07-20": 170.00120311213877, + "2024-07-21": 174.30663001117313, + "2024-07-15": 152.82719095318745, + "2024-08-03": 149.95206028092613, + "2024-07-18": 158.50415635266378, + "2024-07-11": 140.80362460352, + "2024-07-17": 160.72787219588676, + "2024-07-22": 180.05165510740602, + "2024-07-12": 136.69258017571224, + "2024-07-24": 177.56079559758552, + "2024-07-06": 139.07188345561624, + "2024-07-08": 137.58007638882842, + "2024-07-07": 138.97661513469637, + "2024-07-13": 139.72368678681542, + "2024-07-09": 141.32558690457228, + "2024-07-23": 175.43000481529808, + "2024-07-10": 141.7637203517348, + "2024-07-14": 145.10964434939723, + "2024-07-29": 189.0639568748908, + "2024-07-27": 184.16239059682584, + "2024-07-28": 184.447944328903, + "2024-07-19": 164.41713918369447, + "2024-08-04": 141.54095053233974, + "2024-07-26": 178.8064043299791, + "2024-08-05": 126.78081381999534, + "2024-07-25": 170.45816241429048, + "2024-07-16": 157.61957500139138, + "2024-08-02T16": 156.36467395256238, + "2024-08-02T11": 164.37450019064025, + "2024-07-31T00": 179.0391933974778, + "2024-08-05T18": 134.1703201147248, + "2024-07-31T11": 182.10100848253845, + "2024-08-05T23": 132.30425910363667, + "2024-08-02T06": 162.3611206132312, + "2024-08-01T13": 170.8412578598634, + "2024-08-05T01": 131.31886733882888, + "2024-08-02T00": 167.77227794953927, + "2024-08-06T06": 142.98713678355648, + "2024-08-03T23": 142.77104453832212, + "2024-08-01T11": 169.05004098048875, + "2024-08-05T19": 128.92607737764084, + "2024-08-04T19": 139.5400834011775, + "2024-08-01T23": 167.18940993236689, + "2024-08-04T17": 133.3231430430733, + "2024-08-02T22": 154.7247246081567, + "2024-08-02T01": 167.00864460207674, + "2024-08-02T05": 164.77306734148843, + "2024-08-03T20": 140.90344283900978, + "2024-07-31T14": 182.62472500672828, + "2024-08-03T12": 152.1104874860603, + "2024-07-31T05": 178.83738896821507, + "2024-08-02T08": 161.53080864675235, + "2024-08-05T14": 123.1501798013706, + "2024-08-01T07": 168.4601737857165, + "2024-08-03T06": 151.66720191023245, + "2024-08-04T13": 144.7875558821149, + "2024-08-06T11": 138.50305274956176, + "2024-08-05T16": 130.3599172605833, + "2024-08-05T06": 119.3641415127018, + "2024-08-01T22": 166.26548128027895, + "2024-08-04T20": 141.82897503906008, + "2024-08-06T10": 138.90880291032337, + "2024-08-01T15": 166.5931469472938, + "2024-08-06T05": 141.01791375742414, + "2024-08-04T08": 140.81552824120482, + "2024-08-01T00": 171.74696461501372, + "2024-08-04T18": 134.70546452339642, + "2024-07-31T15": 180.52770909474162, + "2024-08-03T19": 141.23498138211025, + "2024-08-02T12": 164.16428229291236, + "2024-08-01T20": 162.10403799675882, + "2024-08-01T21": 164.187477210333, + "2024-07-30T23": 179.16188787025845, + "2024-08-03T16": 145.70447649863362, + "2024-08-06T00": 129.66956947677073, + "2024-08-04T06": 143.6427311959951, + "2024-08-02T15": 157.52249488009798, + "2024-08-05T10": 119.93054548288617, + "2024-08-05T17": 131.8356930952493, + "2024-08-03T04": 153.37882081466935, + "2024-08-06T04": 138.69577774377242, + "2024-08-06T03": 139.77524268700404, + "2024-07-30T19": 177.79433756634023, + "2024-08-02T04": 164.5277531389924, + "2024-08-02T23": 152.40851076959632, + "2024-08-05T08": 122.81695051829561, + "2024-08-02T09": 162.92063323016953, + "2024-08-04T12": 143.55092669398013, + "2024-08-04T22": 140.49430143785062, + "2024-07-31T23": 173.30599742916354, + "2024-08-04T10": 143.3698429661506, + "2024-07-30T16": 181.02144589004251, + "2024-08-05T20": 129.00799630822945, + "2024-08-03T10": 150.86742757769932, + "2024-08-04T16": 135.12984358148196, + "2024-07-31T06": 181.62550718607693, + "2024-07-31T02": 181.17705027184928, + "2024-08-03T09": 150.0439018549023, + "2024-08-04T15": 137.68956409908907, + "2024-08-03T00": 152.67069152331473, + "2024-07-30T17": 180.16264411842036, + "2024-08-03T15": 151.29540663152224, + "2024-08-01T19": 159.772934589896, + "2024-07-30T13": 181.5195393789638, + "2024-08-03T22": 142.50713809883834, + "2024-07-30T22": 179.4968962516086, + "2024-07-31T13": 181.20327729182162, + "2024-07-30T18": 177.28071397952058, + "2024-08-03T05": 151.54250330303765, + "2024-08-05T09": 120.88498892791196, + "2024-07-30T12": 180.75930430352366, + "2024-08-03T01": 150.71697504953337, + "2024-08-05T03": 129.50980139831552, + "2024-07-31T08": 183.16302858483832, + "2024-08-01T10": 168.21294793383737, + "2024-07-31T21": 174.1142130059697, + "2024-08-01T09": 169.28030746875928, + "2024-08-06T09": 137.89475172888984, + "2024-08-03T08": 152.0733645264757, + "2024-08-03T14": 151.770258641281, + "2024-08-01T12": 169.6134956564675, + "2024-07-30T20": 177.7050697933665, + "2024-07-30T15": 180.62732918073803, + "2024-08-01T01": 171.96134473459034, + "2024-08-05T13": 111.74997970156541, + "2024-08-01T16": 163.05280935507326, + "2024-08-04T00": 142.80366402037902, + "2024-08-02T14": 165.92082870464156, + "2024-08-04T09": 142.09330689386414, + "2024-08-04T02": 144.0502079923302, + "2024-08-03T03": 150.88033505918685, + "2024-08-03T11": 151.6616200193751, + "2024-07-31T09": 183.77647531381666, + "2024-07-31T12": 181.61738894372343, + "2024-08-05T11": 116.1890340961199, + "2024-08-03T18": 142.13294014322247, + "2024-08-01T08": 168.12775731302227, + "2024-07-31T10": 183.4806828097288, + "2024-08-03T17": 146.0846631323118, + "2024-07-31T03": 181.40253475289524, + "2024-08-01T06": 168.95514938831175, + "2024-08-02T07": 162.12946485615956, + "2024-08-02T19": 153.23480005962017, + "2024-07-30T11": 180.37793140545807, + "2024-08-05T22": 131.13367447383163, + "2024-08-06T01": 138.80694168062016, + "2024-08-05T15": 130.31061859569925, + "2024-07-31T18": 181.6229382029746, + "2024-08-05T02": 130.6629839879145, + "2024-08-05T12": 115.84120400353721, + "2024-07-30T21": 179.6219037918781, + "2024-08-06T07": 141.6239485925042, + "2024-08-04T11": 143.85468899103532, + "2024-08-05T05": 123.73733436508161, + "2024-07-31T19": 180.74279331476413, + "2024-08-04T21": 142.4160683070898, + "2024-07-30T14": 179.3107871008165, + "2024-08-01T18": 161.9387741876994, + "2024-07-31T04": 180.92860424360455, + "2024-08-02T18": 153.94398019334608, + "2024-08-02T03": 163.14087814353655, + "2024-08-04T01": 144.05834731350572, + "2024-08-02T21": 153.3169799975961, + "2024-08-02T02": 164.6340383454061, + "2024-08-02T10": 163.88364104344117, + "2024-08-04T23": 140.59520504901937, + "2024-08-04T03": 145.17454618813156, + "2024-08-01T05": 166.42127864846586, + "2024-08-02T17": 154.9152684651919, + "2024-07-31T16": 179.98667246388288, + "2024-08-04T04": 144.3188913524717, + "2024-08-01T02": 171.04350853360393, + "2024-08-05T21": 131.4452183139311, + "2024-08-05T07": 117.53316142161636, + "2024-08-05T00": 138.35879810400607, + "2024-08-02T20": 151.46875931317888, + "2024-07-31T01": 180.76678656114117, + "2024-07-31T22": 174.00816147696716, + "2024-08-04T07": 143.55861484177643, + "2024-08-04T05": 142.92506728150943, + "2024-08-01T14": 169.71065121491577, + "2024-08-03T02": 151.94040125645282, + "2024-08-01T04": 168.77901248936863, + "2024-08-01T17": 162.15496285752428, + "2024-08-06T02": 138.73879173830025, + "2024-08-04T14": 143.9125748183378, + "2024-07-31T20": 176.09876289998346, + "2024-08-03T21": 140.5456389693779, + "2024-08-06T08": 141.86846097841666, + "2024-08-02T13": 163.8457887057537, + "2024-08-05T04": 127.1493113307716, + "2024-08-01T03": 169.92942283309824, + "2024-07-31T17": 180.06436493232496, + "2024-07-31T07": 183.34057134812005, + "2024-08-03T07": 152.45357289384492, + "2024-08-03T13": 152.38349527682504, + "latest": 139 + }, + "USD stacks": { + "2024-07-31": 1.7906493095095064, + "2024-08-02": 1.6539013079589717, + "2024-07-30": 1.7993428663842443, + "2024-08-01": 1.6962131452682268, + "2024-08-06": 1.321248769027556, + "2024-07-20": 1.9126861376333257, + "2024-07-21": 1.914734387563837, + "2024-07-15": 1.8786077212340992, + "2024-08-03": 1.5248105114327002, + "2024-07-18": 1.8709120293805332, + "2024-07-11": 1.6188005071578178, + "2024-07-17": 1.9293427910392473, + "2024-07-22": 1.8759295876712396, + "2024-07-12": 1.6183920797206577, + "2024-07-24": 1.7840622692856007, + "2024-07-06": 1.4156852777448437, + "2024-07-08": 1.345811204627176, + "2024-07-07": 1.4031773910458918, + "2024-07-13": 1.6783712331222298, + "2024-07-09": 1.3742254493516368, + "2024-07-23": 1.7873685264522734, + "2024-07-10": 1.482572979817935, + "2024-07-14": 1.68467617012567, + "2024-07-29": 1.920280597171877, + "2024-07-27": 1.904423303429795, + "2024-07-28": 1.8905680955157802, + "2024-07-19": 1.8384454093335503, + "2024-08-04": 1.3996277190620587, + "2024-07-26": 1.8524065668941185, + "2024-08-05": 1.2113033263356836, + "2024-07-25": 1.7038455622388844, + "2024-07-16": 1.8759814152570875, + "2024-08-02T16": 1.59164595, + "2024-08-02T11": 1.685383088, + "2024-07-31T00": 1.7814245325000002, + "2024-08-05T18": 1.2343775526, + "2024-07-31T11": 1.792293696, + "2024-08-05T23": 1.2389777459999998, + "2024-08-02T06": 1.6540020024, + "2024-08-01T13": 1.7170654128, + "2024-08-05T01": 1.255385081, + "2024-08-02T00": 1.719740462800494, + "2024-08-06T06": 1.3388666596999999, + "2024-08-03T23": 1.4941628, + "2024-08-01T11": 1.7025233422920267, + "2024-08-05T19": 1.2155517342, + "2024-08-04T19": 1.3931675357619497, + "2024-08-01T23": 1.727591844, + "2024-08-04T17": 1.318404815, + "2024-08-02T22": 1.5632158999999999, + "2024-08-02T01": 1.7054807699999999, + "2024-08-02T05": 1.6748894228272313, + "2024-08-03T20": 1.468715301, + "2024-07-31T14": 1.8051873, + "2024-08-03T12": 1.5510301268729996, + "2024-07-31T05": 1.80560268, + "2024-08-02T08": 1.6645472781, + "2024-08-05T14": 1.192970903003466, + "2024-08-01T07": 1.6969405181894135, + "2024-08-03T06": 1.5612963299999998, + "2024-08-04T13": 1.46596665, + "2024-08-06T11": 1.2856512768000001, + "2024-08-05T16": 1.2499231038534182, + "2024-08-05T06": 1.1568753412857145, + "2024-08-01T22": 1.7363975928, + "2024-08-04T20": 1.4015233200000001, + "2024-08-06T10": 1.2868345153, + "2024-08-01T15": 1.65541188, + "2024-08-06T05": 1.3232002278000001, + "2024-08-04T08": 1.466028156260881, + "2024-08-01T00": 1.7292791494999997, + "2024-08-04T18": 1.3516244064, + "2024-07-31T15": 1.80026159, + "2024-08-03T19": 1.4588312234, + "2024-08-02T12": 1.674110537, + "2024-08-01T20": 1.64733451, + "2024-08-01T21": 1.7002343439999998, + "2024-07-30T23": 1.7845823209999998, + "2024-08-03T16": 1.494878, + "2024-08-06T00": 1.30201035, + "2024-08-04T06": 1.4885068212857668, + "2024-08-02T15": 1.58744278, + "2024-08-05T10": 1.1294008346983577, + "2024-08-05T17": 1.2454566285079123, + "2024-08-03T04": 1.5476552878, + "2024-08-06T04": 1.3163821055, + "2024-08-06T03": 1.316713318, + "2024-07-30T19": 1.77682509929856, + "2024-08-02T04": 1.6974679637452645, + "2024-08-02T23": 1.5765793920000002, + "2024-08-05T08": 1.1987818515000002, + "2024-08-02T09": 1.6779157504, + "2024-08-04T12": 1.468526336549363, + "2024-08-04T22": 1.3884860700000001, + "2024-07-31T23": 1.7330352512, + "2024-08-04T10": 1.4626590216, + "2024-07-30T16": 1.8144192, + "2024-08-05T20": 1.229612949, + "2024-08-03T10": 1.541377184805103, + "2024-08-04T16": 1.3405640984, + "2024-07-31T06": 1.8329726025771613, + "2024-07-31T02": 1.7766446000000002, + "2024-08-03T09": 1.5444619929806707, + "2024-08-04T15": 1.3777462911000002, + "2024-08-03T00": 1.5414809942511474, + "2024-07-30T17": 1.7943435810000001, + "2024-08-03T15": 1.517705024784861, + "2024-08-01T19": 1.6431905, + "2024-07-30T13": 1.79534086, + "2024-08-03T22": 1.4961467099999999, + "2024-07-30T22": 1.7884811900000002, + "2024-07-31T13": 1.8150195350890082, + "2024-07-30T18": 1.785328512, + "2024-08-03T05": 1.5514359924, + "2024-08-05T09": 1.160108782, + "2024-07-30T12": 1.7862626760000002, + "2024-08-03T01": 1.5197484074, + "2024-08-05T03": 1.233638315, + "2024-07-31T08": 1.8051873, + "2024-08-01T10": 1.699198947, + "2024-07-31T21": 1.7413380399999998, + "2024-08-01T09": 1.7077789133999999, + "2024-08-06T09": 1.2882263520000001, + "2024-08-03T08": 1.54649844, + "2024-08-03T14": 1.5534821268780055, + "2024-08-01T12": 1.7172265776, + "2024-07-30T20": 1.784114761869475, + "2024-07-30T15": 1.79139072, + "2024-08-01T01": 1.72439625, + "2024-08-05T13": 1.0994168493299952, + "2024-08-01T16": 1.6298583, + "2024-08-04T00": 1.4902902097, + "2024-08-02T14": 1.6434958304, + "2024-08-04T09": 1.4634853376, + "2024-08-04T02": 1.4901054, + "2024-08-03T03": 1.5381674, + "2024-08-03T11": 1.5407047200000001, + "2024-07-31T09": 1.8052090003560948, + "2024-07-31T12": 1.79999144, + "2024-08-05T11": 1.0821006548, + "2024-08-03T18": 1.4506367045286175, + "2024-08-01T08": 1.7032238628, + "2024-07-31T10": 1.79363864, + "2024-08-03T17": 1.46994088, + "2024-07-31T03": 1.7797261789999999, + "2024-08-01T06": 1.689471753, + "2024-08-02T07": 1.6613532130000002, + "2024-08-02T19": 1.5692076972, + "2024-07-30T11": 1.7906238899999998, + "2024-08-05T22": 1.2425411961, + "2024-08-06T01": 1.335690587, + "2024-08-05T15": 1.2407578575595017, + "2024-07-31T18": 1.7995259604, + "2024-08-05T02": 1.2447510000000002, + "2024-08-05T12": 1.0822000732909118, + "2024-07-30T21": 1.77853746, + "2024-08-06T07": 1.3304608118999999, + "2024-08-04T11": 1.4663317891999998, + "2024-08-05T05": 1.2029278200000002, + "2024-07-31T19": 1.7701779348, + "2024-08-04T21": 1.3929659227, + "2024-07-30T14": 1.7861427, + "2024-08-01T18": 1.6181171321157564, + "2024-07-31T04": 1.7889242469999997, + "2024-08-02T18": 1.5784200000000002, + "2024-08-02T03": 1.69144244, + "2024-08-04T01": 1.4811456081999999, + "2024-08-02T21": 1.5531735698361264, + "2024-08-02T02": 1.6884297869999998, + "2024-08-02T10": 1.6798301089750605, + "2024-08-04T23": 1.3659297391, + "2024-08-04T03": 1.4882766960000002, + "2024-08-01T05": 1.6941359631011552, + "2024-08-02T17": 1.5864914, + "2024-07-31T16": 1.79330034, + "2024-08-04T04": 1.4839642293, + "2024-08-01T02": 1.7114795676, + "2024-08-05T21": 1.2409933386, + "2024-08-05T07": 1.211977455586601, + "2024-08-05T00": 1.3385605806999998, + "2024-08-02T20": 1.5749614188, + "2024-07-31T01": 1.7846678385181445, + "2024-07-31T22": 1.7411600729999999, + "2024-08-04T07": 1.47313034, + "2024-08-04T05": 1.4835145038000002, + "2024-08-01T14": 1.69328852, + "2024-08-03T02": 1.52598304, + "2024-08-01T04": 1.6886222835401592, + "2024-08-01T17": 1.6401803769, + "2024-08-06T02": 1.32750426, + "2024-08-04T14": 1.408294173, + "2024-07-31T20": 1.7393586434899149, + "2024-08-03T21": 1.477083218, + "2024-08-06T08": 1.3016634271730165, + "2024-08-02T13": 1.6836857, + "2024-08-05T04": 1.2125093715, + "2024-08-01T03": 1.7054856132999998, + "2024-07-31T17": 1.7904214632, + "2024-07-31T07": 1.8278132022, + "2024-08-03T07": 1.563025771, + "2024-08-03T13": 1.5490059592, + "latest": 1.28 + }, + "USD stellar": { + "2024-07-31": 0.10446446432798918, + "2024-08-02": 0.095823, + "2024-07-30": 0.102134, + "2024-08-01": 0.098127, + "2024-08-06": 0.0901915040400697, + "2024-07-20": 0.1052388022654652, + "2024-07-21": 0.10449981918558912, + "2024-07-15": 0.10353525129103565, + "2024-08-03": 0.09384, + "2024-07-18": 0.10412051753271394, + "2024-07-11": 0.08873171448891956, + "2024-07-17": 0.1094785203307934, + "2024-07-22": 0.1045749926120948, + "2024-07-12": 0.09100808066956353, + "2024-07-24": 0.1036474908082809, + "2024-07-06": 0.08748601341618961, + "2024-07-08": 0.08486543007733391, + "2024-07-07": 0.08840225939974374, + "2024-07-13": 0.10218294686847637, + "2024-07-09": 0.08751228305569522, + "2024-07-23": 0.10227103980082791, + "2024-07-10": 0.08765063147748486, + "2024-07-14": 0.1037920466782439, + "2024-07-29": 0.10053, + "2024-07-27": 0.102213, + "2024-07-28": 0.100869, + "2024-07-19": 0.10293314237714624, + "2024-08-04": 0.08924, + "2024-07-26": 0.102555, + "2024-08-05": 0.082438, + "2024-07-25": 0.101504, + "2024-07-16": 0.10559173474132819, + "2024-08-02T16": 0.094322, + "2024-08-02T11": 0.09749989936683104, + "2024-07-31T00": 0.1027743, + "2024-08-05T18": 0.08668918120349861, + "2024-07-31T11": 0.1054919475, + "2024-08-05T23": 0.088434, + "2024-08-02T06": 0.09704, + "2024-08-01T13": 0.0992199714520045, + "2024-08-05T01": 0.08151712138971931, + "2024-08-02T00": 0.09914011254898512, + "2024-08-06T06": 0.09147672929999999, + "2024-08-03T23": 0.09355202119586213, + "2024-08-01T11": 0.099408, + "2024-08-05T19": 0.08575, + "2024-08-04T19": 0.08880224252279549, + "2024-08-01T23": 0.0992703224606429, + "2024-08-04T17": 0.087707, + "2024-08-02T22": 0.09516917263198363, + "2024-08-02T01": 0.098606, + "2024-08-02T05": 0.09794333082751631, + "2024-08-03T20": 0.09241037475599513, + "2024-07-31T14": 0.104652885, + "2024-08-03T12": 0.09553648670258251, + "2024-07-31T05": 0.1037671662, + "2024-08-02T08": 0.097114, + "2024-08-05T14": 0.08495, + "2024-08-01T07": 0.09863, + "2024-08-03T06": 0.09549405956474952, + "2024-08-04T13": 0.09144918672688943, + "2024-08-06T11": 0.089378592, + "2024-08-05T16": 0.08751146780861074, + "2024-08-05T06": 0.07932, + "2024-08-01T22": 0.099068, + "2024-08-04T20": 0.08898804319860146, + "2024-08-06T10": 0.089429502, + "2024-08-01T15": 0.09716306875269731, + "2024-08-06T05": 0.09055339500000001, + "2024-08-04T08": 0.0915036529261815, + "2024-08-01T00": 0.1006652181465234, + "2024-08-04T18": 0.08721023707698988, + "2024-07-31T15": 0.10415727799999999, + "2024-08-03T19": 0.09243980676025955, + "2024-08-02T12": 0.09739421515889185, + "2024-08-01T20": 0.09763433295338589, + "2024-08-01T21": 0.098081, + "2024-07-30T23": 0.102338, + "2024-08-03T16": 0.093031, + "2024-08-06T00": 0.08991798, + "2024-08-04T06": 0.09239196411589434, + "2024-08-02T15": 0.09455918304167815, + "2024-08-05T10": 0.08012580700342611, + "2024-08-05T17": 0.087777, + "2024-08-03T04": 0.095213, + "2024-08-06T04": 0.09035063950000001, + "2024-08-06T03": 0.09028519749999998, + "2024-07-30T19": 0.102103, + "2024-08-02T04": 0.098498, + "2024-08-02T23": 0.09564174387751828, + "2024-08-05T08": 0.08240512422955173, + "2024-08-02T09": 0.097553, + "2024-08-04T12": 0.09168689434485117, + "2024-08-04T22": 0.088865, + "2024-07-31T23": 0.10085878443435516, + "2024-08-04T10": 0.09144011484599482, + "2024-07-30T16": 0.10273156513734197, + "2024-08-05T20": 0.08693242612477958, + "2024-08-03T10": 0.09529203215679687, + "2024-08-04T16": 0.0886346868066429, + "2024-07-31T06": 0.1040998023, + "2024-07-31T02": 0.10567886, + "2024-08-03T09": 0.09485, + "2024-08-04T15": 0.08896, + "2024-08-03T00": 0.095068, + "2024-07-30T17": 0.10230949924106261, + "2024-08-03T15": 0.093859, + "2024-08-01T19": 0.09704, + "2024-07-30T13": 0.10238031403754938, + "2024-08-03T22": 0.093381, + "2024-07-30T22": 0.102211, + "2024-07-31T13": 0.10514056070000001, + "2024-07-30T18": 0.10227652329350709, + "2024-08-03T05": 0.09578266608115306, + "2024-08-05T09": 0.0820542961970539, + "2024-07-30T12": 0.10303610143820305, + "2024-08-03T01": 0.09384, + "2024-08-05T03": 0.0819232349238467, + "2024-07-31T08": 0.10505270500000001, + "2024-08-01T10": 0.09902081914116409, + "2024-07-31T21": 0.10101160099999999, + "2024-08-01T09": 0.098883, + "2024-08-06T09": 0.09012703, + "2024-08-03T08": 0.09510182071111674, + "2024-08-03T14": 0.09536436737282208, + "2024-08-01T12": 0.09935, + "2024-07-30T20": 0.10149590593613478, + "2024-07-30T15": 0.10170737257481743, + "2024-08-01T01": 0.100479, + "2024-08-05T13": 0.07761754351679359, + "2024-08-01T16": 0.09619, + "2024-08-04T00": 0.09298451638299005, + "2024-08-02T14": 0.09618, + "2024-08-04T09": 0.09197849761851634, + "2024-08-04T02": 0.092745, + "2024-08-03T03": 0.094512, + "2024-08-03T11": 0.095272, + "2024-07-31T09": 0.10545885499999999, + "2024-07-31T12": 0.10556085280000001, + "2024-08-05T11": 0.07785956277937611, + "2024-08-03T18": 0.091934, + "2024-08-01T08": 0.098538, + "2024-07-31T10": 0.1051195184, + "2024-08-03T17": 0.092428, + "2024-07-31T03": 0.1053878639, + "2024-08-01T06": 0.09906728576238383, + "2024-08-02T07": 0.09750415939921199, + "2024-08-02T19": 0.09440266841488418, + "2024-07-30T11": 0.102374, + "2024-08-05T22": 0.08852544194639966, + "2024-08-06T01": 0.090657189, + "2024-08-05T15": 0.086784, + "2024-07-31T18": 0.1024761717, + "2024-08-05T02": 0.081081, + "2024-08-05T12": 0.077610784151594, + "2024-07-30T21": 0.1012772805057273, + "2024-08-06T07": 0.09168138539999998, + "2024-08-04T11": 0.09168046970659818, + "2024-08-05T05": 0.082685, + "2024-07-31T19": 0.10137942668264154, + "2024-08-04T21": 0.08855326808375985, + "2024-07-30T14": 0.10195519930946069, + "2024-08-01T18": 0.096273, + "2024-07-31T04": 0.10528788489999999, + "2024-08-02T18": 0.09453, + "2024-08-02T03": 0.09851225263291523, + "2024-08-04T01": 0.09257, + "2024-08-02T21": 0.094802, + "2024-08-02T02": 0.098056, + "2024-08-02T10": 0.09762652671016292, + "2024-08-04T23": 0.08836602657511441, + "2024-08-04T03": 0.09257, + "2024-08-01T05": 0.09826, + "2024-08-02T17": 0.094804, + "2024-07-31T16": 0.1026699431, + "2024-08-04T04": 0.09254, + "2024-08-01T02": 0.099549, + "2024-08-05T21": 0.08813445210830256, + "2024-08-05T07": 0.08250084410880545, + "2024-08-05T00": 0.08639814394469925, + "2024-08-02T20": 0.09535408215636915, + "2024-07-31T01": 0.10380611910000001, + "2024-07-31T22": 0.1013985567, + "2024-08-04T07": 0.0915, + "2024-08-04T05": 0.09227929170834544, + "2024-08-01T14": 0.09844214596821878, + "2024-08-03T02": 0.09476304757798229, + "2024-08-01T04": 0.09872646814839796, + "2024-08-01T17": 0.09688, + "2024-08-06T02": 0.0900342, + "2024-08-04T14": 0.09, + "2024-07-31T20": 0.100760688, + "2024-08-03T21": 0.09291443955907233, + "2024-08-06T08": 0.090652548, + "2024-08-02T13": 0.0978635589543228, + "2024-08-05T04": 0.08330222512324761, + "2024-08-01T03": 0.09942723696453742, + "2024-07-31T17": 0.1026799392, + "2024-07-31T07": 0.10496744999999999, + "2024-08-03T07": 0.09545929870243298, + "2024-08-03T13": 0.095341, + "latest": 0.088859 + }, + "USD tezos": { + "2024-07-31": 0.7480455373840603, + "2024-08-02": 0.7073908697963345, + "2024-07-30": 0.7538378395706485, + "2024-08-01": 0.7206175520461945, + "2024-08-06": 0.6399242390915799, + "2024-07-20": 0.8043858985500304, + "2024-07-21": 0.7936609278527491, + "2024-07-15": 0.8001922330930612, + "2024-08-03": 0.6864645605462295, + "2024-07-18": 0.8090854653436041, + "2024-07-11": 0.7544225524252018, + "2024-07-17": 0.8250965168498888, + "2024-07-22": 0.78411798914096, + "2024-07-12": 0.7531017608919766, + "2024-07-24": 0.7603307219258691, + "2024-07-06": 0.7313731299999999, + "2024-07-08": 0.6949426103399923, + "2024-07-07": 0.7270075760383595, + "2024-07-13": 0.7841641128004739, + "2024-07-09": 0.7350009889007721, + "2024-07-23": 0.7641188946805606, + "2024-07-10": 0.7490000029179859, + "2024-07-14": 0.7859671396248349, + "2024-07-29": 0.782300438176885, + "2024-07-27": 0.7780741753024834, + "2024-07-28": 0.77198456, + "2024-07-19": 0.8069995001526025, + "2024-08-04": 0.6686580635899834, + "2024-07-26": 0.7681372172443224, + "2024-08-05": 0.5969062545140237, + "2024-07-25": 0.7278329511827687, + "2024-07-16": 0.8092988231179435, + "2024-08-02T16": 0.693709845, + "2024-08-02T11": 0.7161978880000001, + "2024-07-31T00": 0.750712275, + "2024-08-05T18": 0.619885016, + "2024-07-31T11": 0.7465891499999999, + "2024-08-05T23": 0.61822362, + "2024-08-02T06": 0.7032725670891078, + "2024-08-01T13": 0.7236524799999999, + "2024-08-05T01": 0.60775072, + "2024-08-02T00": 0.72644561, + "2024-08-06T06": 0.64947377, + "2024-08-03T23": 0.6808266022494607, + "2024-08-01T11": 0.72261681, + "2024-08-05T19": 0.610031724, + "2024-08-04T19": 0.66556705, + "2024-08-01T23": 0.729121286, + "2024-08-04T17": 0.64746216, + "2024-08-02T22": 0.6892134, + "2024-08-02T01": 0.7193592, + "2024-08-02T05": 0.70738404, + "2024-08-03T20": 0.667652373, + "2024-07-31T14": 0.7496625, + "2024-08-03T12": 0.7034649599999999, + "2024-07-31T05": 0.7431717787313268, + "2024-08-02T08": 0.70841153, + "2024-08-05T14": 0.607764052, + "2024-08-01T07": 0.7227186593730821, + "2024-08-03T06": 0.6952413599999999, + "2024-08-04T13": 0.68875545, + "2024-08-06T11": 0.6332025600000001, + "2024-08-05T16": 0.62964044, + "2024-08-05T06": 0.5612055975955956, + "2024-08-01T22": 0.72739576, + "2024-08-04T20": 0.6687725400000001, + "2024-08-06T10": 0.63320889, + "2024-08-01T15": 0.7046475, + "2024-08-06T05": 0.6410780130000001, + "2024-08-04T08": 0.684482211, + "2024-08-01T00": 0.7337577799999999, + "2024-08-04T18": 0.64558656, + "2024-07-31T15": 0.7486929099999999, + "2024-08-03T19": 0.669377478, + "2024-08-02T12": 0.71249377, + "2024-08-01T20": 0.71128088, + "2024-08-01T21": 0.72033668, + "2024-07-30T23": 0.7511820939999999, + "2024-08-03T16": 0.6834870000000001, + "2024-08-06T00": 0.6362448853101913, + "2024-08-04T06": 0.68757344, + "2024-08-02T15": 0.6871259559999999, + "2024-08-05T10": 0.5752805280000001, + "2024-08-05T17": 0.6281704020000001, + "2024-08-03T04": 0.69429805, + "2024-08-06T04": 0.6382871, + "2024-08-06T03": 0.6412499899999999, + "2024-07-30T19": 0.74272509, + "2024-08-02T04": 0.713150442, + "2024-08-02T23": 0.6885175680000001, + "2024-08-05T08": 0.58906479, + "2024-08-02T09": 0.71238682, + "2024-08-04T12": 0.68935515, + "2024-08-04T22": 0.6704818299, + "2024-07-31T23": 0.731665792, + "2024-08-04T10": 0.6866427600000001, + "2024-07-30T16": 0.75075968, + "2024-08-05T20": 0.61556155, + "2024-08-03T10": 0.703979952, + "2024-08-04T16": 0.651830344, + "2024-07-31T06": 0.7539812819999999, + "2024-07-31T02": 0.75174962, + "2024-08-03T09": 0.7030135547677675, + "2024-08-04T15": 0.662156058, + "2024-08-03T00": 0.685201209, + "2024-07-30T17": 0.7456807050476497, + "2024-08-03T15": 0.69453435, + "2024-08-01T19": 0.7049709857177172, + "2024-07-30T13": 0.7588482, + "2024-08-03T22": 0.6786129700000001, + "2024-07-30T22": 0.7497825, + "2024-07-31T13": 0.753445714, + "2024-07-30T18": 0.7447616, + "2024-08-03T05": 0.6942285499999999, + "2024-08-05T09": 0.58910602, + "2024-07-30T12": 0.7598480000000001, + "2024-08-03T01": 0.678564338, + "2024-08-05T03": 0.5974701250000001, + "2024-07-31T08": 0.750162275, + "2024-08-01T10": 0.72361628, + "2024-07-31T21": 0.7356203579999999, + "2024-08-01T09": 0.72657834, + "2024-08-06T09": 0.6341902, + "2024-08-03T08": 0.69832197, + "2024-08-03T14": 0.6995599555730682, + "2024-08-01T12": 0.7251227400000001, + "2024-07-30T20": 0.7437768, + "2024-07-30T15": 0.7522441499999999, + "2024-08-01T01": 0.7337431, + "2024-08-05T13": 0.57296562, + "2024-08-01T16": 0.69601245, + "2024-08-04T00": 0.6835964400000001, + "2024-08-02T14": 0.70349312, + "2024-08-04T09": 0.685309151, + "2024-08-04T02": 0.6865878, + "2024-08-03T03": 0.69117652, + "2024-08-03T11": 0.702809144, + "2024-07-31T09": 0.749007773, + "2024-07-31T12": 0.748280728, + "2024-08-05T11": 0.5640733199999999, + "2024-08-03T18": 0.67063023, + "2024-08-01T08": 0.72562248, + "2024-07-31T10": 0.747341104, + "2024-08-03T17": 0.6745140000000001, + "2024-07-31T03": 0.7497425209999999, + "2024-08-01T06": 0.72164622, + "2024-08-02T07": 0.7094249, + "2024-08-02T19": 0.689347791, + "2024-07-30T11": 0.76183998, + "2024-08-05T22": 0.6237060120000001, + "2024-08-06T01": 0.6441932, + "2024-08-05T15": 0.6223918599999999, + "2024-07-31T18": 0.7487528299999999, + "2024-08-05T02": 0.5951809400000001, + "2024-08-05T12": 0.564862128, + "2024-07-30T21": 0.746005988, + "2024-08-06T07": 0.64843416, + "2024-08-04T11": 0.692146825, + "2024-08-05T05": 0.591564504, + "2024-07-31T19": 0.74374704, + "2024-08-04T21": 0.6671675665575048, + "2024-07-30T14": 0.7518496, + "2024-08-01T18": 0.6943605999999999, + "2024-07-31T04": 0.7448435499999999, + "2024-08-02T18": 0.6929119538310409, + "2024-08-02T03": 0.71334312, + "2024-08-04T01": 0.68559526, + "2024-08-02T21": 0.6879114, + "2024-08-02T02": 0.712279777, + "2024-08-02T10": 0.713057664, + "2024-08-04T23": 0.66372776, + "2024-08-04T03": 0.6845753000000001, + "2024-08-01T05": 0.718061715, + "2024-08-02T17": 0.6963378499999999, + "2024-07-31T16": 0.74770828, + "2024-08-04T04": 0.68558154, + "2024-08-01T02": 0.73061988, + "2024-08-05T21": 0.6191114200000001, + "2024-08-05T07": 0.5917, + "2024-08-05T00": 0.6486949700000001, + "2024-08-02T20": 0.6932435399999999, + "2024-07-31T01": 0.751627086, + "2024-07-31T22": 0.73577184, + "2024-08-04T07": 0.686194906, + "2024-08-04T05": 0.6855848685100572, + "2024-08-01T14": 0.7166988599999999, + "2024-08-03T02": 0.6862928960000001, + "2024-08-01T04": 0.7196256, + "2024-08-01T17": 0.69443705, + "2024-08-06T02": 0.6382424400000001, + "2024-08-04T14": 0.67071147, + "2024-07-31T20": 0.736612609, + "2024-08-03T21": 0.6700976999999999, + "2024-08-06T08": 0.6403712, + "2024-08-02T13": 0.7154415199999999, + "2024-08-05T04": 0.597670115, + "2024-08-01T03": 0.72761416, + "2024-07-31T17": 0.747808241, + "2024-07-31T07": 0.75376626, + "2024-08-03T07": 0.700150037, + "2024-08-03T13": 0.6985246799999999, + "latest": 0.633406 + }, + "USD tron": { + "2024-07-31": 0.13120188769048288, + "2024-08-02": 0.1263241518766145, + "2024-07-30": 0.13527867717765607, + "2024-08-01": 0.12874390122841167, + "2024-08-06": 0.12233798802026341, + "2024-07-20": 0.1345468548078169, + "2024-07-21": 0.13434603728393157, + "2024-07-15": 0.13812946819797156, + "2024-08-03": 0.12481727489701422, + "2024-07-18": 0.13395140194395735, + "2024-07-11": 0.1343411435915244, + "2024-07-17": 0.13436187000978447, + "2024-07-22": 0.13471573078896315, + "2024-07-12": 0.1363199031142246, + "2024-07-24": 0.13421315604718453, + "2024-07-06": 0.12936163207115028, + "2024-07-08": 0.1251851711931907, + "2024-07-07": 0.12910607177548036, + "2024-07-13": 0.13983339313317353, + "2024-07-09": 0.12871562147547816, + "2024-07-23": 0.13262223808257803, + "2024-07-10": 0.13032972764153505, + "2024-07-14": 0.137977638794895, + "2024-07-29": 0.13791135316139924, + "2024-07-27": 0.13727846977427863, + "2024-07-28": 0.13749725000000004, + "2024-07-19": 0.1346622272134408, + "2024-08-04": 0.1267671985238712, + "2024-07-26": 0.1368431918235906, + "2024-08-05": 0.12120548615587992, + "2024-07-25": 0.13541447494175274, + "2024-07-16": 0.13406400505237165, + "2024-08-02T16": 0.12309528, + "2024-08-02T11": 0.12729298400000003, + "2024-07-31T00": 0.1327168125, + "2024-08-05T18": 0.12114570139999999, + "2024-07-31T11": 0.1315376145, + "2024-08-05T23": 0.121704336, + "2024-08-02T06": 0.127702872, + "2024-08-01T13": 0.1290080464, + "2024-08-05T01": 0.123149488, + "2024-08-02T00": 0.12809860739999998, + "2024-08-06T06": 0.12298971699999998, + "2024-08-03T23": 0.1252098432, + "2024-08-01T11": 0.12953131199999998, + "2024-08-05T19": 0.12093986591738172, + "2024-08-04T19": 0.12681656, + "2024-08-01T23": 0.12825860846, + "2024-08-04T17": 0.126295088, + "2024-08-02T22": 0.12335921, + "2024-08-02T01": 0.12805692781000003, + "2024-08-02T05": 0.12773391406162468, + "2024-08-03T20": 0.12494622990000001, + "2024-07-31T14": 0.1309215494123527, + "2024-08-03T12": 0.1245152964, + "2024-07-31T05": 0.13131010542000002, + "2024-08-02T08": 0.12793372679999998, + "2024-08-05T14": 0.12103267, + "2024-08-01T07": 0.128722049, + "2024-08-03T06": 0.12420247158, + "2024-08-04T13": 0.1281448955, + "2024-08-06T11": 0.122439168, + "2024-08-05T16": 0.12208539999999998, + "2024-08-05T06": 0.11900366916, + "2024-08-01T22": 0.12820150436, + "2024-08-04T20": 0.126656922, + "2024-08-06T10": 0.12244039199999998, + "2024-08-01T15": 0.1275362, + "2024-08-06T05": 0.12246921423000001, + "2024-08-04T08": 0.127722042, + "2024-08-01T00": 0.1287674927, + "2024-08-04T18": 0.12634908479999998, + "2024-07-31T15": 0.1299966795, + "2024-08-03T19": 0.12492248439999999, + "2024-08-02T12": 0.1261403767, + "2024-08-01T20": 0.1276809119, + "2024-08-01T21": 0.127982148, + "2024-07-30T23": 0.13296143, + "2024-08-03T16": 0.125006175, + "2024-08-06T00": 0.12232446000000001, + "2024-08-04T06": 0.127021198, + "2024-08-02T15": 0.12337897, + "2024-08-05T10": 0.1195867398, + "2024-08-05T17": 0.12197192100000001, + "2024-08-03T04": 0.1232054367, + "2024-08-06T04": 0.1223990548, + "2024-08-06T03": 0.12221764629999998, + "2024-07-30T19": 0.13282083809999998, + "2024-08-02T04": 0.12751785306, + "2024-08-02T23": 0.12340184320000001, + "2024-08-05T08": 0.12021322200000001, + "2024-08-02T09": 0.127290436, + "2024-08-04T12": 0.12813590000000002, + "2024-08-04T22": 0.126453195, + "2024-07-31T23": 0.1287787776, + "2024-08-04T10": 0.12836421588, + "2024-07-30T16": 0.13293044864, + "2024-08-05T20": 0.12131213, + "2024-08-03T10": 0.12494994720000001, + "2024-08-04T16": 0.12690856, + "2024-07-31T06": 0.131561836, + "2024-07-31T02": 0.13101079259999998, + "2024-08-03T09": 0.12509256844000002, + "2024-08-04T15": 0.126715044, + "2024-08-03T00": 0.12353395823999999, + "2024-07-30T17": 0.1328288103, + "2024-08-03T15": 0.1250261763, + "2024-08-01T19": 0.12755953, + "2024-07-30T13": 0.13487301999999998, + "2024-08-03T22": 0.12521558641000002, + "2024-07-30T22": 0.13302841056999998, + "2024-07-31T13": 0.131638101, + "2024-07-30T18": 0.13295744, + "2024-08-03T05": 0.12397223789999999, + "2024-08-05T09": 0.12042167200000001, + "2024-07-30T12": 0.13527294, + "2024-08-03T01": 0.1234779351, + "2024-08-05T03": 0.121893905, + "2024-07-31T08": 0.131840645, + "2024-08-01T10": 0.12937139679999998, + "2024-07-31T21": 0.12883102559999998, + "2024-08-01T09": 0.12907509299999997, + "2024-08-06T09": 0.122367095607748, + "2024-08-03T08": 0.12492370634999998, + "2024-08-03T14": 0.12515759464999998, + "2024-08-01T12": 0.129032868, + "2024-07-30T20": 0.13278915130000002, + "2024-07-30T15": 0.133554576, + "2024-08-01T01": 0.12895485, + "2024-08-05T13": 0.11889286600000001, + "2024-08-01T16": 0.127130946, + "2024-08-04T00": 0.125226073, + "2024-08-02T14": 0.12590927999999998, + "2024-08-04T09": 0.12819088952, + "2024-08-04T02": 0.125604592, + "2024-08-03T03": 0.123053392, + "2024-08-03T11": 0.12435545360000001, + "2024-07-31T09": 0.132048481, + "2024-07-31T12": 0.13150531576, + "2024-08-05T11": 0.11921549599999999, + "2024-08-03T18": 0.12501242999999998, + "2024-08-01T08": 0.128832972, + "2024-07-31T10": 0.13174972976000002, + "2024-08-03T17": 0.124810072, + "2024-07-31T03": 0.1312224375, + "2024-08-01T06": 0.1289667753, + "2024-08-02T07": 0.12759656300000002, + "2024-08-02T19": 0.1234253196, + "2024-07-30T11": 0.13542155549999998, + "2024-08-05T22": 0.12171068730000001, + "2024-08-06T01": 0.12263678, + "2024-08-05T15": 0.1216265765, + "2024-07-31T18": 0.12975716599999998, + "2024-08-05T02": 0.12213556800000001, + "2024-08-05T12": 0.1185030339, + "2024-07-30T21": 0.1327954642, + "2024-08-06T07": 0.1231524569, + "2024-08-04T11": 0.12817859556, + "2024-08-05T05": 0.121392716, + "2024-07-31T19": 0.12929602440000001, + "2024-08-04T21": 0.12640433211, + "2024-07-30T14": 0.134293136, + "2024-08-01T18": 0.1273827, + "2024-07-31T04": 0.13131941712999998, + "2024-08-02T18": 0.1235763, + "2024-08-02T03": 0.12724282879999999, + "2024-08-04T01": 0.12519609069999998, + "2024-08-02T21": 0.123224652, + "2024-08-02T02": 0.12719324552, + "2024-08-02T10": 0.12710532648, + "2024-08-04T23": 0.12634517723, + "2024-08-04T03": 0.12615173740000002, + "2024-08-01T05": 0.128821371, + "2024-08-02T17": 0.123562504, + "2024-07-31T16": 0.129749378, + "2024-08-04T04": 0.12607204911, + "2024-08-01T02": 0.12902986955999998, + "2024-08-05T21": 0.12152187, + "2024-08-05T07": 0.12056, + "2024-08-05T00": 0.12520912403999998, + "2024-08-02T20": 0.1235851452, + "2024-07-31T01": 0.13154973660000002, + "2024-07-31T22": 0.12880005960000002, + "2024-08-04T07": 0.12742477500000002, + "2024-08-04T05": 0.12619497408, + "2024-08-01T14": 0.12894582000000002, + "2024-08-03T02": 0.12383632, + "2024-08-01T04": 0.12879799020000002, + "2024-08-01T17": 0.1271469275, + "2024-08-06T02": 0.122196417, + "2024-08-04T14": 0.12696238269, + "2024-07-31T20": 0.128849729, + "2024-08-03T21": 0.12495498199999999, + "2024-08-06T08": 0.122470992, + "2024-08-02T13": 0.126201486, + "2024-08-05T04": 0.121893905, + "2024-08-01T03": 0.12868975826, + "2024-07-31T17": 0.1299193117, + "2024-07-31T07": 0.13175514323999998, + "2024-08-03T07": 0.1245865496, + "2024-08-03T13": 0.12484204964, + "latest": 0.122301 + }, + "USD vechain": { + "2024-07-31": 0.0263871455441411, + "2024-08-02": 0.026378438431412375, + "2024-07-30": 0.027030530271644627, + "2024-08-01": 0.026257417044367428, + "2024-08-06": 0.021574547361611567, + "2024-07-20": 0.031297648430126765, + "2024-07-21": 0.030827664037207884, + "2024-07-15": 0.031403929959442876, + "2024-08-03": 0.024502866041718176, + "2024-07-18": 0.03127678109896992, + "2024-07-11": 0.026063903684635518, + "2024-07-17": 0.03166712677174701, + "2024-07-22": 0.030771445121532223, + "2024-07-12": 0.02649507357243935, + "2024-07-24": 0.02881405412260793, + "2024-07-06": 0.023444094144051988, + "2024-07-08": 0.022569637780729974, + "2024-07-07": 0.02430186325839913, + "2024-07-13": 0.027120514559917742, + "2024-07-09": 0.024699443793567408, + "2024-07-23": 0.02947647494401528, + "2024-07-10": 0.025562429860662077, + "2024-07-14": 0.029407467228108712, + "2024-07-29": 0.02743149721178253, + "2024-07-27": 0.028588777590839394, + "2024-07-28": 0.027898200460572956, + "2024-07-19": 0.030360238604046033, + "2024-08-04": 0.023578157382087364, + "2024-07-26": 0.027328581909192726, + "2024-08-05": 0.022333234465736134, + "2024-07-25": 0.027754224064173737, + "2024-07-16": 0.032422096035972084, + "2024-08-02T16": 0.02504199079634024, + "2024-08-02T11": 0.025465958116644927, + "2024-07-31T00": 0.026566431122156293, + "2024-08-05T18": 0.021924290689330484, + "2024-07-31T11": 0.027027352680427667, + "2024-08-05T23": 0.021834684346590402, + "2024-08-02T06": 0.025403919245091267, + "2024-08-01T13": 0.026513090869556884, + "2024-08-05T01": 0.021412764695916905, + "2024-08-02T00": 0.026368121518976773, + "2024-08-06T06": 0.02263647306029793, + "2024-08-03T23": 0.02350904517592936, + "2024-08-01T11": 0.02643638968977824, + "2024-08-05T19": 0.021199187273395557, + "2024-08-04T19": 0.02252144095202236, + "2024-08-01T23": 0.026343800851115515, + "2024-08-04T17": 0.022120600664296868, + "2024-08-02T22": 0.02466454796926892, + "2024-08-02T01": 0.02618490765663621, + "2024-08-02T05": 0.025762273217379807, + "2024-08-03T20": 0.023048271766369186, + "2024-07-31T14": 0.027243789283399555, + "2024-08-03T12": 0.02440798803762151, + "2024-07-31T05": 0.02666247983811147, + "2024-08-02T08": 0.025447926828941078, + "2024-08-05T14": 0.020417508696248237, + "2024-08-01T07": 0.026096566128456126, + "2024-08-03T06": 0.024723635765470892, + "2024-08-04T13": 0.02379031321674268, + "2024-08-06T11": 0.022029937386267226, + "2024-08-05T16": 0.021978784162494422, + "2024-08-05T06": 0.02077784126399099, + "2024-08-01T22": 0.02606014237066658, + "2024-08-04T20": 0.022804759670449634, + "2024-08-06T10": 0.022226234625587173, + "2024-08-01T15": 0.025964966079258765, + "2024-08-06T05": 0.022327495641168177, + "2024-08-04T08": 0.023620832439784464, + "2024-08-01T00": 0.026257417044367428, + "2024-08-04T18": 0.022208180839709428, + "2024-07-31T15": 0.027220567368244214, + "2024-08-03T19": 0.0231362407813425, + "2024-08-02T12": 0.02533981436057624, + "2024-08-01T20": 0.025621939778622566, + "2024-08-01T21": 0.02603393983651939, + "2024-07-30T23": 0.026757780517149613, + "2024-08-03T16": 0.02367636231227472, + "2024-08-06T00": 0.021574547361611567, + "2024-08-04T06": 0.023828184048433308, + "2024-08-02T15": 0.024765190780987937, + "2024-08-05T10": 0.020376091889531687, + "2024-08-05T17": 0.022135897188388584, + "2024-08-03T04": 0.02452626343904868, + "2024-08-06T04": 0.022236984791466564, + "2024-08-06T03": 0.02229438825584485, + "2024-07-30T19": 0.02688923609310874, + "2024-08-02T04": 0.025898121623366722, + "2024-08-02T23": 0.024473668830124903, + "2024-08-05T08": 0.020982105353600376, + "2024-08-02T09": 0.025492763256159814, + "2024-08-04T12": 0.023720070426405983, + "2024-08-04T22": 0.0227372983488153, + "2024-07-31T23": 0.026511283696869847, + "2024-08-04T10": 0.0237418762052516, + "2024-07-30T16": 0.02726211312279987, + "2024-08-05T20": 0.021509026182513085, + "2024-08-03T10": 0.024527486057037137, + "2024-08-04T16": 0.022478710775424564, + "2024-07-31T06": 0.026943059987683014, + "2024-07-31T02": 0.026840316240720464, + "2024-08-03T09": 0.024604883052622137, + "2024-08-04T15": 0.022812370206162214, + "2024-08-03T00": 0.024481665520910148, + "2024-07-30T17": 0.02724192508581738, + "2024-08-03T15": 0.02444590690624659, + "2024-08-01T19": 0.025240429797075335, + "2024-07-30T13": 0.027306588897678223, + "2024-08-03T22": 0.023456577231554324, + "2024-07-30T22": 0.026606681466725894, + "2024-07-31T13": 0.027278169979023197, + "2024-07-30T18": 0.027059754558693753, + "2024-08-03T05": 0.02451398729828296, + "2024-08-05T09": 0.020586319040218886, + "2024-07-30T12": 0.027350963985695455, + "2024-08-03T01": 0.024144225567626316, + "2024-08-05T03": 0.020782109256127612, + "2024-07-31T08": 0.027173899692916906, + "2024-08-01T10": 0.026316668448049016, + "2024-07-31T21": 0.026209149860465675, + "2024-08-01T09": 0.026476680350469465, + "2024-08-06T09": 0.02229195019824569, + "2024-08-03T08": 0.024750984996633935, + "2024-08-03T14": 0.0244784093855383, + "2024-08-01T12": 0.0262766633212894, + "2024-07-30T20": 0.02656576401226338, + "2024-07-30T15": 0.02704848982555695, + "2024-08-01T01": 0.02637964290579991, + "2024-08-05T13": 0.019324772647771483, + "2024-08-01T16": 0.02552421580046176, + "2024-08-04T00": 0.02366594691000537, + "2024-08-02T14": 0.025762414288366127, + "2024-08-04T09": 0.023699229805884882, + "2024-08-04T02": 0.023637269518023262, + "2024-08-03T03": 0.024336986887458743, + "2024-08-03T11": 0.0244668329042241, + "2024-07-31T09": 0.027170624298435902, + "2024-07-31T12": 0.027138357911808388, + "2024-08-05T11": 0.01980207291201298, + "2024-08-03T18": 0.023097052167072363, + "2024-08-01T08": 0.02611878543241943, + "2024-07-31T10": 0.027145286024952916, + "2024-08-03T17": 0.02355314938119971, + "2024-07-31T03": 0.026819396955065192, + "2024-08-01T06": 0.02621138503316727, + "2024-08-02T07": 0.0254321983543786, + "2024-08-02T19": 0.024603944269257837, + "2024-07-30T11": 0.027289401828334628, + "2024-08-05T22": 0.02165905716590151, + "2024-08-06T01": 0.02236379529345754, + "2024-08-05T15": 0.02151423649166337, + "2024-07-31T18": 0.02712179042158056, + "2024-08-05T02": 0.020629642090779256, + "2024-08-05T12": 0.019743278944719, + "2024-07-30T21": 0.02656231096840408, + "2024-08-06T07": 0.022698610600184403, + "2024-08-04T11": 0.023753187431209955, + "2024-08-05T05": 0.020944017437812688, + "2024-07-31T19": 0.02712760477037439, + "2024-08-04T21": 0.022713559158940213, + "2024-07-30T14": 0.02711617544907434, + "2024-08-01T18": 0.02549105282245875, + "2024-07-31T04": 0.026809625515196462, + "2024-08-02T18": 0.02483481739969866, + "2024-08-02T03": 0.025745567853273612, + "2024-08-04T01": 0.023706516883057464, + "2024-08-02T21": 0.024936448655680385, + "2024-08-02T02": 0.026032632189326044, + "2024-08-02T10": 0.025407745090750524, + "2024-08-04T23": 0.022731062554575267, + "2024-08-04T03": 0.023841435834557265, + "2024-08-01T05": 0.025858237914856787, + "2024-08-02T17": 0.025044920222475193, + "2024-07-31T16": 0.027150956488555995, + "2024-08-04T04": 0.023765080615360406, + "2024-08-01T02": 0.02618482920664609, + "2024-08-05T21": 0.02181915405176046, + "2024-08-05T07": 0.019798290637489082, + "2024-08-05T00": 0.022333234465736134, + "2024-08-02T20": 0.02475192031282355, + "2024-07-31T01": 0.026725802482401122, + "2024-07-31T22": 0.02649762909471578, + "2024-08-04T07": 0.02391243388627049, + "2024-08-04T05": 0.023771833257057114, + "2024-08-01T14": 0.026424217605859727, + "2024-08-03T02": 0.024219966451250043, + "2024-08-01T04": 0.026328268722894982, + "2024-08-01T17": 0.02532601388857474, + "2024-08-06T02": 0.02226778099406905, + "2024-08-04T14": 0.023655643691208213, + "2024-07-31T20": 0.026439845475319624, + "2024-08-03T21": 0.023103485300905828, + "2024-08-06T08": 0.022793220261349043, + "2024-08-02T13": 0.02547291322984202, + "2024-08-05T04": 0.020793267191500625, + "2024-08-01T03": 0.026251432501460892, + "2024-07-31T17": 0.02707069074243961, + "2024-07-31T07": 0.027217516294608685, + "2024-08-03T07": 0.02485891535747083, + "2024-08-03T13": 0.024536993996089516, + "latest": 0.02211826 + }, + "USD zcash": { + "2024-07-31": 31.762714773982022, + "2024-08-02": 32.78779557913716, + "2024-07-30": 32.15782395643693, + "2024-08-01": 32.33752025390298, + "2024-08-06": 29.878297240583485, + "2024-07-20": 29.310707210766417, + "2024-07-21": 31.635916814214006, + "2024-07-15": 29.271649393964662, + "2024-08-03": 32.76642938237937, + "2024-07-18": 31.04960508849623, + "2024-07-11": 23.740188519692882, + "2024-07-17": 31.070436918775176, + "2024-07-22": 31.821614859426578, + "2024-07-12": 23.725539387959614, + "2024-07-24": 29.841521698311535, + "2024-07-06": 19.0019, + "2024-07-08": 19.67222924712473, + "2024-07-07": 19.75020581397194, + "2024-07-13": 25.959331961745793, + "2024-07-09": 21.949488078359472, + "2024-07-23": 30.44896334176399, + "2024-07-10": 23.133550673206788, + "2024-07-14": 28.411043862932043, + "2024-07-29": 32.61341425858336, + "2024-07-27": 31.48300133486141, + "2024-07-28": 31.837653252984882, + "2024-07-19": 29.73918000330154, + "2024-08-04": 31.534409166923016, + "2024-07-26": 32.1215765500929, + "2024-08-05": 28.769609871785725, + "2024-07-25": 29.73153176315912, + "2024-07-16": 29.358862624128, + "2024-08-02T16": 32.882026499999995, + "2024-08-02T11": 33.5917592, + "2024-07-31T00": 31.95201, + "2024-08-05T18": 30.966838353124004, + "2024-07-31T11": 31.502664, + "2024-08-05T23": 30.31675871086916, + "2024-08-02T06": 29.9772, + "2024-08-01T13": 32.575500321096314, + "2024-08-05T01": 28.888150999999997, + "2024-08-02T00": 32.570660000000004, + "2024-08-06T06": 30.012154118136085, + "2024-08-03T23": 31.9221136, + "2024-08-01T11": 32.55701829067669, + "2024-08-05T19": 30.0414114, + "2024-08-04T19": 30.72463, + "2024-08-01T23": 32.18183011654861, + "2024-08-04T17": 30.434718200000002, + "2024-08-02T22": 32.6327562, + "2024-08-02T01": 31.751715800000003, + "2024-08-02T05": 29.8839783, + "2024-08-03T20": 32.1184662, + "2024-07-31T14": 31.855658500000004, + "2024-08-03T12": 33.4845324, + "2024-07-31T05": 31.6630326, + "2024-08-02T08": 31.3139878, + "2024-08-05T14": 28.747759799999997, + "2024-08-01T07": 32.8706819220347, + "2024-08-03T06": 33.2037684, + "2024-08-04T13": 32.013985000000005, + "2024-08-06T11": 30.229670400000003, + "2024-08-05T16": 31.351930999999997, + "2024-08-05T06": 26.4481485, + "2024-08-01T22": 32.04580297991665, + "2024-08-04T20": 31.6692288, + "2024-08-06T10": 30.096252675018864, + "2024-08-01T15": 31.526004825402566, + "2024-08-06T05": 29.607458100000002, + "2024-08-04T08": 31.760614200000003, + "2024-08-01T00": 33.18828425752973, + "2024-08-04T18": 30.446495587004264, + "2024-07-31T15": 31.647019399999998, + "2024-08-03T19": 32.0449854, + "2024-08-02T12": 33.97897534991862, + "2024-08-01T20": 31.541228688791875, + "2024-08-01T21": 31.77315371501289, + "2024-07-30T23": 31.980756052449998, + "2024-08-03T16": 33.065182500000006, + "2024-08-06T00": 30.096018, + "2024-08-04T06": 32.429881, + "2024-08-02T15": 32.957669800000005, + "2024-08-05T10": 27.843897600000002, + "2024-08-05T17": 31.678870763656878, + "2024-08-03T04": 32.2274174, + "2024-08-06T04": 29.6033155, + "2024-08-06T03": 29.841633699999996, + "2024-07-30T19": 31.6119275260922, + "2024-08-02T04": 29.9926818, + "2024-08-02T23": 32.618195199999995, + "2024-08-05T08": 29.0731977, + "2024-08-02T09": 31.7426778, + "2024-08-04T12": 31.974005000000002, + "2024-08-04T22": 31.368389399999998, + "2024-07-31T23": 33.5692544, + "2024-08-04T10": 31.5635784, + "2024-07-30T16": 31.53803060677462, + "2024-08-05T20": 30.353035000000002, + "2024-08-03T10": 33.210748800000005, + "2024-08-04T16": 30.787816799999998, + "2024-07-31T06": 31.7707838, + "2024-07-31T02": 31.84363, + "2024-08-03T09": 33.470185, + "2024-08-04T15": 30.95355342285449, + "2024-08-03T00": 32.6771368, + "2024-07-30T17": 31.49018675687818, + "2024-08-03T15": 33.397608600000005, + "2024-08-01T19": 31.32104939254206, + "2024-07-30T13": 32.42521771851348, + "2024-08-03T22": 32.34755138, + "2024-07-30T22": 31.930907477504274, + "2024-07-31T13": 31.9649694, + "2024-07-30T18": 31.49100486315603, + "2024-08-03T05": 32.3440582, + "2024-08-05T09": 28.765176800000003, + "2024-07-30T12": 32.37091965563755, + "2024-08-03T01": 32.2902341, + "2024-08-05T03": 27.858607, + "2024-07-31T08": 31.465834, + "2024-08-01T10": 32.582751793619664, + "2024-07-31T21": 32.64758919999999, + "2024-08-01T09": 32.59711909871846, + "2024-08-06T09": 29.448832, + "2024-08-03T08": 33.3975729, + "2024-08-03T14": 33.758043, + "2024-08-01T12": 32.66941313574242, + "2024-07-30T20": 31.862283556399632, + "2024-07-30T15": 32.0893191753107, + "2024-08-01T01": 33.06712559594116, + "2024-08-05T13": 27.3133611, + "2024-08-01T16": 31.283468051593093, + "2024-08-04T00": 31.60154522943539, + "2024-08-02T14": 33.7456856, + "2024-08-04T09": 31.581988000000003, + "2024-08-04T02": 32.090734, + "2024-08-03T03": 32.461325, + "2024-08-03T11": 33.15509493702379, + "2024-07-31T09": 31.623108149557364, + "2024-07-31T12": 31.82316904, + "2024-08-05T11": 27.193790615614322, + "2024-08-03T18": 32.447271, + "2024-08-01T08": 32.753768108374544, + "2024-07-31T10": 31.4948752, + "2024-08-03T17": 32.6464776, + "2024-07-31T03": 31.573368199999997, + "2024-08-01T06": 32.82117761064896, + "2024-08-02T07": 30.22916245523265, + "2024-08-02T19": 33.3136485, + "2024-07-30T11": 32.23448848465461, + "2024-08-05T22": 30.7352241, + "2024-08-06T01": 29.768928, + "2024-08-05T15": 30.1990134, + "2024-07-31T18": 31.606463619772427, + "2024-08-05T02": 28.014396, + "2024-08-05T12": 27.3430074, + "2024-07-30T21": 31.840424931538898, + "2024-08-06T07": 30.0201, + "2024-08-04T11": 31.630942720958558, + "2024-08-05T05": 27.0583764, + "2024-07-31T19": 31.299354599999997, + "2024-08-04T21": 31.627934252932043, + "2024-07-30T14": 32.40489916410227, + "2024-08-01T18": 31.118203930200693, + "2024-07-31T04": 31.573368199999997, + "2024-08-02T18": 33.51645, + "2024-08-02T03": 29.892473600000002, + "2024-08-04T01": 31.471865376946152, + "2024-08-02T21": 32.767199999999995, + "2024-08-02T02": 30.923073499999997, + "2024-08-02T10": 32.3953608, + "2024-08-04T23": 31.07759870242825, + "2024-08-04T03": 31.9601724, + "2024-08-01T05": 32.60114950022817, + "2024-08-02T17": 33.548099, + "2024-07-31T16": 31.8575707, + "2024-08-04T04": 32.0404434, + "2024-08-01T02": 33.544921802544884, + "2024-08-05T21": 30.5188796665291, + "2024-08-05T07": 29.043, + "2024-08-05T00": 30.805514600000002, + "2024-08-02T20": 33.1738011, + "2024-07-31T01": 31.99264, + "2024-07-31T22": 33.12012709780084, + "2024-08-04T07": 32.1010492, + "2024-08-04T05": 32.080419, + "2024-08-01T14": 32.24098040410604, + "2024-08-03T02": 32.3663920226147, + "2024-08-01T04": 32.669890663834146, + "2024-08-01T17": 31.313242945278933, + "2024-08-06T02": 29.5412214, + "2024-08-04T14": 31.3365195, + "2024-07-31T20": 31.85567323476699, + "2024-08-03T21": 32.200668, + "2024-08-06T08": 29.593208315763114, + "2024-08-02T13": 34.1833162, + "2024-08-05T04": 27.698615, + "2024-08-01T03": 33.20191400454436, + "2024-07-31T17": 31.7576097, + "2024-07-31T07": 31.5302226, + "2024-08-03T07": 33.3542727, + "2024-08-03T13": 32.91460284, + "latest": 30.89 + }, + "USD zilliqa": { + "2024-07-31": 0.016724310891935493, + "2024-08-02": 0.015521069095358154, + "2024-07-30": 0.01710632020564164, + "2024-08-01": 0.01588157129266856, + "2024-08-06": 0.012929009558901385, + "2024-07-20": 0.017918596322177915, + "2024-07-21": 0.01789588353829806, + "2024-07-15": 0.016808238954692956, + "2024-08-03": 0.014598613143494048, + "2024-07-18": 0.017449686528545165, + "2024-07-11": 0.015730116021075696, + "2024-07-17": 0.017734223837736124, + "2024-07-22": 0.01769266228048926, + "2024-07-12": 0.015482091976902786, + "2024-07-24": 0.017050688950198695, + "2024-07-06": 0.015071507, + "2024-07-08": 0.014758781192256527, + "2024-07-07": 0.015060156939802024, + "2024-07-13": 0.016033355520652545, + "2024-07-09": 0.015134020361937804, + "2024-07-23": 0.017222679703360493, + "2024-07-10": 0.015690000061125767, + "2024-07-14": 0.016315545433729234, + "2024-07-29": 0.017292712737210107, + "2024-07-27": 0.017241643678939347, + "2024-07-28": 0.017089658200000003, + "2024-07-19": 0.01759998909874325, + "2024-08-04": 0.013663013048243754, + "2024-07-26": 0.016888619629336896, + "2024-08-05": 0.011921731629286732, + "2024-07-25": 0.016106303356530776, + "2024-07-16": 0.017286382773149644, + "2024-08-02T16": 0.01521514621651023, + "2024-08-02T11": 0.015726778400000002, + "2024-07-31T00": 0.01675581, + "2024-08-05T18": 0.012455726999999998, + "2024-07-31T11": 0.0166608315, + "2024-08-05T23": 0.012462492, + "2024-08-02T06": 0.015538182, + "2024-08-01T13": 0.0161822288, + "2024-08-05T01": 0.012095039, + "2024-08-02T00": 0.01608551, + "2024-08-06T06": 0.013169606799999999, + "2024-08-03T23": 0.0142020424, + "2024-08-01T11": 0.0160814723, + "2024-08-05T19": 0.012344689200000002, + "2024-08-04T19": 0.01371314, + "2024-08-01T23": 0.016124989800000003, + "2024-08-04T17": 0.01328671659664126, + "2024-08-02T22": 0.015012865799999999, + "2024-08-02T01": 0.015955786700000002, + "2024-08-02T05": 0.015676349699999998, + "2024-08-03T20": 0.014020599900000002, + "2024-07-31T14": 0.0168224265, + "2024-08-03T12": 0.0150785316, + "2024-07-31T05": 0.016556356799999998, + "2024-08-02T08": 0.0155171101, + "2024-08-05T14": 0.012073258900000002, + "2024-08-01T07": 0.0159428225, + "2024-08-03T06": 0.0151734429, + "2024-08-04T13": 0.014262865000000001, + "2024-08-06T11": 0.01285191182728006, + "2024-08-05T16": 0.012588805999999998, + "2024-08-05T06": 0.011199216, + "2024-08-01T22": 0.0160366785, + "2024-08-04T20": 0.013725331799999999, + "2024-08-06T10": 0.0128642438, + "2024-08-01T15": 0.015682155, + "2024-08-06T05": 0.013037687700000002, + "2024-08-04T08": 0.0142213197, + "2024-08-01T00": 0.016374594599999997, + "2024-08-04T18": 0.0133214688, + "2024-07-31T15": 0.01680928818052623, + "2024-08-03T19": 0.014109006667343377, + "2024-08-02T12": 0.015608909800000001, + "2024-08-01T20": 0.0154044258, + "2024-08-01T21": 0.0157455008, + "2024-07-30T23": 0.0168051251, + "2024-08-03T16": 0.014559072499999999, + "2024-08-06T00": 0.012912581999999999, + "2024-08-04T06": 0.0143311092, + "2024-08-02T15": 0.0150252608, + "2024-08-05T10": 0.01136197431181527, + "2024-08-05T17": 0.0125373927, + "2024-08-03T04": 0.015054543094479473, + "2024-08-06T04": 0.012910446248883968, + "2024-08-06T03": 0.012905030999999999, + "2024-07-30T19": 0.016733806200000003, + "2024-08-02T04": 0.0158355765, + "2024-08-02T23": 0.015024843163794413, + "2024-08-05T08": 0.0116812848, + "2024-08-02T09": 0.0156665152, + "2024-08-04T12": 0.01423288, + "2024-08-04T22": 0.0137449125, + "2024-07-31T23": 0.016344768, + "2024-08-04T10": 0.0142226004, + "2024-07-30T16": 0.017144511999999997, + "2024-08-05T20": 0.012431243, + "2024-08-03T10": 0.0150267648, + "2024-08-04T16": 0.013540243999999998, + "2024-07-31T06": 0.016915093200000002, + "2024-07-31T02": 0.016876624, + "2024-08-03T09": 0.015106543200000001, + "2024-08-04T15": 0.013660841100000001, + "2024-08-03T00": 0.014980349999999998, + "2024-07-30T17": 0.01699473, + "2024-08-03T15": 0.0148500438, + "2024-08-01T19": 0.015303148, + "2024-07-30T13": 0.017166566, + "2024-08-03T22": 0.014191906, + "2024-07-30T22": 0.016775133799999998, + "2024-07-31T13": 0.01681672643820717, + "2024-07-30T18": 0.0168646016, + "2024-08-03T05": 0.0151032168, + "2024-08-05T09": 0.0116420952, + "2024-07-30T12": 0.017176564000000002, + "2024-08-03T01": 0.0147318575, + "2024-08-05T03": 0.0119094045, + "2024-07-31T08": 0.016823468358473367, + "2024-08-01T10": 0.01602050463, + "2024-07-31T21": 0.0163137984, + "2024-08-01T09": 0.0160506852, + "2024-08-06T09": 0.012833849, + "2024-08-03T08": 0.015115323899999998, + "2024-08-03T14": 0.015090185, + "2024-08-01T12": 0.01621456404, + "2024-07-30T20": 0.016605017, + "2024-07-30T15": 0.017074192800000002, + "2024-08-01T01": 0.016314288000000003, + "2024-08-05T13": 0.0113393196, + "2024-08-01T16": 0.015329262, + "2024-08-04T00": 0.014211027770050507, + "2024-08-02T14": 0.015499892666481028, + "2024-08-04T09": 0.0142718604, + "2024-08-04T02": 0.014281426, + "2024-08-03T03": 0.0149721619, + "2024-08-03T11": 0.015007383200000002, + "2024-07-31T09": 0.0167534636, + "2024-07-31T12": 0.016670779289723936, + "2024-08-05T11": 0.0111514495, + "2024-08-03T18": 0.014200053, + "2024-08-01T08": 0.01597184668843116, + "2024-07-31T10": 0.0166819888, + "2024-08-03T17": 0.0143296752, + "2024-07-31T03": 0.016786474099999997, + "2024-08-01T06": 0.015992160000000002, + "2024-08-02T07": 0.0155573883, + "2024-08-02T19": 0.015033595499999998, + "2024-07-30T11": 0.01720099277877079, + "2024-08-05T22": 0.012502125000000001, + "2024-08-06T01": 0.013083923999999999, + "2024-08-05T15": 0.012417893032346125, + "2024-07-31T18": 0.016785607440006504, + "2024-08-05T02": 0.011917616, + "2024-08-05T12": 0.011191230900000002, + "2024-07-30T21": 0.01664558441028102, + "2024-08-06T07": 0.01312134963269303, + "2024-08-04T11": 0.0142527274, + "2024-08-05T05": 0.011789292600000001, + "2024-07-31T19": 0.016574362800000002, + "2024-08-04T21": 0.0136860299, + "2024-07-30T14": 0.017086582000000003, + "2024-08-01T18": 0.015086108, + "2024-07-31T04": 0.0166864951, + "2024-08-02T18": 0.01514484, + "2024-08-02T03": 0.0158454088, + "2024-08-04T01": 0.014191622000000001, + "2024-08-02T21": 0.014985, + "2024-08-02T02": 0.015766271399999997, + "2024-08-02T10": 0.0156580908, + "2024-08-04T23": 0.0135544404, + "2024-08-04T03": 0.014351096800000001, + "2024-08-01T05": 0.015960258300000002, + "2024-08-02T17": 0.015285465, + "2024-07-31T16": 0.0168034441, + "2024-08-04T04": 0.0143512404, + "2024-08-01T02": 0.0162615396, + "2024-08-05T21": 0.012452241, + "2024-08-05T07": 0.01174, + "2024-08-05T00": 0.013193796, + "2024-08-02T20": 0.0151334865, + "2024-07-31T01": 0.0168761176, + "2024-07-31T22": 0.0163649253, + "2024-08-04T07": 0.014251586600000001, + "2024-08-04T05": 0.0143112648, + "2024-08-01T14": 0.0159832842, + "2024-08-03T02": 0.014930266, + "2024-08-01T04": 0.015961695600000003, + "2024-08-01T17": 0.0152176637, + "2024-08-06T02": 0.012914926094081338, + "2024-08-04T14": 0.0138740316, + "2024-07-31T20": 0.0163836079, + "2024-08-03T21": 0.01409154, + "2024-08-06T08": 0.0128774646, + "2024-08-02T13": 0.0157277228, + "2024-08-05T04": 0.011959402000000001, + "2024-08-01T03": 0.0162213981, + "2024-07-31T17": 0.016792788981949167, + "2024-07-31T07": 0.016927008726415, + "2024-08-03T07": 0.0152236932, + "2024-08-03T13": 0.015068782023147518, + "latest": 0.01278884 + }, + "USD ethereum/erc20/usd_tether__erc20_": { + "2023-10-23": 1.0003199893069419, + "2023-08-20": 0.9999000000000001, + "2024-02-23": 0.9997822639006595, + "2024-04-05": 1.0002996099023616, + "2023-12-19": 0.999562506954569, + "2024-05-17": 1.000209955694447, + "2023-08-06": 0.9987054969774685, + "2023-12-02": 1.0004272344212337, + "2024-06-11": 0.9995267841793942, + "2024-04-26": 0.9998623012181294, + "2024-01-08": 1.0007014131209098, + "2023-10-31": 1.0003494821564858, + "2023-08-29": 0.9998264620726621, + "2023-09-09": 0.9997062003567082, + "2023-10-01": 1.0000800787414637, + "2024-03-07": 1.0006167117248603, + "2023-10-12": 0.9997124088421077, + "2024-04-22": 1.0003998873307551, + "2024-06-24": 0.999444619679664, + "2023-09-26": 0.9996834984284886, + "2023-08-24": 0.9995644520823458, + "2023-12-05": 1.0000637896331663, + "2024-02-19": 1.000114093917885, + "2024-07-31": 0.9996599457223846, + "2024-01-07": 1.0005189273496493, + "2024-04-28": 0.999541108144075, + "2023-10-18": 1.0003686722335488, + "2023-10-07": 1.0005509691353505, + "2024-06-28": 0.9987391149630068, + "2024-05-19": 1.0000953669309602, + "2024-05-12": 0.999623804295247, + "2023-09-16": 1.0001030559915924, + "2023-08-25": 0.9995555979983999, + "2024-03-09": 1.0021329697948491, + "2023-09-05": 0.9994099915069549, + "2024-08-02": 0.9991396466049922, + "2024-04-29": 0.9998777764176565, + "2024-04-25": 0.9997294699957102, + "2023-08-12": 0.9993331305482194, + "2024-06-12": 0.9998830156194622, + "2023-09-01": 0.9995996064737327, + "2024-05-30": 0.9994904107267901, + "2024-06-05": 1, + "2023-09-08": 0.9996001196284937, + "2024-03-22": 1.00000281466932, + "2023-08-10": 0.9989900033300851, + "2023-11-18": 1.0003908387017555, + "2023-09-13": 0.9999069624574598, + "2024-07-30": 0.999784933117571, + "2023-12-07": 1.0001280857602834, + "2024-06-30": 0.9983693196922303, + "2024-06-20": 0.9995559487390058, + "2024-07-08": 0.9999174249496292, + "2024-07-07": 1.0000104209606047, + "2023-09-07": 0.9994094916208136, + "2024-03-26": 1.0001671693360006, + "2024-05-14": 0.9994897418492008, + "2024-06-16": 0.9993210237447783, + "2024-02-22": 0.9996985837301782, + "2024-04-15": 1.000804779697821, + "2023-12-30": 0.999994203573886, + "2023-09-17": 1.000220354366645, + "2024-04-17": 1.0002895830529517, + "2024-02-12": 1.00025, + "2023-10-26": 1.0001756849917147, + "2024-01-03": 1.0005199108515548, + "2024-05-07": 0.9999998964973685, + "2024-01-22": 0.9990924339164344, + "2024-07-13": 1.0002093275516248, + "2023-10-03": 1.0000009951530573, + "2024-05-26": 0.99964, + "2024-04-30": 0.999653461005082, + "2024-07-09": 1.0000013454432275, + "2023-12-24": 1.0005049482639274, + "2023-09-24": 1.00006, + "2024-01-16": 0.9993196872979324, + "2023-10-17": 1.000408630739459, + "2024-04-24": 0.9999212837549867, + "2024-03-18": 0.9995717375652462, + "2024-02-17": 1.000347284010517, + "2023-12-27": 1.0002345891805149, + "2024-08-01": 0.9994695590099786, + "2023-09-03": 0.99986527784314, + "2024-02-24": 0.9998569735144313, + "2024-01-06": 1.0006866517753394, + "2024-03-20": 0.9999152221538392, + "2023-11-21": 1.000346565391692, + "2023-12-25": 1.0001836580342194, + "2023-09-22": 0.9999223949030303, + "2024-03-01": 1.000320154767329, + "2023-10-02": 1.0002510975829573, + "2024-03-27": 0.9998195492325934, + "2024-05-13": 0.9997498222825758, + "2024-05-06": 1.00005, + "2024-06-19": 0.9996176377028108, + "2023-08-30": 0.9999242891043502, + "2023-10-06": 1.0001966975629932, + "2023-10-13": 0.9996494309081019, + "2024-02-05": 0.9989895634609893, + "2023-12-10": 1.0000853744461198, + "2023-11-23": 1.0001910308425486, + "2024-01-13": 0.9997848537894541, + "2024-03-28": 0.9998047110538556, + "2023-08-05": 0.9987635514127302, + "2024-02-09": 1.0000197796711614, + "2023-10-09": 1.000198173283462, + "2024-01-09": 1.000498976620399, + "2024-05-10": 0.999871351269031, + "2023-08-18": 0.9996004558071162, + "2024-08-06": 1.0002781386888158, + "2023-11-05": 1.0007255456998707, + "2024-04-18": 1.000384938724127, + "2023-10-22": 1.0004466509786318, + "2023-11-01": 1.000202279394344, + "2024-05-20": 1.00005, + "2023-12-08": 1.0001783605551853, + "2024-04-12": 0.9999989546209408, + "2024-03-12": 1.0000949536024875, + "2024-07-02": 0.9986974194866635, + "2023-09-11": 0.9996064504037809, + "2024-07-20": 1.0004799733209333, + "2024-03-03": 1.0004969487135829, + "2024-02-04": 0.9996199033620214, + "2024-01-28": 0.9999, + "2024-01-26": 0.999535736740688, + "2023-11-07": 1.0003187842764132, + "2023-11-25": 1.0005959158747728, + "2024-06-29": 0.998419555709682, + "2024-07-21": 1.0003288730183377, + "2024-02-25": 0.9999594819475537, + "2023-12-01": 1.0002122922113057, + "2024-02-28": 1.0005322867691895, + "2023-09-15": 1.0000184495906546, + "2023-12-21": 1.0000263434665637, + "2024-06-01": 0.9991473235912018, + "2024-03-06": 1.000544125265376, + "2024-07-15": 1.0004904188254016, + "2023-09-30": 1.0000230727945119, + "2023-12-12": 0.9996177656902822, + "2023-10-04": 0.9999639166322751, + "2024-02-13": 1.0002584413035445, + "2023-09-20": 1.0000700247368512, + "2024-04-16": 1.0003799751044982, + "2023-09-19": 1.0001806510874856, + "2023-09-29": 0.9998900053738049, + "2023-09-12": 0.9997483687028741, + "2024-03-02": 1.000949757835641, + "2024-06-02": 0.9992902651179207, + "2023-10-08": 1.0005863506517971, + "2023-11-20": 1.0005694662607607, + "2023-12-20": 0.9999368514137088, + "2023-12-31": 0.999706490105218, + "2023-11-06": 1.0005236061008729, + "2024-05-29": 0.9990409925561, + "2024-08-03": 0.9992206121488055, + "2023-08-22": 0.9996312417930362, + "2024-03-17": 0.999300125610499, + "2024-07-23": 1.000155615758449, + "2024-07-10": 1.0000000038958423, + "2023-09-18": 1.000170535881867, + "2024-07-01": 0.9988161758265397, + "2024-04-01": 1.0003067204988154, + "2024-05-21": 0.9997973495183019, + "2024-01-19": 0.9989301008513192, + "2023-11-11": 1.0005239086294107, + "2023-09-23": 0.9999999874901567, + "2023-08-15": 0.99872, + "2024-07-18": 0.9999820360197802, + "2023-11-19": 1.0005102321747177, + "2024-01-25": 0.9995261075782131, + "2024-03-13": 1.0005705970776617, + "2024-01-21": 0.9993984589774161, + "2024-02-01": 0.9994087706890287, + "2024-03-15": 0.9996551244231094, + "2024-03-16": 0.9997554256352759, + "2024-06-23": 0.9996971905695466, + "2023-11-27": 1.0001689835048435, + "2024-01-10": 1.0003454462548549, + "2024-06-03": 0.9997704850708495, + "2024-01-02": 1.0006886283230676, + "2024-07-14": 1.0003400020680093, + "2023-10-25": 1.0001135692661165, + "2024-01-01": 1.0000219639617158, + "2024-07-29": 0.9998727481810903, + "2024-07-27": 1.0000953410057627, + "2024-02-14": 1.0004726470347727, + "2023-09-04": 0.9996344648872475, + "2023-09-06": 0.999418200324391, + "2024-07-28": 0.9999800000000001, + "2024-04-03": 1.0003979402273147, + "2024-06-15": 0.9994096487691884, + "2023-11-28": 1.0001860758160084, + "2023-12-03": 1.0003663938465919, + "2024-07-11": 1.0000073757835788, + "2023-08-27": 0.9995229656064774, + "2024-04-11": 0.9999872215855751, + "2023-10-20": 1.00044, + "2023-10-10": 1.000081795577596, + "2024-05-03": 1.0002075746353025, + "2024-03-08": 1.001445390518557, + "2024-01-14": 0.9997349012266152, + "2023-12-15": 1.000039558003058, + "2023-10-19": 1.0003167420753751, + "2024-02-08": 0.9997691189606479, + "2023-11-12": 1.00038778419629, + "2023-12-22": 1.0002782323122186, + "2024-06-21": 0.9993608711415587, + "2024-03-23": 1.0000886878997068, + "2023-09-27": 0.9993002947936063, + "2024-03-04": 1.0006640231259203, + "2023-09-10": 0.9997501097043565, + "2024-04-13": 1.0003107557442696, + "2024-02-29": 1.000193354208913, + "2023-09-21": 0.9999509527287986, + "2023-11-08": 1.0002799441235242, + "2024-07-19": 0.9999993806104119, + "2023-12-29": 1.000525710098593, + "2023-12-04": 1.0002446053123668, + "2024-04-10": 0.9999288184704453, + "2024-05-08": 0.9998656272958308, + "2024-08-04": 0.9994888842899601, + "2024-04-21": 1.0002829102150117, + "2023-10-11": 1.0000108429634742, + "2024-05-05": 1.0001438105507168, + "2024-03-21": 1.0000198980519805, + "2024-05-23": 0.9994600010658797, + "2024-04-08": 0.9999900007356841, + "2024-05-18": 1.0002800050870233, + "2024-06-10": 0.9997330838800944, + "2023-10-05": 1.0001243390933379, + "2023-10-16": 1.0001990826520295, + "2024-05-22": 0.99981307414521, + "2024-02-10": 1.0005373988217636, + "2024-04-07": 1.0002204870188927, + "2024-02-20": 1.0000028201100928, + "2023-11-17": 1.0001626073947543, + "2023-12-11": 0.9998766783894801, + "2023-11-26": 1.0004422324934508, + "2023-10-27": 1.0000977238602806, + "2024-02-02": 0.9994894048480738, + "2023-09-14": 1.0000385671216983, + "2024-01-27": 0.999882535034336, + "2024-03-30": 1.0005796820684694, + "2023-11-22": 1.0001771632930128, + "2023-09-28": 0.9993006572338614, + "2024-06-04": 0.9998038714501696, + "2023-11-16": 1.0002897113131952, + "2024-06-26": 0.9996995734748249, + "2024-01-18": 0.9989240600107379, + "2023-08-26": 0.9994625357882039, + "2024-02-15": 1.0007686002576943, + "2024-07-17": 1.0002382311187887, + "2023-10-28": 1.00015, + "2024-03-24": 1.0001061447367188, + "2024-07-04": 0.9992930696183008, + "2024-04-27": 0.9994102517758563, + "2023-12-06": 1.0000712811600452, + "2024-01-30": 0.999934445991335, + "2023-11-14": 1.0001997689640332, + "2023-08-09": 0.999460061040409, + "2024-07-22": 1.0001504963532653, + "2024-06-06": 0.9997030019783892, + "2024-05-15": 1.0000262298692801, + "2023-11-10": 1.0002138579250022, + "2024-01-23": 0.99900054991038, + "2024-01-31": 0.9996, + "2024-05-11": 0.9997205765422975, + "2024-01-11": 1.000208503227804, + "2024-02-18": 1.0002079761063432, + "2024-07-12": 1.0001351406267949, + "2024-03-11": 1.0003812067213191, + "2023-10-30": 1.0002892504373868, + "2023-12-17": 0.9990258896504751, + "2024-02-26": 1.0000796988102714, + "2024-06-17": 0.9993600934375861, + "2024-01-05": 1.0007621780380087, + "2024-06-14": 0.9994300270128709, + "2023-08-23": 0.9995246886763218, + "2024-06-13": 0.999797827863943, + "2023-08-28": 0.9994390460802476, + "2024-03-14": 1.0000657504546695, + "2024-02-21": 1, + "2023-12-13": 0.9995630361543678, + "2024-02-27": 1.0004687004265274, + "2023-08-13": 0.9993232499473954, + "2024-03-31": 1.000128688372266, + "2023-12-09": 1.0003124251652395, + "2024-04-02": 1.000289437896888, + "2024-02-06": 0.9990553344680779, + "2024-05-31": 0.9994886979755977, + "2024-04-09": 1.0000206113003818, + "2024-05-25": 0.9997979730799658, + "2023-11-04": 1.0004999999999997, + "2024-04-20": 1.0003399015476544, + "2024-01-15": 0.9994948811088207, + "2023-12-28": 1.0004253379900228, + "2024-06-09": 0.9998934835577764, + "2024-02-07": 0.9994441047691508, + "2023-09-25": 0.9997643898059492, + "2024-03-19": 0.9997099544733546, + "2024-03-10": 1.0017999999999998, + "2024-05-02": 0.9999749989831999, + "2023-09-02": 0.999797078151559, + "2024-07-24": 1.0000404076362872, + "2024-01-12": 0.9999535099197165, + "2024-04-19": 1.0004411323024698, + "2023-11-29": 1.0004742188543934, + "2023-10-15": 1.0000031594002534, + "2024-05-28": 0.999039303748174, + "2023-11-30": 1.0001653962427388, + "2024-01-24": 0.999398329318694, + "2023-08-11": 0.998836094951441, + "2024-02-11": 1.000380014440065, + "2024-06-08": 0.9996493256548438, + "2023-11-15": 1.0002747264878407, + "2023-12-16": 0.9994022430261683, + "2024-03-29": 1.0001514270490928, + "2024-04-04": 1.0002396988787647, + "2024-06-25": 0.9995223799022634, + "2024-07-26": 0.9999182729033095, + "2024-01-20": 0.99931, + "2024-08-05": 1.0001780404055356, + "2023-10-21": 1.0003899658549544, + "2023-08-16": 0.9988202030947102, + "2024-05-24": 0.9995842475689101, + "2023-11-03": 1.0002470283002383, + "2023-08-31": 0.999900633161885, + "2024-05-27": 0.9993803655529342, + "2024-01-04": 1.0008945324368521, + "2023-11-13": 1.0003791038484469, + "2023-10-24": 1.0000132087861118, + "2024-07-16": 1.00036937344616, + "2023-10-29": 1.0001904878703396, + "2024-05-16": 1.0001400208504023, + "2024-01-29": 0.9998806569344532, + "2024-07-03": 0.9986685668110684, + "2024-05-04": 1.0001901566937887, + "2023-11-02": 1.0004254228410634, + "2023-12-18": 0.9991994292517622, + "2023-11-24": 1.0003359023950296, + "2023-08-21": 0.9997560553893646, + "2024-07-05": 0.9998400000000001, + "2024-03-25": 1.0003184934042482, + "2023-08-07": 0.9984346107637662, + "2024-07-25": 0.999770537338968, + "2024-06-07": 0.9994746496628351, + "2023-08-14": 0.9988000005473627, + "2024-06-18": 0.9997971419505083, + "2024-05-01": 0.9988653959969918, + "2024-02-16": 1.0004889691637024, + "2024-06-22": 0.9995205391598168, + "2024-07-06": 1.0001, + "2024-03-05": 1.0005865850844944, + "2024-04-06": 1.0002993652331509, + "2023-12-23": 1.0005636776544033, + "2023-12-14": 1.0001572581963885, + "2024-02-03": 0.9995915421102922, + "2024-06-27": 0.9989990292540532, + "2023-12-26": 0.9999055338852005, + "2023-11-09": 1.0003355820269322, + "2023-10-14": 0.9999245872478234, + "2023-08-19": 0.9997233373729801, + "2024-05-09": 0.9996102087609224, + "2024-01-17": 0.9993948422529548, + "2024-04-23": 1.0003896352550115, + "2023-08-08": 0.9991403715520106, + "2023-08-17": 0.9988201475771474, + "2024-04-14": 1.0004991010786672, + "2024-08-02T16": 0.99915, + "2024-08-02T11": 0.99916, + "2024-07-31T00": 0.99975, + "2024-08-05T18": 1.00046, + "2024-07-31T11": 0.99945, + "2024-08-05T23": 1.0002, + "2024-08-02T06": 0.99924, + "2024-08-01T13": 0.99952, + "2024-08-05T01": 0.99959, + "2024-08-02T00": 0.9991, + "2024-08-06T06": 1.00073, + "2024-08-03T23": 0.99944, + "2024-08-01T11": 0.99947, + "2024-08-05T19": 1.00038, + "2024-08-04T19": 0.9995, + "2024-08-01T23": 0.99907, + "2024-08-04T17": 0.99917, + "2024-08-02T22": 0.99886, + "2024-08-02T01": 0.99911, + "2024-08-02T05": 0.99913, + "2024-08-03T20": 0.99933, + "2024-07-31T14": 0.99955, + "2024-08-03T12": 0.99924, + "2024-07-31T05": 0.99978, + "2024-08-02T08": 0.99917, + "2024-08-05T14": 1.00027, + "2024-08-01T07": 0.99955, + "2024-08-03T06": 0.99891, + "2024-08-04T13": 0.9995, + "2024-08-06T11": 1.00032, + "2024-08-05T16": 1.0007, + "2024-08-05T06": 0.99993, + "2024-08-01T22": 0.99917, + "2024-08-04T20": 0.99966, + "2024-08-06T10": 1.00032, + "2024-08-01T15": 0.9995, + "2024-08-06T05": 1.00059, + "2024-08-04T08": 0.99939, + "2024-08-01T00": 0.99967, + "2024-08-04T18": 0.99936, + "2024-07-31T15": 0.99959, + "2024-08-03T19": 0.99922, + "2024-08-02T12": 0.99929, + "2024-08-01T20": 0.99899, + "2024-08-01T21": 0.99908, + "2024-07-30T23": 0.99971, + "2024-08-03T16": 0.99925, + "2024-08-06T00": 1.0002, + "2024-08-04T06": 0.99938, + "2024-08-02T15": 0.99902, + "2024-08-05T10": 1.00014, + "2024-08-05T17": 1.00059, + "2024-08-03T04": 0.99899, + "2024-08-06T04": 1.00045, + "2024-08-06T03": 1.00039, + "2024-07-30T19": 0.99963, + "2024-08-02T04": 0.99909, + "2024-08-02T23": 0.99872, + "2024-08-05T08": 1.00011, + "2024-08-02T09": 0.99914, + "2024-08-04T12": 0.9995, + "2024-08-04T22": 0.99963, + "2024-07-31T23": 0.99968, + "2024-08-04T10": 0.99948, + "2024-07-30T16": 0.99968, + "2024-08-05T20": 1.0001, + "2024-08-03T10": 0.99912, + "2024-08-04T16": 0.99928, + "2024-07-31T06": 0.99971, + "2024-07-31T02": 0.9998, + "2024-08-03T09": 0.99911, + "2024-08-04T15": 0.99933, + "2024-08-03T00": 0.99869, + "2024-07-30T17": 0.99969, + "2024-08-03T15": 0.99933, + "2024-08-01T19": 0.9989, + "2024-07-30T13": 0.9998, + "2024-08-03T22": 0.99943, + "2024-07-30T22": 0.99971, + "2024-07-31T13": 0.99953, + "2024-07-30T18": 0.99968, + "2024-08-03T05": 0.99889, + "2024-08-05T09": 1.00018, + "2024-07-30T12": 0.9998, + "2024-08-03T01": 0.99877, + "2024-08-05T03": 0.99995, + "2024-07-31T08": 0.99955, + "2024-08-01T10": 0.99947, + "2024-07-31T21": 0.99962, + "2024-08-01T09": 0.99942, + "2024-08-06T09": 1.0003, + "2024-08-03T08": 0.99903, + "2024-08-03T14": 0.99935, + "2024-08-01T12": 0.99948, + "2024-07-30T20": 0.9997, + "2024-07-30T15": 0.99966, + "2024-08-01T01": 0.99965, + "2024-08-05T13": 0.99994, + "2024-08-01T16": 0.9993, + "2024-08-04T00": 0.99941, + "2024-08-02T14": 0.99928, + "2024-08-04T09": 0.99943, + "2024-08-04T02": 0.9994, + "2024-08-03T03": 0.99881, + "2024-08-03T11": 0.99916, + "2024-07-31T09": 0.99961, + "2024-07-31T12": 0.99944, + "2024-08-05T11": 1.00013, + "2024-08-03T18": 0.9993, + "2024-08-01T08": 0.99948, + "2024-07-31T10": 0.99952, + "2024-08-03T17": 0.99928, + "2024-07-31T03": 0.99979, + "2024-08-01T06": 0.99951, + "2024-08-02T07": 0.99919, + "2024-08-02T19": 0.99891, + "2024-07-30T11": 0.99979, + "2024-08-05T22": 1.00017, + "2024-08-06T01": 1.0003, + "2024-08-05T15": 1.00063, + "2024-07-31T18": 0.99967, + "2024-08-05T02": 0.9998, + "2024-08-05T12": 1.00011, + "2024-07-30T21": 0.9997347994162773, + "2024-08-06T07": 1.00067, + "2024-08-04T11": 0.99949, + "2024-08-05T05": 0.99994, + "2024-07-31T19": 0.99966, + "2024-08-04T21": 0.99971, + "2024-07-30T14": 0.9998, + "2024-08-01T18": 0.99908, + "2024-07-31T04": 0.99979, + "2024-08-02T18": 0.999, + "2024-08-02T03": 0.99908, + "2024-08-04T01": 0.99941, + "2024-08-02T21": 0.999, + "2024-08-02T02": 0.99913, + "2024-08-02T10": 0.99924, + "2024-08-04T23": 0.99959, + "2024-08-04T03": 0.99938, + "2024-08-01T05": 0.99939, + "2024-08-02T17": 0.99905, + "2024-07-31T16": 0.99961, + "2024-08-04T04": 0.99939, + "2024-08-01T02": 0.99948, + "2024-08-05T21": 1.00018, + "2024-08-05T07": 1, + "2024-08-05T00": 0.99953, + "2024-08-02T20": 0.99891, + "2024-07-31T01": 0.99977, + "2024-07-31T22": 0.99969, + "2024-08-04T07": 0.99941, + "2024-08-04T05": 0.99939, + "2024-08-01T14": 0.99958, + "2024-08-03T02": 0.99868, + "2024-08-01T04": 0.99948, + "2024-08-01T17": 0.99919, + "2024-08-06T02": 1.00038, + "2024-08-04T14": 0.99957, + "2024-07-31T20": 0.99961, + "2024-08-03T21": 0.9994, + "2024-08-06T08": 1.00058, + "2024-08-02T13": 0.99922, + "2024-08-05T04": 0.99995, + "2024-08-01T03": 0.99947, + "2024-07-31T17": 0.99961, + "2024-07-31T07": 0.99969, + "2024-08-03T07": 0.99893, + "2024-08-03T13": 0.99932, + "latest": 1 + }, + "USD bsc/bep20/binance-peg_busd_token": { + "2023-10-23": 1.0008624150544503, + "2023-08-20": 0.9999647709494957, + "2024-02-23": 1.0023023034972731, + "2024-04-05": 1.0053516494075896, + "2023-12-19": 0.9992626382024827, + "2024-05-17": 0.9998902583944669, + "2023-08-06": 0.999656016916876, + "2023-12-02": 1.0000742615065765, + "2024-06-11": 1.0022848244627223, + "2024-04-26": 1.002318471760546, + "2024-01-08": 1.000709267847674, + "2023-10-31": 1.00010966511445, + "2023-08-29": 0.9998351690036504, + "2023-09-09": 0.9998252394593371, + "2023-10-01": 1.0001177243476396, + "2024-03-07": 0.9885957623176495, + "2023-10-12": 0.99986502863642, + "2024-04-22": 1.0018243301223224, + "2024-06-24": 1.0015068499820952, + "2023-09-26": 0.9999834034780171, + "2023-08-24": 0.9996555987031556, + "2023-12-05": 0.9997896640934566, + "2024-02-19": 1.0007271916971656, + "2024-07-31": 1.000230610659432, + "2024-01-07": 1.000885739738623, + "2024-04-28": 1.0003660187125416, + "2023-10-18": 1.000350776676005, + "2023-10-07": 1.0003508589415233, + "2024-06-28": 1.0049245970093208, + "2024-05-19": 1.001382673535717, + "2024-05-12": 0.999621493854407, + "2023-09-16": 0.9999340320717854, + "2023-08-25": 0.999975832040732, + "2024-03-09": 1.007762236112142, + "2023-09-05": 0.9995207310078648, + "2024-08-02": 1.0004161262646198, + "2024-04-29": 0.999763476186979, + "2024-04-25": 1.0003352969785066, + "2023-08-12": 1.000032663739603, + "2024-06-12": 0.9977811803577452, + "2023-09-01": 0.9996731318513387, + "2024-05-30": 1.000785212930908, + "2024-06-05": 1.0005215584214786, + "2023-09-08": 1.0000424446634173, + "2024-03-22": 1.0132649506986753, + "2023-08-10": 0.9998274231085764, + "2023-11-18": 1.0001133693785538, + "2023-09-13": 0.9999497130093721, + "2024-07-30": 0.999410560441677, + "2023-12-07": 0.9997928394198298, + "2024-06-30": 0.9984440512434004, + "2024-06-20": 0.9999008712150712, + "2024-07-08": 1.0006074435500827, + "2024-07-07": 1.0119755856121695, + "2023-09-07": 0.9995725391909444, + "2024-03-26": 0.9956000254484743, + "2024-05-14": 1.0048400602923995, + "2024-06-16": 0.9992746549719245, + "2024-02-22": 1.0033015141823525, + "2024-04-15": 1.0039279334094395, + "2023-12-30": 0.9992939062032188, + "2023-09-17": 0.9999630003666703, + "2024-04-17": 1.0020875555998634, + "2024-02-12": 1.0035307152688124, + "2023-10-26": 1.000042569898975, + "2024-01-03": 0.9994106569075415, + "2024-05-07": 1.0012667919025255, + "2024-01-22": 1.0004388486477354, + "2024-07-13": 0.9992250803253826, + "2023-10-03": 0.999978425482232, + "2024-05-26": 1.0010506529869099, + "2024-04-30": 1.003610013705647, + "2024-07-09": 1.0006846803798646, + "2023-12-24": 0.9995044433156635, + "2023-09-24": 0.9999885646115247, + "2024-01-16": 1.0023821410562417, + "2023-10-17": 1.000527520870909, + "2024-04-24": 1.0025690424239264, + "2024-03-18": 1.0020414394964676, + "2024-02-17": 1.0053350535369205, + "2023-12-27": 0.999434400967532, + "2024-08-01": 1.001316590774163, + "2023-09-03": 0.9999087142039446, + "2024-02-24": 1.0008956136078186, + "2024-01-06": 1.0010539822776556, + "2024-03-20": 1.0002025244909925, + "2023-11-21": 0.9998329145392001, + "2023-12-25": 0.9979052744455162, + "2023-09-22": 0.999983507747879, + "2024-03-01": 1.0011825870879443, + "2023-10-02": 1.0002863756916238, + "2024-03-27": 0.9951774669075815, + "2024-05-13": 1.001117978304867, + "2024-05-06": 1.0004405736455095, + "2024-06-19": 1.0004344327345602, + "2023-08-30": 0.9999058427941521, + "2023-10-06": 1.00003732950894, + "2023-10-13": 0.999949325737374, + "2024-02-05": 0.9992558507754226, + "2023-12-10": 0.9997848785836113, + "2023-11-23": 0.99999099263638, + "2024-01-13": 0.9995869121562144, + "2024-03-28": 1.0006468052844086, + "2023-08-05": 0.9998860288441531, + "2024-02-09": 1.0036450823257739, + "2023-10-09": 0.999949495621795, + "2024-01-09": 1.0000769450400055, + "2024-05-10": 1.0030196441690047, + "2023-08-18": 1.000172714786231, + "2024-08-06": 1.0015123306191784, + "2023-11-05": 1.0004253280361608, + "2024-04-18": 1.0014147219570773, + "2023-10-22": 1.0006507005772844, + "2023-11-01": 1.000038408596892, + "2024-05-20": 0.9980739736434789, + "2023-12-08": 0.9999004199554861, + "2024-04-12": 1.00529687596148, + "2024-03-12": 1.0165078421226277, + "2024-07-02": 1.000348917925186, + "2023-09-11": 0.9997843894814696, + "2024-07-20": 1.006593903353506, + "2024-03-03": 0.9892133433090187, + "2024-02-04": 0.9990088775183159, + "2024-01-28": 1.0013735333915172, + "2024-01-26": 0.9994120123335085, + "2023-11-07": 1.0001452531673014, + "2023-11-25": 1.0000128629416503, + "2024-06-29": 0.9991443965972041, + "2024-07-21": 1.015264354332837, + "2024-02-25": 1.0012497889707856, + "2023-12-01": 0.9999646369891161, + "2024-02-28": 0.9997525285308447, + "2023-09-15": 0.9999184477456955, + "2023-12-21": 0.9981576863497644, + "2024-06-01": 0.9974995425602797, + "2024-03-06": 1.001524799135712, + "2024-07-15": 1.056142706533355, + "2023-09-30": 1.0000767229222474, + "2023-12-12": 1.0005188991794158, + "2023-10-04": 0.9999039433453993, + "2024-02-13": 1.0061054394490598, + "2023-09-20": 0.9999231048994621, + "2024-04-16": 1.0014051293345059, + "2023-09-19": 1.000024262284061, + "2023-09-29": 0.9999623307867792, + "2023-09-12": 0.9998710797579862, + "2024-03-02": 1.001738021218312, + "2024-06-02": 1.000031534049107, + "2023-10-08": 1.0002928917773088, + "2023-11-20": 1.0003111117730892, + "2023-12-20": 0.9998368577285675, + "2023-12-31": 0.9988545552120265, + "2023-11-06": 1.0001489912292232, + "2024-05-29": 1.000193359065838, + "2024-08-03": 1.000968448794548, + "2023-08-22": 0.9999377623217921, + "2024-03-17": 1.0029909515510613, + "2024-07-23": 1.000225950694838, + "2024-07-10": 0.9960324530358197, + "2023-09-18": 0.9999707231146573, + "2024-07-01": 1.0003877035281077, + "2024-04-01": 1.004890552825183, + "2024-05-21": 1.0012676825269147, + "2024-01-19": 1.0027663617126599, + "2023-11-11": 0.9998535371060263, + "2023-09-23": 1.0000173232172518, + "2023-08-15": 0.999840787721567, + "2024-07-18": 0.9943521049028907, + "2023-11-19": 1.0001128301901352, + "2024-01-25": 1.0005289053247453, + "2024-03-13": 1.0083919788254017, + "2024-01-21": 1.0030656825882944, + "2024-02-01": 0.9998268031938289, + "2024-03-15": 1.0097055776368924, + "2024-03-16": 1.0120779449497068, + "2024-06-23": 1.0030836199502935, + "2023-11-27": 1.000003552787541, + "2024-01-10": 0.9997853858417226, + "2024-06-03": 1.0016271394197298, + "2024-01-02": 0.9996133765894442, + "2024-07-14": 0.9934905707568843, + "2023-10-25": 1.0000381297925445, + "2024-01-01": 0.9991184861933825, + "2024-07-29": 1.0025749690255803, + "2024-07-27": 1.0001511895820725, + "2024-02-14": 1.0027364777347865, + "2023-09-04": 0.9996336672713734, + "2023-09-06": 0.9997388968670291, + "2024-07-28": 0.9996718433946798, + "2024-04-03": 1.001110588130703, + "2024-06-15": 0.999514408453035, + "2023-11-28": 1.0002980139102413, + "2023-12-03": 0.9999916084873406, + "2024-07-11": 0.9990388435598846, + "2023-08-27": 0.9999553221994797, + "2024-04-11": 1.00203991706493, + "2023-10-20": 1.0003139216408568, + "2023-10-10": 1.0002199254996325, + "2024-05-03": 0.9923719053406662, + "2024-03-08": 1.0091984489479018, + "2024-01-14": 0.9982623486023418, + "2023-12-15": 1.00063958173786, + "2023-10-19": 1.0002446627532033, + "2024-02-08": 1.0010129634607392, + "2023-11-12": 0.9995593727325753, + "2023-12-22": 0.9996023373971972, + "2024-06-21": 1.000799522442522, + "2024-03-23": 0.9994228124394827, + "2023-09-27": 0.999999804999962, + "2024-03-04": 1.0005545468700243, + "2023-09-10": 0.9997960537204503, + "2024-04-13": 1.0086975968110508, + "2024-02-29": 1.0047490427081776, + "2023-09-21": 0.999904172218177, + "2023-11-08": 1.000179931706453, + "2024-07-19": 1.0000295431409831, + "2023-12-29": 1.000197976996883, + "2023-12-04": 0.9998890826938803, + "2024-04-10": 1.0004404208550943, + "2024-05-08": 1.000042705834827, + "2024-08-04": 1.0234374404591418, + "2024-04-21": 1.001200255147358, + "2023-10-11": 1.0002745529788566, + "2024-05-05": 1.0001745705239165, + "2024-03-21": 1.0003923987759311, + "2024-05-23": 1.007672965994843, + "2024-04-08": 1.0024643040102088, + "2024-05-18": 1.0018951757281551, + "2024-06-10": 1.001015444939611, + "2023-10-05": 0.9999741421146026, + "2023-10-16": 1.000316496832749, + "2024-05-22": 1.0016145079171412, + "2024-02-10": 1.0049470896025396, + "2024-04-07": 1.0059175443886261, + "2024-02-20": 1.0006918209147768, + "2023-11-17": 1.0000274728049687, + "2023-12-11": 1.0003282041265336, + "2023-11-26": 0.9998419671539546, + "2023-10-27": 1.0002470211950385, + "2024-02-02": 1.0007097809997998, + "2023-09-14": 1.0001430249465728, + "2024-01-27": 1.0007378115077055, + "2024-03-30": 1.0064542344270708, + "2023-11-22": 0.9998890952137038, + "2023-09-28": 1.0001401880776761, + "2024-06-04": 1.0008861630866883, + "2023-11-16": 1.0001787559829056, + "2024-06-26": 1.0006259010994247, + "2024-01-18": 1.0011944698310464, + "2023-08-26": 0.999918585004272, + "2024-02-15": 1.0031818498644063, + "2024-07-17": 0.9971781315611531, + "2023-10-28": 1.0014853292574812, + "2024-03-24": 0.9987770721265179, + "2024-07-04": 1.0022289891977432, + "2024-04-27": 1.0008554609085432, + "2023-12-06": 0.9997869629097814, + "2024-01-30": 1.0021845757903804, + "2023-11-14": 1.0000242494223517, + "2023-08-09": 1.0004120195140294, + "2024-07-22": 1.0019108989665837, + "2024-06-06": 1.000306841363374, + "2024-05-15": 0.9969345462207043, + "2023-11-10": 0.9999632101286512, + "2024-01-23": 1.0020509695276707, + "2024-01-31": 0.9996892542379238, + "2024-05-11": 0.998782940501703, + "2024-01-11": 0.9980390221540135, + "2024-02-18": 1.002086477545471, + "2024-07-12": 0.996167053604921, + "2024-03-11": 1.0236422935713763, + "2023-10-30": 1.000435861601441, + "2023-12-17": 0.9978283061425816, + "2024-02-26": 0.9956714467621637, + "2024-06-17": 1.001191319624497, + "2024-01-05": 1.0010256323399478, + "2024-06-14": 1.0001281040596623, + "2023-08-23": 0.9998717722817536, + "2024-06-13": 0.9997301736859994, + "2023-08-28": 0.9998781612221647, + "2024-03-14": 1.0349226523238433, + "2024-02-21": 1.0018133465090289, + "2023-12-13": 1.0038681718987694, + "2024-02-27": 1.003637156511751, + "2023-08-13": 0.9998432221953811, + "2024-03-31": 1.0064194398911408, + "2023-12-09": 0.9998262057981363, + "2024-04-02": 1.0010067655891597, + "2024-02-06": 0.999677389124118, + "2024-05-31": 1.000625541660533, + "2024-04-09": 1.0032816846584929, + "2024-05-25": 1.0013522797410757, + "2023-11-04": 1.0002326735200409, + "2024-04-20": 0.9984699352548331, + "2024-01-15": 1.0000460608819524, + "2023-12-28": 1.0001906865301728, + "2024-06-09": 1.0013716705663909, + "2024-02-07": 1.0002589538540738, + "2023-09-25": 0.9998441331874905, + "2024-03-19": 0.9978602127204347, + "2024-03-10": 1.013549448656242, + "2024-05-02": 0.9986319700810135, + "2023-09-02": 1.0001196540979767, + "2024-07-24": 1.0003686591429162, + "2024-01-12": 1.0054681913452836, + "2024-04-19": 1.003080874991768, + "2023-11-29": 1.0002411950631076, + "2023-10-15": 1.0001857059356125, + "2024-05-28": 1.0005837161222821, + "2023-11-30": 0.9998620987207143, + "2024-01-24": 1.0013998506109114, + "2023-08-11": 1.0000091002818718, + "2024-02-11": 1.0052494755821402, + "2024-06-08": 1.0002206940999119, + "2023-11-15": 1.0001715049155588, + "2023-12-16": 0.9989025419046553, + "2024-03-29": 1.0016479396611568, + "2024-04-04": 1.0037210162275465, + "2024-06-25": 0.999322139452028, + "2024-07-26": 0.9998308119221175, + "2024-01-20": 1.004152608955189, + "2024-08-05": 0.9829427814623727, + "2023-10-21": 1.0008985019454082, + "2023-08-16": 0.999835029091077, + "2024-05-24": 0.9991195117701, + "2023-11-03": 1.0000469788945783, + "2023-08-31": 0.9998327417342597, + "2024-05-27": 0.9997896560092955, + "2024-01-04": 1.0011309982940357, + "2023-11-13": 0.9998899349277313, + "2023-10-24": 0.9999470416848445, + "2024-07-16": 0.9954121158064382, + "2023-10-29": 1.0019227551588807, + "2024-05-16": 1.0045633913326018, + "2024-01-29": 0.025205241813161725, + "2024-07-03": 1.000187200533981, + "2024-05-04": 0.9996229184916589, + "2023-11-02": 1.0002090532590855, + "2023-12-18": 0.9986998295371363, + "2023-11-24": 1.0000479018957211, + "2023-08-21": 0.9999683296832917, + "2024-07-05": 1.0037854033339972, + "2024-03-25": 1.0002942378978612, + "2023-08-07": 0.999705165703681, + "2024-07-25": 0.9985899586169409, + "2024-06-07": 1.0035620514265957, + "2023-08-14": 0.9998260435648431, + "2024-06-18": 0.997387738750699, + "2024-05-01": 0.9964920170996044, + "2024-02-16": 1.0012257289552289, + "2024-06-22": 0.9995652736219973, + "2024-07-06": 0.998370780828836, + "2024-03-05": 0.9933265121024754, + "2024-04-06": 1.0037596551169772, + "2023-12-23": 0.9991628885056872, + "2023-12-14": 1.000973950956866, + "2024-02-03": 1.0006603181476927, + "2024-06-27": 0.9994713246331458, + "2023-12-26": 0.9978057322640417, + "2023-11-09": 1.0002387502071566, + "2023-10-14": 1.0002246005871056, + "2023-08-19": 1.0001664005889412, + "2024-05-09": 1.0003102515753146, + "2024-01-17": 1.0038480518455748, + "2024-04-23": 1.0018933724286174, + "2023-08-08": 1.0003622375261612, + "2023-08-17": 0.9998448559251418, + "2024-04-14": 1.0013717423455157, + "2024-08-02T16": 0.9993682723960987, + "2024-08-02T11": 1.000009125039011, + "2024-07-31T00": 1.0000271778358678, + "2024-08-05T18": 1.000825413377288, + "2024-07-31T11": 0.9996960052070394, + "2024-08-05T23": 1.0002151391640393, + "2024-08-02T06": 1.0011671320145226, + "2024-08-01T13": 1.0003182793224814, + "2024-08-05T01": 1.0013563281202138, + "2024-08-06T06": 1.0021493753360315, + "2024-08-03T23": 0.9997349635391959, + "2024-08-01T11": 1.0000891330575685, + "2024-08-05T19": 1.002492240440339, + "2024-08-04T19": 1.0014364285650397, + "2024-08-04T17": 0.9998977962337102, + "2024-08-02T22": 1.0015032279687726, + "2024-08-03T20": 0.9998972418782275, + "2024-07-31T14": 1.0010196207257644, + "2024-08-03T12": 1.0007544220382882, + "2024-07-31T05": 1.0000585226848204, + "2024-08-02T08": 1.000831682512873, + "2024-08-05T14": 0.9970813942190352, + "2024-08-01T07": 0.9990259807270389, + "2024-08-03T06": 0.9998278536478319, + "2024-08-04T13": 0.9997443172868284, + "2024-08-06T11": 1.0012541745412116, + "2024-08-05T16": 0.9992105985582163, + "2024-08-05T06": 1.004408259867687, + "2024-08-01T22": 0.9995612124332791, + "2024-08-04T20": 0.9977326469664565, + "2024-08-06T05": 1.0000906909940648, + "2024-08-06T10": 1.001410881765532, + "2024-08-04T08": 1.0000941518988837, + "2024-08-01T00": 1.0000506045862199, + "2024-08-04T18": 0.9985599316625576, + "2024-07-31T15": 0.9998357419561844, + "2024-08-03T19": 1.000518035388835, + "2024-08-02T12": 1.0005786242042913, + "2024-08-01T20": 1.0003173263853529, + "2024-08-01T21": 1.000276452469836, + "2024-07-30T23": 1.0008859031739405, + "2024-08-03T16": 0.9994328126605464, + "2024-08-06T00": 1.0038601373172504, + "2024-08-04T06": 0.9996025989395649, + "2024-08-02T15": 0.9978108234450235, + "2024-08-05T10": 0.9995573750641433, + "2024-08-05T17": 1.0018156562096818, + "2024-08-03T04": 1.000261531507257, + "2024-08-06T04": 1.0018325807468318, + "2024-08-06T03": 0.9999119485447152, + "2024-07-30T19": 0.9997724339857597, + "2024-08-02T23": 0.9983538132142151, + "2024-08-05T08": 1.0001001907788516, + "2024-08-02T09": 0.9997694229472153, + "2024-08-04T12": 1.001827060424326, + "2024-08-04T22": 1.0004685842988674, + "2024-07-31T23": 1.0002998966428172, + "2024-08-04T10": 0.9998940237583253, + "2024-07-30T16": 0.9992315997521354, + "2024-08-05T20": 1.0007777686645223, + "2024-08-03T10": 1.0001444993582749, + "2024-08-04T16": 0.9980459088761201, + "2024-07-31T06": 0.9999222247047086, + "2024-07-31T02": 0.9997700053669113, + "2024-08-03T09": 0.9992411789070671, + "2024-08-04T15": 0.9990410017603142, + "2024-08-03T00": 1.0023885077534371, + "2024-07-30T17": 0.9994838134413806, + "2024-08-03T15": 1.0028291705375934, + "2024-08-01T19": 0.9991807904563874, + "2024-07-30T13": 0.9994368174722599, + "2024-08-03T22": 1.0004290538085532, + "2024-07-30T22": 1.0004838820943636, + "2024-07-31T13": 0.9981546044923112, + "2024-07-30T18": 1.000528455100641, + "2024-08-03T05": 0.9993329196893906, + "2024-08-05T09": 1.0020119214047103, + "2024-07-30T12": 1.0005581079543375, + "2024-08-03T01": 0.9978323512561483, + "2024-08-05T03": 0.9981269898485746, + "2024-07-31T08": 0.9999695684493023, + "2024-08-01T10": 1.0001687850177108, + "2024-07-31T21": 1.0005056293099617, + "2024-08-01T09": 1.0000738704350494, + "2024-08-06T09": 0.9998530406233891, + "2024-08-03T08": 0.9966542326847138, + "2024-08-03T14": 1.0001172272972736, + "2024-08-01T12": 1.0003302548138255, + "2024-07-30T20": 0.9973177745948779, + "2024-07-30T15": 0.9996698997626637, + "2024-08-01T01": 1.0005731300402882, + "2024-08-05T13": 0.9900084133860148, + "2024-08-01T16": 1.0000428070551248, + "2024-08-04T00": 1.0000625016499975, + "2024-08-02T14": 1.0006175615052655, + "2024-08-04T09": 1.0016444565365332, + "2024-08-04T02": 1.000323467508983, + "2024-08-03T03": 0.999842746920381, + "2024-08-03T11": 1.0001111259010202, + "2024-07-31T09": 0.999992594330608, + "2024-07-31T12": 1.0004849359539596, + "2024-08-05T11": 0.9997058563804606, + "2024-08-03T18": 0.9996098211593576, + "2024-08-01T08": 1.0000229280498367, + "2024-07-31T10": 0.9997471300288482, + "2024-08-03T17": 1.0001941511920234, + "2024-07-31T03": 1.00040431538332, + "2024-08-01T06": 0.998540504906513, + "2024-08-02T07": 1.000198789880856, + "2024-08-02T19": 0.9993742599691204, + "2024-07-30T11": 1.0000569273697997, + "2024-08-05T22": 1.001349895644823, + "2024-08-06T01": 1.0010698376990574, + "2024-08-05T15": 1.000597831946009, + "2024-07-31T18": 1.000326612601017, + "2024-08-05T02": 1.0010276362900323, + "2024-08-05T12": 1.0005544196280696, + "2024-07-30T21": 0.9990354399306214, + "2024-08-06T07": 1.0000147238901784, + "2024-08-04T11": 1.000580639622705, + "2024-08-05T05": 1.0013384233009894, + "2024-07-31T19": 1.0007003710994014, + "2024-08-04T21": 0.9999857832321856, + "2024-07-30T14": 1.000578227292437, + "2024-08-01T18": 0.9993608410543273, + "2024-07-31T04": 1.0011554991370586, + "2024-08-02T18": 0.9992404261118168, + "2024-08-04T01": 1.0005119422241837, + "2024-08-02T21": 0.9997601503467873, + "2024-08-02T10": 1.0004028951746804, + "2024-08-04T23": 0.9976016511616238, + "2024-08-04T03": 0.9981533070317952, + "2024-08-01T05": 0.9987543056522242, + "2024-08-02T17": 0.9999189065665577, + "2024-07-31T16": 1.0004406778119617, + "2024-08-04T04": 1.0002686749436012, + "2024-08-01T02": 0.9988635913571564, + "2024-08-05T21": 0.999012910707862, + "2024-08-05T07": 1.000206501283913, + "2024-08-05T00": 0.9995463617228546, + "2024-08-02T20": 0.9991511636745696, + "2024-07-31T01": 1.0016238043762673, + "2024-07-31T22": 0.9991604697148726, + "2024-08-04T07": 1.0010604020801621, + "2024-08-04T05": 1.0010144703896688, + "2024-08-03T02": 0.9980814846394054, + "2024-08-01T04": 1.0007018746726406, + "2024-08-01T17": 0.9995812202640273, + "2024-08-06T02": 1.0017645507179127, + "2024-08-04T14": 1.0005462134685146, + "2024-07-31T20": 0.9990318463262389, + "2024-08-03T21": 1.000601190592843, + "2024-08-06T08": 1.0041188995267691, + "2024-08-02T13": 0.9991830527114941, + "2024-08-05T04": 0.999307825226053, + "2024-08-01T03": 0.9993156158709214, + "2024-07-31T17": 0.998579303705533, + "2024-07-31T07": 0.9998133786512509, + "2024-08-03T07": 1.000433881226965, + "2024-08-03T13": 1.000287010308448, + "latest": 1.0008258585676306 + }, + "status": { + "USD axelar": { + "timestamp": 1722943071522, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD astar": { + "timestamp": 1722943071523, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD cardano": { + "timestamp": 1722943071545, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD bittorrent": { + "timestamp": 1722943071547, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD bitcoin_cash": { + "timestamp": 1722943071530, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD bsc": { + "timestamp": 1722943219874, + "oldestDateRequested": "2023-08-05T22:00:00.000Z" + }, + "USD bitcoin_gold": { + "timestamp": 1722943073091, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD algorand": { + "timestamp": 1722943071519, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD bitcoin": { + "timestamp": 1722943073091, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD avalanche_c_chain": { + "timestamp": 1722943071518, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD celo": { + "timestamp": 1722943071555, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD cosmos": { + "timestamp": 1722943071557, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD cronos": { + "timestamp": 1722943071559, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD casper": { + "timestamp": 1722943073091, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD eos": { + "timestamp": 1722943071560, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD elrond": { + "timestamp": 1722943071556, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD dogecoin": { + "timestamp": 1722943071556, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD crypto_org": { + "timestamp": 1722943071557, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD ethereum": { + "timestamp": 1722943198700, + "oldestDateRequested": "2023-08-05T22:00:00.000Z" + }, + "USD dash": { + "timestamp": 1722943073088, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD fantom": { + "timestamp": 1722943071576, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD flare": { + "timestamp": 1722943071573, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD ethereum_classic": { + "timestamp": 1722943071563, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD filecoin": { + "timestamp": 1722943071578, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD injective": { + "timestamp": 1722943071576, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD hedera": { + "timestamp": 1722943071578, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD internet_computer": { + "timestamp": 1722943071583, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD iota": { + "timestamp": 1722943071583, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD flow": { + "timestamp": 1722943071582, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD klaytn": { + "timestamp": 1722943071584, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD kusama": { + "timestamp": 1722943071583, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD monero": { + "timestamp": 1722943071594, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD litecoin": { + "timestamp": 1722943071590, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD near": { + "timestamp": 1722943071605, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD polkadot": { + "timestamp": 1722943071609, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD qtum": { + "timestamp": 1722943071606, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD nervos": { + "timestamp": 1722943071604, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD polygon": { + "timestamp": 1722943071605, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD ravencoin": { + "timestamp": 1722943071606, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD osmo": { + "timestamp": 1722943071604, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD ripple": { + "timestamp": 1722943071607, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD stellar": { + "timestamp": 1722943071623, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD solana": { + "timestamp": 1722943071609, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD stacks": { + "timestamp": 1722943071613, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD tron": { + "timestamp": 1722943071628, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD tezos": { + "timestamp": 1722943071632, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD vechain": { + "timestamp": 1722943071628, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD neo": { + "timestamp": 1722943071595, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD zilliqa": { + "timestamp": 1722943071624, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD zcash": { + "timestamp": 1722943071626, + "oldestDateRequested": "2024-07-06T22:00:00.000Z" + }, + "USD ethereum/erc20/usd_tether__erc20_": { + "timestamp": 1722943198688, + "oldestDateRequested": "2023-08-05T22:00:00.000Z" + }, + "USD bsc/bep20/binance-peg_busd_token": { + "timestamp": 1722943219875, + "oldestDateRequested": "2023-08-05T22:00:00.000Z" + } + } + }, + "postOnboarding": { + "deviceModelId": "nanoSP", + "walletEntryPointDismissed": false, + "entryPointFirstDisplayedDate": "2024-08-06T11:18:41.579Z", + "actionsToComplete": [], + "actionsCompleted": {}, + "lastActionCompleted": null, + "postOnboardingInProgress": false + } + } +} diff --git a/apps/ledger-live-desktop/tests/userdata/speculos-subAccount.json b/apps/ledger-live-desktop/tests/userdata/speculos-subAccount.json index 776e81a73046..090bfce926b5 100644 --- a/apps/ledger-live-desktop/tests/userdata/speculos-subAccount.json +++ b/apps/ledger-live-desktop/tests/userdata/speculos-subAccount.json @@ -57,10 +57,7 @@ }, "apps": [] }, - "devicesModelList": [ - "nanoSP", - "stax" - ], + "devicesModelList": ["nanoSP", "stax"], "lastSeenCustomImage": { "size": 0, "hash": "" @@ -92,18 +89,11 @@ "firmware_key": "stax/1.4.0/fw_1.4.0-rc4/upgrade_osu_1.4.0_key", "hash": null, "next_se_firmware_final_version": 361, - "previous_se_firmware_final_versions": [ - 357 - ], + "previous_se_firmware_final_versions": [357], "date_creation": "2024-04-25T09:09:25.499840Z", "date_last_modified": "2024-05-28T07:52:22.324396Z", - "device_versions": [ - 17 - ], - "providers": [ - 1, - 83 - ], + "device_versions": [17], + "providers": [1, 83], "minimum_live_common_version": "21.14.1" }, { @@ -117,326 +107,46 @@ "firmware_key": "stax/1.4.0/fw_1.3.0/upgrade_osu_1.4.0_key", "hash": null, "next_se_firmware_final_version": 361, - "previous_se_firmware_final_versions": [ - 332 - ], + "previous_se_firmware_final_versions": [332], "date_creation": "2024-04-25T09:09:26.768280Z", "date_last_modified": "2024-05-28T07:52:23.516060Z", - "device_versions": [ - 17 - ], - "providers": [ - 1, - 83 - ], + "device_versions": [17], + "providers": [1, 83], "minimum_live_common_version": "21.14.1" } ], "date_creation": "2024-04-25T09:09:23.937344Z", "date_last_modified": "2024-05-28T07:52:20.868216Z", - "device_versions": [ - 17 - ], - "mcu_versions": [ - 152 - ], + "device_versions": [17], + "mcu_versions": [152], "application_versions": [ - 36926, - 36927, - 36928, - 36929, - 36930, - 36931, - 36932, - 36933, - 36934, - 36935, - 36936, - 36937, - 36938, - 36939, - 36940, - 36941, - 36942, - 36943, - 36944, - 36945, - 36946, - 36947, - 36948, - 36949, - 36950, - 36951, - 36952, - 36953, - 36954, - 36955, - 36956, - 36957, - 36958, - 36959, - 36960, - 36961, - 36962, - 36963, - 36964, - 36965, - 36966, - 36967, - 36968, - 36969, - 36970, - 36971, - 36972, - 36973, - 36974, - 36976, - 36977, - 36978, - 36979, - 36980, - 36981, - 36982, - 36983, - 36984, - 36985, - 36986, - 36987, - 36988, - 36989, - 36990, - 36991, - 36992, - 36993, - 36994, - 36995, - 36996, - 36997, - 36998, - 36999, - 37000, - 37001, - 37002, - 37003, - 37004, - 37005, - 37006, - 37007, - 37008, - 37009, - 37010, - 37011, - 37012, - 37013, - 37014, - 37015, - 37016, - 37017, - 37018, - 37019, - 37020, - 37021, - 37022, - 37023, - 37024, - 37025, - 37026, - 37027, - 37028, - 37029, - 37030, - 37031, - 37032, - 37033, - 37034, - 37035, - 37036, - 37037, - 37038, - 37039, - 37040, - 37041, - 37042, - 37043, - 37044, - 37045, - 37046, - 37047, - 37048, - 37049, - 37050, - 37051, - 37052, - 37053, - 37054, - 37055, - 37056, - 37057, - 37058, - 37059, - 37060, - 37061, - 37062, - 37063, - 37064, - 37065, - 37066, - 37067, - 37068, - 37069, - 37070, - 37071, - 37072, - 37073, - 37074, - 37075, - 37076, - 37078, - 37079, - 37080, - 37081, - 37082, - 37083, - 37084, - 37085, - 37086, - 37087, - 37088, - 37418, - 37450, - 37529, - 37533, - 37537, - 37541, - 37542, - 37543, - 37547, - 37551, - 37552, - 37553, - 37557, - 37561, - 37567, - 37573, - 37574, - 37579, - 37589, - 37593, - 37609, - 37610, - 37611, - 37612, - 37613, - 37614, - 37616, - 37617, - 37618, - 37620, - 37621, - 37622, - 37623, - 37624, - 37625, - 37626, - 37627, - 37628, - 37629, - 37630, - 37631, - 37632, - 37633, - 37634, - 37635, - 37717, - 37718, - 37722, - 37730, - 37759, - 37842, - 37850, - 37854, - 37949, - 37953, - 37958, - 37963, - 37968, - 37969, - 38164, - 38165, - 38166, - 38167, - 38168, - 38169, - 38170, - 38171, - 38172, - 38173, - 38174, - 38175, - 38176, - 38177, - 38178, - 38179, - 38180, - 38181, - 38182, - 38183, - 38184, - 38185, - 38186, - 38187, - 38188, - 38500, - 38585, - 38593, - 38599, - 38607, - 39069, - 39071, - 39104, - 39111, - 39513, - 39518, - 39520, - 39537, - 39543, - 39551, - 39553, - 39558, - 40144, - 40270, - 40271, - 40272, - 40273, - 40274, - 40275, - 40276, - 40277, - 40278, - 40279, - 40280, - 40281, - 40282, - 40283, - 40284, - 40285, - 40286, - 40287, - 40288, - 40289, - 40290, - 40291, - 40292, - 40293, - 40294, - 40324, - 40332, - 40338 - ], - "providers": [ - 1, - 83 + 36926, 36927, 36928, 36929, 36930, 36931, 36932, 36933, 36934, 36935, 36936, 36937, + 36938, 36939, 36940, 36941, 36942, 36943, 36944, 36945, 36946, 36947, 36948, 36949, + 36950, 36951, 36952, 36953, 36954, 36955, 36956, 36957, 36958, 36959, 36960, 36961, + 36962, 36963, 36964, 36965, 36966, 36967, 36968, 36969, 36970, 36971, 36972, 36973, + 36974, 36976, 36977, 36978, 36979, 36980, 36981, 36982, 36983, 36984, 36985, 36986, + 36987, 36988, 36989, 36990, 36991, 36992, 36993, 36994, 36995, 36996, 36997, 36998, + 36999, 37000, 37001, 37002, 37003, 37004, 37005, 37006, 37007, 37008, 37009, 37010, + 37011, 37012, 37013, 37014, 37015, 37016, 37017, 37018, 37019, 37020, 37021, 37022, + 37023, 37024, 37025, 37026, 37027, 37028, 37029, 37030, 37031, 37032, 37033, 37034, + 37035, 37036, 37037, 37038, 37039, 37040, 37041, 37042, 37043, 37044, 37045, 37046, + 37047, 37048, 37049, 37050, 37051, 37052, 37053, 37054, 37055, 37056, 37057, 37058, + 37059, 37060, 37061, 37062, 37063, 37064, 37065, 37066, 37067, 37068, 37069, 37070, + 37071, 37072, 37073, 37074, 37075, 37076, 37078, 37079, 37080, 37081, 37082, 37083, + 37084, 37085, 37086, 37087, 37088, 37418, 37450, 37529, 37533, 37537, 37541, 37542, + 37543, 37547, 37551, 37552, 37553, 37557, 37561, 37567, 37573, 37574, 37579, 37589, + 37593, 37609, 37610, 37611, 37612, 37613, 37614, 37616, 37617, 37618, 37620, 37621, + 37622, 37623, 37624, 37625, 37626, 37627, 37628, 37629, 37630, 37631, 37632, 37633, + 37634, 37635, 37717, 37718, 37722, 37730, 37759, 37842, 37850, 37854, 37949, 37953, + 37958, 37963, 37968, 37969, 38164, 38165, 38166, 38167, 38168, 38169, 38170, 38171, + 38172, 38173, 38174, 38175, 38176, 38177, 38178, 38179, 38180, 38181, 38182, 38183, + 38184, 38185, 38186, 38187, 38188, 38500, 38585, 38593, 38599, 38607, 39069, 39071, + 39104, 39111, 39513, 39518, 39520, 39537, 39543, 39551, 39553, 39558, 40144, 40270, + 40271, 40272, 40273, 40274, 40275, 40276, 40277, 40278, 40279, 40280, 40281, 40282, + 40283, 40284, 40285, 40286, 40287, 40288, 40289, 40290, 40291, 40292, 40293, 40294, + 40324, 40332, 40338 ], + "providers": [1, 83], "bytes": 375816 }, "osu": { @@ -450,18 +160,11 @@ "firmware_key": "stax/1.4.0/fw_1.4.0-rc4/upgrade_osu_1.4.0_key", "hash": null, "next_se_firmware_final_version": 361, - "previous_se_firmware_final_versions": [ - 357 - ], + "previous_se_firmware_final_versions": [357], "date_creation": "2024-04-25T09:09:25.499840Z", "date_last_modified": "2024-05-28T07:52:22.324396Z", - "device_versions": [ - 17 - ], - "providers": [ - 1, - 83 - ], + "device_versions": [17], + "providers": [1, 83], "minimum_live_common_version": "21.14.1" }, "shouldFlashMCU": false @@ -584,10 +287,7 @@ "tx": "https://blockchain.info/btc/tx/$hash" } ], - "keywords": [ - "btc", - "bitcoin" - ], + "keywords": ["btc", "bitcoin"], "explorerId": "btc" } }, @@ -776,10 +476,7 @@ "token": "https://etherscan.io/token/$contractAddress?a=$address" } ], - "keywords": [ - "eth", - "ethereum" - ], + "keywords": ["eth", "ethereum"], "explorerId": "eth" } }, @@ -1338,12 +1035,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3b9cde274468b519996d10dafab78ac30c16d7374e504ab2e4329dcd34ea6e69-OUT", "hash": "0x3b9cde274468b519996d10dafab78ac30c16d7374e504ab2e4329dcd34ea6e69", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0xdbC93cfB3AC9C7AC2E9308146d54148414927D48" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0xdbC93cfB3AC9C7AC2E9308146d54148414927D48"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x1d62261fd171795d318d6dabffb44efa23892f800d381d5c93c4948b8d2b53bc", "blockHeight": 20133098, @@ -1359,12 +1052,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x5311d74df27e94825b5e8fba09a426e95e9b0098171c4ff4f82243241384b8dd-OUT", "hash": "0x5311d74df27e94825b5e8fba09a426e95e9b0098171c4ff4f82243241384b8dd", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x3212e5Eb0b889881D6Fc193F26c87312eD796e3A" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x3212e5Eb0b889881D6Fc193F26c87312eD796e3A"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xb8cf3be6fac56b8e2515b6755845609d9e1b0315c38025561539319707a7bb1c", "blockHeight": 19976206, @@ -1380,12 +1069,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc47123d53a94bebd75112865df680c019c00435441a76feb63eea923ac8e5d22-OUT", "hash": "0xc47123d53a94bebd75112865df680c019c00435441a76feb63eea923ac8e5d22", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x9910feAD77AA34342a11431AcCe18536a75C1bce" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x9910feAD77AA34342a11431AcCe18536a75C1bce"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x8ad54ea0499814d9132ce35d8150fe1ac7d6e591f9a5f762f4369e413e1350cf", "blockHeight": 19976110, @@ -1401,12 +1086,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x8e14e9ea83962fdcb7f4df29a274b9a95299398b656ad257882d6aa3e0ee5559-OUT", "hash": "0x8e14e9ea83962fdcb7f4df29a274b9a95299398b656ad257882d6aa3e0ee5559", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0xA01ee92F03Db6E2663A0dBea49971FFb47419c93" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0xA01ee92F03Db6E2663A0dBea49971FFb47419c93"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x18230d48a485e2dc10c65ac8489f0df1cee8d9774cd1f49dad94d0f61ed91381", "blockHeight": 19976060, @@ -1422,12 +1103,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf670b36ae494c9e328e40012e819d36ef8c3bd1b8e4a5ceb13909ed8bdb2e90e-OUT", "hash": "0xf670b36ae494c9e328e40012e819d36ef8c3bd1b8e4a5ceb13909ed8bdb2e90e", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0xD37BbE5744D730a1d98d8DC97c42F0Ca46aD7146" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0xD37BbE5744D730a1d98d8DC97c42F0Ca46aD7146"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x456cc434af21c58d45488af2d4ffa02715dcd10982101f2712450c8b13cec14c", "blockHeight": 19975950, @@ -1443,12 +1120,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x12d09eea0443d9c21634c1d8b6222d0e3d8c4070b8149454b53fd1ef93e60e64-OUT", "hash": "0x12d09eea0443d9c21634c1d8b6222d0e3d8c4070b8149454b53fd1ef93e60e64", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x59861265f201088607E691dC3e4E317197cc99D7" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x59861265f201088607E691dC3e4E317197cc99D7"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xd8d08b009f7d38acf8929a13b66fdd895e8ff58b7880d5c542ddb2e1d61a7278", "blockHeight": 19975783, @@ -1464,12 +1137,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x8335908658142154cd38d884729dfe450ecce1e92b6b823439a00c071502f5d1-IN", "hash": "0x8335908658142154cd38d884729dfe450ecce1e92b6b823439a00c071502f5d1", "type": "IN", - "senders": [ - "0x04F479967bBc039E060d6292e5dE86f249291bbc" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], + "senders": ["0x04F479967bBc039E060d6292e5dE86f249291bbc"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xc6d10cc76084ce8f75a0fec63f140c902660ba26adfe3d8385ae8442a6e4f6a8", "blockHeight": 19969391, @@ -1485,12 +1154,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x48831ea0324ee5921c0dca9dfad014be64867734ad76144822d35c853c87bf54-OUT", "hash": "0x48831ea0324ee5921c0dca9dfad014be64867734ad76144822d35c853c87bf54", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xda6807e9b25b1b8f5f4119429868eca096543e2146f2410421fd9d5bb2b6011c", "blockHeight": 19666996, @@ -1506,12 +1171,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec-NONE", "hash": "0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec", "type": "NONE", - "senders": [ - "0x84c9A36721eB21da9244Fe50177180D8f4a7cAF7" - ], - "recipients": [ - "0xdAC17F958D2ee523a2206206994597C13D831ec7" - ], + "senders": ["0x84c9A36721eB21da9244Fe50177180D8f4a7cAF7"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x16bdbd15adbb60b78f5e98abf9ae9ef4fd3a8db5654b50cf79c83d5fdd49cb58", "blockHeight": 19659636, @@ -1527,12 +1188,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa4849c653dcaa518bff5afae4ca1fc7ebeaabde79a18eabadbe6e5a823926057-IN", "hash": "0xa4849c653dcaa518bff5afae4ca1fc7ebeaabde79a18eabadbe6e5a823926057", "type": "IN", - "senders": [ - "0x4F008D1A92295d09294B778188Be9a74659515D3" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], + "senders": ["0x4F008D1A92295d09294B778188Be9a74659515D3"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x7701a0ad05d3522d610269400bcaa3090b0f0929222f3ea4ec6be15e699bd7c3", "blockHeight": 19625186, @@ -1555,292 +1212,84 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880 ], "latestDate": 1718888400000 }, "DAY": { "balances": [ - 0, - 616385555132247, - 616385555132247, - 616385555132247, - 616385555132247, - 616385555132247, - 616385555132247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 52374061322285250, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880 + 0, 616385555132247, 616385555132247, 616385555132247, 616385555132247, + 616385555132247, 616385555132247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 52374061322285250, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880 ], "latestDate": 1718834400000 }, "WEEK": { "balances": [ - 0, - 616385555132247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 25709258828065880, - 25709258828065880, - 25709258828065880 + 0, 616385555132247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 25709258828065880, + 25709258828065880, 25709258828065880 ], "latestDate": 1718488800000 } @@ -1857,285 +1306,47 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000 + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000 ], "latestDate": 1718888400000 }, "DAY": { "balances": [ - 0, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000 + 0, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000 ], "latestDate": 1718834400000 }, "WEEK": { "balances": [ - 0, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, + 0, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000 ], "latestDate": 1718488800000 @@ -2148,12 +1359,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec-IN-i0", "hash": "0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec", "type": "IN", - "senders": [ - "0x84c9A36721eB21da9244Fe50177180D8f4a7cAF7" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], + "senders": ["0x84c9A36721eB21da9244Fe50177180D8f4a7cAF7"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", "blockHash": "0x16bdbd15adbb60b78f5e98abf9ae9ef4fd3a8db5654b50cf79c83d5fdd49cb58", "blockHeight": 19659636, @@ -2198,9 +1405,7 @@ "id": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5-f3b0e51b56ac864d2da217e4510188552917d72126e0d6c633a1051b74356adb-OPT_IN", "hash": "f3b0e51b56ac864d2da217e4510188552917d72126e0d6c633a1051b74356adb", "type": "OPT_IN", - "senders": [ - "GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX" - ], + "senders": ["GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX"], "recipients": [], "accountId": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5", "blockHash": null, @@ -2222,12 +1427,8 @@ "id": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5-e97d376c55cdbe7098d9508e4cc23e74e3cbf5807c64a05d9efa4ddbfa7f007f-OUT", "hash": "e97d376c55cdbe7098d9508e4cc23e74e3cbf5807c64a05d9efa4ddbfa7f007f", "type": "OUT", - "senders": [ - "GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX" - ], - "recipients": [ - "GCTGRCFN7AT6NW4DZVI4QN55BRNQA64TXEZSMYPE7BNUZMLMVISXT652" - ], + "senders": ["GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX"], + "recipients": ["GCTGRCFN7AT6NW4DZVI4QN55BRNQA64TXEZSMYPE7BNUZMLMVISXT652"], "accountId": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5", "blockHash": null, "blockHeight": 51899330, @@ -2245,12 +1446,8 @@ "id": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5-850e33a07e3dd9c290b51b380c27a38cf0e7680fe7236fdadef531796d9f7cde-IN", "hash": "850e33a07e3dd9c290b51b380c27a38cf0e7680fe7236fdadef531796d9f7cde", "type": "IN", - "senders": [ - "GD5NP74FP22VVRVPUFWONJVXTMK64R4Y6EEJZYW6JNKDTPK4TR6HR6OT" - ], - "recipients": [ - "GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX" - ], + "senders": ["GD5NP74FP22VVRVPUFWONJVXTMK64R4Y6EEJZYW6JNKDTPK4TR6HR6OT"], + "recipients": ["GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX"], "accountId": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5", "blockHash": null, "blockHeight": 51884975, @@ -2274,237 +1471,48 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598 + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598 ], "latestDate": 1718888400000 }, "DAY": { "balances": [ - 0, - 2673609798, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609598, - 2663609598, - 2663609598 + 0, 2673609798, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609598, + 2663609598, 2663609598 ], "latestDate": 1718834400000 }, "WEEK": { - "balances": [ - 0, - 2663609698, - 2663609698, - 2663609698 - ], + "balances": [0, 2663609698, 2663609698, 2663609698], "latestDate": 1718488800000 } }, @@ -2567,12 +1575,8 @@ "id": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:-XZC67MN4LBGL3XWLCGNMVOXO6MSMO7SWV5NTK6G5AE3OTY54QEPA-IN", "hash": "XZC67MN4LBGL3XWLCGNMVOXO6MSMO7SWV5NTK6G5AE3OTY54QEPA", "type": "IN", - "senders": [ - "WARN666I6ITOTBIFMYOOYDAT2JA63QQO2Y6MJCNER5YAF4L6MQO7W6SCAM" - ], - "recipients": [ - "HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU" - ], + "senders": ["WARN666I6ITOTBIFMYOOYDAT2JA63QQO2Y6MJCNER5YAF4L6MQO7W6SCAM"], + "recipients": ["HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU"], "accountId": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:", "blockHash": null, "blockHeight": 39732554, @@ -2588,12 +1592,8 @@ "id": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:-XYJFE7WTKJX4OXYQDHBYVZFZDTFGNAJJM6NEZYLUOEE4RSRMLMPA-IN", "hash": "XYJFE7WTKJX4OXYQDHBYVZFZDTFGNAJJM6NEZYLUOEE4RSRMLMPA", "type": "IN", - "senders": [ - "VE6FCIUVY3LU7FX4ET5QBC6W5BQVWBYIX6XA7VFH3SILNKV47T7OZ333AA" - ], - "recipients": [ - "HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU" - ], + "senders": ["VE6FCIUVY3LU7FX4ET5QBC6W5BQVWBYIX6XA7VFH3SILNKV47T7OZ333AA"], + "recipients": ["HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU"], "accountId": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:", "blockHash": null, "blockHeight": 39732548, @@ -2609,12 +1609,8 @@ "id": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:-KH52AA5F3C4CVLFAJ6G5GAEEKUO63OE3YBX2VZOETH4BKRI4L3JQ-FEES", "hash": "KH52AA5F3C4CVLFAJ6G5GAEEKUO63OE3YBX2VZOETH4BKRI4L3JQ", "type": "FEES", - "senders": [ - "JUED7SLSML75KLEUUY3XKZ64TQZLPZ74HQQ7LKNW25DXZPFUC3ADGCUY2A" - ], - "recipients": [ - "HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU" - ], + "senders": ["JUED7SLSML75KLEUUY3XKZ64TQZLPZ74HQQ7LKNW25DXZPFUC3ADGCUY2A"], + "recipients": ["HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU"], "accountId": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:", "blockHash": null, "blockHeight": 39732461, @@ -2630,12 +1626,8 @@ "id": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:-CVRWSGBIKWKHRWWPWKEDFS4EK65YRPUSJFFA76YLXBYJFNKXLXGA-OPT_IN", "hash": "CVRWSGBIKWKHRWWPWKEDFS4EK65YRPUSJFFA76YLXBYJFNKXLXGA", "type": "OPT_IN", - "senders": [ - "HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU" - ], - "recipients": [ - "HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU" - ], + "senders": ["HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU"], + "recipients": ["HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU"], "accountId": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:", "blockHash": null, "blockHeight": 39732442, @@ -2651,12 +1643,8 @@ "id": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:-IY5LC6CQKW7LGO5SS54N42SQBEQ5QSG32NEVRNELHVWSQAOUNLRQ-IN", "hash": "IY5LC6CQKW7LGO5SS54N42SQBEQ5QSG32NEVRNELHVWSQAOUNLRQ", "type": "IN", - "senders": [ - "EFNDKIMSO3KBJOUTGYNBBZAXLZM6OH7E7YZC43QQ3UUKLY43CWFLC2BXT4" - ], - "recipients": [ - "HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU" - ], + "senders": ["EFNDKIMSO3KBJOUTGYNBBZAXLZM6OH7E7YZC43QQ3UUKLY43CWFLC2BXT4"], + "recipients": ["HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU"], "accountId": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:", "blockHash": null, "blockHeight": 39280936, @@ -2677,237 +1665,44 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, + 66260389, 66260389, 66260389, 66260389, 66260389, 66260389, 66260389, 66260389, + 66260389, 66260389, 66260389, 66260389, 66260389, 66260389, 66260389, 66260389, + 66260389, 66260389, 66260389, 66260389, 66260389, 66260389, 66260389, 66260389, + 66260389, 66260389, 66260389, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496 ], "latestDate": 1718888400000 }, "DAY": { "balances": [ - 0, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496 + 0, 66260389, 66260389, 66260389, 66260389, 66260389, 66260389, 66260389, 66260389, + 66260389, 66260389, 66260389, 66260389, 66260389, 66260389, 66260389, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496 ], "latestDate": 1718834400000 }, "WEEK": { - "balances": [ - 0, - 66260389, - 66260389, - 66259496 - ], + "balances": [0, 66260389, 66260389, 66259496], "latestDate": 1718488800000 } }, @@ -2942,12 +1737,8 @@ "id": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:+312769-KH52AA5F3C4CVLFAJ6G5GAEEKUO63OE3YBX2VZOETH4BKRI4L3JQ-IN", "hash": "KH52AA5F3C4CVLFAJ6G5GAEEKUO63OE3YBX2VZOETH4BKRI4L3JQ", "type": "IN", - "senders": [ - "JUED7SLSML75KLEUUY3XKZ64TQZLPZ74HQQ7LKNW25DXZPFUC3ADGCUY2A" - ], - "recipients": [ - "HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU" - ], + "senders": ["JUED7SLSML75KLEUUY3XKZ64TQZLPZ74HQQ7LKNW25DXZPFUC3ADGCUY2A"], + "recipients": ["HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU"], "accountId": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:+312769", "blockHash": null, "blockHeight": 39732461, @@ -2994,12 +1785,8 @@ "id": "js:2:tron:TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1:-5ace0bcd63b95b4e7d5e60981ddb5901e68673896b0ddbf264b4df7e0c9fbc14-IN", "hash": "5ace0bcd63b95b4e7d5e60981ddb5901e68673896b0ddbf264b4df7e0c9fbc14", "type": "IN", - "senders": [ - "TH4RZibHXTi4EjZEVbPYVhSmB6GCHAmRcn" - ], - "recipients": [ - "TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1" - ], + "senders": ["TH4RZibHXTi4EjZEVbPYVhSmB6GCHAmRcn"], + "recipients": ["TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1"], "accountId": "js:2:tron:TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1:", "blockHash": null, "blockHeight": 60935756, @@ -3015,12 +1802,8 @@ "id": "js:2:tron:TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1:-c7cd48d040a7b6af75c709977437c056abbc278b618e3ed8607f15326abe7270-OUT", "hash": "c7cd48d040a7b6af75c709977437c056abbc278b618e3ed8607f15326abe7270", "type": "OUT", - "senders": [ - "TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1" - ], - "recipients": [ - "TAVrrARNdnjHgCGMQYeQV7hv4PSu7mVsMj" - ], + "senders": ["TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1"], + "recipients": ["TAVrrARNdnjHgCGMQYeQV7hv4PSu7mVsMj"], "accountId": "js:2:tron:TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1:", "blockHash": null, "blockHeight": null, @@ -3038,283 +1821,46 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000 + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000 ], "latestDate": 1718888400000 }, "DAY": { "balances": [ - 0, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000 + 0, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000 ], "latestDate": 1718834400000 }, "WEEK": { "balances": [ - 0, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000 + 0, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000 ], "latestDate": 1718488800000 } @@ -3330,21 +1876,15 @@ "spendableBalance": "3943046", "balanceHistoryCache": { "HOUR": { - "balances": [ - 0 - ], + "balances": [0], "latestDate": 1718888400000 }, "DAY": { - "balances": [ - 0 - ], + "balances": [0], "latestDate": 1718834400000 }, "WEEK": { - "balances": [ - 0 - ], + "balances": [0], "latestDate": 1718488800000 } }, @@ -3355,12 +1895,8 @@ "id": "js:2:tron:TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1:+tron%2Ftrc20%2Ftr7nhqjekqxgtci8q8zy4pl8otszgjlj6t-a6d9947741aa30fab1ae513714049a5eece2b66ebe31961b72e2013b1e19d948-IN", "hash": "a6d9947741aa30fab1ae513714049a5eece2b66ebe31961b72e2013b1e19d948", "type": "IN", - "senders": [ - "TWS1onJnNTg8tJHomceqxBxTsUB1DHh7PV" - ], - "recipients": [ - "TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1" - ], + "senders": ["TWS1onJnNTg8tJHomceqxBxTsUB1DHh7PV"], + "recipients": ["TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1"], "accountId": "js:2:tron:TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1:+tron%2Ftrc20%2Ftr7nhqjekqxgtci8q8zy4pl8otszgjlj6t", "blockHash": null, "blockHeight": 62748273, @@ -3425,12 +1961,8 @@ "id": "js:2:bsc:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3add3c5fe7280208b550fe7588c48bf18e755e0ed7f7982f2a9a98f83c526a2a-NONE", "hash": "0x3add3c5fe7280208b550fe7588c48bf18e755e0ed7f7982f2a9a98f83c526a2a", "type": "NONE", - "senders": [ - "0x4258A05DBA420A398bcdFB389E4250759b4223ea" - ], - "recipients": [ - "0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56" - ], + "senders": ["0x4258A05DBA420A398bcdFB389E4250759b4223ea"], + "recipients": ["0xe9e7CEA3DedcA5984780Bafc599bD69ADd087D56"], "accountId": "js:2:bsc:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x26ea330bf870434b2e27efffe886b5b32ea28e65ee15ed645f9b57ab6eece4ff", "blockHeight": 39580424, @@ -3453,194 +1985,21 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "latestDate": 1718888400000 }, "DAY": { - "balances": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], + "balances": [0, 0, 0, 0, 0, 0, 0, 0], "latestDate": 1718834400000 }, "WEEK": { - "balances": [ - 0, - 0 - ], + "balances": [0, 0], "latestDate": 1718488800000 } }, @@ -3656,194 +2015,75 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 0, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, + 0, 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, 3000000000000000000 ], "latestDate": 1718888400000 }, "DAY": { "balances": [ - 0, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, - 3000000000000000000, + 0, 3000000000000000000, 3000000000000000000, 3000000000000000000, + 3000000000000000000, 3000000000000000000, 3000000000000000000, 3000000000000000000 ], "latestDate": 1718834400000 }, "WEEK": { - "balances": [ - 0, - 3000000000000000000 - ], + "balances": [0, 3000000000000000000], "latestDate": 1718488800000 } }, @@ -3854,12 +2094,8 @@ "id": "js:2:bsc:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+bsc%2Fbep20%2Fbinance~!dash!~peg~!underscore!~busd~!underscore!~token-0x3add3c5fe7280208b550fe7588c48bf18e755e0ed7f7982f2a9a98f83c526a2a-IN-i0", "hash": "0x3add3c5fe7280208b550fe7588c48bf18e755e0ed7f7982f2a9a98f83c526a2a", "type": "IN", - "senders": [ - "0x4258A05DBA420A398bcdFB389E4250759b4223ea" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], + "senders": ["0x4258A05DBA420A398bcdFB389E4250759b4223ea"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], "accountId": "js:2:bsc:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+bsc%2Fbep20%2Fbinance~!dash!~peg~!underscore!~busd~!underscore!~token", "blockHash": "0x26ea330bf870434b2e27efffe886b5b32ea28e65ee15ed645f9b57ab6eece4ff", "blockHeight": 39580424, @@ -3905,12 +2141,8 @@ "id": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x5c23fd562b7d5cd22401499e5b54e4b79685c3d13e4fc94bdf860cc4d06b00fd-NONE", "hash": "0x5c23fd562b7d5cd22401499e5b54e4b79685c3d13e4fc94bdf860cc4d06b00fd", "type": "NONE", - "senders": [ - "0x4c4404D760b18f824735F4AD746F7d809baf3432" - ], - "recipients": [ - "0xa6133a6E9E5175a1E8762eB22a74AAEC41D524ec" - ], + "senders": ["0x4c4404D760b18f824735F4AD746F7d809baf3432"], + "recipients": ["0xa6133a6E9E5175a1E8762eB22a74AAEC41D524ec"], "accountId": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x8da45e7c9e754306227f9cafc232072fcc45ade6fc87e4f89c9072286905c637", "blockHeight": 58390371, @@ -3926,12 +2158,8 @@ "id": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+0xa6133a6E9E5175a1E8762eB22a74AAEC41D524ec+1+polygon-0x5c23fd562b7d5cd22401499e5b54e4b79685c3d13e4fc94bdf860cc4d06b00fd-NFT_IN-i0_0", "hash": "0x5c23fd562b7d5cd22401499e5b54e4b79685c3d13e4fc94bdf860cc4d06b00fd", "type": "NFT_IN", - "senders": [ - "0x0000000000000000000000000000000000000000" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], + "senders": ["0x0000000000000000000000000000000000000000"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], "accountId": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x8da45e7c9e754306227f9cafc232072fcc45ade6fc87e4f89c9072286905c637", "blockHeight": 58390371, @@ -3950,12 +2178,8 @@ "id": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xd416c29c4cdb0c44d62e6ee7f264203de7d0c758c788251ddd7b1b2cc4ad2d8b-NONE", "hash": "0xd416c29c4cdb0c44d62e6ee7f264203de7d0c758c788251ddd7b1b2cc4ad2d8b", "type": "NONE", - "senders": [ - "0x4258A05DBA420A398bcdFB389E4250759b4223ea" - ], - "recipients": [ - "0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063" - ], + "senders": ["0x4258A05DBA420A398bcdFB389E4250759b4223ea"], + "recipients": ["0x8f3Cf7ad23Cd3CaDbD9735AFf958023239c6A063"], "accountId": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x8ca45da3e5fcd4d315aee40ee83524c1d02d6bd95506db69fe6d32c783532a68", "blockHeight": 58116208, @@ -3971,12 +2195,8 @@ "id": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x16938069818407e9d041df5c700b817a7b8d6643e1c7e399016fa32eae2304ff-NONE", "hash": "0x16938069818407e9d041df5c700b817a7b8d6643e1c7e399016fa32eae2304ff", "type": "NONE", - "senders": [ - "0x3DB2f298379eE34F99353F1e448baf18C9DF8160" - ], - "recipients": [ - "0x35e6918CFE8b3C6d3C0BfB8d3b774077B980E8BF" - ], + "senders": ["0x3DB2f298379eE34F99353F1e448baf18C9DF8160"], + "recipients": ["0x35e6918CFE8b3C6d3C0BfB8d3b774077B980E8BF"], "accountId": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xa4f74fe93d331e7e1e7338c43fff801c93200dce304b299584dfae11c5a0cb99", "blockHeight": 57541655, @@ -3992,12 +2212,8 @@ "id": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x41046602d4fd7703744cfe6f65617cc1a3fe51c131f586d4043c4c85db6f2447-NONE", "hash": "0x41046602d4fd7703744cfe6f65617cc1a3fe51c131f586d4043c4c85db6f2447", "type": "NONE", - "senders": [ - "0xc7be520A0160FB6A933448FA7f4FA816609b2eAa" - ], - "recipients": [ - "0x7F3dC24cFC1C5Ba05D00E39FA922754330c5e429" - ], + "senders": ["0xc7be520A0160FB6A933448FA7f4FA816609b2eAa"], + "recipients": ["0x7F3dC24cFC1C5Ba05D00E39FA922754330c5e429"], "accountId": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x2f65e356de48291ce1194c4f575418ecb65e887bbda2fce910d6fafce78cb002", "blockHeight": 57530623, @@ -4013,12 +2229,8 @@ "id": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x370c4b0e095ee214c63238db218c8b4f5889c9fae10a39d5d3ad7046a7bafd39-NONE", "hash": "0x370c4b0e095ee214c63238db218c8b4f5889c9fae10a39d5d3ad7046a7bafd39", "type": "NONE", - "senders": [ - "0xc7be520A0160FB6A933448FA7f4FA816609b2eAa" - ], - "recipients": [ - "0x7F3dC24cFC1C5Ba05D00E39FA922754330c5e429" - ], + "senders": ["0xc7be520A0160FB6A933448FA7f4FA816609b2eAa"], + "recipients": ["0x7F3dC24cFC1C5Ba05D00E39FA922754330c5e429"], "accountId": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xe193877d7dd3e955ca2172b4611849456739c2080d161dc029360e1c20435664", "blockHeight": 57494451, @@ -4034,12 +2246,8 @@ "id": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x8fe5a200fb31d17b8b59af64a4c606293ebfce1bacf6b151f80bec4648c290b7-NONE", "hash": "0x8fe5a200fb31d17b8b59af64a4c606293ebfce1bacf6b151f80bec4648c290b7", "type": "NONE", - "senders": [ - "0xFa399d57a7f0a564E9FfCD2dA4B108A0578d4fD3" - ], - "recipients": [ - "0xA82Ec9181dEb1683CcDe627A733F06842c235D89" - ], + "senders": ["0xFa399d57a7f0a564E9FfCD2dA4B108A0578d4fD3"], + "recipients": ["0xA82Ec9181dEb1683CcDe627A733F06842c235D89"], "accountId": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x54e9a563941735a5d9a4601d79251182fac18d073bc0bee2da599d311efd38b8", "blockHeight": 56014530, @@ -4055,12 +2263,8 @@ "id": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x45ce297da6e89ba58aeb22eba30e96bd37631e0dcb80ab90cb2d0e54d7d0a4cd-NONE", "hash": "0x45ce297da6e89ba58aeb22eba30e96bd37631e0dcb80ab90cb2d0e54d7d0a4cd", "type": "NONE", - "senders": [ - "0xA069AA4871084Fcb270cEb9D8222000422f953B3" - ], - "recipients": [ - "0x75Cc1f43bB2A30edD6CBcc235bDb35498C8d3873" - ], + "senders": ["0xA069AA4871084Fcb270cEb9D8222000422f953B3"], + "recipients": ["0x75Cc1f43bB2A30edD6CBcc235bDb35498C8d3873"], "accountId": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xa8e806071b2006b0ff354c29de5a5a9846d673306b8e69ccadfde9d5860c6ac6", "blockHeight": 55886175, @@ -4076,12 +2280,8 @@ "id": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+0x75Cc1f43bB2A30edD6CBcc235bDb35498C8d3873+1+polygon-0x45ce297da6e89ba58aeb22eba30e96bd37631e0dcb80ab90cb2d0e54d7d0a4cd-NFT_IN-i0_0", "hash": "0x45ce297da6e89ba58aeb22eba30e96bd37631e0dcb80ab90cb2d0e54d7d0a4cd", "type": "NFT_IN", - "senders": [ - "0x0000000000000000000000000000000000000000" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], + "senders": ["0x0000000000000000000000000000000000000000"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], "accountId": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xa8e806071b2006b0ff354c29de5a5a9846d673306b8e69ccadfde9d5860c6ac6", "blockHeight": 55886175, @@ -4100,12 +2300,8 @@ "id": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x8fde62f690016d340b21bf56e558e87ae10a0f5c71863a9c46ef971766680b0f-NONE", "hash": "0x8fde62f690016d340b21bf56e558e87ae10a0f5c71863a9c46ef971766680b0f", "type": "NONE", - "senders": [ - "0x2deEf68ab188f91d962C78dBf4368F93f9f5BfAa" - ], - "recipients": [ - "0xFc5C47D7D0F12C15ac9a0D71dA24EAb615921276" - ], + "senders": ["0x2deEf68ab188f91d962C78dBf4368F93f9f5BfAa"], + "recipients": ["0xFc5C47D7D0F12C15ac9a0D71dA24EAb615921276"], "accountId": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x041ffde0fe9bd18be210fe324998e62f15270b452aa580ac1f0b1ba6173b4c5e", "blockHeight": 55845741, @@ -4121,12 +2317,8 @@ "id": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xd9f2c47ba1eeddb397aba5e478ec564d4deb207bc8143cf7332a9ec4c1e393b9-NONE", "hash": "0xd9f2c47ba1eeddb397aba5e478ec564d4deb207bc8143cf7332a9ec4c1e393b9", "type": "NONE", - "senders": [ - "0xb8c422bA0fc6dE1777b6BD8D180f7473f445e864" - ], - "recipients": [ - "0xe1B6e05Ea1B76D9C4Fc0bA6Ca18Ea2dd6AE48ca3" - ], + "senders": ["0xb8c422bA0fc6dE1777b6BD8D180f7473f445e864"], + "recipients": ["0xe1B6e05Ea1B76D9C4Fc0bA6Ca18Ea2dd6AE48ca3"], "accountId": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xf2d4ba2a0a7ce328c7f1823b16a0250b6b881bd9a4c312ec94eb826ce50a289b", "blockHeight": 55672228, @@ -4142,12 +2334,8 @@ "id": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+0xe1B6e05Ea1B76D9C4Fc0bA6Ca18Ea2dd6AE48ca3+1+polygon-0xd9f2c47ba1eeddb397aba5e478ec564d4deb207bc8143cf7332a9ec4c1e393b9-NFT_IN-i0_0", "hash": "0xd9f2c47ba1eeddb397aba5e478ec564d4deb207bc8143cf7332a9ec4c1e393b9", "type": "NFT_IN", - "senders": [ - "0x0000000000000000000000000000000000000000" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], + "senders": ["0x0000000000000000000000000000000000000000"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], "accountId": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xf2d4ba2a0a7ce328c7f1823b16a0250b6b881bd9a4c312ec94eb826ce50a289b", "blockHeight": 55672228, @@ -4166,12 +2354,8 @@ "id": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x0ed9cfb0dc35a0fcc32d88a4714d1cec78e6dab4306c7e5d9005a025edb38f34-NONE", "hash": "0x0ed9cfb0dc35a0fcc32d88a4714d1cec78e6dab4306c7e5d9005a025edb38f34", "type": "NONE", - "senders": [ - "0x0479EF52C3E8d0CEcf42EB5aF8190e0a3765b278" - ], - "recipients": [ - "0x9d52c32589d73041F9f0EcfEb1bac6d29d6Fa6C2" - ], + "senders": ["0x0479EF52C3E8d0CEcf42EB5aF8190e0a3765b278"], + "recipients": ["0x9d52c32589d73041F9f0EcfEb1bac6d29d6Fa6C2"], "accountId": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x28a4660fefa1a4e5b674f9b2415d03f8f29e84bdecfc6d6f1dadf253a95fc0b1", "blockHeight": 55663551, @@ -4219,293 +2403,26 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "latestDate": 1718888400000 }, "DAY": { "balances": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ], "latestDate": 1718834400000 }, "WEEK": { - "balances": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], + "balances": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "latestDate": 1718488800000 } }, @@ -4521,194 +2438,75 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 0, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, + 0, 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, 5000000000000000000 ], "latestDate": 1718888400000 }, "DAY": { "balances": [ - 0, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, - 5000000000000000000, + 0, 5000000000000000000, 5000000000000000000, 5000000000000000000, + 5000000000000000000, 5000000000000000000, 5000000000000000000, 5000000000000000000 ], "latestDate": 1718834400000 }, "WEEK": { - "balances": [ - 0, - 5000000000000000000 - ], + "balances": [0, 5000000000000000000], "latestDate": 1718488800000 } }, @@ -4719,12 +2517,8 @@ "id": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+polygon%2Ferc20%2F(pos)~!underscore!~dai~!underscore!~stablecoin-0xd416c29c4cdb0c44d62e6ee7f264203de7d0c758c788251ddd7b1b2cc4ad2d8b-IN-i0", "hash": "0xd416c29c4cdb0c44d62e6ee7f264203de7d0c758c788251ddd7b1b2cc4ad2d8b", "type": "IN", - "senders": [ - "0x4258A05DBA420A398bcdFB389E4250759b4223ea" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], + "senders": ["0x4258A05DBA420A398bcdFB389E4250759b4223ea"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], "accountId": "js:2:polygon:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+polygon%2Ferc20%2F(pos)~!underscore!~dai~!underscore!~stablecoin", "blockHash": "0x8ca45da3e5fcd4d315aee40ee83524c1d02d6bd95506db69fe6d32c783532a68", "blockHeight": 58116208, @@ -23311,4 +21105,4 @@ "lastUpdateTime": 1718890893518 } } -} \ No newline at end of file +} diff --git a/apps/ledger-live-desktop/tests/userdata/speculos-tests-app.json b/apps/ledger-live-desktop/tests/userdata/speculos-tests-app.json index 71a17699a500..a4495588bf2a 100644 --- a/apps/ledger-live-desktop/tests/userdata/speculos-tests-app.json +++ b/apps/ledger-live-desktop/tests/userdata/speculos-tests-app.json @@ -58,11 +58,7 @@ }, "apps": [] }, - "devicesModelList": [ - "stax", - "nanoX", - "nanoSP" - ], + "devicesModelList": ["stax", "nanoX", "nanoSP"], "lastSeenCustomImage": { "size": 0, "hash": "" @@ -500,10 +496,7 @@ "tx": "https://blockchain.info/btc/tx/$hash" } ], - "keywords": [ - "btc", - "bitcoin" - ], + "keywords": ["btc", "bitcoin"], "explorerId": "btc" } }, @@ -1148,10 +1141,7 @@ "token": "https://etherscan.io/token/$contractAddress?a=$address" } ], - "keywords": [ - "eth", - "ethereum" - ], + "keywords": ["eth", "ethereum"], "explorerId": "eth" } }, @@ -3181,12 +3171,8 @@ "id": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:-XZC67MN4LBGL3XWLCGNMVOXO6MSMO7SWV5NTK6G5AE3OTY54QEPA-IN", "hash": "XZC67MN4LBGL3XWLCGNMVOXO6MSMO7SWV5NTK6G5AE3OTY54QEPA", "type": "IN", - "senders": [ - "WARN666I6ITOTBIFMYOOYDAT2JA63QQO2Y6MJCNER5YAF4L6MQO7W6SCAM" - ], - "recipients": [ - "HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU" - ], + "senders": ["WARN666I6ITOTBIFMYOOYDAT2JA63QQO2Y6MJCNER5YAF4L6MQO7W6SCAM"], + "recipients": ["HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU"], "accountId": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:", "blockHash": null, "blockHeight": 39732554, @@ -3202,12 +3188,8 @@ "id": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:-XYJFE7WTKJX4OXYQDHBYVZFZDTFGNAJJM6NEZYLUOEE4RSRMLMPA-IN", "hash": "XYJFE7WTKJX4OXYQDHBYVZFZDTFGNAJJM6NEZYLUOEE4RSRMLMPA", "type": "IN", - "senders": [ - "VE6FCIUVY3LU7FX4ET5QBC6W5BQVWBYIX6XA7VFH3SILNKV47T7OZ333AA" - ], - "recipients": [ - "HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU" - ], + "senders": ["VE6FCIUVY3LU7FX4ET5QBC6W5BQVWBYIX6XA7VFH3SILNKV47T7OZ333AA"], + "recipients": ["HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU"], "accountId": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:", "blockHash": null, "blockHeight": 39732548, @@ -3223,12 +3205,8 @@ "id": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:-KH52AA5F3C4CVLFAJ6G5GAEEKUO63OE3YBX2VZOETH4BKRI4L3JQ-FEES", "hash": "KH52AA5F3C4CVLFAJ6G5GAEEKUO63OE3YBX2VZOETH4BKRI4L3JQ", "type": "FEES", - "senders": [ - "JUED7SLSML75KLEUUY3XKZ64TQZLPZ74HQQ7LKNW25DXZPFUC3ADGCUY2A" - ], - "recipients": [ - "HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU" - ], + "senders": ["JUED7SLSML75KLEUUY3XKZ64TQZLPZ74HQQ7LKNW25DXZPFUC3ADGCUY2A"], + "recipients": ["HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU"], "accountId": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:", "blockHash": null, "blockHeight": 39732461, @@ -3244,12 +3222,8 @@ "id": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:-CVRWSGBIKWKHRWWPWKEDFS4EK65YRPUSJFFA76YLXBYJFNKXLXGA-OPT_IN", "hash": "CVRWSGBIKWKHRWWPWKEDFS4EK65YRPUSJFFA76YLXBYJFNKXLXGA", "type": "OPT_IN", - "senders": [ - "HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU" - ], - "recipients": [ - "HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU" - ], + "senders": ["HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU"], + "recipients": ["HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU"], "accountId": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:", "blockHash": null, "blockHeight": 39732442, @@ -3265,12 +3239,8 @@ "id": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:-IY5LC6CQKW7LGO5SS54N42SQBEQ5QSG32NEVRNELHVWSQAOUNLRQ-IN", "hash": "IY5LC6CQKW7LGO5SS54N42SQBEQ5QSG32NEVRNELHVWSQAOUNLRQ", "type": "IN", - "senders": [ - "EFNDKIMSO3KBJOUTGYNBBZAXLZM6OH7E7YZC43QQ3UUKLY43CWFLC2BXT4" - ], - "recipients": [ - "HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU" - ], + "senders": ["EFNDKIMSO3KBJOUTGYNBBZAXLZM6OH7E7YZC43QQ3UUKLY43CWFLC2BXT4"], + "recipients": ["HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU"], "accountId": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:", "blockHash": null, "blockHeight": 39280936, @@ -3290,283 +3260,50 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66260389, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496 + 0, 66260389, 66260389, 66260389, 66260389, 66260389, 66260389, 66260389, 66260389, + 66260389, 66260389, 66260389, 66260389, 66260389, 66260389, 66260389, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, + 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 66260389, - 66260389, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, - 66259496, + 0, 66260389, 66260389, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496, 66259496 ], "latestDate": 1722117600000 @@ -3602,12 +3339,8 @@ "id": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:+312769-KH52AA5F3C4CVLFAJ6G5GAEEKUO63OE3YBX2VZOETH4BKRI4L3JQ-IN", "hash": "KH52AA5F3C4CVLFAJ6G5GAEEKUO63OE3YBX2VZOETH4BKRI4L3JQ", "type": "IN", - "senders": [ - "JUED7SLSML75KLEUUY3XKZ64TQZLPZ74HQQ7LKNW25DXZPFUC3ADGCUY2A" - ], - "recipients": [ - "HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU" - ], + "senders": ["JUED7SLSML75KLEUUY3XKZ64TQZLPZ74HQQ7LKNW25DXZPFUC3ADGCUY2A"], + "recipients": ["HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU"], "accountId": "js:2:algorand:HQ6YJWSVG3KVRE56V6UGWMUJLDVNPQUNXJBY7VJ56VMNMGIKVDTC7JEKOU:+312769", "blockHash": null, "blockHeight": 39732461, @@ -3649,12 +3382,8 @@ "id": "js:2:bitcoin:xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB:native_segwit-240876da9a80b15d379af3f72d9881184bf80f32f2cee9b72834e0ec3d788b19-IN", "hash": "240876da9a80b15d379af3f72d9881184bf80f32f2cee9b72834e0ec3d788b19", "type": "IN", - "senders": [ - "bc1qgdhkyajg2k95hqx85z3ndugh0ufhz0nk03ffq0" - ], - "recipients": [ - "bc1qmkhvthj7lrxlpfm4gj3e0ww0a5v3p3dy5a85fv" - ], + "senders": ["bc1qgdhkyajg2k95hqx85z3ndugh0ufhz0nk03ffq0"], + "recipients": ["bc1qmkhvthj7lrxlpfm4gj3e0ww0a5v3p3dy5a85fv"], "accountId": "js:2:bitcoin:xpub6DM4oxVnZiePFvQMu1RJLQwWUzZQP3UNaLqrGcbJQkAJZYdiRoRivHULWoYN3zBYU4mJRpM3WrGaqo1kS8Q2XFfd9E3QEc9P3MKHwbHz9LB:native_segwit", "blockHash": "00000000000000000001165e07b3df13b3c40b54dd017a9a92bbe4be06e2775b", "blockHeight": 838601, @@ -3673,340 +3402,41 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205 + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205 + 0, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205, - 6205 + 0, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, 6205, + 6205, 6205, 6205 ], "latestDate": 1722117600000 } @@ -4161,12 +3591,8 @@ "id": "js:2:bitcoin_cash:xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR:-f7758e6e2b537c91b96ad0d75dff72c5cca0f04decd38e6552f3bad2603b4454-IN", "hash": "f7758e6e2b537c91b96ad0d75dff72c5cca0f04decd38e6552f3bad2603b4454", "type": "IN", - "senders": [ - "qqtm7vyxveyymdxyerrfe2w8ygcwtmuhqcjc0s9mvc" - ], - "recipients": [ - "qzgs32vj540akut0m2yu8m8hdg7vtumnlcr778gr5y" - ], + "senders": ["qqtm7vyxveyymdxyerrfe2w8ygcwtmuhqcjc0s9mvc"], + "recipients": ["qzgs32vj540akut0m2yu8m8hdg7vtumnlcr778gr5y"], "accountId": "js:2:bitcoin_cash:xpub6CtL4Q4KQv9sXHTNa19FvCuNNtp89xA6BCJhkLWR3eFbKLJEGokWPMxPvynFKv5LweU1oFufGxH2gTqu1FA2vegUtrFETqoSay1nkrYbpSR:", "blockHash": "0000000000000000009a9009b9609b3b57e514ec7681d2c6eb70bd44ca3ce3e9", "blockHeight": 847910, @@ -4185,284 +3611,47 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448 + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, + 0, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, + 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448, - 3030448 + 0, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448, 3030448 ], "latestDate": 1722117600000 } @@ -4635,12 +3824,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-ca716f4736eaf5c24f0e9190c7173408c7a46c925e10c76cb4488d14278235ac-IN", "hash": "ca716f4736eaf5c24f0e9190c7173408c7a46c925e10c76cb4488d14278235ac", "type": "IN", - "senders": [ - "tb1qhxjdvd53z73r3e3kdn2nt8h2lqayw93jhr43rw" - ], - "recipients": [ - "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z" - ], + "senders": ["tb1qhxjdvd53z73r3e3kdn2nt8h2lqayw93jhr43rw"], + "recipients": ["tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "000000000000000cebb4e30283a056706c8e456ed76e6503a0be8abd70701d19", "blockHeight": 2815481, @@ -4654,12 +3839,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0-OUT", "hash": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", "type": "OUT", - "senders": [ - "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", "blockHeight": 2815479, @@ -4673,12 +3854,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4-OUT", "hash": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", "type": "OUT", - "senders": [ - "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", "blockHeight": 2815479, @@ -4692,12 +3869,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e-OUT", "hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", "type": "OUT", - "senders": [ - "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", "blockHeight": 2815460, @@ -4711,12 +3884,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd-OUT", "hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", "type": "OUT", - "senders": [ - "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", "blockHeight": 2815460, @@ -4730,12 +3899,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601-OUT", "hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", "type": "OUT", - "senders": [ - "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", "blockHeight": 2815460, @@ -4753,9 +3918,7 @@ "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz" ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "00000000000000176ff48d54445b1ef7e934f1ef13f03c6144a963e789982542", "blockHeight": 2815454, @@ -4774,9 +3937,7 @@ "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun" ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", "blockHeight": 2815444, @@ -4790,12 +3951,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea-OUT", "hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", "type": "OUT", - "senders": [ - "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", "blockHeight": 2815444, @@ -4809,12 +3966,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075-OUT", "hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", "type": "OUT", - "senders": [ - "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "0000000000000007f533a45f5f92a4d1ca52850333132a79dac787109f2445db", "blockHeight": 2815108, @@ -4828,12 +3981,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f-OUT", "hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", "type": "OUT", - "senders": [ - "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "00000000000000f1ab393053a5b2e3e948458b40ec204de53b869478845f3565", "blockHeight": 2812143, @@ -4847,12 +3996,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955-IN", "hash": "db6b8183e8c8bed2551de17045e30600b8552496fe9a3db869abfe5be432f955", "type": "IN", - "senders": [ - "tb1pxvwvelj9p6ug7vxxqvdq8r8hd7vlgp0w45ety53a5juzt9cffl6q2haz3p" - ], - "recipients": [ - "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z" - ], + "senders": ["tb1pxvwvelj9p6ug7vxxqvdq8r8hd7vlgp0w45ety53a5juzt9cffl6q2haz3p"], + "recipients": ["tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "000000000000009bb4143dffff985f5750400d6b5b691e982daec9efab2b78da", "blockHeight": 2812062, @@ -4866,12 +4011,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c-OUT", "hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", "type": "OUT", - "senders": [ - "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "000000000000008e9b0cd4eb69f924afa9112a12ed35f4c5d3a862757099ff7a", "blockHeight": 2812060, @@ -4885,12 +4026,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7-OUT", "hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", "type": "OUT", - "senders": [ - "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "00000000000000df392c19e655e3cb90065767f8cb52a60b087e8bef4a3d2fd4", "blockHeight": 2810662, @@ -4904,12 +4041,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450-OUT", "hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", "type": "OUT", - "senders": [ - "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "000000000000029c1d61c5accc2cf0bb4122b5adffa2016a6e7c315eea9a5ba5", "blockHeight": 2808871, @@ -4927,9 +4060,7 @@ "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y" ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "00000000000002300b019883058de5064a4adcf02fc613bcdc45fcbfab38c0fd", "blockHeight": 2808759, @@ -4943,12 +4074,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd-OUT", "hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", "type": "OUT", - "senders": [ - "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "0000000000000338630f87263192a22fed26a325824009fc04bc306d4c00e6c3", "blockHeight": 2808748, @@ -4962,12 +4089,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8-OUT", "hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", "type": "OUT", - "senders": [ - "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "0000000000000055c5690cb5ba47beda5d40a8e7e0bea4519a183b9f1f20ef8c", "blockHeight": 2808681, @@ -4985,9 +4108,7 @@ "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh" ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "00000000000002d0e8c9b1fd3a5a499d5c684060025e9d56797e2cb81089ca47", "blockHeight": 2808671, @@ -5001,12 +4122,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938-OUT", "hash": "4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938", "type": "OUT", - "senders": [ - "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - ], - "recipients": [ - "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9" - ], + "senders": ["tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk"], + "recipients": ["tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "000000000024db40b1e77e9beefd5323e65b1d34b767f3654bc0eada1390a7f3", "blockHeight": 2586529, @@ -5020,12 +4137,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902-OUT", "hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", "type": "OUT", - "senders": [ - "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - ], - "recipients": [ - "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9" - ], + "senders": ["tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk"], + "recipients": ["tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "0000000000000000aed4c9f3d04c79b3446e87e6a4e9cb84986631a9d97c97ad", "blockHeight": 2586394, @@ -5043,9 +4156,7 @@ "tb1q3vv6s54gr7ftmlz3rdafvhszqfltntnvwrkwvg", "tb1qx0psqru962yk34u8zjhzumzvgjv2c7uz35ag2j" ], - "recipients": [ - "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - ], + "recipients": ["tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", "blockHeight": 2586076, @@ -5059,12 +4170,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-dcb3b6a870d0a1b87b7dd05201b2fa16ae6965c08f46eae024dc8300c4e6e44e-IN", "hash": "dcb3b6a870d0a1b87b7dd05201b2fa16ae6965c08f46eae024dc8300c4e6e44e", "type": "IN", - "senders": [ - "tb1p2aa8fs4d9h4yeu3e2q6jt7xkzqgp6klc2vavhhf5njzm0vrh3tyq46g67p" - ], - "recipients": [ - "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - ], + "senders": ["tb1p2aa8fs4d9h4yeu3e2q6jt7xkzqgp6klc2vavhhf5njzm0vrh3tyq46g67p"], + "recipients": ["tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", "blockHeight": 2586076, @@ -5078,12 +4185,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f-IN", "hash": "3a81b0e315a34becc02405fde400f79c4afe2c5f07d855df21f59576a662419f", "type": "IN", - "senders": [ - "tb1pecshtass32dxesxf69rqerrmrvp8a9va46wgk8r9rfzx2ev4g06ss2jx4s" - ], - "recipients": [ - "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - ], + "senders": ["tb1pecshtass32dxesxf69rqerrmrvp8a9va46wgk8r9rfzx2ev4g06ss2jx4s"], + "recipients": ["tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", "blockHeight": 2586076, @@ -5097,12 +4200,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612-IN", "hash": "b4ea6cb6403312cb02fbdb0a4a98ea1fe9221672eebdbba3c68f17f5cc8d4612", "type": "IN", - "senders": [ - "tb1pc5e5pnt766qp9d6dlhufp0nern556u0cv9klg6w40t23xkg6882s27yhy7" - ], - "recipients": [ - "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - ], + "senders": ["tb1pc5e5pnt766qp9d6dlhufp0nern556u0cv9klg6w40t23xkg6882s27yhy7"], + "recipients": ["tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "000000000000124ee9e7aec1fc00e0b343920f6047b11e7fc42fd28f9d84042d", "blockHeight": 2586076, @@ -5116,12 +4215,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd-IN", "hash": "292bf44de2a8713cbcbceccfeab33f0478ebfb73cb1e8b09252942d849bcfcdd", "type": "IN", - "senders": [ - "tb1p7qhtmu58ks34ddgwlfxzqfye7el4hzugga07hg9stz9kpr8k36uqan4rq3" - ], - "recipients": [ - "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh" - ], + "senders": ["tb1p7qhtmu58ks34ddgwlfxzqfye7el4hzugga07hg9stz9kpr8k36uqan4rq3"], + "recipients": ["tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "000000000028f602c2e9c2146b394392270365a394e9c0287c0605207999eeb7", "blockHeight": 2585947, @@ -5135,12 +4230,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474-IN", "hash": "185b469ab015a7ed5e102543912dc268c1509e3beb222b48cffc6d6e5213f474", "type": "IN", - "senders": [ - "tb1pl3pp4x2cxleskff939kd9f90a8ycfprq0w7jlahceafy0cqa9h8qgum8gs" - ], - "recipients": [ - "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - ], + "senders": ["tb1pl3pp4x2cxleskff939kd9f90a8ycfprq0w7jlahceafy0cqa9h8qgum8gs"], + "recipients": ["tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "00000000015a1f0b83a9c6d145ba3421390ef72f65628fd4b088220649184087", "blockHeight": 2585850, @@ -5154,12 +4245,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725-IN", "hash": "cdc50ee65b9557642190cfe1d6a4f2b89ade172fa5c15addce1a4d242434d725", "type": "IN", - "senders": [ - "tb1ppzsd0ady8k9wcz578a8gphpz746s6vp483zd8phgqx3vy080kwtqqplapn" - ], - "recipients": [ - "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - ], + "senders": ["tb1ppzsd0ady8k9wcz578a8gphpz746s6vp483zd8phgqx3vy080kwtqqplapn"], + "recipients": ["tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "00000000015a1f0b83a9c6d145ba3421390ef72f65628fd4b088220649184087", "blockHeight": 2585850, @@ -5173,12 +4260,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit-1756ba36fae7733fdffc0c5314d556a00b5990564a61d811c0938981ef830cbc-IN", "hash": "1756ba36fae7733fdffc0c5314d556a00b5990564a61d811c0938981ef830cbc", "type": "IN", - "senders": [ - "tb1qt0h29js84pupjarxgxf9uc57vh3v3euj7r5fak" - ], - "recipients": [ - "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - ], + "senders": ["tb1qt0h29js84pupjarxgxf9uc57vh3v3euj7r5fak"], + "recipients": ["tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXWp8aADB7QdJT5EtcxPaC1St9Nc5W3jDCpMG4UaoPvtBHsyYSXgJu77oKanZUgU6HvzYt8D1bomxM9mGN2ZPNorDPbVyNH6h:native_segwit", "blockHash": "00000000009c8bb50b2b9bf034e2bc1e228cb0d12439e803579d5767041fee64", "blockHeight": 2585849, @@ -5197,340 +4280,53 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166 + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 493501, - 512253, - 1529017, - 1529017, - 1529017, - 1525785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1522785, - 1500683, - 1500683, - 1492708, - 1492708, - 1492708, - 1492708, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1476496, - 1469079, - 1469079, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166 + 0, 493501, 512253, 1529017, 1529017, 1529017, 1525785, 1522785, 1522785, 1522785, + 1522785, 1522785, 1522785, 1522785, 1522785, 1522785, 1522785, 1522785, 1522785, + 1522785, 1522785, 1500683, 1500683, 1492708, 1492708, 1492708, 1492708, 1476496, + 1476496, 1476496, 1476496, 1476496, 1476496, 1476496, 1469079, 1469079, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 1529017, - 1522785, - 1522785, - 1492708, - 1476496, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166, - 1135166 + 0, 1529017, 1522785, 1522785, 1492708, 1476496, 1135166, 1135166, 1135166, 1135166, + 1135166, 1135166, 1135166, 1135166, 1135166, 1135166, 1135166 ], "latestDate": 1722117600000 } @@ -8232,12 +7028,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0-IN", "hash": "f6ee9f6eb35fc2abb14ef246ee6faa3105f3af657cb447761df79743553605c0", "type": "IN", - "senders": [ - "tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1qdy7rh3f3d4v08sx50zwwuv29m206qnu3nehj7j"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", "blockHeight": 2815479, @@ -8251,12 +7043,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4-IN", "hash": "507107ff04a3185909cc891cddf906d98c8a4695bd53f38e7c62008ff54788e4", "type": "IN", - "senders": [ - "tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1qfljcl04fyxq3zm8x7gkduca43gjxn65uky07t5"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "000000000000000d6cd593acf0cc74f17f3a51a620e5531e8d313fc82c4cdf63", "blockHeight": 2815479, @@ -8270,12 +7058,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd-IN", "hash": "58d21eece42b687fb811cf5fffae58f31454f5339b22a93f3407405c997b48fd", "type": "IN", - "senders": [ - "tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1qgjuuqs4pkaukww7dgdukm84cg8n4h9dv0t0j8y"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", "blockHeight": 2815460, @@ -8289,12 +7073,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601-IN", "hash": "2ae182dc9906bafa7404e51be13b8bdfd3b2a408ae0efade21fa74ed234a4601", "type": "IN", - "senders": [ - "tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1qarvwul33lpgqagp8pkr7qxuu7yvm3mwpxe8e0z"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", "blockHeight": 2815460, @@ -8308,12 +7088,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e-IN", "hash": "e1f91c616f34b1048e635fbe10b1d715e953ad982c73f8f252a3d59d6caa985e", "type": "IN", - "senders": [ - "tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1qta50jk5cs3cece26p26tepqenjs96zk9y02mdm"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "00000000000000164ad9408b1ed139e3a7fba0540348f081f8c392e767fbd7ab", "blockHeight": 2815460, @@ -8331,9 +7107,7 @@ "tb1qs2ex5k9z7t96fgkp4l5c2cs4lfdf64unymwe79", "tb1qmk6cuwhq9r3jjckq56ctv896fn2erg7fpnm0xz" ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "00000000000000176ff48d54445b1ef7e934f1ef13f03c6144a963e789982542", "blockHeight": 2815454, @@ -8352,9 +7126,7 @@ "tb1qjnl3f0lahssa62qvn6vm2fruejfc6e9x2r8c5z", "tb1qhvearg8afglty8rsmfta8j06el0qetxcyu2jun" ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", "blockHeight": 2815444, @@ -8368,12 +7140,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea-IN", "hash": "762b59398db2fbe6fa05acc1d6cbf6e604b90f2b89c133ae4f75c209231008ea", "type": "IN", - "senders": [ - "tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1qnf94s85m3qqfu2pgda2pdz5f6xfjxg6p4z9qkh"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "000000000000000d27a09b060bc13bbdde3cedd1a9aeee148c80d70d95ca82fd", "blockHeight": 2815444, @@ -8387,12 +7155,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075-IN", "hash": "8379c3eaa8a7f7a9c03ba1b524ccc4d2f08aae17ecdcaded7155580b7ef1e075", "type": "IN", - "senders": [ - "tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1q3hmw2894p6fhencz0syk9v6kyh4heyffm4hz4f"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "0000000000000007f533a45f5f92a4d1ca52850333132a79dac787109f2445db", "blockHeight": 2815108, @@ -8406,12 +7170,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f-IN", "hash": "0e8a6df126537d221321767439406d360f173d79519285aef04ab04602c6c52f", "type": "IN", - "senders": [ - "tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1qslf059lsyurz6k0kgvjj9rw8pr75f0ts2a66a3"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "00000000000000f1ab393053a5b2e3e948458b40ec204de53b869478845f3565", "blockHeight": 2812143, @@ -8425,12 +7185,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c-IN", "hash": "b1ff365785bbf941091d37cf6f32f8d9e3368568c0ae348989abd46c78b3af1c", "type": "IN", - "senders": [ - "tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1q5q9ted8tnvj36x6ndl82p7wze4zhs6gxrt8rdu"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "000000000000008e9b0cd4eb69f924afa9112a12ed35f4c5d3a862757099ff7a", "blockHeight": 2812060, @@ -8444,12 +7200,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7-IN", "hash": "9dbd0423ef356dda8ab6a7d44d8bdce6f4cf9e7a8852b23214a4f356919103f7", "type": "IN", - "senders": [ - "tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1qqrx4qnvvrltfqkjz2rya0xxx7fhjgv55fmpgmy"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "00000000000000df392c19e655e3cb90065767f8cb52a60b087e8bef4a3d2fd4", "blockHeight": 2810662, @@ -8463,12 +7215,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450-IN", "hash": "12ebf312956be518826b9989b6925e41c1e86b54a1a655726aee9a73326b8450", "type": "IN", - "senders": [ - "tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1qr4ckf85dgctzmaca7zg9z2xj5q5qx75x0uvpz0"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "000000000000029c1d61c5accc2cf0bb4122b5adffa2016a6e7c315eea9a5ba5", "blockHeight": 2808871, @@ -8486,9 +7234,7 @@ "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0", "tb1q0rczr7cpz48jq3747z8ez8x2hyx2xunwr0lm5y" ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "00000000000002300b019883058de5064a4adcf02fc613bcdc45fcbfab38c0fd", "blockHeight": 2808759, @@ -8502,12 +7248,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd-IN", "hash": "5351b3a1d1c2f832ab5236a6bb472c19c0554dcfe82067408ae9ff02abae53bd", "type": "IN", - "senders": [ - "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "0000000000000338630f87263192a22fed26a325824009fc04bc306d4c00e6c3", "blockHeight": 2808748, @@ -8521,12 +7263,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8-IN", "hash": "ea0071ab676dc35448c7ba6b275aad69dfa98e0346f846dd529d7322c88aabf8", "type": "IN", - "senders": [ - "tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0" - ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "senders": ["tb1q3jd92cul6mwm28p4an8kh52e7j9lekmymy9sl0"], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "0000000000000055c5690cb5ba47beda5d40a8e7e0bea4519a183b9f1f20ef8c", "blockHeight": 2808681, @@ -8544,9 +7282,7 @@ "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk", "tb1qx86xqtf50d287uq89unn0w373k5drmavf75vkh" ], - "recipients": [ - "tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5" - ], + "recipients": ["tb1qyjr6hsx3wvsdq998zvn5cusqkdyfvvnpnsz6a5"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "00000000000002d0e8c9b1fd3a5a499d5c684060025e9d56797e2cb81089ca47", "blockHeight": 2808671, @@ -8560,12 +7296,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938-IN", "hash": "4b403adf0e193ca294f6418f517b1ac1358d9f5a2ceb53d8863e92227a7c1938", "type": "IN", - "senders": [ - "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - ], - "recipients": [ - "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9" - ], + "senders": ["tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk"], + "recipients": ["tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "000000000024db40b1e77e9beefd5323e65b1d34b767f3654bc0eada1390a7f3", "blockHeight": 2586529, @@ -8579,12 +7311,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902-IN", "hash": "f814740b726f810bd50379900502d959d73cbb238d244dd13e66146e34aef902", "type": "IN", - "senders": [ - "tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk" - ], - "recipients": [ - "tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9" - ], + "senders": ["tb1q4f72grgmp440rreuhlgy6jm9rx5gyg9rd6nqnk"], + "recipients": ["tb1q8kkh3hkwaq6frqrfdkhpmxzzhe5dtclzwlu4y9"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "0000000000000000aed4c9f3d04c79b3446e87e6a4e9cb84986631a9d97c97ad", "blockHeight": 2586394, @@ -8598,12 +7326,8 @@ "id": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit-88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983-IN", "hash": "88b684a739e415beaedf0a791a0ab836cd788bc44340ac5c3a6b72ad567ff983", "type": "IN", - "senders": [ - "tb1pnxgxlsurkxrqxmq00phy4kk268jct6afxehy8nc2dqfx2saa5hhql7sxed" - ], - "recipients": [ - "tb1q8gc0lnlcyf8sqld5swnf2wzyh5x9k66dtruf8x" - ], + "senders": ["tb1pnxgxlsurkxrqxmq00phy4kk268jct6afxehy8nc2dqfx2saa5hhql7sxed"], + "recipients": ["tb1q8gc0lnlcyf8sqld5swnf2wzyh5x9k66dtruf8x"], "accountId": "js:2:bitcoin_testnet:tpubDC7wv6guCdWXa6wCnx9FzxAZaUVecXsBE7ggCB9dFLzruaLPFkujz6PWTVFv64AbK6rCtSUFCWrSo9Vb9PAMp65UV8dfdjinzv1SA3KWjk7:native_segwit", "blockHash": "0000000000000023aa2bf7e7113c947e0fa80c7465726a43519fe9dc696b2ecc", "blockHeight": 2585852, @@ -8622,340 +7346,45 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 2990, - 2990, - 2990, - 2990, - 2990, - 3990, - 4990, - 4990, - 4990, - 4990, - 4990, - 4990, - 4990, - 4990, - 4990, - 4990, - 4990, - 4990, - 4990, - 4990, - 9990, - 9990, - 10990, - 10990, - 10990, - 10990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 12990, - 13990, - 13990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990 + 0, 2990, 2990, 2990, 2990, 2990, 3990, 4990, 4990, 4990, 4990, 4990, 4990, 4990, + 4990, 4990, 4990, 4990, 4990, 4990, 4990, 9990, 9990, 10990, 10990, 10990, 10990, + 12990, 12990, 12990, 12990, 12990, 12990, 12990, 13990, 13990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 2990, - 4990, - 4990, - 10990, - 12990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990, - 21990 + 0, 2990, 4990, 4990, 10990, 12990, 21990, 21990, 21990, 21990, 21990, 21990, 21990, + 21990, 21990, 21990, 21990 ], "latestDate": 1722117600000 } @@ -10238,331 +8667,57 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 25000000, - 25000000, - 25000000, - 25000000, - 25000000, - 25000000, - 25000000, - 25000000, - 25000000, - 25000000, - 25000000, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, + 0, 25000000, 25000000, 25000000, 25000000, 25000000, 25000000, 25000000, 25000000, + 25000000, 25000000, 25000000, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 25000000, - 25000000, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859, - 23831859 + 0, 25000000, 25000000, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, + 23831859, 23831859, 23831859, 23831859, 23831859, 23831859, 23831859 ], "latestDate": 1722117600000 } @@ -11286,318 +9441,51 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000 + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000 + 0, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000, - 1000000 + 0, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, 1000000, + 1000000, 1000000, 1000000, 1000000 ], "latestDate": 1722117600000 } @@ -12286,12 +10174,8 @@ "id": "js:2:cosmos:cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae:-FBC96D4F849930063DAC2D9660F592817A6FF24811555A761B2BBD392CE9095A-IN", "hash": "FBC96D4F849930063DAC2D9660F592817A6FF24811555A761B2BBD392CE9095A", "type": "IN", - "senders": [ - "cosmos153lf4zntqt33a4v0sm5cytrxyqn78q7kz8j8x5" - ], - "recipients": [ - "cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae" - ], + "senders": ["cosmos153lf4zntqt33a4v0sm5cytrxyqn78q7kz8j8x5"], + "recipients": ["cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae"], "accountId": "js:2:cosmos:cosmos18sdl4lvyjtvpjkkt5smglux9sf4phdcpaddfae:", "blockHash": null, "blockHeight": 20638604, @@ -12311,284 +10195,47 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398 + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, + 0, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, + 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398, - 1386398 + 0, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398, 1386398 ], "latestDate": 1722117600000 } @@ -12627,12 +10274,8 @@ "id": "js:2:dogecoin:dgub8rnMzj6dCjccckREps3dZ6wLn4GCV5WBubRKauwHRkkiXnynnM7ra1AX5CDjxsC2fDiAbJyDJqaYmKKRbdmBrSbasMuetbWuCUfU7sD9UQP:-90ae01a130d08e61e3eb7fff42c9eab205257452f02f4f79d9f9c7dc07ff2415-OUT", "hash": "90ae01a130d08e61e3eb7fff42c9eab205257452f02f4f79d9f9c7dc07ff2415", "type": "OUT", - "senders": [ - "DBVznU3wBA3N8tzUB2PLdw5MaT2roRbh6N" - ], - "recipients": [ - "DKbRbGP5spDCaRSGLjWGWZGbhE19nQ1LoK" - ], + "senders": ["DBVznU3wBA3N8tzUB2PLdw5MaT2roRbh6N"], + "recipients": ["DKbRbGP5spDCaRSGLjWGWZGbhE19nQ1LoK"], "accountId": "js:2:dogecoin:dgub8rnMzj6dCjccckREps3dZ6wLn4GCV5WBubRKauwHRkkiXnynnM7ra1AX5CDjxsC2fDiAbJyDJqaYmKKRbdmBrSbasMuetbWuCUfU7sD9UQP:", "blockHash": "287ec746d036068aa4d6248c1aa83a7217467fb975c4c1def7b5557af3b69776", "blockHeight": 5317961, @@ -12646,12 +10289,8 @@ "id": "js:2:dogecoin:dgub8rnMzj6dCjccckREps3dZ6wLn4GCV5WBubRKauwHRkkiXnynnM7ra1AX5CDjxsC2fDiAbJyDJqaYmKKRbdmBrSbasMuetbWuCUfU7sD9UQP:-77f7f3f85a7e54238fdc91c4892cea7f6cbda178d6db705b58079a4847290906-IN", "hash": "77f7f3f85a7e54238fdc91c4892cea7f6cbda178d6db705b58079a4847290906", "type": "IN", - "senders": [ - "D9FaQKMqam8tGbqkhh6PaZHxXEUByRssgV" - ], - "recipients": [ - "DBVznU3wBA3N8tzUB2PLdw5MaT2roRbh6N" - ], + "senders": ["D9FaQKMqam8tGbqkhh6PaZHxXEUByRssgV"], + "recipients": ["DBVznU3wBA3N8tzUB2PLdw5MaT2roRbh6N"], "accountId": "js:2:dogecoin:dgub8rnMzj6dCjccckREps3dZ6wLn4GCV5WBubRKauwHRkkiXnynnM7ra1AX5CDjxsC2fDiAbJyDJqaYmKKRbdmBrSbasMuetbWuCUfU7sD9UQP:", "blockHash": "6605e3991ab5696e7476cd2a6459906394dc1fafccb0fe42b4fe9319229bb2aa", "blockHeight": 5308940, @@ -12670,191 +10309,42 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 0, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 3978974816 + 0, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, + 4000000000, 4000000000, 3978974816 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, - 4000000000, + 0, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000, 4000000000 ], "latestDate": 1722463200000 }, "WEEK": { - "balances": [ - 0, - 4000000000 - ], + "balances": [0, 4000000000], "latestDate": 1722117600000 } }, @@ -13123,12 +10613,8 @@ "id": "js:2:dogecoin:dgub8rnMzj6dCjccfcgiQaJs35ejZewXuNQ1CEZQw5kzNWtzzvUW36172TN7kTxDcKcL1BiV49fE956F7Zg1FcoHsZ94nwgKWZjKmcDNFaTrTkW:-90ae01a130d08e61e3eb7fff42c9eab205257452f02f4f79d9f9c7dc07ff2415-IN", "hash": "90ae01a130d08e61e3eb7fff42c9eab205257452f02f4f79d9f9c7dc07ff2415", "type": "IN", - "senders": [ - "DBVznU3wBA3N8tzUB2PLdw5MaT2roRbh6N" - ], - "recipients": [ - "DKbRbGP5spDCaRSGLjWGWZGbhE19nQ1LoK" - ], + "senders": ["DBVznU3wBA3N8tzUB2PLdw5MaT2roRbh6N"], + "recipients": ["DKbRbGP5spDCaRSGLjWGWZGbhE19nQ1LoK"], "accountId": "js:2:dogecoin:dgub8rnMzj6dCjccfcgiQaJs35ejZewXuNQ1CEZQw5kzNWtzzvUW36172TN7kTxDcKcL1BiV49fE956F7Zg1FcoHsZ94nwgKWZjKmcDNFaTrTkW:", "blockHash": "287ec746d036068aa4d6248c1aa83a7217467fb975c4c1def7b5557af3b69776", "blockHeight": 5317961, @@ -13146,22 +10632,15 @@ "spendableBalance": "10000000", "balanceHistoryCache": { "HOUR": { - "balances": [ - 0, - 10000000 - ], + "balances": [0, 10000000], "latestDate": 1722502800000 }, "DAY": { - "balances": [ - 0 - ], + "balances": [0], "latestDate": 1722463200000 }, "WEEK": { - "balances": [ - 0 - ], + "balances": [0], "latestDate": 1722117600000 } }, @@ -13325,12 +10804,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3b9cde274468b519996d10dafab78ac30c16d7374e504ab2e4329dcd34ea6e69-OUT", "hash": "0x3b9cde274468b519996d10dafab78ac30c16d7374e504ab2e4329dcd34ea6e69", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0xdbC93cfB3AC9C7AC2E9308146d54148414927D48" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0xdbC93cfB3AC9C7AC2E9308146d54148414927D48"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x1d62261fd171795d318d6dabffb44efa23892f800d381d5c93c4948b8d2b53bc", "blockHeight": 20133098, @@ -13346,12 +10821,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x5311d74df27e94825b5e8fba09a426e95e9b0098171c4ff4f82243241384b8dd-OUT", "hash": "0x5311d74df27e94825b5e8fba09a426e95e9b0098171c4ff4f82243241384b8dd", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x3212e5Eb0b889881D6Fc193F26c87312eD796e3A" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x3212e5Eb0b889881D6Fc193F26c87312eD796e3A"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xb8cf3be6fac56b8e2515b6755845609d9e1b0315c38025561539319707a7bb1c", "blockHeight": 19976206, @@ -13367,12 +10838,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc47123d53a94bebd75112865df680c019c00435441a76feb63eea923ac8e5d22-OUT", "hash": "0xc47123d53a94bebd75112865df680c019c00435441a76feb63eea923ac8e5d22", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x9910feAD77AA34342a11431AcCe18536a75C1bce" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x9910feAD77AA34342a11431AcCe18536a75C1bce"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x8ad54ea0499814d9132ce35d8150fe1ac7d6e591f9a5f762f4369e413e1350cf", "blockHeight": 19976110, @@ -13388,12 +10855,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x8e14e9ea83962fdcb7f4df29a274b9a95299398b656ad257882d6aa3e0ee5559-OUT", "hash": "0x8e14e9ea83962fdcb7f4df29a274b9a95299398b656ad257882d6aa3e0ee5559", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0xA01ee92F03Db6E2663A0dBea49971FFb47419c93" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0xA01ee92F03Db6E2663A0dBea49971FFb47419c93"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x18230d48a485e2dc10c65ac8489f0df1cee8d9774cd1f49dad94d0f61ed91381", "blockHeight": 19976060, @@ -13409,12 +10872,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf670b36ae494c9e328e40012e819d36ef8c3bd1b8e4a5ceb13909ed8bdb2e90e-OUT", "hash": "0xf670b36ae494c9e328e40012e819d36ef8c3bd1b8e4a5ceb13909ed8bdb2e90e", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0xD37BbE5744D730a1d98d8DC97c42F0Ca46aD7146" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0xD37BbE5744D730a1d98d8DC97c42F0Ca46aD7146"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x456cc434af21c58d45488af2d4ffa02715dcd10982101f2712450c8b13cec14c", "blockHeight": 19975950, @@ -13430,12 +10889,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x12d09eea0443d9c21634c1d8b6222d0e3d8c4070b8149454b53fd1ef93e60e64-OUT", "hash": "0x12d09eea0443d9c21634c1d8b6222d0e3d8c4070b8149454b53fd1ef93e60e64", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x59861265f201088607E691dC3e4E317197cc99D7" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x59861265f201088607E691dC3e4E317197cc99D7"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xd8d08b009f7d38acf8929a13b66fdd895e8ff58b7880d5c542ddb2e1d61a7278", "blockHeight": 19975783, @@ -13451,12 +10906,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x8335908658142154cd38d884729dfe450ecce1e92b6b823439a00c071502f5d1-IN", "hash": "0x8335908658142154cd38d884729dfe450ecce1e92b6b823439a00c071502f5d1", "type": "IN", - "senders": [ - "0x04F479967bBc039E060d6292e5dE86f249291bbc" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], + "senders": ["0x04F479967bBc039E060d6292e5dE86f249291bbc"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xc6d10cc76084ce8f75a0fec63f140c902660ba26adfe3d8385ae8442a6e4f6a8", "blockHeight": 19969391, @@ -13472,12 +10923,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x48831ea0324ee5921c0dca9dfad014be64867734ad76144822d35c853c87bf54-OUT", "hash": "0x48831ea0324ee5921c0dca9dfad014be64867734ad76144822d35c853c87bf54", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xda6807e9b25b1b8f5f4119429868eca096543e2146f2410421fd9d5bb2b6011c", "blockHeight": 19666996, @@ -13493,12 +10940,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec-NONE", "hash": "0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec", "type": "NONE", - "senders": [ - "0x84c9A36721eB21da9244Fe50177180D8f4a7cAF7" - ], - "recipients": [ - "0xdAC17F958D2ee523a2206206994597C13D831ec7" - ], + "senders": ["0x84c9A36721eB21da9244Fe50177180D8f4a7cAF7"], + "recipients": ["0xdAC17F958D2ee523a2206206994597C13D831ec7"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x16bdbd15adbb60b78f5e98abf9ae9ef4fd3a8db5654b50cf79c83d5fdd49cb58", "blockHeight": 19659636, @@ -13514,12 +10957,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa4849c653dcaa518bff5afae4ca1fc7ebeaabde79a18eabadbe6e5a823926057-IN", "hash": "0xa4849c653dcaa518bff5afae4ca1fc7ebeaabde79a18eabadbe6e5a823926057", "type": "IN", - "senders": [ - "0x4F008D1A92295d09294B778188Be9a74659515D3" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], + "senders": ["0x4F008D1A92295d09294B778188Be9a74659515D3"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x7701a0ad05d3522d610269400bcaa3090b0f0929222f3ea4ec6be15e699bd7c3", "blockHeight": 19625186, @@ -13540,340 +10979,96 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 616385555132247, - 616385555132247, - 616385555132247, - 616385555132247, - 616385555132247, - 616385555132247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 52374061322285250, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, + 0, 616385555132247, 616385555132247, 616385555132247, 616385555132247, + 616385555132247, 616385555132247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 374061322285247, + 52374061322285250, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 25709258828065880, + 25709258828065880, 25709258828065880, 25709258828065880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 616385555132247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 374061322285247, - 25709258828065880, - 25709258828065880, - 25709258828065880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880, - 23405814577004880 + 0, 616385555132247, 374061322285247, 374061322285247, 374061322285247, + 374061322285247, 374061322285247, 374061322285247, 25709258828065880, + 25709258828065880, 25709258828065880, 23405814577004880, 23405814577004880, + 23405814577004880, 23405814577004880, 23405814577004880, 23405814577004880 ], "latestDate": 1722117600000 } @@ -13889,334 +11084,53 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000 + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, + 0, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000, - 5000000 + 0, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, + 5000000, 5000000, 5000000, 5000000, 5000000, 5000000, 5000000 ], "latestDate": 1722117600000 } @@ -14228,12 +11142,8 @@ "id": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~-0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec-IN-i0", "hash": "0x6c8578a49bb09b1d1006f1d6bbf93292703665cabfd9e04238a6f244b4b5afec", "type": "IN", - "senders": [ - "0x84c9A36721eB21da9244Fe50177180D8f4a7cAF7" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], + "senders": ["0x84c9A36721eB21da9244Fe50177180D8f4a7cAF7"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], "accountId": "js:2:ethereum:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:+ethereum%2Ferc20%2Fusd~!underscore!~tether~!underscore!~~!underscore!~erc20~!underscore!~", "blockHash": "0x16bdbd15adbb60b78f5e98abf9ae9ef4fd3a8db5654b50cf79c83d5fdd49cb58", "blockHeight": 19659636, @@ -14285,12 +11195,8 @@ "id": "js:2:ethereum:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x48831ea0324ee5921c0dca9dfad014be64867734ad76144822d35c853c87bf54-IN", "hash": "0x48831ea0324ee5921c0dca9dfad014be64867734ad76144822d35c853c87bf54", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xda6807e9b25b1b8f5f4119429868eca096543e2146f2410421fd9d5bb2b6011c", "blockHeight": 19666996, @@ -14311,333 +11217,80 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000 + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000 + 0, 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000, - 10000000000000 + 0, 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000, + 10000000000000, 10000000000000, 10000000000000, 10000000000000, 10000000000000 ], "latestDate": 1722117600000 } @@ -14668,12 +11321,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3a028e2b1966adfe529f772af4447cea4d3f043d785c4cc486f47080287b7887-NONE", "hash": "0x3a028e2b1966adfe529f772af4447cea4d3f043d785c4cc486f47080287b7887", "type": "NONE", - "senders": [ - "0xdA7c6763F80330B41c4461904aA111a81c3c0786" - ], - "recipients": [ - "0xd1d51D361E41E15FF02f89317cd18369d420Dc9c" - ], + "senders": ["0xdA7c6763F80330B41c4461904aA111a81c3c0786"], + "recipients": ["0xd1d51D361E41E15FF02f89317cd18369d420Dc9c"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xe597ee5867fb19c775b88fba2c151ce7d16f424ae5ab8a09c6c7da1f1c424da1", "blockHeight": 1628387, @@ -14689,12 +11338,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x620ba005bfe72a8a7bfa4fabcf1b4b159df10d2e272411cb2854b5bc21d6ba66-OUT", "hash": "0x620ba005bfe72a8a7bfa4fabcf1b4b159df10d2e272411cb2854b5bc21d6ba66", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x55fb72707e0295e2d37f77b58d0b53775bd184fdf65fecd58c4906f4180db6ce", "blockHeight": 1560434, @@ -14710,12 +11355,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x511dcca538a67e2c02bfd1bc0e7ee0cc9e12118212404d91b94581f7f2ec874f-OUT", "hash": "0x511dcca538a67e2c02bfd1bc0e7ee0cc9e12118212404d91b94581f7f2ec874f", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xf99de44538594bda7d6a0a65c725a01cf05c6a04b615b4a2c335a3b6829bdf7b", "blockHeight": 1560412, @@ -14731,12 +11372,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xeff24640a3d439a555003b86bf3d1beabadd9cfdba1aabaa0b5b5b67934b09ff-OUT", "hash": "0xeff24640a3d439a555003b86bf3d1beabadd9cfdba1aabaa0b5b5b67934b09ff", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x6ad8f4178cddc558cad1e07b49389018ab8f9da557510553a9ec8e9c1b06775a", "blockHeight": 1560395, @@ -14752,12 +11389,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x39ea0c6149cb2d3a94b8fcda223ff1196a0acc96bb7070939640e2cc28d8b157-OUT", "hash": "0x39ea0c6149cb2d3a94b8fcda223ff1196a0acc96bb7070939640e2cc28d8b157", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xfde65a49a7668c829be400f3f03bd5612eb1c85b5ced52dc622734a9805b0664", "blockHeight": 1560295, @@ -14773,12 +11406,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3b9aef731d4189f8027ec4839d5a4fe2a3b660f0e903b07e4bbda8daee70c076-OUT", "hash": "0x3b9aef731d4189f8027ec4839d5a4fe2a3b660f0e903b07e4bbda8daee70c076", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xf574faaa86156d6e4f4db1080e00a85f4b9929f7ec8db8adbee2a799780be8de", "blockHeight": 1560191, @@ -14794,12 +11423,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x28fc380295ae2acb0fe07eb0522622d8b3ef4379a1378085eef92891d5b2b8bf-OUT", "hash": "0x28fc380295ae2acb0fe07eb0522622d8b3ef4379a1378085eef92891d5b2b8bf", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xee1f72a9c2114689fab428c1617a59707661b7d01d8737817da084393cc7f600", "blockHeight": 1554777, @@ -14815,12 +11440,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x15da63011255c72f09906ba57bedd22c2a96754fff7530df1fa5527610873739-OUT", "hash": "0x15da63011255c72f09906ba57bedd22c2a96754fff7530df1fa5527610873739", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x5d653f14cc8c75276030f1885901acca229c0afbfc43d4b7466436134b907b7e", "blockHeight": 1554739, @@ -14836,12 +11457,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xda0195815368d7323092dcb37b8cb80701bb7b5475953c2dc676ea35097a106c-OUT", "hash": "0xda0195815368d7323092dcb37b8cb80701bb7b5475953c2dc676ea35097a106c", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x083db5e511240b1172947d202a553e8fd7dffb47e58d6bb13e8e623e0323e285", "blockHeight": 1554729, @@ -14857,12 +11474,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe24edd9096b37c9624993d9884863825c5f9f03bbedd68da22fb4af959e72252-OUT", "hash": "0xe24edd9096b37c9624993d9884863825c5f9f03bbedd68da22fb4af959e72252", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x41ac3aaa263d4bf4309e84e2c973b51a439774770f4de0cc7766439daa15af50", "blockHeight": 1548235, @@ -14878,12 +11491,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x96aeb461e32a8875f3723e2ff72d10edf562cd8788f827edffb92bb7b00012b9-OUT", "hash": "0x96aeb461e32a8875f3723e2ff72d10edf562cd8788f827edffb92bb7b00012b9", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x175ecf6a1cf55dca8e63eab6919aac6522eec66421bf394ae4efd12802057ab6", "blockHeight": 1548210, @@ -14899,12 +11508,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xde9e6b215600e421a8ee80fcfd2c18fc004df9742ce982856ea9f519d4ecd969-OUT", "hash": "0xde9e6b215600e421a8ee80fcfd2c18fc004df9742ce982856ea9f519d4ecd969", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x6146ba9b45a8a39063dfd971b9eae280a60135844022dcd22e0fafd1c16ce9ba", "blockHeight": 1547997, @@ -14920,12 +11525,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3f5199964daffa5368d56c5583b1a4f93ddc99a49b3ea50265bd78297c9c99fa-OUT", "hash": "0x3f5199964daffa5368d56c5583b1a4f93ddc99a49b3ea50265bd78297c9c99fa", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x35a30ff5cbe68b39d6c6298b11d890034652b1457cf7022f7bb6b9f1884424d5", "blockHeight": 1547977, @@ -14941,12 +11542,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x25bcb36b72a933dd60d5c6386f6022dbedc3dc891f792b74fe510ffbd1c54003-OUT", "hash": "0x25bcb36b72a933dd60d5c6386f6022dbedc3dc891f792b74fe510ffbd1c54003", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x076fd41ee893232b17e682b858e78c4cdf0bc852cbc09812c688508f69f6fe6c", "blockHeight": 1547968, @@ -14962,12 +11559,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x6444049af8714b1224c85b7c8b3236bf0fdc59aa876ceec4c8618a9d19eff539-OUT", "hash": "0x6444049af8714b1224c85b7c8b3236bf0fdc59aa876ceec4c8618a9d19eff539", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x07723d2a4b136ae2f315f3daa4360687e8d2727288776a72d06e5376f80490f6", "blockHeight": 1547957, @@ -14983,12 +11576,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x6c21e025c2d99fb17beee4123662d42e1487ea6a333b07e80db32478889d7f62-OUT", "hash": "0x6c21e025c2d99fb17beee4123662d42e1487ea6a333b07e80db32478889d7f62", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x77a205e4d6a3bf01a14a9b01f11c08a500ad2469252c5dd6ecbcc63eaf97031e", "blockHeight": 1547893, @@ -15004,12 +11593,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xb10696b47452f79fbfe0df44bbc7d5267809bd7ecee0435c1523f16e91c2165c-OUT", "hash": "0xb10696b47452f79fbfe0df44bbc7d5267809bd7ecee0435c1523f16e91c2165c", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x9c6bdd0994112fe26d8568881e8f48c611a8068d198a72bcf9827e1e2217a907", "blockHeight": 1547810, @@ -15025,12 +11610,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x048b58681131808e7f7180a745bb5476266a649de10fce94d9fc1af67796852f-OUT", "hash": "0x048b58681131808e7f7180a745bb5476266a649de10fce94d9fc1af67796852f", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xb24c49d7e8f324e57d8312b0072ea8268da5cd36099dcff5762764a81772fdc1", "blockHeight": 1547795, @@ -15046,12 +11627,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x0c2173d88c4daa0c41c1a741ba634727e5a7efe6e1204c16f5354dc5d48b2041-OUT", "hash": "0x0c2173d88c4daa0c41c1a741ba634727e5a7efe6e1204c16f5354dc5d48b2041", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x3178e8cb108a847232528aa7c9994f49fba788f790854729148f469b54e26af5", "blockHeight": 1547780, @@ -15067,12 +11644,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x22b73aefe75d9514bca52680f09f1743533b4cd9028afc9cb4899dc61d63c896-OUT", "hash": "0x22b73aefe75d9514bca52680f09f1743533b4cd9028afc9cb4899dc61d63c896", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x3a654ed1c31b2c44025f8d3a222298c5aba2bfd9d9c756dd5f957321cd807d2a", "blockHeight": 1543145, @@ -15088,12 +11661,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa33c02b924df1faf78a2bd5a5b22ebbbe06a117f4021657f07c60cb4130ba010-OUT", "hash": "0xa33c02b924df1faf78a2bd5a5b22ebbbe06a117f4021657f07c60cb4130ba010", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xf4123ff7d0798e150bdcb88720e4f5e5400c76692e03d1d930bb9de67859687e", "blockHeight": 1543143, @@ -15109,12 +11678,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3dfae3a0416574878970d867b5a555eca4aa4ef56ae74cc335789722fb60e7fb-OUT", "hash": "0x3dfae3a0416574878970d867b5a555eca4aa4ef56ae74cc335789722fb60e7fb", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x689662513eb6bc84560c1a912b243abb07d00c09d4028ca57b09cf4295b6ca7f", "blockHeight": 1536304, @@ -15130,12 +11695,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x12312e7823cbea90821db15b921f4ced2e8bc0e19d95e4210c8aab91fb35b445-OUT", "hash": "0x12312e7823cbea90821db15b921f4ced2e8bc0e19d95e4210c8aab91fb35b445", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xab36a70a37bdb2ac6bd92810e3cf3e9c232cc7ac6cffdb7e2215be5ef6035686", "blockHeight": 1490307, @@ -15151,12 +11712,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x81c43f8d6dd8596072ae9321d151a5702a95d75a41de2292915266088744c333-OUT", "hash": "0x81c43f8d6dd8596072ae9321d151a5702a95d75a41de2292915266088744c333", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x822d4fac967e51b69117970cfaa201b2304caf47f35eaa21c2685879681d851d", "blockHeight": 1489820, @@ -15172,12 +11729,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x718da74cf57052a35bb67e31a230ccd34bc385c49f88f5ea63dd26c381d51952-OUT", "hash": "0x718da74cf57052a35bb67e31a230ccd34bc385c49f88f5ea63dd26c381d51952", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x8493847deb100d9235c54873b0412426d9021cd7e7f649da59d9a294bf8f86d9", "blockHeight": 1462236, @@ -15193,12 +11746,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x700ea3fdd6a7a8e5bad7320eec957fd3371345502fbe6a85f9f477b665317e89-OUT", "hash": "0x700ea3fdd6a7a8e5bad7320eec957fd3371345502fbe6a85f9f477b665317e89", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x00a453fe1b6b72fea2c42611e9b4e008c769cc499905b2004868103f4a09fcd4", "blockHeight": 1461612, @@ -15214,12 +11763,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf2ca67ad3dea0789f4d7fb457da9595048e174d06e4d66d87158fe09d016ca77-OUT", "hash": "0xf2ca67ad3dea0789f4d7fb457da9595048e174d06e4d66d87158fe09d016ca77", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x3c339365132ddd29ffb88bbce4b5b78d96fce5fa06b41c196fbe205df7f3d128", "blockHeight": 1450563, @@ -15235,12 +11780,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x126080b034b5d171a0509e34042f7b57484e623c706f8a83874ac8f996a6ade8-OUT", "hash": "0x126080b034b5d171a0509e34042f7b57484e623c706f8a83874ac8f996a6ade8", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x3c10ac72a2d317512890bd69777287248d7c02c34aa07e034a36d5ff39aaba1d", "blockHeight": 1450562, @@ -15256,12 +11797,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf8c5966e40856b9558cfb5d1eed7c976d281b706dc1b9682db5993cfa66190c4-OUT", "hash": "0xf8c5966e40856b9558cfb5d1eed7c976d281b706dc1b9682db5993cfa66190c4", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x89ca50fda65dbf057b860806c8d810c30febcd443b6f3b9d245a98e62537f137", "blockHeight": 1450129, @@ -15277,12 +11814,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xcc3dd59d804c96b514827c73eb167edc50c7f0c41c564fb2ae7316988f91c076-OUT", "hash": "0xcc3dd59d804c96b514827c73eb167edc50c7f0c41c564fb2ae7316988f91c076", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x1eb65f11ce8b2bbb4fb569ea965c4b22bcab197089729ad6be563f592cdfd5e3", "blockHeight": 1449930, @@ -15298,12 +11831,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe679452d4c263cf809b2465ba627771d7ec17977b5c5b7c609291eee47a085b2-OUT", "hash": "0xe679452d4c263cf809b2465ba627771d7ec17977b5c5b7c609291eee47a085b2", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x4313210ac8e1fb437a38753c6d89c878543e4ddea0acc86086850b61035d8f40", "blockHeight": 1449915, @@ -15319,12 +11848,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x61de4775b995ab1e6b6e6e19c37af9d553e7f35158800935e4bd23cda7feaa93-OUT", "hash": "0x61de4775b995ab1e6b6e6e19c37af9d553e7f35158800935e4bd23cda7feaa93", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x64ac6392516416b986138899ea6dbf385a1d741f93d077d5a94e52c4327cb32d", "blockHeight": 1449738, @@ -15340,12 +11865,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc97d9b73dcc01fc392ddf60d70c329e025da110d885e3449da07d2d8e7513bfb-OUT", "hash": "0xc97d9b73dcc01fc392ddf60d70c329e025da110d885e3449da07d2d8e7513bfb", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xc80ccf901d63cadafeac0c14a9af39f8a7dc1f1ef724570b6d2d923c85944dac", "blockHeight": 1449597, @@ -15361,12 +11882,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x96d7f6c317bcd537793350f9faf4c188e39db5eefd0f71973755fd65db2574d8-OUT", "hash": "0x96d7f6c317bcd537793350f9faf4c188e39db5eefd0f71973755fd65db2574d8", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x32f2b445c0079a7c28ed7c3dee666ae1f40bc6317c20aa68dc469c5d50cbe649", "blockHeight": 1449589, @@ -15382,12 +11899,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x0f236bef396b0a1af958a59da209908186aeb62e4654f5ec6fd78b265b5e7b7b-OUT", "hash": "0x0f236bef396b0a1af958a59da209908186aeb62e4654f5ec6fd78b265b5e7b7b", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xd8601d2da9b4bf83d840e88e7d8d71f24373505778b904a1101647cd24965530", "blockHeight": 1448212, @@ -15403,12 +11916,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x36d4c6d43dc6708be1ecd12693bd60a413201fd4b18e427d52339c3522d4c934-OUT", "hash": "0x36d4c6d43dc6708be1ecd12693bd60a413201fd4b18e427d52339c3522d4c934", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x689b650b220cc13705a42f20d42f04d286f9ee009ac297451171292ad084bd4e", "blockHeight": 1442121, @@ -15424,12 +11933,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc1b059188c597f904bacfa7a4d8412b226971005b728a73b3e993567742a06c2-OUT", "hash": "0xc1b059188c597f904bacfa7a4d8412b226971005b728a73b3e993567742a06c2", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x155d8dc76dc82932d453ed039a8748d5461800631c93ba079920c87435d12c98", "blockHeight": 1442103, @@ -15445,12 +11950,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3b4c7de82d97960473d5cabf7ff56621f5e30f73a9968c2b8e62066b2f82cd00-OUT", "hash": "0x3b4c7de82d97960473d5cabf7ff56621f5e30f73a9968c2b8e62066b2f82cd00", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x727202242bf1709873ca97df1c9a5bf9d5a6029c45b9c16a68120bb4a12b8571", "blockHeight": 1442096, @@ -15466,12 +11967,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x11752dd8229198ee238b12ea924bdc23a355c8da13d523ed36f06f13b4be5500-OUT", "hash": "0x11752dd8229198ee238b12ea924bdc23a355c8da13d523ed36f06f13b4be5500", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x45cdbb8ad641fb8fe781d26fe122fbea51c08d562ff56c64f4b943de50b639d6", "blockHeight": 1442091, @@ -15487,12 +11984,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3196a528e7622b703b412fc6b5dc74524646638551adc3ca5cf040429a1a8a90-OUT", "hash": "0x3196a528e7622b703b412fc6b5dc74524646638551adc3ca5cf040429a1a8a90", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x3dbb005c8102f3536b63ef2eca594162f79cc4f05affd98eb59e62637956088d", "blockHeight": 1441872, @@ -15508,12 +12001,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x2da67ae076d80a245db660f3687b81380bf632d09967053aafdfd2ae86c1caef-OUT", "hash": "0x2da67ae076d80a245db660f3687b81380bf632d09967053aafdfd2ae86c1caef", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x4dc38934ae07417026a9eed26520ac4b72382623064731e032b7467e5f955af8", "blockHeight": 1423075, @@ -15529,12 +12018,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe0601b2149dff79bf5ee6705939be159f0dc57b9296550c8b81c3309ca045c7b-OUT", "hash": "0xe0601b2149dff79bf5ee6705939be159f0dc57b9296550c8b81c3309ca045c7b", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x12255f0115c0cdaac742e59dd5916cdea3096469c23ca60b55198e227622c86c", "blockHeight": 1422955, @@ -15550,12 +12035,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x4d96bfa58c0ba19bcbab94ec965542f3fee1520fd8c2a5f0f223231b8aa8dbb4-OUT", "hash": "0x4d96bfa58c0ba19bcbab94ec965542f3fee1520fd8c2a5f0f223231b8aa8dbb4", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xa86307488a98d1546fcdefff7ccbe2e5c2b724fd09363653f141ec00debad1be", "blockHeight": 1409289, @@ -15571,12 +12052,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa389f6007fd10a13d141e1ef02c852f2e89a0fc72e914cc135dcfb188d4f301a-OUT", "hash": "0xa389f6007fd10a13d141e1ef02c852f2e89a0fc72e914cc135dcfb188d4f301a", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x8052aa2a74378584f5c5790c787e9a576fb28ac959348a77ee7d07c33c20d4d9", "blockHeight": 1409282, @@ -15592,12 +12069,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x55d9cde2c34595dda3aaa6742c1230eb80d0349904cefed2a5f89b14a8833502-OUT", "hash": "0x55d9cde2c34595dda3aaa6742c1230eb80d0349904cefed2a5f89b14a8833502", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xa4b5370fd4db21c2adc2e23b4ca255b4e2dce8823e8ae35ad404c0ed56ee2ce7", "blockHeight": 1409273, @@ -15613,12 +12086,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x2e9e55a51187dfa1eb59a5da205ff1d9b3b366801641db6aabce5ebc063da47b-OUT", "hash": "0x2e9e55a51187dfa1eb59a5da205ff1d9b3b366801641db6aabce5ebc063da47b", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x44a4214eba5c0f220295c47b7925a6b494d4592e0e014fbda8635404dcb73512", "blockHeight": 1409163, @@ -15634,12 +12103,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x859fd5555a15ed7314b958c4c7b58c60bcfd0960cd358f387975e33d0096ac41-OUT", "hash": "0x859fd5555a15ed7314b958c4c7b58c60bcfd0960cd358f387975e33d0096ac41", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xf61fbf52512e5f8d3b0cf2e3bf461d43bb3a777c7a091d0cfaa43133727987ca", "blockHeight": 1409112, @@ -15655,12 +12120,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x73bdf7f4c3eca74a75d851ff7810427a7006e608371af0dc495f87f91ea86f1d-OUT", "hash": "0x73bdf7f4c3eca74a75d851ff7810427a7006e608371af0dc495f87f91ea86f1d", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x051c61b2086046d4b5bbeb7d7573bc1a3bf332504dff0c61f5465022c5aa6a7f", "blockHeight": 1397247, @@ -15676,12 +12137,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xbc5e07605d9c5937cd94ee95663c4de986db769d89c7a50589d2e0606074e108-OUT", "hash": "0xbc5e07605d9c5937cd94ee95663c4de986db769d89c7a50589d2e0606074e108", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x0bb4079d00e4077e91b8a0e794803c85cf8b142d1b62b838d3aeb562f3a70b74", "blockHeight": 1365218, @@ -15697,12 +12154,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa104c88f2607f7469b5f5508de62162f21f316715ba5494b22506d99045c5b9c-OUT", "hash": "0xa104c88f2607f7469b5f5508de62162f21f316715ba5494b22506d99045c5b9c", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x76398f6f1f72c0348aaf1784b823d9fa203f32c9137108ec86ba43666d7fc485", "blockHeight": 1365214, @@ -15718,12 +12171,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x32cf01deadb899014b9d2f76d0fddb58c725db16f1b457831a559bf91291ed18-OUT", "hash": "0x32cf01deadb899014b9d2f76d0fddb58c725db16f1b457831a559bf91291ed18", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x86f460faf002a93077fb4110b56c40e7d6ca2d8577ed31d66e5b3fbd5d7a0d42", "blockHeight": 1365195, @@ -15739,12 +12188,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x9f562f008aa8dfbae8b25641a723662d4b8dadd268f2978ab526c4b4429947d6-OUT", "hash": "0x9f562f008aa8dfbae8b25641a723662d4b8dadd268f2978ab526c4b4429947d6", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x509aa13f3c94be4e2918c4b08bb6616ba188c14b643656a2872e3aceb6fdd3fb", "blockHeight": 1365177, @@ -15760,12 +12205,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x59b36836e528f73d61874b2c607a30a3fbbe58e32de6011df2a8ce77f673f046-OUT", "hash": "0x59b36836e528f73d61874b2c607a30a3fbbe58e32de6011df2a8ce77f673f046", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xf91ca75ac65618d78c0b6696cf8e753a70fc0ffa64c4861d96c737bbf29a00b4", "blockHeight": 1364835, @@ -15781,12 +12222,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x7dbc92bc7892bcb9fe9235b613df4c3176dfb47cfba908b538ea9b070ac7329b-OUT", "hash": "0x7dbc92bc7892bcb9fe9235b613df4c3176dfb47cfba908b538ea9b070ac7329b", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x388ca8211c8a32b950c8ae3bde9d79e46a037e27af579f17f97cf702b1c1e6ef", "blockHeight": 1364819, @@ -15802,12 +12239,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x58c5e3134e1e158c69362e5af6c003a4cc37b1b5b783d844489ee0befca32a53-OUT", "hash": "0x58c5e3134e1e158c69362e5af6c003a4cc37b1b5b783d844489ee0befca32a53", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xa5a7f900303d644cbf9a4049d1f0b01a828bb45c8b42cb7ef7192675b954b910", "blockHeight": 1364661, @@ -15823,12 +12256,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x6f9e06cb749dc28e60127d9b58a2ff967bfa666cbd3e3be8cfc03b41823b20db-OUT", "hash": "0x6f9e06cb749dc28e60127d9b58a2ff967bfa666cbd3e3be8cfc03b41823b20db", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x5f886fac5a1e68afde4c4258d22ca22c6cc2871b8c900174df51d57f4c809a27", "blockHeight": 1363910, @@ -15844,12 +12273,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x1498a38e4564942997c6778b77208085343507f6898cedd2d5b054b5b4534739-OUT", "hash": "0x1498a38e4564942997c6778b77208085343507f6898cedd2d5b054b5b4534739", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x558bdbe2bf09ae3e14f7bf7d4f850e586d50d89684455efed8d34eb64d080909", "blockHeight": 1359060, @@ -15865,12 +12290,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x456b194be1fea8b9209e294f786e17f3980a30982b1aa0c7ce7177061b2eb7a1-OUT", "hash": "0x456b194be1fea8b9209e294f786e17f3980a30982b1aa0c7ce7177061b2eb7a1", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xb51e77e7169af6f83364ee1ac83244f2416345905e5fb3bdd45a4d4f4bca743e", "blockHeight": 1358372, @@ -15886,12 +12307,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe14c217b0ed858e948eeab1390bcfb7adc22c5ddcdacdf4c58a1e08f851e35c2-OUT", "hash": "0xe14c217b0ed858e948eeab1390bcfb7adc22c5ddcdacdf4c58a1e08f851e35c2", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xa3fa419c2d172f496e5df45530b296fe4e7980fc10e50d8d38915eafe1d3b15e", "blockHeight": 1358368, @@ -15907,12 +12324,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa05132198ac05c9bbaa93815d21f684b36c0114b3ec94d3898d0d537dc559bdd-OUT", "hash": "0xa05132198ac05c9bbaa93815d21f684b36c0114b3ec94d3898d0d537dc559bdd", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x1e144a1e18e0ff3eca7b8435ea94307eb08a5f29e7a41a0ae809da870a34cb05", "blockHeight": 1358203, @@ -15928,12 +12341,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x767b3f49b327f8973441b6d3da3e936caaf1ed75db7fd3b16640781a537c2ea2-OUT", "hash": "0x767b3f49b327f8973441b6d3da3e936caaf1ed75db7fd3b16640781a537c2ea2", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x0278573c04d30488ee991565c449054251c42e763a00a277778f750caa167dc3", "blockHeight": 1358198, @@ -15949,12 +12358,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf9a360549970073fcb3d61e1937483ac8776274e5dc70e07031421b055eee86c-OUT", "hash": "0xf9a360549970073fcb3d61e1937483ac8776274e5dc70e07031421b055eee86c", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x32bfc07b9d44845bffce6b0a54bba2cf19128c0bd1a3e58bd1274c1e5221c9e4", "blockHeight": 1358122, @@ -15970,12 +12375,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x4f8b5ac603712dae2b1ea3c41947bcf1bf0be85e3a0e0cfe5145d03043d4d521-OUT", "hash": "0x4f8b5ac603712dae2b1ea3c41947bcf1bf0be85e3a0e0cfe5145d03043d4d521", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x045fec036fa7345aa09b8af9cc982e5a868e22e49dace15e98a6852e685d4d9b", "blockHeight": 1357346, @@ -15991,12 +12392,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x90cdd88c6252475183b4b2a44071978339119d9e4ea049f7a9dd65a87839ce84-OUT", "hash": "0x90cdd88c6252475183b4b2a44071978339119d9e4ea049f7a9dd65a87839ce84", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xacd629cdbea82216c33ba44b4e1c83c905a9a90dad705ab4f240a590077ccb9d", "blockHeight": 1357270, @@ -16012,12 +12409,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa891e881818af7570d73fccf52802a957dbfbde3d2b46dfac8aaf0b1238e347b-OUT", "hash": "0xa891e881818af7570d73fccf52802a957dbfbde3d2b46dfac8aaf0b1238e347b", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x5ad8db1d474e9d6101f70c464bdbd8f842cb746c70872c6b63427450299c9b44", "blockHeight": 1357267, @@ -16033,12 +12426,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x2815a9cb2900227812d5ddf5dac20dd5311eb720b723e600af68e111ba81676e-OUT", "hash": "0x2815a9cb2900227812d5ddf5dac20dd5311eb720b723e600af68e111ba81676e", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xb9e7d99d816f79188deb85e7c996ee68aef98d8d3671923c3a0bc1e9fc339f12", "blockHeight": 1352544, @@ -16054,12 +12443,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x5c5622aaa4173bef68127a42565e9971577b33c18c4c6dea531711234fe7b6b4-OUT", "hash": "0x5c5622aaa4173bef68127a42565e9971577b33c18c4c6dea531711234fe7b6b4", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xef44280971673302b1a5b08e13472a215bb9c21a8c463c5601e901afcfee8158", "blockHeight": 1326144, @@ -16075,12 +12460,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x46e8357ee53468894a66584d35a33f22c64924b46ca865db313ef8e39bf5962a-OUT", "hash": "0x46e8357ee53468894a66584d35a33f22c64924b46ca865db313ef8e39bf5962a", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x57c1bc247f79444b85a391d4dbf90a52120e4a9847d8750b49100b1492c30374", "blockHeight": 1326142, @@ -16096,12 +12477,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc6d1e2b972393ac28961ec204a94688a294709c2b6e081e250b26731fb41accf-OUT", "hash": "0xc6d1e2b972393ac28961ec204a94688a294709c2b6e081e250b26731fb41accf", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x009ff89ae7bb93ce0f8ba2509e99a351d4d2318600f12d68429262323792d953", "blockHeight": 1326133, @@ -16117,12 +12494,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3a32ced3d4ba961d3b7364008a2a0ef8f46d2abfcd8716613c6ee48f3179a603-IN", "hash": "0x3a32ced3d4ba961d3b7364008a2a0ef8f46d2abfcd8716613c6ee48f3179a603", "type": "IN", - "senders": [ - "0x6Cc9397c3B38739daCbfaA68EaD5F5D77Ba5F455" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], + "senders": ["0x6Cc9397c3B38739daCbfaA68EaD5F5D77Ba5F455"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x90d93ecfb529dffb728d40fe2f43bdb1dd180bce64245b48f411cf5d78ddb942", "blockHeight": 1326124, @@ -16138,12 +12511,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x79badad6d55e2ae48356aa104d9a1b361832bf0388487a3605e489b921ddb082-OUT", "hash": "0x79badad6d55e2ae48356aa104d9a1b361832bf0388487a3605e489b921ddb082", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x93d05599f74a42b0c1e172cd739fca66d2145c5613f2a93bcc24b7c59dd0e9ab", "blockHeight": 1326063, @@ -16159,12 +12528,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x028614b4ba199549debde64a883b2ae5f9e3e66d1ec58e39d4aa9f9abf643c54-OUT", "hash": "0x028614b4ba199549debde64a883b2ae5f9e3e66d1ec58e39d4aa9f9abf643c54", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x78a7da74953541d4eb15b0497e5b29ef7b829bc2f90b54362ca4476e3414cdac", "blockHeight": 1326061, @@ -16180,12 +12545,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x0468dfe8e7ec1e231b1e53703b53935108023b9af8153fe67c7bb5cce0095f18-OUT", "hash": "0x0468dfe8e7ec1e231b1e53703b53935108023b9af8153fe67c7bb5cce0095f18", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x898e95a0d06cd92c02461be406d7a823c6d5dfcc907a1d8a7b0a8eed7e23695c", "blockHeight": 1326050, @@ -16201,12 +12562,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xef91af8c2a0822ecd4341c1a8294b5a6493dc603a23282e66688bfc34952ad58-OUT", "hash": "0xef91af8c2a0822ecd4341c1a8294b5a6493dc603a23282e66688bfc34952ad58", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xdf80f1c3211c95a2b3b1fa45a5f72011ac78c7105abdf050f9474bc88be31482", "blockHeight": 1325836, @@ -16222,12 +12579,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x14139eac4a9d771c08e480cfa72fbb5a7c107c53041414374e72f13e630123aa-OUT", "hash": "0x14139eac4a9d771c08e480cfa72fbb5a7c107c53041414374e72f13e630123aa", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x749e65827d4d4f6991cc7604b69732f08da7886a69ed3d889715528f32688bfa", "blockHeight": 1318759, @@ -16243,12 +12596,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xd6f92ebe60c4887c51d9279df12dbbae4db310092862f1aaeecb665c062aa811-IN", "hash": "0xd6f92ebe60c4887c51d9279df12dbbae4db310092862f1aaeecb665c062aa811", "type": "IN", - "senders": [ - "0xB06D5f081aC6803A815D86385Eba86CE5cf657DB" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], + "senders": ["0xB06D5f081aC6803A815D86385Eba86CE5cf657DB"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x289417dfdbbb5d3f8d3711b175a9bd65f47175a0707c17124ef29227e21325f4", "blockHeight": 1318745, @@ -16264,12 +12613,8 @@ "id": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x97f039d3bbecf3c107ad1b4ec7f6eeee377ef5bc6d261983faef6d283ffaf8a8-IN", "hash": "0x97f039d3bbecf3c107ad1b4ec7f6eeee377ef5bc6d261983faef6d283ffaf8a8", "type": "IN", - "senders": [ - "0x4F008D1A92295d09294B778188Be9a74659515D3" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], + "senders": ["0x4F008D1A92295d09294B778188Be9a74659515D3"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], "accountId": "js:2:ethereum_holesky:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xf9a90dffc3712609cf4c402d944bdeb96a8f1ed405aaed0931e778e565467a23", "blockHeight": 1318741, @@ -16290,339 +12635,124 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, 12340540448638770000 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 10002654878757908000, - 12347611408522086000, - 12347611408522086000, - 12347611408522086000, - 12347611408522086000, - 12347548828128018000, - 12346823644336335000, - 12346140307463266000, - 12346140307463266000, - 12346140307463266000, - 12346140307463266000, - 12346140307463266000, - 12346006934429327000, - 12346006934429327000, - 12345595920435743000, - 12345595920435743000, - 12345448707216960000, - 12345448707216960000, - 12345448707216960000, - 12345085386259569000, - 12344640157059074000, - 12344640157059074000, - 12344121063413752000, - 12344121063413752000, - 12344121063413752000, - 12344121063413752000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343893826613115000, - 12343791918629149000, - 12343639047146910000, - 12342135120767138000, - 12341470768543156000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000 + 0, 10002654878757908000, 12347611408522086000, 12347611408522086000, + 12347611408522086000, 12347611408522086000, 12347548828128018000, + 12346823644336335000, 12346140307463266000, 12346140307463266000, + 12346140307463266000, 12346140307463266000, 12346140307463266000, + 12346006934429327000, 12346006934429327000, 12345595920435743000, + 12345595920435743000, 12345448707216960000, 12345448707216960000, + 12345448707216960000, 12345085386259569000, 12344640157059074000, + 12344640157059074000, 12344121063413752000, 12344121063413752000, + 12344121063413752000, 12344121063413752000, 12343893826613115000, + 12343893826613115000, 12343893826613115000, 12343893826613115000, + 12343893826613115000, 12343893826613115000, 12343893826613115000, + 12343791918629149000, 12343639047146910000, 12342135120767138000, + 12341470768543156000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 12347611408522086000, - 12346140307463266000, - 12345448707216960000, - 12344121063413752000, - 12343893826613115000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, - 12340540448638770000, + 0, 12347611408522086000, 12346140307463266000, 12345448707216960000, + 12344121063413752000, 12343893826613115000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, + 12340540448638770000, 12340540448638770000, 12340540448638770000, 12340540448638770000 ], "latestDate": 1722117600000 @@ -16654,12 +12784,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x620ba005bfe72a8a7bfa4fabcf1b4b159df10d2e272411cb2854b5bc21d6ba66-IN", "hash": "0x620ba005bfe72a8a7bfa4fabcf1b4b159df10d2e272411cb2854b5bc21d6ba66", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x55fb72707e0295e2d37f77b58d0b53775bd184fdf65fecd58c4906f4180db6ce", "blockHeight": 1560434, @@ -16675,12 +12801,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x511dcca538a67e2c02bfd1bc0e7ee0cc9e12118212404d91b94581f7f2ec874f-IN", "hash": "0x511dcca538a67e2c02bfd1bc0e7ee0cc9e12118212404d91b94581f7f2ec874f", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xf99de44538594bda7d6a0a65c725a01cf05c6a04b615b4a2c335a3b6829bdf7b", "blockHeight": 1560412, @@ -16696,12 +12818,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xeff24640a3d439a555003b86bf3d1beabadd9cfdba1aabaa0b5b5b67934b09ff-IN", "hash": "0xeff24640a3d439a555003b86bf3d1beabadd9cfdba1aabaa0b5b5b67934b09ff", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x6ad8f4178cddc558cad1e07b49389018ab8f9da557510553a9ec8e9c1b06775a", "blockHeight": 1560395, @@ -16717,12 +12835,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x39ea0c6149cb2d3a94b8fcda223ff1196a0acc96bb7070939640e2cc28d8b157-IN", "hash": "0x39ea0c6149cb2d3a94b8fcda223ff1196a0acc96bb7070939640e2cc28d8b157", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xfde65a49a7668c829be400f3f03bd5612eb1c85b5ced52dc622734a9805b0664", "blockHeight": 1560295, @@ -16738,12 +12852,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x3b9aef731d4189f8027ec4839d5a4fe2a3b660f0e903b07e4bbda8daee70c076-IN", "hash": "0x3b9aef731d4189f8027ec4839d5a4fe2a3b660f0e903b07e4bbda8daee70c076", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xf574faaa86156d6e4f4db1080e00a85f4b9929f7ec8db8adbee2a799780be8de", "blockHeight": 1560191, @@ -16759,12 +12869,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x28fc380295ae2acb0fe07eb0522622d8b3ef4379a1378085eef92891d5b2b8bf-IN", "hash": "0x28fc380295ae2acb0fe07eb0522622d8b3ef4379a1378085eef92891d5b2b8bf", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xee1f72a9c2114689fab428c1617a59707661b7d01d8737817da084393cc7f600", "blockHeight": 1554777, @@ -16780,12 +12886,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x15da63011255c72f09906ba57bedd22c2a96754fff7530df1fa5527610873739-IN", "hash": "0x15da63011255c72f09906ba57bedd22c2a96754fff7530df1fa5527610873739", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x5d653f14cc8c75276030f1885901acca229c0afbfc43d4b7466436134b907b7e", "blockHeight": 1554739, @@ -16801,12 +12903,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xda0195815368d7323092dcb37b8cb80701bb7b5475953c2dc676ea35097a106c-IN", "hash": "0xda0195815368d7323092dcb37b8cb80701bb7b5475953c2dc676ea35097a106c", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x083db5e511240b1172947d202a553e8fd7dffb47e58d6bb13e8e623e0323e285", "blockHeight": 1554729, @@ -16822,12 +12920,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe24edd9096b37c9624993d9884863825c5f9f03bbedd68da22fb4af959e72252-IN", "hash": "0xe24edd9096b37c9624993d9884863825c5f9f03bbedd68da22fb4af959e72252", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x41ac3aaa263d4bf4309e84e2c973b51a439774770f4de0cc7766439daa15af50", "blockHeight": 1548235, @@ -16843,12 +12937,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x96aeb461e32a8875f3723e2ff72d10edf562cd8788f827edffb92bb7b00012b9-IN", "hash": "0x96aeb461e32a8875f3723e2ff72d10edf562cd8788f827edffb92bb7b00012b9", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x175ecf6a1cf55dca8e63eab6919aac6522eec66421bf394ae4efd12802057ab6", "blockHeight": 1548210, @@ -16864,12 +12954,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xde9e6b215600e421a8ee80fcfd2c18fc004df9742ce982856ea9f519d4ecd969-IN", "hash": "0xde9e6b215600e421a8ee80fcfd2c18fc004df9742ce982856ea9f519d4ecd969", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x6146ba9b45a8a39063dfd971b9eae280a60135844022dcd22e0fafd1c16ce9ba", "blockHeight": 1547997, @@ -16885,12 +12971,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x3f5199964daffa5368d56c5583b1a4f93ddc99a49b3ea50265bd78297c9c99fa-IN", "hash": "0x3f5199964daffa5368d56c5583b1a4f93ddc99a49b3ea50265bd78297c9c99fa", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x35a30ff5cbe68b39d6c6298b11d890034652b1457cf7022f7bb6b9f1884424d5", "blockHeight": 1547977, @@ -16906,12 +12988,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x25bcb36b72a933dd60d5c6386f6022dbedc3dc891f792b74fe510ffbd1c54003-IN", "hash": "0x25bcb36b72a933dd60d5c6386f6022dbedc3dc891f792b74fe510ffbd1c54003", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x076fd41ee893232b17e682b858e78c4cdf0bc852cbc09812c688508f69f6fe6c", "blockHeight": 1547968, @@ -16927,12 +13005,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x6444049af8714b1224c85b7c8b3236bf0fdc59aa876ceec4c8618a9d19eff539-IN", "hash": "0x6444049af8714b1224c85b7c8b3236bf0fdc59aa876ceec4c8618a9d19eff539", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x07723d2a4b136ae2f315f3daa4360687e8d2727288776a72d06e5376f80490f6", "blockHeight": 1547957, @@ -16948,12 +13022,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x6c21e025c2d99fb17beee4123662d42e1487ea6a333b07e80db32478889d7f62-IN", "hash": "0x6c21e025c2d99fb17beee4123662d42e1487ea6a333b07e80db32478889d7f62", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x77a205e4d6a3bf01a14a9b01f11c08a500ad2469252c5dd6ecbcc63eaf97031e", "blockHeight": 1547893, @@ -16969,12 +13039,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xb10696b47452f79fbfe0df44bbc7d5267809bd7ecee0435c1523f16e91c2165c-IN", "hash": "0xb10696b47452f79fbfe0df44bbc7d5267809bd7ecee0435c1523f16e91c2165c", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x9c6bdd0994112fe26d8568881e8f48c611a8068d198a72bcf9827e1e2217a907", "blockHeight": 1547810, @@ -16990,12 +13056,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x048b58681131808e7f7180a745bb5476266a649de10fce94d9fc1af67796852f-IN", "hash": "0x048b58681131808e7f7180a745bb5476266a649de10fce94d9fc1af67796852f", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xb24c49d7e8f324e57d8312b0072ea8268da5cd36099dcff5762764a81772fdc1", "blockHeight": 1547795, @@ -17011,12 +13073,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x0c2173d88c4daa0c41c1a741ba634727e5a7efe6e1204c16f5354dc5d48b2041-IN", "hash": "0x0c2173d88c4daa0c41c1a741ba634727e5a7efe6e1204c16f5354dc5d48b2041", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x3178e8cb108a847232528aa7c9994f49fba788f790854729148f469b54e26af5", "blockHeight": 1547780, @@ -17032,12 +13090,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x22b73aefe75d9514bca52680f09f1743533b4cd9028afc9cb4899dc61d63c896-IN", "hash": "0x22b73aefe75d9514bca52680f09f1743533b4cd9028afc9cb4899dc61d63c896", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x3a654ed1c31b2c44025f8d3a222298c5aba2bfd9d9c756dd5f957321cd807d2a", "blockHeight": 1543145, @@ -17053,12 +13107,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa33c02b924df1faf78a2bd5a5b22ebbbe06a117f4021657f07c60cb4130ba010-IN", "hash": "0xa33c02b924df1faf78a2bd5a5b22ebbbe06a117f4021657f07c60cb4130ba010", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xf4123ff7d0798e150bdcb88720e4f5e5400c76692e03d1d930bb9de67859687e", "blockHeight": 1543143, @@ -17074,12 +13124,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x3dfae3a0416574878970d867b5a555eca4aa4ef56ae74cc335789722fb60e7fb-IN", "hash": "0x3dfae3a0416574878970d867b5a555eca4aa4ef56ae74cc335789722fb60e7fb", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x689662513eb6bc84560c1a912b243abb07d00c09d4028ca57b09cf4295b6ca7f", "blockHeight": 1536304, @@ -17095,12 +13141,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x12312e7823cbea90821db15b921f4ced2e8bc0e19d95e4210c8aab91fb35b445-IN", "hash": "0x12312e7823cbea90821db15b921f4ced2e8bc0e19d95e4210c8aab91fb35b445", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xab36a70a37bdb2ac6bd92810e3cf3e9c232cc7ac6cffdb7e2215be5ef6035686", "blockHeight": 1490307, @@ -17116,12 +13158,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x81c43f8d6dd8596072ae9321d151a5702a95d75a41de2292915266088744c333-IN", "hash": "0x81c43f8d6dd8596072ae9321d151a5702a95d75a41de2292915266088744c333", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x822d4fac967e51b69117970cfaa201b2304caf47f35eaa21c2685879681d851d", "blockHeight": 1489820, @@ -17137,12 +13175,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x718da74cf57052a35bb67e31a230ccd34bc385c49f88f5ea63dd26c381d51952-IN", "hash": "0x718da74cf57052a35bb67e31a230ccd34bc385c49f88f5ea63dd26c381d51952", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x8493847deb100d9235c54873b0412426d9021cd7e7f649da59d9a294bf8f86d9", "blockHeight": 1462236, @@ -17158,12 +13192,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x700ea3fdd6a7a8e5bad7320eec957fd3371345502fbe6a85f9f477b665317e89-IN", "hash": "0x700ea3fdd6a7a8e5bad7320eec957fd3371345502fbe6a85f9f477b665317e89", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x00a453fe1b6b72fea2c42611e9b4e008c769cc499905b2004868103f4a09fcd4", "blockHeight": 1461612, @@ -17179,12 +13209,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf2ca67ad3dea0789f4d7fb457da9595048e174d06e4d66d87158fe09d016ca77-IN", "hash": "0xf2ca67ad3dea0789f4d7fb457da9595048e174d06e4d66d87158fe09d016ca77", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x3c339365132ddd29ffb88bbce4b5b78d96fce5fa06b41c196fbe205df7f3d128", "blockHeight": 1450563, @@ -17200,12 +13226,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x126080b034b5d171a0509e34042f7b57484e623c706f8a83874ac8f996a6ade8-IN", "hash": "0x126080b034b5d171a0509e34042f7b57484e623c706f8a83874ac8f996a6ade8", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x3c10ac72a2d317512890bd69777287248d7c02c34aa07e034a36d5ff39aaba1d", "blockHeight": 1450562, @@ -17221,12 +13243,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf8c5966e40856b9558cfb5d1eed7c976d281b706dc1b9682db5993cfa66190c4-IN", "hash": "0xf8c5966e40856b9558cfb5d1eed7c976d281b706dc1b9682db5993cfa66190c4", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x89ca50fda65dbf057b860806c8d810c30febcd443b6f3b9d245a98e62537f137", "blockHeight": 1450129, @@ -17242,12 +13260,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xcc3dd59d804c96b514827c73eb167edc50c7f0c41c564fb2ae7316988f91c076-IN", "hash": "0xcc3dd59d804c96b514827c73eb167edc50c7f0c41c564fb2ae7316988f91c076", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x1eb65f11ce8b2bbb4fb569ea965c4b22bcab197089729ad6be563f592cdfd5e3", "blockHeight": 1449930, @@ -17263,12 +13277,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe679452d4c263cf809b2465ba627771d7ec17977b5c5b7c609291eee47a085b2-IN", "hash": "0xe679452d4c263cf809b2465ba627771d7ec17977b5c5b7c609291eee47a085b2", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x4313210ac8e1fb437a38753c6d89c878543e4ddea0acc86086850b61035d8f40", "blockHeight": 1449915, @@ -17284,12 +13294,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x61de4775b995ab1e6b6e6e19c37af9d553e7f35158800935e4bd23cda7feaa93-IN", "hash": "0x61de4775b995ab1e6b6e6e19c37af9d553e7f35158800935e4bd23cda7feaa93", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x64ac6392516416b986138899ea6dbf385a1d741f93d077d5a94e52c4327cb32d", "blockHeight": 1449738, @@ -17305,12 +13311,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xc97d9b73dcc01fc392ddf60d70c329e025da110d885e3449da07d2d8e7513bfb-IN", "hash": "0xc97d9b73dcc01fc392ddf60d70c329e025da110d885e3449da07d2d8e7513bfb", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xc80ccf901d63cadafeac0c14a9af39f8a7dc1f1ef724570b6d2d923c85944dac", "blockHeight": 1449597, @@ -17326,12 +13328,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x96d7f6c317bcd537793350f9faf4c188e39db5eefd0f71973755fd65db2574d8-IN", "hash": "0x96d7f6c317bcd537793350f9faf4c188e39db5eefd0f71973755fd65db2574d8", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x32f2b445c0079a7c28ed7c3dee666ae1f40bc6317c20aa68dc469c5d50cbe649", "blockHeight": 1449589, @@ -17347,12 +13345,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x0f236bef396b0a1af958a59da209908186aeb62e4654f5ec6fd78b265b5e7b7b-IN", "hash": "0x0f236bef396b0a1af958a59da209908186aeb62e4654f5ec6fd78b265b5e7b7b", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xd8601d2da9b4bf83d840e88e7d8d71f24373505778b904a1101647cd24965530", "blockHeight": 1448212, @@ -17368,12 +13362,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x36d4c6d43dc6708be1ecd12693bd60a413201fd4b18e427d52339c3522d4c934-IN", "hash": "0x36d4c6d43dc6708be1ecd12693bd60a413201fd4b18e427d52339c3522d4c934", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x689b650b220cc13705a42f20d42f04d286f9ee009ac297451171292ad084bd4e", "blockHeight": 1442121, @@ -17389,12 +13379,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xc1b059188c597f904bacfa7a4d8412b226971005b728a73b3e993567742a06c2-IN", "hash": "0xc1b059188c597f904bacfa7a4d8412b226971005b728a73b3e993567742a06c2", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x155d8dc76dc82932d453ed039a8748d5461800631c93ba079920c87435d12c98", "blockHeight": 1442103, @@ -17410,12 +13396,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x3b4c7de82d97960473d5cabf7ff56621f5e30f73a9968c2b8e62066b2f82cd00-IN", "hash": "0x3b4c7de82d97960473d5cabf7ff56621f5e30f73a9968c2b8e62066b2f82cd00", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x727202242bf1709873ca97df1c9a5bf9d5a6029c45b9c16a68120bb4a12b8571", "blockHeight": 1442096, @@ -17431,12 +13413,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x11752dd8229198ee238b12ea924bdc23a355c8da13d523ed36f06f13b4be5500-IN", "hash": "0x11752dd8229198ee238b12ea924bdc23a355c8da13d523ed36f06f13b4be5500", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x45cdbb8ad641fb8fe781d26fe122fbea51c08d562ff56c64f4b943de50b639d6", "blockHeight": 1442091, @@ -17452,12 +13430,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x3196a528e7622b703b412fc6b5dc74524646638551adc3ca5cf040429a1a8a90-IN", "hash": "0x3196a528e7622b703b412fc6b5dc74524646638551adc3ca5cf040429a1a8a90", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x3dbb005c8102f3536b63ef2eca594162f79cc4f05affd98eb59e62637956088d", "blockHeight": 1441872, @@ -17473,12 +13447,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x2da67ae076d80a245db660f3687b81380bf632d09967053aafdfd2ae86c1caef-IN", "hash": "0x2da67ae076d80a245db660f3687b81380bf632d09967053aafdfd2ae86c1caef", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x4dc38934ae07417026a9eed26520ac4b72382623064731e032b7467e5f955af8", "blockHeight": 1423075, @@ -17494,12 +13464,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe0601b2149dff79bf5ee6705939be159f0dc57b9296550c8b81c3309ca045c7b-IN", "hash": "0xe0601b2149dff79bf5ee6705939be159f0dc57b9296550c8b81c3309ca045c7b", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x12255f0115c0cdaac742e59dd5916cdea3096469c23ca60b55198e227622c86c", "blockHeight": 1422955, @@ -17515,12 +13481,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x4d96bfa58c0ba19bcbab94ec965542f3fee1520fd8c2a5f0f223231b8aa8dbb4-IN", "hash": "0x4d96bfa58c0ba19bcbab94ec965542f3fee1520fd8c2a5f0f223231b8aa8dbb4", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xa86307488a98d1546fcdefff7ccbe2e5c2b724fd09363653f141ec00debad1be", "blockHeight": 1409289, @@ -17536,12 +13498,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa389f6007fd10a13d141e1ef02c852f2e89a0fc72e914cc135dcfb188d4f301a-IN", "hash": "0xa389f6007fd10a13d141e1ef02c852f2e89a0fc72e914cc135dcfb188d4f301a", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x8052aa2a74378584f5c5790c787e9a576fb28ac959348a77ee7d07c33c20d4d9", "blockHeight": 1409282, @@ -17557,12 +13515,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x55d9cde2c34595dda3aaa6742c1230eb80d0349904cefed2a5f89b14a8833502-IN", "hash": "0x55d9cde2c34595dda3aaa6742c1230eb80d0349904cefed2a5f89b14a8833502", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xa4b5370fd4db21c2adc2e23b4ca255b4e2dce8823e8ae35ad404c0ed56ee2ce7", "blockHeight": 1409273, @@ -17578,12 +13532,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x2e9e55a51187dfa1eb59a5da205ff1d9b3b366801641db6aabce5ebc063da47b-IN", "hash": "0x2e9e55a51187dfa1eb59a5da205ff1d9b3b366801641db6aabce5ebc063da47b", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x44a4214eba5c0f220295c47b7925a6b494d4592e0e014fbda8635404dcb73512", "blockHeight": 1409163, @@ -17599,12 +13549,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x859fd5555a15ed7314b958c4c7b58c60bcfd0960cd358f387975e33d0096ac41-IN", "hash": "0x859fd5555a15ed7314b958c4c7b58c60bcfd0960cd358f387975e33d0096ac41", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xf61fbf52512e5f8d3b0cf2e3bf461d43bb3a777c7a091d0cfaa43133727987ca", "blockHeight": 1409112, @@ -17620,12 +13566,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x73bdf7f4c3eca74a75d851ff7810427a7006e608371af0dc495f87f91ea86f1d-IN", "hash": "0x73bdf7f4c3eca74a75d851ff7810427a7006e608371af0dc495f87f91ea86f1d", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x051c61b2086046d4b5bbeb7d7573bc1a3bf332504dff0c61f5465022c5aa6a7f", "blockHeight": 1397247, @@ -17641,12 +13583,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xbc5e07605d9c5937cd94ee95663c4de986db769d89c7a50589d2e0606074e108-IN", "hash": "0xbc5e07605d9c5937cd94ee95663c4de986db769d89c7a50589d2e0606074e108", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x0bb4079d00e4077e91b8a0e794803c85cf8b142d1b62b838d3aeb562f3a70b74", "blockHeight": 1365218, @@ -17662,12 +13600,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa104c88f2607f7469b5f5508de62162f21f316715ba5494b22506d99045c5b9c-IN", "hash": "0xa104c88f2607f7469b5f5508de62162f21f316715ba5494b22506d99045c5b9c", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x76398f6f1f72c0348aaf1784b823d9fa203f32c9137108ec86ba43666d7fc485", "blockHeight": 1365214, @@ -17683,12 +13617,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x32cf01deadb899014b9d2f76d0fddb58c725db16f1b457831a559bf91291ed18-IN", "hash": "0x32cf01deadb899014b9d2f76d0fddb58c725db16f1b457831a559bf91291ed18", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x86f460faf002a93077fb4110b56c40e7d6ca2d8577ed31d66e5b3fbd5d7a0d42", "blockHeight": 1365195, @@ -17704,12 +13634,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x9f562f008aa8dfbae8b25641a723662d4b8dadd268f2978ab526c4b4429947d6-IN", "hash": "0x9f562f008aa8dfbae8b25641a723662d4b8dadd268f2978ab526c4b4429947d6", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x509aa13f3c94be4e2918c4b08bb6616ba188c14b643656a2872e3aceb6fdd3fb", "blockHeight": 1365177, @@ -17725,12 +13651,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x59b36836e528f73d61874b2c607a30a3fbbe58e32de6011df2a8ce77f673f046-IN", "hash": "0x59b36836e528f73d61874b2c607a30a3fbbe58e32de6011df2a8ce77f673f046", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xf91ca75ac65618d78c0b6696cf8e753a70fc0ffa64c4861d96c737bbf29a00b4", "blockHeight": 1364835, @@ -17746,12 +13668,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x7dbc92bc7892bcb9fe9235b613df4c3176dfb47cfba908b538ea9b070ac7329b-IN", "hash": "0x7dbc92bc7892bcb9fe9235b613df4c3176dfb47cfba908b538ea9b070ac7329b", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x388ca8211c8a32b950c8ae3bde9d79e46a037e27af579f17f97cf702b1c1e6ef", "blockHeight": 1364819, @@ -17767,12 +13685,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x58c5e3134e1e158c69362e5af6c003a4cc37b1b5b783d844489ee0befca32a53-IN", "hash": "0x58c5e3134e1e158c69362e5af6c003a4cc37b1b5b783d844489ee0befca32a53", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xa5a7f900303d644cbf9a4049d1f0b01a828bb45c8b42cb7ef7192675b954b910", "blockHeight": 1364661, @@ -17788,12 +13702,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x6f9e06cb749dc28e60127d9b58a2ff967bfa666cbd3e3be8cfc03b41823b20db-IN", "hash": "0x6f9e06cb749dc28e60127d9b58a2ff967bfa666cbd3e3be8cfc03b41823b20db", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x5f886fac5a1e68afde4c4258d22ca22c6cc2871b8c900174df51d57f4c809a27", "blockHeight": 1363910, @@ -17809,12 +13719,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x1498a38e4564942997c6778b77208085343507f6898cedd2d5b054b5b4534739-IN", "hash": "0x1498a38e4564942997c6778b77208085343507f6898cedd2d5b054b5b4534739", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x558bdbe2bf09ae3e14f7bf7d4f850e586d50d89684455efed8d34eb64d080909", "blockHeight": 1359060, @@ -17830,12 +13736,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x456b194be1fea8b9209e294f786e17f3980a30982b1aa0c7ce7177061b2eb7a1-IN", "hash": "0x456b194be1fea8b9209e294f786e17f3980a30982b1aa0c7ce7177061b2eb7a1", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xb51e77e7169af6f83364ee1ac83244f2416345905e5fb3bdd45a4d4f4bca743e", "blockHeight": 1358372, @@ -17851,12 +13753,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe14c217b0ed858e948eeab1390bcfb7adc22c5ddcdacdf4c58a1e08f851e35c2-IN", "hash": "0xe14c217b0ed858e948eeab1390bcfb7adc22c5ddcdacdf4c58a1e08f851e35c2", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xa3fa419c2d172f496e5df45530b296fe4e7980fc10e50d8d38915eafe1d3b15e", "blockHeight": 1358368, @@ -17872,12 +13770,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa05132198ac05c9bbaa93815d21f684b36c0114b3ec94d3898d0d537dc559bdd-IN", "hash": "0xa05132198ac05c9bbaa93815d21f684b36c0114b3ec94d3898d0d537dc559bdd", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x1e144a1e18e0ff3eca7b8435ea94307eb08a5f29e7a41a0ae809da870a34cb05", "blockHeight": 1358203, @@ -17893,12 +13787,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x767b3f49b327f8973441b6d3da3e936caaf1ed75db7fd3b16640781a537c2ea2-IN", "hash": "0x767b3f49b327f8973441b6d3da3e936caaf1ed75db7fd3b16640781a537c2ea2", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x0278573c04d30488ee991565c449054251c42e763a00a277778f750caa167dc3", "blockHeight": 1358198, @@ -17914,12 +13804,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf9a360549970073fcb3d61e1937483ac8776274e5dc70e07031421b055eee86c-IN", "hash": "0xf9a360549970073fcb3d61e1937483ac8776274e5dc70e07031421b055eee86c", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x32bfc07b9d44845bffce6b0a54bba2cf19128c0bd1a3e58bd1274c1e5221c9e4", "blockHeight": 1358122, @@ -17935,12 +13821,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x4f8b5ac603712dae2b1ea3c41947bcf1bf0be85e3a0e0cfe5145d03043d4d521-IN", "hash": "0x4f8b5ac603712dae2b1ea3c41947bcf1bf0be85e3a0e0cfe5145d03043d4d521", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x045fec036fa7345aa09b8af9cc982e5a868e22e49dace15e98a6852e685d4d9b", "blockHeight": 1357346, @@ -17956,12 +13838,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x90cdd88c6252475183b4b2a44071978339119d9e4ea049f7a9dd65a87839ce84-IN", "hash": "0x90cdd88c6252475183b4b2a44071978339119d9e4ea049f7a9dd65a87839ce84", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xacd629cdbea82216c33ba44b4e1c83c905a9a90dad705ab4f240a590077ccb9d", "blockHeight": 1357270, @@ -17977,12 +13855,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa891e881818af7570d73fccf52802a957dbfbde3d2b46dfac8aaf0b1238e347b-IN", "hash": "0xa891e881818af7570d73fccf52802a957dbfbde3d2b46dfac8aaf0b1238e347b", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x5ad8db1d474e9d6101f70c464bdbd8f842cb746c70872c6b63427450299c9b44", "blockHeight": 1357267, @@ -17998,12 +13872,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x2815a9cb2900227812d5ddf5dac20dd5311eb720b723e600af68e111ba81676e-IN", "hash": "0x2815a9cb2900227812d5ddf5dac20dd5311eb720b723e600af68e111ba81676e", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xb9e7d99d816f79188deb85e7c996ee68aef98d8d3671923c3a0bc1e9fc339f12", "blockHeight": 1352544, @@ -18019,12 +13889,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x5c5622aaa4173bef68127a42565e9971577b33c18c4c6dea531711234fe7b6b4-IN", "hash": "0x5c5622aaa4173bef68127a42565e9971577b33c18c4c6dea531711234fe7b6b4", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xef44280971673302b1a5b08e13472a215bb9c21a8c463c5601e901afcfee8158", "blockHeight": 1326144, @@ -18040,12 +13906,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x46e8357ee53468894a66584d35a33f22c64924b46ca865db313ef8e39bf5962a-IN", "hash": "0x46e8357ee53468894a66584d35a33f22c64924b46ca865db313ef8e39bf5962a", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x57c1bc247f79444b85a391d4dbf90a52120e4a9847d8750b49100b1492c30374", "blockHeight": 1326142, @@ -18061,12 +13923,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xc6d1e2b972393ac28961ec204a94688a294709c2b6e081e250b26731fb41accf-IN", "hash": "0xc6d1e2b972393ac28961ec204a94688a294709c2b6e081e250b26731fb41accf", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x009ff89ae7bb93ce0f8ba2509e99a351d4d2318600f12d68429262323792d953", "blockHeight": 1326133, @@ -18082,12 +13940,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x79badad6d55e2ae48356aa104d9a1b361832bf0388487a3605e489b921ddb082-IN", "hash": "0x79badad6d55e2ae48356aa104d9a1b361832bf0388487a3605e489b921ddb082", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x93d05599f74a42b0c1e172cd739fca66d2145c5613f2a93bcc24b7c59dd0e9ab", "blockHeight": 1326063, @@ -18103,12 +13957,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x028614b4ba199549debde64a883b2ae5f9e3e66d1ec58e39d4aa9f9abf643c54-IN", "hash": "0x028614b4ba199549debde64a883b2ae5f9e3e66d1ec58e39d4aa9f9abf643c54", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x78a7da74953541d4eb15b0497e5b29ef7b829bc2f90b54362ca4476e3414cdac", "blockHeight": 1326061, @@ -18124,12 +13974,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x0468dfe8e7ec1e231b1e53703b53935108023b9af8153fe67c7bb5cce0095f18-IN", "hash": "0x0468dfe8e7ec1e231b1e53703b53935108023b9af8153fe67c7bb5cce0095f18", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x898e95a0d06cd92c02461be406d7a823c6d5dfcc907a1d8a7b0a8eed7e23695c", "blockHeight": 1326050, @@ -18145,12 +13991,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xef91af8c2a0822ecd4341c1a8294b5a6493dc603a23282e66688bfc34952ad58-IN", "hash": "0xef91af8c2a0822ecd4341c1a8294b5a6493dc603a23282e66688bfc34952ad58", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xdf80f1c3211c95a2b3b1fa45a5f72011ac78c7105abdf050f9474bc88be31482", "blockHeight": 1325836, @@ -18166,12 +14008,8 @@ "id": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x14139eac4a9d771c08e480cfa72fbb5a7c107c53041414374e72f13e630123aa-IN", "hash": "0x14139eac4a9d771c08e480cfa72fbb5a7c107c53041414374e72f13e630123aa", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_holesky:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x749e65827d4d4f6991cc7604b69732f08da7886a69ed3d889715528f32688bfa", "blockHeight": 1318759, @@ -18192,339 +14030,98 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 1900000000000000000, - 1900160000000000000, - 1900160000000000000, - 1900160000000000000, - 1900160000000000000, - 1900170000000000000, - 1900260000000000000, - 1900340000000000000, - 1900340000000000000, - 1900340000000000000, - 1900340000000000000, - 1900340000000000000, - 1900350000000000000, - 1900350000000000000, - 1900490000000000000, - 1900490000000000000, - 1900510000000000000, - 1900510000000000000, - 1900510000000000000, - 1900560000000000000, - 1900650000000000000, - 1900650000000000000, - 1900670000000000000, - 1900670000000000000, - 1900670000000000000, - 1900670000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900690000000000000, - 1900700000000000000, - 1900720000000000000, - 1900820000000000000, - 1900850000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000 + 0, 1900000000000000000, 1900160000000000000, 1900160000000000000, + 1900160000000000000, 1900160000000000000, 1900170000000000000, 1900260000000000000, + 1900340000000000000, 1900340000000000000, 1900340000000000000, 1900340000000000000, + 1900340000000000000, 1900350000000000000, 1900350000000000000, 1900490000000000000, + 1900490000000000000, 1900510000000000000, 1900510000000000000, 1900510000000000000, + 1900560000000000000, 1900650000000000000, 1900650000000000000, 1900670000000000000, + 1900670000000000000, 1900670000000000000, 1900670000000000000, 1900690000000000000, + 1900690000000000000, 1900690000000000000, 1900690000000000000, 1900690000000000000, + 1900690000000000000, 1900690000000000000, 1900700000000000000, 1900720000000000000, + 1900820000000000000, 1900850000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 1900160000000000000, - 1900340000000000000, - 1900510000000000000, - 1900670000000000000, - 1900690000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, - 1900900000000000000, + 0, 1900160000000000000, 1900340000000000000, 1900510000000000000, + 1900670000000000000, 1900690000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, + 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000, 1900900000000000000 ], "latestDate": 1722117600000 @@ -18556,12 +14153,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x011e9dbcf7e5e972c0af5e345b3d94dbd3e02abdb7c6927214eb8a29ec038d41-OUT", "hash": "0x011e9dbcf7e5e972c0af5e345b3d94dbd3e02abdb7c6927214eb8a29ec038d41", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x3d7789ffd46bedceb2bcd236927497e873fac1a90f7e40b7c7091b0d7420014a", "blockHeight": 6414373, @@ -18577,12 +14170,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x881e97397080ea7f31da07662e1526480e39b32294fc34d249a4ef7f838b411e-OUT", "hash": "0x881e97397080ea7f31da07662e1526480e39b32294fc34d249a4ef7f838b411e", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x1092c7f21370f331201372ccafce5f9b2c78f9974811155fbbc9216d2457ea20", "blockHeight": 6408012, @@ -18598,12 +14187,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xbcb470d8e017db228826306e7bdee86c24f44b63abe63e71bc8844eb63931ded-OUT", "hash": "0xbcb470d8e017db228826306e7bdee86c24f44b63abe63e71bc8844eb63931ded", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xa9ced9c41d062a09069d0dbfe99256fa6e3057cb1321e42d6eeb5d50ae724457", "blockHeight": 6404619, @@ -18619,12 +14204,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x713f1e08351394355db0d727266b09818e656ddc4666552152b8edf66e03b39b-OUT", "hash": "0x713f1e08351394355db0d727266b09818e656ddc4666552152b8edf66e03b39b", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xf384bb771b6cf9fd7507e738e3a2906271620265f2286c0c69ce105a3616d340", "blockHeight": 6404563, @@ -18640,12 +14221,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc74a881bbd6cb86600f690b47d6f0aa8ea7c9c60cbb11e59de1b23d419c293eb-OUT", "hash": "0xc74a881bbd6cb86600f690b47d6f0aa8ea7c9c60cbb11e59de1b23d419c293eb", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x2f11b83f45594ffcaee1cd65c6c2788a44aeabcd3af25103c9b99e3cd5b053aa", "blockHeight": 6404557, @@ -18661,12 +14238,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x38e87845951a6726689af80324882a00760fa9a0d34a55afb574e35f3c73809d-OUT", "hash": "0x38e87845951a6726689af80324882a00760fa9a0d34a55afb574e35f3c73809d", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x4f7a5ab9fd3d2c67b276a0de1e529eae58f8e43039677c79afa9e96cd54ead27", "blockHeight": 6402458, @@ -18682,12 +14255,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x5544c428114dafd2ee467724d04d79181f8226a5b755b15289e0b8b9a5dccd2f-OUT", "hash": "0x5544c428114dafd2ee467724d04d79181f8226a5b755b15289e0b8b9a5dccd2f", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x499614f28e5513263e67dc704bf517e035e60e094f61786fdb780253c3a51f02", "blockHeight": 6398253, @@ -18703,12 +14272,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf23c4e6ea26f7d32f57b72c64a7d271a82a44af7d4035dfe639701922f5c8459-OUT", "hash": "0xf23c4e6ea26f7d32f57b72c64a7d271a82a44af7d4035dfe639701922f5c8459", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x8eea5dbabc99ec399511660a3865e20ee09992172b639d91a89b74ee5e8a556e", "blockHeight": 6398169, @@ -18724,12 +14289,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xbc564a85f6a8b9eb26be70632f5af8d8ee75b6a5bd6e9f367a5a4957d7e55f59-OUT", "hash": "0xbc564a85f6a8b9eb26be70632f5af8d8ee75b6a5bd6e9f367a5a4957d7e55f59", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xe4cb8b10628a2673ed23133dc34f1b73847121b1156752964098bf5344a46ec4", "blockHeight": 6395615, @@ -18745,12 +14306,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x0489d8474fab87298064ff7f30692b3e47e038543cf762645036f30ae07f2133-OUT", "hash": "0x0489d8474fab87298064ff7f30692b3e47e038543cf762645036f30ae07f2133", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x54352ed5f8ca9a2b0b414391c0e17e6ab6d69c3eec2892d6771e6df84d8fec41", "blockHeight": 6379079, @@ -18766,12 +14323,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x67d88b84f3691abc57ac4e49da8a03b8dce27790a10853d70dbb45999f6c78fb-OUT", "hash": "0x67d88b84f3691abc57ac4e49da8a03b8dce27790a10853d70dbb45999f6c78fb", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x23a038ce8ad558e39d19868957de798275bf14aa1261644da8788e7f73933334", "blockHeight": 6377378, @@ -18787,12 +14340,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x6d37f90e07bed20db7c835690f891f3dd600ae391bbe977d138c3cadc7f786f5-OUT", "hash": "0x6d37f90e07bed20db7c835690f891f3dd600ae391bbe977d138c3cadc7f786f5", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xe3acad691fa99cf116d6084a8036feedb683df681149e07aa9dfd562835592ea", "blockHeight": 6373755, @@ -18808,12 +14357,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x9b6f1d61aebe0fd46210358595f2eedb336fb68ca048f3f2cc993cce863a93f1-OUT", "hash": "0x9b6f1d61aebe0fd46210358595f2eedb336fb68ca048f3f2cc993cce863a93f1", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xa6c50a5e65db4a8860f85b8e17fdb5eb24733b64337c0af96f915f28df6b9802", "blockHeight": 6373631, @@ -18829,12 +14374,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf1e1ccc5395630aa0943f3113c3c4a77a1b03da7f5c6a3d234a817bd37654a67-OUT", "hash": "0xf1e1ccc5395630aa0943f3113c3c4a77a1b03da7f5c6a3d234a817bd37654a67", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x3bbaf6ff5dc553d93cba43772bac7f66dc2116cd4548b24a9084100cd031773e", "blockHeight": 6366561, @@ -18850,12 +14391,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc2faf53218ecf28dc82af6bb9724a4a7ed05668a06afeca269e9870c31be7e1c-OUT", "hash": "0xc2faf53218ecf28dc82af6bb9724a4a7ed05668a06afeca269e9870c31be7e1c", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x538ffe33620e7c88cf679b93ec68d8535d07b08ef435856c516bd988af214407", "blockHeight": 6365868, @@ -18871,12 +14408,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x22a309d8a5ea199cefb7df225e5dd99ce08d891bb69f736f3b71c8746b9e1b67-OUT", "hash": "0x22a309d8a5ea199cefb7df225e5dd99ce08d891bb69f736f3b71c8746b9e1b67", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x8b6946af00e829c954df027cab7738c5f6e39317d81f564ef6da2e06e007992e", "blockHeight": 6365863, @@ -18892,12 +14425,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x45eebb32d42862aa5dddb4053942a3810aa4a3911ad943bcba2dcdd279a75e89-OUT", "hash": "0x45eebb32d42862aa5dddb4053942a3810aa4a3911ad943bcba2dcdd279a75e89", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x170ee1f4eb2b269803d679f47a72b2abae49f3d18040231f968cc5f31958bc31", "blockHeight": 6362420, @@ -18913,12 +14442,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x4c81d7b28b42cacf65da49b89be0706d365ddc903c38f9bed4e7854ed1ad923e-OUT", "hash": "0x4c81d7b28b42cacf65da49b89be0706d365ddc903c38f9bed4e7854ed1ad923e", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x35c5091a19eee82f436ab47cdc052f989d99b7ac4640890bcddc5562728fcf74", "blockHeight": 6362383, @@ -18934,12 +14459,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x2fa5ae47255980001a6854776fbea08a395532cdfa87d25d47eaacf1b11bb127-OUT", "hash": "0x2fa5ae47255980001a6854776fbea08a395532cdfa87d25d47eaacf1b11bb127", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xdd7320bd69555d87c79a1eb5b385aad551e239d2098eb7a705dcad406a0e2946", "blockHeight": 6362337, @@ -18955,12 +14476,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x249a1f2278bda16a102d806adc096c90eec9c9470b19e6d0f50a33b38ee4795d-OUT", "hash": "0x249a1f2278bda16a102d806adc096c90eec9c9470b19e6d0f50a33b38ee4795d", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x66272c0fe78433675abfb6866c91173c9fb323dcd89ed1a2ca33a72718e99451", "blockHeight": 6361992, @@ -18976,12 +14493,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x0ef64c3f39444eb882564802b5b6151db83c362e425e6cca8677d44d31e44faf-IN", "hash": "0x0ef64c3f39444eb882564802b5b6151db83c362e425e6cca8677d44d31e44faf", "type": "IN", - "senders": [ - "0x9FA6A7d3f30c20e4159057f8DdDB67Da0F30DeB3" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], + "senders": ["0x9FA6A7d3f30c20e4159057f8DdDB67Da0F30DeB3"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x4f4dfef13e3666a62c000edd37dafc361b8596847429e9e4f87e93d2202ff3d4", "blockHeight": 6361931, @@ -18997,12 +14510,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xac770e5013e8debfa70e48d17c9ae25297acfc55b225688d2f788bcdf893f770-OUT", "hash": "0xac770e5013e8debfa70e48d17c9ae25297acfc55b225688d2f788bcdf893f770", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xedcfcff6dfc35b0eeacbbf2f0fa37512202ce684545ef43dafb01981f91aea8b", "blockHeight": 6361743, @@ -19018,12 +14527,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa18ea3926c43be72f6bd089f43f98d540687bbadb5b8592d4d4ed207bfa015f3-OUT", "hash": "0xa18ea3926c43be72f6bd089f43f98d540687bbadb5b8592d4d4ed207bfa015f3", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xd7cb6b797a64a01d7691f002bf3084ccae6f21f2e88865cc0ddc5c790a52aa14", "blockHeight": 6360149, @@ -19039,12 +14544,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x158abbe0225f5af4feb7fef4b91f68c820bf8c48e7ee8f11f77f2a41682b7068-OUT", "hash": "0x158abbe0225f5af4feb7fef4b91f68c820bf8c48e7ee8f11f77f2a41682b7068", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x2661bb738d9ca50893592e71c68ff31600f0d8ecd0d00713cc551567ce63f876", "blockHeight": 6356937, @@ -19060,12 +14561,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xb5964b7ce380e432b6b73e68b8984fb591cf77d86a6435ea09c9f392587c30a5-OUT", "hash": "0xb5964b7ce380e432b6b73e68b8984fb591cf77d86a6435ea09c9f392587c30a5", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xba41874ae179ce7a0e145a1229bda1ee4cc73be935332f1c416ec2f53209a68d", "blockHeight": 6356893, @@ -19081,12 +14578,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x1a654e03159f12fb81f523b46bb38e42fb6e6333e427bd0a04e552b9b3cef913-OUT", "hash": "0x1a654e03159f12fb81f523b46bb38e42fb6e6333e427bd0a04e552b9b3cef913", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x55a013bcf2b88beaed0e5fd3392f9c3a8774ea104574edebfbe558d7a038c959", "blockHeight": 6356693, @@ -19102,12 +14595,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x7a34710f3795cb764a3845f4685a9eb49344ad44815ead46bd75f17690459202-OUT", "hash": "0x7a34710f3795cb764a3845f4685a9eb49344ad44815ead46bd75f17690459202", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x8fe6444369b39123d4f0ac4bf3ad60bc580ada15b996fa6f453caa80374cb70c", "blockHeight": 6356689, @@ -19123,12 +14612,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x6a26eb7ac9a3a9b2f9a17cceab110d47794530dea4580f7ccba2812cf7cde00c-OUT", "hash": "0x6a26eb7ac9a3a9b2f9a17cceab110d47794530dea4580f7ccba2812cf7cde00c", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x39898c07bbbbb70583e5c7d4175323e38ba27fcac2ae06ebacd46ad47a259930", "blockHeight": 6355968, @@ -19144,12 +14629,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe99bf8e033533fc318660916239130b70898c1b1593b77a572feba528adb9498-OUT", "hash": "0xe99bf8e033533fc318660916239130b70898c1b1593b77a572feba528adb9498", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x6377d414663d200ed6b8321aaab0627b2b076e035d4260993c8bfffe361ea3e9", "blockHeight": 6354410, @@ -19165,12 +14646,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xdec9990b13b0fa27acf3bb1af29fc44beec3ab4fb2990ef92c839abfe22d221f-OUT", "hash": "0xdec9990b13b0fa27acf3bb1af29fc44beec3ab4fb2990ef92c839abfe22d221f", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x8c109f984ebc0c89a953761aaff71bcafc093bf7ae52bce3e35478ed3ff0d13b", "blockHeight": 6354404, @@ -19186,12 +14663,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x19e7312e410a68cc6fa57b4121792ea6753c0c74d6e4c4f697c9da9fef179659-OUT", "hash": "0x19e7312e410a68cc6fa57b4121792ea6753c0c74d6e4c4f697c9da9fef179659", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x086d834ddad8b2ee8140252504ba8ad6048271cb56b01e17e4e999188106b93e", "blockHeight": 6337215, @@ -19207,12 +14680,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x9a8e5aaf6a0588798c038b70e008b7f06309f53787820587b2717eca6bcec6dc-OUT", "hash": "0x9a8e5aaf6a0588798c038b70e008b7f06309f53787820587b2717eca6bcec6dc", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x1c40af3ade38fd0ef3b972e4fd04186be21dd636388159c2ec2cf72f0362cf57", "blockHeight": 6331421, @@ -19228,12 +14697,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x102334a53d24514e0c5eb9843de32b3447bf6790b951e2b74799dd84b577e3d3-OUT", "hash": "0x102334a53d24514e0c5eb9843de32b3447bf6790b951e2b74799dd84b577e3d3", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xec38290a0f69b0d8a643fbaa409f2edfc4c19c329bb0c08098905067930f1630", "blockHeight": 6327440, @@ -19249,12 +14714,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf57e9f5bb5b31301ce6b03ee78172d07f882e82fe5ae49cea3a8b6ce79d2d6e9-OUT", "hash": "0xf57e9f5bb5b31301ce6b03ee78172d07f882e82fe5ae49cea3a8b6ce79d2d6e9", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x25fecf89d86c0cdd4506ecaa179e0a94239cce012709996ecb384df11f2b8eef", "blockHeight": 6327434, @@ -19270,12 +14731,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x9a75b82e7c546be4ad4c99eb97e9417793997e775960f9792d40c6c00d5c1cfe-OUT", "hash": "0x9a75b82e7c546be4ad4c99eb97e9417793997e775960f9792d40c6c00d5c1cfe", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xd45a663cf02d0a73d37b8e12c15e2c2a43e6e917b6a0bb8454abfbc719d23637", "blockHeight": 6327375, @@ -19291,12 +14748,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x25da6ac06667b51d205ed55d3112107546525d1d44d1d431fc8abfc31c328e29-OUT", "hash": "0x25da6ac06667b51d205ed55d3112107546525d1d44d1d431fc8abfc31c328e29", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xf38d16ff825e2473c7672f74f9b3d557ce767ff1c0ae3430ebe5c178ea6033a8", "blockHeight": 6326340, @@ -19312,12 +14765,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe52528a2630d2672651d2c81e62ecfc69a5ad25fb833a2495d531dd04e7a1ad1-OUT", "hash": "0xe52528a2630d2672651d2c81e62ecfc69a5ad25fb833a2495d531dd04e7a1ad1", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xdc28d04336c87bac933a729c01ae886846266bf1ee6a4f6e3738c3a79165fb6d", "blockHeight": 6325457, @@ -19333,12 +14782,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x992551b4e2abd8dc43da0ec27df0ef59488a274c4cf5c58a44a78034672ae85a-OUT", "hash": "0x992551b4e2abd8dc43da0ec27df0ef59488a274c4cf5c58a44a78034672ae85a", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xf5abe5d55e652ac08013f7e912f9ab5f7a02461e117584d2ecc35bbbe1e72744", "blockHeight": 6321771, @@ -19354,12 +14799,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x1098cc186ba6c3bfe8c65af420f1413d35811a96241f19554a2845931059f048-OUT", "hash": "0x1098cc186ba6c3bfe8c65af420f1413d35811a96241f19554a2845931059f048", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x1d3c9a44264b6a36d8a0d7584d0c980882256fc52c7b33cd5e4a05561b269b67", "blockHeight": 6321649, @@ -19375,12 +14816,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xd0b1b545d3de019a5e3bdb1e5d897e14007e438aa7b04c75a72e8b42890ec737-OUT", "hash": "0xd0b1b545d3de019a5e3bdb1e5d897e14007e438aa7b04c75a72e8b42890ec737", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x9a9ad0629cc1a77efc86622ed4e5d1b7afa12592b0abfd5acae44ffcacf38f1c", "blockHeight": 6321451, @@ -19396,12 +14833,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xcf845af008274486935c81a5cfa37729956b46d2340dcf3c25c0e59d707a6e2b-OUT", "hash": "0xcf845af008274486935c81a5cfa37729956b46d2340dcf3c25c0e59d707a6e2b", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x199d83f04d239ebe5089a1f9cc1ce3b19ee2fb8d02acdab6a5fd9ace324871c5", "blockHeight": 6321321, @@ -19417,12 +14850,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xb48b1fa36c8450cdde619c14cda004d2c04154044672dbe5b3f0d8e71a0ae443-OUT", "hash": "0xb48b1fa36c8450cdde619c14cda004d2c04154044672dbe5b3f0d8e71a0ae443", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x3fc2ff71a58cfe15e3613858db0a55cf8e307eeda3013433d1edf984dd98a281", "blockHeight": 6321192, @@ -19438,12 +14867,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x83e2ae4ab975f822cb10be63d9d2ae4b8eb4155b1ced744454d30172b9ed6fa8-OUT", "hash": "0x83e2ae4ab975f822cb10be63d9d2ae4b8eb4155b1ced744454d30172b9ed6fa8", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x8aa973eb7c7f304b8ed71dd71e7b9f6107976222cedd73ee1fbc464bcba2cfdd", "blockHeight": 6321145, @@ -19459,12 +14884,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x2dc8acedaf6df4707ab833dc179e861c4229d42d9fb6fc09f173d52af80682f3-OUT", "hash": "0x2dc8acedaf6df4707ab833dc179e861c4229d42d9fb6fc09f173d52af80682f3", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x9ecd2179a59ddf6e3bd304d8082c76bbde1494b8115ee9c29c2ca1971313605f", "blockHeight": 6321058, @@ -19480,12 +14901,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xb44091e50b81aa30df696bfc026c21474812f23a6b59da3ae72d3929ce1324dd-OUT", "hash": "0xb44091e50b81aa30df696bfc026c21474812f23a6b59da3ae72d3929ce1324dd", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xd6b3c26fa6ec068155b9d5ae0717dbf9fac210a8619e53ae20968d0958cff5bc", "blockHeight": 6321008, @@ -19501,12 +14918,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x4aa9ea944ab990243b48a245c737294808a861b9936a87ab920add28cfbfe79f-OUT", "hash": "0x4aa9ea944ab990243b48a245c737294808a861b9936a87ab920add28cfbfe79f", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x2c225b10a2e98d44c3a69e3406e999f6c5332ee414d53f89ba875d20525df5a6", "blockHeight": 6320957, @@ -19522,12 +14935,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x88302d825f95bc582429a24593c49cc59f7dbfebecb2f019917df84d9e1ebc61-OUT", "hash": "0x88302d825f95bc582429a24593c49cc59f7dbfebecb2f019917df84d9e1ebc61", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x534aa14902a6871e0f552e4ef4fd60213ee3c9585235f82caa1746fd3d2a0a84", "blockHeight": 6320545, @@ -19543,12 +14952,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x52a76f547da56c5d70526b5d8bfb65a77d77d394161e34b427a85a0bf2d40b52-OUT", "hash": "0x52a76f547da56c5d70526b5d8bfb65a77d77d394161e34b427a85a0bf2d40b52", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x7ee4f62e053bcf205d69f29d296ac04c39879193c245eafad990dc654cef069c", "blockHeight": 6320497, @@ -19564,12 +14969,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x1e0ee3a5885362f64bd170c1998e21117dd8e4468713687fe10d59d74b5729e5-OUT", "hash": "0x1e0ee3a5885362f64bd170c1998e21117dd8e4468713687fe10d59d74b5729e5", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xe1973f1bf1363da25db28f387f56ff0818032f00629cdbdc7b4c08b4dd071c73", "blockHeight": 6320425, @@ -19585,12 +14986,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x2671881733b65dcd3e7bc1fcfb8308deedb174b572543b47cbbcf958c444a1a2-OUT", "hash": "0x2671881733b65dcd3e7bc1fcfb8308deedb174b572543b47cbbcf958c444a1a2", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xd4d1aa197db34351a74d424f8b5eb253d92b5012d5a570e7743b68095329e6fa", "blockHeight": 6320328, @@ -19606,12 +15003,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe0cfc65dc62024c8435d1270529cbbd0a00f3c84aa1359246fa6129b279fcd13-OUT", "hash": "0xe0cfc65dc62024c8435d1270529cbbd0a00f3c84aa1359246fa6129b279fcd13", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xf92957cae20a90e29e3d26db754f48c20ced75c1738aad7b9a0b3beb447dbf10", "blockHeight": 6320248, @@ -19627,12 +15020,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x583af458b5d38e8068bcb1444c0e82ab415635fe3499327b8edfcd092aa05b7c-OUT", "hash": "0x583af458b5d38e8068bcb1444c0e82ab415635fe3499327b8edfcd092aa05b7c", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xd902cbc3538aaf3b49a16b1f507ec003c5fb4699ab589f0861d8fe4d2d40ec6a", "blockHeight": 6319927, @@ -19648,12 +15037,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x73fa1c266877402e5ae376d7f0d4fcff38498468d7eb9a01000ad4498156c4fa-OUT", "hash": "0x73fa1c266877402e5ae376d7f0d4fcff38498468d7eb9a01000ad4498156c4fa", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x480bae63123899d345b3c9782acac8c3b52aa6be26d4f6a840f22acc4ac3b069", "blockHeight": 6319301, @@ -19669,12 +15054,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x08fadca08c8f9af1bb0bd2352fed195778fda59f36f75b57f8392aacd7c0fa5d-OUT", "hash": "0x08fadca08c8f9af1bb0bd2352fed195778fda59f36f75b57f8392aacd7c0fa5d", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xf07363e30651fc54f30b381ec9a6aa2521878a729520eac44c7be93f39144628", "blockHeight": 6316070, @@ -19690,12 +15071,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf6ded7f5b5dde12391f2efc02c2c3b5e3e51759a4cf6ec9130ad47120e341367-OUT", "hash": "0xf6ded7f5b5dde12391f2efc02c2c3b5e3e51759a4cf6ec9130ad47120e341367", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xe9862acf66d207051e695072616e6bd0accacfc8e6dc6a309d98ad525bce3982", "blockHeight": 6316034, @@ -19711,12 +15088,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x8374e8f7a051d407a34374a24f9f3ec2ec9c9660834e6c7505f45f5d04211ac4-OUT", "hash": "0x8374e8f7a051d407a34374a24f9f3ec2ec9c9660834e6c7505f45f5d04211ac4", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xa0289151581e9b3e69fe4614349f525660db66f8583d9f761fc8a20d215ab934", "blockHeight": 6315937, @@ -19732,12 +15105,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe69844e3ade7cec9d8bffb891046560352a2b28b75352140d7e5bf5d0bdabaec-OUT", "hash": "0xe69844e3ade7cec9d8bffb891046560352a2b28b75352140d7e5bf5d0bdabaec", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xb0b00c735b9d6f4a9201fbede51c9798ae0e1c656bbe0e0760342e376a1efd28", "blockHeight": 6315879, @@ -19753,12 +15122,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x33c0884aa88904a5e89850ad8b1b67b5eacb47a4bcc455cc90591b094c874364-OUT", "hash": "0x33c0884aa88904a5e89850ad8b1b67b5eacb47a4bcc455cc90591b094c874364", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xf3d1ad57a5ca912f6b2e9778954d4a8bfc07daf43a528746f8829ea97e1f1f64", "blockHeight": 6315832, @@ -19774,12 +15139,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc4eaf3d822228be08b6cdeece8d0e124e63c9bf29d12690db17cab15123e7b43-OUT", "hash": "0xc4eaf3d822228be08b6cdeece8d0e124e63c9bf29d12690db17cab15123e7b43", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x4d58ccbdcb8944d0a356d34356c2320b5a123b615e025569158758cc6b7a8792", "blockHeight": 6315712, @@ -19795,12 +15156,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x98ba60302f1f89deca3ecf0335b8ed4f68127fd23fe753896d08d3f1283ffa43-OUT", "hash": "0x98ba60302f1f89deca3ecf0335b8ed4f68127fd23fe753896d08d3f1283ffa43", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x7fa82381a13b6a37a80cc6fbb62d272596b3f3510556df93933106769f2a65e2", "blockHeight": 6315479, @@ -19816,12 +15173,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x8287832f1a09f79abd648296327674a8c01caafddfcf6a015ea0a6cf3097e45b-OUT", "hash": "0x8287832f1a09f79abd648296327674a8c01caafddfcf6a015ea0a6cf3097e45b", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x3c7241cfd1daf522243aafd374eed0abb23fa20e7f0f6b60a2601079b8d19151", "blockHeight": 6315431, @@ -19837,12 +15190,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xab4efe12d7cde2f2f5a1c3a4d1be7d1ee5850afadbf7a6d2fdc03f3d39793da0-OUT", "hash": "0xab4efe12d7cde2f2f5a1c3a4d1be7d1ee5850afadbf7a6d2fdc03f3d39793da0", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x627bf6ada7a6cd2e506ad542a068be28169f3139b844ac0208b154fbb52eb922", "blockHeight": 6315335, @@ -19858,12 +15207,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe1c982c25bf380987e4cb1c22a88a8dd26360ce72c6e95edd217dfe3975f684d-OUT", "hash": "0xe1c982c25bf380987e4cb1c22a88a8dd26360ce72c6e95edd217dfe3975f684d", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x8a10021caeff458151a015bfa453738683e5c4d1ce9d64ad9dc81bc524556477", "blockHeight": 6315275, @@ -19879,12 +15224,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x394f3347b7152e47bd230c070f7f301cac8ea08ad48f8afb773db2d847680ebd-OUT", "hash": "0x394f3347b7152e47bd230c070f7f301cac8ea08ad48f8afb773db2d847680ebd", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x3f767ceb99d7836e57829c0b185e99aaea7bdc3b07f3bf28ce9d2399bd924460", "blockHeight": 6315234, @@ -19900,12 +15241,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xcacc2da787c32b03cdae5d69bf8fca1d2962e2b4864389925b6ba99a796f21da-OUT", "hash": "0xcacc2da787c32b03cdae5d69bf8fca1d2962e2b4864389925b6ba99a796f21da", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x8e6c1304a7179cb02b5979eca60b6c288334f5ffe04565b8289bf6b828d677bc", "blockHeight": 6315186, @@ -19921,12 +15258,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa90533646c8ab05004b8667a4da89c5bcc99048f356c5a1735cbef20849e2212-OUT", "hash": "0xa90533646c8ab05004b8667a4da89c5bcc99048f356c5a1735cbef20849e2212", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xabcdc7cd937d46fce751e60a8015d019ab480bfd67fe38a5eb85a4bafd198c2b", "blockHeight": 6315081, @@ -19942,12 +15275,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xd480408f54630508b3453bb3c0f15972ca053aeb0f952c719744118f5bcc5e10-OUT", "hash": "0xd480408f54630508b3453bb3c0f15972ca053aeb0f952c719744118f5bcc5e10", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x1d20959e76eb0a89e579d16a34b0019d4c4728d74ec835fc34a60ff41d414230", "blockHeight": 6314907, @@ -19963,12 +15292,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x9b698e0436b085938ebb0c0616db1806099c8e5f477b8a2a85198fc3c459738c-OUT", "hash": "0x9b698e0436b085938ebb0c0616db1806099c8e5f477b8a2a85198fc3c459738c", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x6a4146a601f395e7057da56f7865ddfc84642002ae82893e4875dc2053ff3912", "blockHeight": 6314783, @@ -19984,12 +15309,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x1f00d3101e66e16f39e3d7366b781a8078ced1e6570be7506983bb33ea929ba0-OUT", "hash": "0x1f00d3101e66e16f39e3d7366b781a8078ced1e6570be7506983bb33ea929ba0", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x86a85c75730bf4319e075dc5472e3f95d8cd55e1d2c3584a32e35dbb7fc111c5", "blockHeight": 6314751, @@ -20005,12 +15326,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x740f82aa19fc4916691334e30d33ecc3acc69ba8a67c23d7e2fb1099da8f366d-OUT", "hash": "0x740f82aa19fc4916691334e30d33ecc3acc69ba8a67c23d7e2fb1099da8f366d", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xb3891e6d524664de40767be28e373a84d254c6ccb310a47f1e23b32edc7452e1", "blockHeight": 6314421, @@ -20026,12 +15343,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x25082e71835675437e3aa3ca7f24c8b3ee35a24f54409117bd41690227967171-OUT", "hash": "0x25082e71835675437e3aa3ca7f24c8b3ee35a24f54409117bd41690227967171", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x2bb9c0a52d14d19ad9fb92918e4143e2251348dc84ecada29c8d01d0b7b478d3", "blockHeight": 6314343, @@ -20047,12 +15360,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xca62b399e482de8e32f619abdb828e965f4ffe5525bb255ba8a73d7931d04f71-OUT", "hash": "0xca62b399e482de8e32f619abdb828e965f4ffe5525bb255ba8a73d7931d04f71", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x2edef9ff2c2fad3553e410e8f32883f56bab6736bc96ab17479247ff32d1956f", "blockHeight": 6314288, @@ -20068,12 +15377,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa2fcc25ce7c8fe8f0e97408258982f4bfce626b0adbcaa3d28e3b35a084f1955-OUT", "hash": "0xa2fcc25ce7c8fe8f0e97408258982f4bfce626b0adbcaa3d28e3b35a084f1955", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x1d1373093329a081c79256465a380d5b9a3400b7980dd77ba145b57d6839651a", "blockHeight": 6314240, @@ -20089,12 +15394,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x187c7b233f2f930aeacf46f7eb0aed2575606a50d8f1188a9241196fb2d70d78-OUT", "hash": "0x187c7b233f2f930aeacf46f7eb0aed2575606a50d8f1188a9241196fb2d70d78", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x3debfc7dbbfc40ad582b19cff6384beaf04983a469f2c864fc355c54ec1ca8ae", "blockHeight": 6314184, @@ -20110,12 +15411,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x836d68cc222fa7fe624e2187545b0ebd616348e0ed241bf6ff084aad72a29ac9-OUT", "hash": "0x836d68cc222fa7fe624e2187545b0ebd616348e0ed241bf6ff084aad72a29ac9", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x3ed46ecc18eb2c0ee5a7827f2750d39069f96d6dee78a4e6ae455871b3fda625", "blockHeight": 6313816, @@ -20131,12 +15428,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x947f918c4e329983b026014c4dc4e68a241f66e2c41508fd8a4ab4adf8d1e8ea-OUT", "hash": "0x947f918c4e329983b026014c4dc4e68a241f66e2c41508fd8a4ab4adf8d1e8ea", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x33a1271b6d60941a07aa5c4310df0937b541aec11647123ab7b0123fb0b5496e", "blockHeight": 6313105, @@ -20152,12 +15445,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xfbdf396c46a58ec3f0c3b668b01948208c91081a0c3ecc454ed1f93afb5da115-OUT", "hash": "0xfbdf396c46a58ec3f0c3b668b01948208c91081a0c3ecc454ed1f93afb5da115", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xf1c4a12c781f61ff71a1ef7640c0ff17bd173f294dc2291245c1a5c18c7a5cd8", "blockHeight": 6296931, @@ -20173,12 +15462,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa5d9240dc3d08f0c9c1f4e315b5382e9fc565acf35d8a2da4cc7af9c2c315132-OUT", "hash": "0xa5d9240dc3d08f0c9c1f4e315b5382e9fc565acf35d8a2da4cc7af9c2c315132", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xa4fd38d3be127f430b6c0312978ead3aad30d437d4ad1ac94441ca516896cd12", "blockHeight": 6296527, @@ -20194,12 +15479,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x2b8ab7f1c2fbd6a22de46ba7710ff3595c95901a27a155cf4a72551ca0ba6f9a-OUT", "hash": "0x2b8ab7f1c2fbd6a22de46ba7710ff3595c95901a27a155cf4a72551ca0ba6f9a", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x44e3ab54e834729b507d08bf52ed4bcfea500009f32eecb48a012f95ec0a4075", "blockHeight": 6296356, @@ -20215,12 +15496,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x40641dfdede49aa0cd603a9b83ac9403464a6354a4a33d1aa2bd3215bf0c3599-OUT", "hash": "0x40641dfdede49aa0cd603a9b83ac9403464a6354a4a33d1aa2bd3215bf0c3599", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x9f01a0944df13f74b119b3ddb80c7f52acdd8a4aca692872da89e93f5ea87aaa", "blockHeight": 6295675, @@ -20236,12 +15513,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xed9e85d8da415782fe9b19f5fb5b34d75d47554a9e4f63609a74f4dde51b1cc5-OUT", "hash": "0xed9e85d8da415782fe9b19f5fb5b34d75d47554a9e4f63609a74f4dde51b1cc5", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x2cd18d783310c5e6474b2c1b54e5581573fbde6004f7fcae27b9ae3c700e1cc3", "blockHeight": 6295584, @@ -20257,12 +15530,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xd0bc702053dc3af011914927251366b63bade5b4642638c99c99db0a6c42c3e1-OUT", "hash": "0xd0bc702053dc3af011914927251366b63bade5b4642638c99c99db0a6c42c3e1", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x1133f2315222b1948487ec6f9b27fbda30dc4d977ec493b3c3d8a905bbf798e0", "blockHeight": 6294255, @@ -20278,12 +15547,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf03b609f92bf33f71fdad536d60282d23bd60112617e8626dd49f204a7bea157-OUT", "hash": "0xf03b609f92bf33f71fdad536d60282d23bd60112617e8626dd49f204a7bea157", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x6f00fa3061437c072e86a0162a9edd3cd3a7b99d3562af41a9b10aa24374d425", "blockHeight": 6290243, @@ -20299,12 +15564,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x8701f6c95bb0f1ee8f74425d1d70b74fb5661923d1878f25336c6b855da1b56e-OUT", "hash": "0x8701f6c95bb0f1ee8f74425d1d70b74fb5661923d1878f25336c6b855da1b56e", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x40fbdf37d12472ce3f21414f6751791f6df62c4367a3cc32fdcf907bdb3f58bf", "blockHeight": 6289824, @@ -20320,12 +15581,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x189a300552c35d326e4dd4252c56dafbea66aa3736636e13e44c54e5061ff272-OUT", "hash": "0x189a300552c35d326e4dd4252c56dafbea66aa3736636e13e44c54e5061ff272", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xf930485bf897887165b66172a38d21c901f25b9a94276218e42ec1b901c6f00f", "blockHeight": 6289659, @@ -20341,12 +15598,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x1d5f7574a17c23607139860ac67c8a8422e250acc1abeefd27b579ab9db5af4e-OUT", "hash": "0x1d5f7574a17c23607139860ac67c8a8422e250acc1abeefd27b579ab9db5af4e", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x68ec5b7ec9bd54082db5ff4f91a00cc0105faba8e3e8a2bfe0f2b36db55dc46e", "blockHeight": 6289570, @@ -20362,12 +15615,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x5e59ecd3efec13729aff89b556c28cbf064ec7ed5e67d8aaa2aeaa275034bf26-OUT", "hash": "0x5e59ecd3efec13729aff89b556c28cbf064ec7ed5e67d8aaa2aeaa275034bf26", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x38d6535ca7c7a7efc8f3bfc6ad3461c3278c64455d2b40ed0556aae3890d5142", "blockHeight": 6288923, @@ -20383,12 +15632,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x5cdd3649dc7144b19cad77794f94f99c962088a316f0b51bb966b740ead6c447-OUT", "hash": "0x5cdd3649dc7144b19cad77794f94f99c962088a316f0b51bb966b740ead6c447", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xb73836eda9c1ccc485d6de1fb0d3de924f3189287f7cc5eaa7aaffc14927391e", "blockHeight": 6288891, @@ -20404,12 +15649,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xadf80ef59d7cd4b5621fdafd5f607251439acd3f3875323a877e70a723c0fa10-OUT", "hash": "0xadf80ef59d7cd4b5621fdafd5f607251439acd3f3875323a877e70a723c0fa10", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xd939cce454a87eab1042b33f78585d03a054e3db55c1289ca79ada18ae0fa199", "blockHeight": 6287677, @@ -20425,12 +15666,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xbbbbd02b2f6199c23e476eab7b7411f71a3b213b9e73b1f0827d90fb5aac76cc-OUT", "hash": "0xbbbbd02b2f6199c23e476eab7b7411f71a3b213b9e73b1f0827d90fb5aac76cc", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x77a24bc67a383f62771273bfa82a6900593e390af0341ae951f66fded2f8f710", "blockHeight": 6284148, @@ -20446,12 +15683,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x96dad5deb72b71520e399308ee8426c980f15d6b18b615e52dcb4da3d9e3d183-OUT", "hash": "0x96dad5deb72b71520e399308ee8426c980f15d6b18b615e52dcb4da3d9e3d183", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xda720387be1bed46d5bf6924ad0ad1575bcc73ca2fa2a2640ff44eb62871c0f5", "blockHeight": 6284041, @@ -20467,12 +15700,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x73b42a6895edcf066fb0c650cd93b74db844f06df779430fb6733b5da7f446f5-OUT", "hash": "0x73b42a6895edcf066fb0c650cd93b74db844f06df779430fb6733b5da7f446f5", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x7fa61101d550991fa9fb3673312999361ff2caa406fbe34fd2553b7e80863ed6", "blockHeight": 6283437, @@ -20488,12 +15717,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa68bdd7109468d6d8ab7afabeb7043e98a19ecc9ba19e53038df74ea28abf704-OUT", "hash": "0xa68bdd7109468d6d8ab7afabeb7043e98a19ecc9ba19e53038df74ea28abf704", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x3295e35edd4e4b71de88e8514bacf75a78d4e6515cf5bd148cf03e7fdb4c1935", "blockHeight": 6281119, @@ -20509,12 +15734,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xabce9b853c58ddbbbb97b1a4dfc2ba68e756e66ecfcbd2a441fb2a44a931fa8a-OUT", "hash": "0xabce9b853c58ddbbbb97b1a4dfc2ba68e756e66ecfcbd2a441fb2a44a931fa8a", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x6f376ccb655a09f8c21d1fc84096665def360adafb3ccf108930e5fefb14a1c3", "blockHeight": 6274534, @@ -20530,12 +15751,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xcd722ef4389e57f44c1e2f3977b2a7801c10cfe210175e95ce13b081e19b327d-OUT", "hash": "0xcd722ef4389e57f44c1e2f3977b2a7801c10cfe210175e95ce13b081e19b327d", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x09f2213b25313ccc8f93be40ef1f4fde2aed6f9d6f2d8557d107705627833fbf", "blockHeight": 6269503, @@ -20551,12 +15768,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x49f5ef92a666b0e5f7defadf48bb916eec22ff2ba965db69f0e1d17cec61258d-OUT", "hash": "0x49f5ef92a666b0e5f7defadf48bb916eec22ff2ba965db69f0e1d17cec61258d", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xd3783a94959e4a6629ba0d5ed096c800e9937ed8e6cd1661caf6c3c81a1a6c61", "blockHeight": 6268070, @@ -20572,12 +15785,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x77a3174d8fbead584714fcba49e619d722ab1f907b5a57640eba4f124a8a4220-OUT", "hash": "0x77a3174d8fbead584714fcba49e619d722ab1f907b5a57640eba4f124a8a4220", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x305d10208f8efad03f763941d0be55f07b4a578adf258b26eb9976ac0789e601", "blockHeight": 6250993, @@ -20593,12 +15802,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xba6148362ba594f8f10e60e6e5aa9126bdd7923ac6b8bf1a91efbf4329cdbb91-OUT", "hash": "0xba6148362ba594f8f10e60e6e5aa9126bdd7923ac6b8bf1a91efbf4329cdbb91", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xfea5bee2a4adeb6374b66cb9b673ff7084b0ca961879977a7cfcd2c04afe679a", "blockHeight": 6250714, @@ -20614,12 +15819,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x13bb563174a62ce0ceb172a3a21213f01c376e0f364c8f1cf9bbd51291ffde34-OUT", "hash": "0x13bb563174a62ce0ceb172a3a21213f01c376e0f364c8f1cf9bbd51291ffde34", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xfa7c17e0312d0e92d04dd9965b4c8befcefd70d0b098a88bbaff678db20f3b33", "blockHeight": 6250619, @@ -20635,12 +15836,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc4ac31da2ef8327abfede3b8708074d1883af32f70a782d3abcc57ed49c74462-OUT", "hash": "0xc4ac31da2ef8327abfede3b8708074d1883af32f70a782d3abcc57ed49c74462", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x0516e622cce467700cffa283b1a58f848e9616c18248ad35e90c0310caf664f9", "blockHeight": 6250114, @@ -20656,12 +15853,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xd4fc674547226419a6573c5a3b56c898a4edc3a13bdd2a9921037e7ce4789da7-OUT", "hash": "0xd4fc674547226419a6573c5a3b56c898a4edc3a13bdd2a9921037e7ce4789da7", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xe3d8a84a5180d3c35d9e5eae9f88511820438d49da956b376fe8898571f2d5ac", "blockHeight": 6248838, @@ -20677,12 +15870,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x08cd1147f8e2e8ec8d77a9283835284a7947d7e26cd15764c809af67a7c58936-OUT", "hash": "0x08cd1147f8e2e8ec8d77a9283835284a7947d7e26cd15764c809af67a7c58936", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x0c6e74a7d7dc6c019b94ea98ddad8ce1479bef48008b0e0f6ba0318c0d1a704e", "blockHeight": 6242864, @@ -20698,12 +15887,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x2f47bff8ef68f545e1bfcead2a3e268756b015c9997f9acd8aede188374679c7-OUT", "hash": "0x2f47bff8ef68f545e1bfcead2a3e268756b015c9997f9acd8aede188374679c7", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x3d2d7ce96433933cc6da36579d15a250a9a53492b9a848fb1458ea4168d967bc", "blockHeight": 6242418, @@ -20719,12 +15904,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x66765de8055e6d64df78db8442eae4921683e561e6922210ee665355a868910d-OUT", "hash": "0x66765de8055e6d64df78db8442eae4921683e561e6922210ee665355a868910d", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x01feae7fda0e814282eceaa84538ab8aa72d62278ef4672020dc0d5d1a69cd67", "blockHeight": 6232921, @@ -20740,12 +15921,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xb8e4b84f0e92541d1692309125de1737c8129a6b6083666838bb64a29a4680f7-OUT", "hash": "0xb8e4b84f0e92541d1692309125de1737c8129a6b6083666838bb64a29a4680f7", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x997145201fb4eca8a4274e805a2faff09ea4f6f173342f9409270c18559a1769", "blockHeight": 6232488, @@ -20761,12 +15938,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x901a762881747436b15f32aea986ea8d582b2b41e20d0877607a6c7aed20de04-OUT", "hash": "0x901a762881747436b15f32aea986ea8d582b2b41e20d0877607a6c7aed20de04", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xc7d018e3c977372ea6e34f747f9d9d26be1cd9addcf8b5e3fe449be41782df16", "blockHeight": 6225176, @@ -20782,12 +15955,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xbb9420e45938f9f78881f16d46d4effab63c9c1fc832060c7189aa6d76b6b43c-OUT", "hash": "0xbb9420e45938f9f78881f16d46d4effab63c9c1fc832060c7189aa6d76b6b43c", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xc319ef569fd6a5e6200123722d957d1d2aae9c77877cd47849b5e6cad69a2bb8", "blockHeight": 6197721, @@ -20803,12 +15972,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x739a7ece91d47f1b2b565a05dfd6b51b74004724b42413b6781ac45267b59e98-OUT", "hash": "0x739a7ece91d47f1b2b565a05dfd6b51b74004724b42413b6781ac45267b59e98", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x1ab17aa27da957704625988b8d1393ec26b8a673d959ea1676b686cfd91715b0", "blockHeight": 6196975, @@ -20824,12 +15989,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x22c6bf17e0b367230e62c5d089468c7747fe5ab36cb89601ce5cb7307a3586fe-OUT", "hash": "0x22c6bf17e0b367230e62c5d089468c7747fe5ab36cb89601ce5cb7307a3586fe", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x5c0467ec3a2a92dce885da2107548fcd2424ab64ca17408289661d7aae09ce08", "blockHeight": 6191349, @@ -20845,12 +16006,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x521b951ca106daaa0944a0c34e44de58532a8b52f2a993483a947f50626eb356-OUT", "hash": "0x521b951ca106daaa0944a0c34e44de58532a8b52f2a993483a947f50626eb356", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x82102cd73beced6e3859aab1f4df57426a8cefe22d1625416639d99cafe4394a", "blockHeight": 6183775, @@ -20866,12 +16023,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe710ad8cd22e58f399cdbdcb1cb48c28cc13689edcc773ee31ac22c59abc02fa-OUT", "hash": "0xe710ad8cd22e58f399cdbdcb1cb48c28cc13689edcc773ee31ac22c59abc02fa", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x0714ca1e6b5b5b3545a1692896fc338ad065ae642314a7f5bded9d64a4ea555c", "blockHeight": 6183744, @@ -20887,12 +16040,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xfc2bc87bb4ad204866d354167d66b1d4e037a5308ac88e7ff98ca8f976bca00a-OUT", "hash": "0xfc2bc87bb4ad204866d354167d66b1d4e037a5308ac88e7ff98ca8f976bca00a", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x93b7c44651ed088438b124d9656e74741823958785c893338e0d28cff78c4607", "blockHeight": 6183737, @@ -20908,12 +16057,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xd1e795ac67e50cec2012ea39856a67afed0f833396a58649fed004f145bb4275-OUT", "hash": "0xd1e795ac67e50cec2012ea39856a67afed0f833396a58649fed004f145bb4275", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xa549ef62957da037e062f6a55837dc74f8c8bf30a5438bbc38a44c279d7c156e", "blockHeight": 6183719, @@ -20929,12 +16074,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xce6f1644e92292c1643800d56ad550f46ba74caffd76a4185315500e6f942667-OUT", "hash": "0xce6f1644e92292c1643800d56ad550f46ba74caffd76a4185315500e6f942667", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x9034be974802394eea3ba1e8db49217887a55d49314890ff79712fc08571665a", "blockHeight": 6183370, @@ -20950,12 +16091,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x9259291476b5249d5fbf372b9623dbc7d803d212e64de55cb73f3e2c4a2147ad-OUT", "hash": "0x9259291476b5249d5fbf372b9623dbc7d803d212e64de55cb73f3e2c4a2147ad", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x5fbb36f788f8a27bbef9940179a4d7af0461f6e31616458e9f2347a95e010f27", "blockHeight": 6183360, @@ -20971,12 +16108,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf4071d55090721a67e4384e874598eb5ac6e2bda3b6092e8b27defe14713f690-OUT", "hash": "0xf4071d55090721a67e4384e874598eb5ac6e2bda3b6092e8b27defe14713f690", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xbf2021a4edb759dd6484149d8fa715f950379d31b04e04244a5ffd089e9b229f", "blockHeight": 6183341, @@ -20992,12 +16125,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x0b710341d21c3e17d22e61e1805444cb62ec04b0a90687a10bf3ac2228b2db51-OUT", "hash": "0x0b710341d21c3e17d22e61e1805444cb62ec04b0a90687a10bf3ac2228b2db51", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x0b152b97a442c7a9b2a28c6a37cd645815a29abb8b2e8b241788a30d0e1ad7ed", "blockHeight": 6183328, @@ -21013,12 +16142,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xa419faa350a35a8c79d02b9018b76518e7bcdaa32bf631a407fa6423e17a2260-OUT", "hash": "0xa419faa350a35a8c79d02b9018b76518e7bcdaa32bf631a407fa6423e17a2260", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x728710963ef92df6b6bcefcc0a9dec28c6ad5882e3ea38af60099e956b1342c6", "blockHeight": 6183315, @@ -21034,12 +16159,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf664608d11940e7d540e423deb29db9d68bc120d49a17971565f078ac224c853-OUT", "hash": "0xf664608d11940e7d540e423deb29db9d68bc120d49a17971565f078ac224c853", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x5bf87b8aaff9c17e49e990f5f245bef03bcd69d2272602c1995c8959ca6a0af9", "blockHeight": 6183238, @@ -21055,12 +16176,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x1c54bc4a62f74aa4d10ce8cdbb0e7290bf086b2e54259e4e619d3717e2009df2-OUT", "hash": "0x1c54bc4a62f74aa4d10ce8cdbb0e7290bf086b2e54259e4e619d3717e2009df2", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xdca2f6773e2bd0ae398c2c170dce0bd254b48c5a66a253d069f4169d6f894357", "blockHeight": 6182763, @@ -21076,12 +16193,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc4183a9c8df2df06ac873c5b9152cf2a7f52eb3c4dab3bdea2e07755b0197f2c-OUT", "hash": "0xc4183a9c8df2df06ac873c5b9152cf2a7f52eb3c4dab3bdea2e07755b0197f2c", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x4b8617ddd53f5def705d0cc0c8df36ebdff860d6c46621cb282ae27838c62d13", "blockHeight": 5949742, @@ -21097,12 +16210,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xb0b09a52756fd7bf2f3fefd2fbb0cf5d1af93b3e07502d41fdfbdc45b52805b3-OUT", "hash": "0xb0b09a52756fd7bf2f3fefd2fbb0cf5d1af93b3e07502d41fdfbdc45b52805b3", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x9843b0d5c2a88b7d40614c937a28fa19e937fb6ffb111ed36db296b959026042", "blockHeight": 5948269, @@ -21118,12 +16227,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x62bd7eaee68eed0c39f18f1436864a9a9b48ecc17172e1e5dc7684db8ea6d648-OUT", "hash": "0x62bd7eaee68eed0c39f18f1436864a9a9b48ecc17172e1e5dc7684db8ea6d648", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x0210f8119a81f511aa072d8bd0bd23ec991c89f9e59f4e5f37a8cf6be383f849", "blockHeight": 5948085, @@ -21139,12 +16244,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf7ce5e98d7c7417a70c8c4164dc80b09d016bc86302f5a083f6a4573329bbf34-OUT", "hash": "0xf7ce5e98d7c7417a70c8c4164dc80b09d016bc86302f5a083f6a4573329bbf34", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xd65c9591c37d17d711595ea36c3b249d6a5f31427761ac7c92b2fa7228b080e7", "blockHeight": 5947702, @@ -21160,12 +16261,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x8c27f673e9442dc56c667997da3b1f56ca3523d256b8b4dca975352857c4e34d-OUT", "hash": "0x8c27f673e9442dc56c667997da3b1f56ca3523d256b8b4dca975352857c4e34d", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xede29aa5658064b564348e11f23b8d074df16c6d5055c8979e4ae9f73806bca1", "blockHeight": 5947337, @@ -21181,12 +16278,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x9def1ab1895552c99022a16c19828726298a0bf2f8ec348e2af72929d2ba52a3-OUT", "hash": "0x9def1ab1895552c99022a16c19828726298a0bf2f8ec348e2af72929d2ba52a3", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x21b63c6698aee8c9e6ce8703a2fcb7a472c53eca377466a3001caeeff9302b62", "blockHeight": 5921624, @@ -21202,12 +16295,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xd884ab4034e25bdd50fb159ab9bf78a0242d839e7c99ba2cec27e738959631eb-OUT", "hash": "0xd884ab4034e25bdd50fb159ab9bf78a0242d839e7c99ba2cec27e738959631eb", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xf6d7c8399b1354e001c7f92783cb905c10a05829b1b0a0b6c673a77c7be1be49", "blockHeight": 5921300, @@ -21223,12 +16312,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x7e0481c353102e9d1dda32a00190e9c28c953e1d4cd133421428758653542caf-OUT", "hash": "0x7e0481c353102e9d1dda32a00190e9c28c953e1d4cd133421428758653542caf", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x4065987c7141ed76a5061ba839df3d0ccb8561c82f106899840f25825c90c433", "blockHeight": 5921246, @@ -21244,12 +16329,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3f9e1a9f133ba3ba15d92e49bfc77bc16255422953db2bcacde74a51bd125736-OUT", "hash": "0x3f9e1a9f133ba3ba15d92e49bfc77bc16255422953db2bcacde74a51bd125736", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x7ee06a31ef76d337a2badeab0b2cf525b13e6ce9de7b08353a7f954048b0da49", "blockHeight": 5921240, @@ -21265,12 +16346,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf7498ff0092fed2e7f31650115b9eb98247b78479b3360352254f13e56d77932-OUT", "hash": "0xf7498ff0092fed2e7f31650115b9eb98247b78479b3360352254f13e56d77932", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xf156feb9590b652011f363c906754ae23efe2d6fc0386bf0fd5d6cb8a5176ebc", "blockHeight": 5921010, @@ -21286,12 +16363,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xcb1270749d8dcc53042c0e9dc551a3dacd5dcf6335f0f94bf6b8568df5424108-OUT", "hash": "0xcb1270749d8dcc53042c0e9dc551a3dacd5dcf6335f0f94bf6b8568df5424108", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x342a2b20eb330632b0ac502df8b370d2c8dc2f5d85eaf0556e53dcabbf4688e4", "blockHeight": 5915303, @@ -21307,12 +16380,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xe41e1b42e37784e9c1041f9e040256c2b093e5e9d821feee43fb53d94cda16eb-OUT", "hash": "0xe41e1b42e37784e9c1041f9e040256c2b093e5e9d821feee43fb53d94cda16eb", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x5a8bcf8fc598121413a3e113bca19eb6bac585455683c1b5f34d62abf20b86f4", "blockHeight": 5915290, @@ -21328,12 +16397,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xf0113a90212d31d5be0d31464db6d570909ac9950f76f9f421547a75cb5567e8-OUT", "hash": "0xf0113a90212d31d5be0d31464db6d570909ac9950f76f9f421547a75cb5567e8", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xe833d2ace5e115a20ad913f67dbb1092c04718763806da71ac959b9a8cc72302", "blockHeight": 5914498, @@ -21349,12 +16414,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x0aa844cd6ebeedb3bd996c94ea35431c38f527148de7ca94a7395485c72dcde4-OUT", "hash": "0x0aa844cd6ebeedb3bd996c94ea35431c38f527148de7ca94a7395485c72dcde4", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xa7bb92e4eefc54d883126bc15aa45037e4dc3151d0f3e6962c6d6d43b6fb4189", "blockHeight": 5913917, @@ -21370,12 +16431,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x0cd3d38cef087638574f62c4d61e67e6f6d5abb1bc788a9a82784b261672d343-OUT", "hash": "0x0cd3d38cef087638574f62c4d61e67e6f6d5abb1bc788a9a82784b261672d343", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xeedfc9598e63b1b065702b8dbc2ee252f0219acb4ff8a42c1b68c074ea6dfff6", "blockHeight": 5913862, @@ -21391,12 +16448,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x21f254ba3ff939e27b34fca419f7afc86770c1b6bcb06214980e127a64fc3547-OUT", "hash": "0x21f254ba3ff939e27b34fca419f7afc86770c1b6bcb06214980e127a64fc3547", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x05e9ba2ba126f17436db61dc18d6545d95334863101015063776a62b1be33464", "blockHeight": 5913823, @@ -21412,12 +16465,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x3f0a86a9c91910aea23873969845bbd88188d16c8ee4e0fef787ddfff5f15031-OUT", "hash": "0x3f0a86a9c91910aea23873969845bbd88188d16c8ee4e0fef787ddfff5f15031", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x7d1bb861917221312002aa991561a0b7509a7d2d98e0d3d6c9b07972192bff59", "blockHeight": 5913813, @@ -21433,12 +16482,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x0b87a59547793b4fef371d34ea37f336a07b1f82b43646227168e216daf36182-IN", "hash": "0x0b87a59547793b4fef371d34ea37f336a07b1f82b43646227168e216daf36182", "type": "IN", - "senders": [ - "0x84c9A36721eB21da9244Fe50177180D8f4a7cAF7" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], + "senders": ["0x84c9A36721eB21da9244Fe50177180D8f4a7cAF7"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xd797bc8690c420874e6cb65f8acd9fb060a90cdf60826a1fae1e8ca5b46da0a5", "blockHeight": 5913727, @@ -21454,12 +16499,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc67a038db532d77d3c5ec6fda74bd4bfcbf4077d35b7105d3e790b2ff89c0b3a-OUT", "hash": "0xc67a038db532d77d3c5ec6fda74bd4bfcbf4077d35b7105d3e790b2ff89c0b3a", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x58d3e6c8ea6221417bfe9c51008bca89aa672fdc8e9321ee9d26a3d85fcba531", "blockHeight": 5913205, @@ -21475,12 +16516,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xbcb44eae119054b0a00190e8e20c081f009a40d237e09d675e49a31f1886c94b-IN", "hash": "0xbcb44eae119054b0a00190e8e20c081f009a40d237e09d675e49a31f1886c94b", "type": "IN", - "senders": [ - "0x6627C488E5Cd393e20B1C43D267e5A91236d7db2" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], + "senders": ["0x6627C488E5Cd393e20B1C43D267e5A91236d7db2"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x3167baffa394941ed3da03a55fd42053ea896e8e545204e1c94834e5fc6e94c8", "blockHeight": 5910047, @@ -21496,12 +16533,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x536e78db72060830930dd0fe1fe4a86eeb31ae4f6db4b76b407627f094ed9439-OUT", "hash": "0x536e78db72060830930dd0fe1fe4a86eeb31ae4f6db4b76b407627f094ed9439", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xef17ba249574adc4bf07e1da5e0b89dd2e131786ae12460f65d8c8fc17f4bc4e", "blockHeight": 5908643, @@ -21517,12 +16550,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xc484624fcb7eb247fb60126670f8a77d8a798638c3044a090ae7caa9df2fa981-OUT", "hash": "0xc484624fcb7eb247fb60126670f8a77d8a798638c3044a090ae7caa9df2fa981", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x2caea8c7fce9229f084d4526eeec8fe961e6165bf9d2169fcd5a47cf958b98c3", "blockHeight": 5908633, @@ -21538,12 +16567,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0x4e922150f45253718fcae9ac728c707c3f74f47a2f189e076d13dc93095e11eb-OUT", "hash": "0x4e922150f45253718fcae9ac728c707c3f74f47a2f189e076d13dc93095e11eb", "type": "OUT", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0x6e8a898ca5d18ea04710c13d9bbb442f7bdfce55b4a36bcd9b0135d658991446", "blockHeight": 5908631, @@ -21559,12 +16584,8 @@ "id": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:-0xecf48b0978e81aa12d565a24f0123916a11e103c22caf741a67accfda84f85cd-IN", "hash": "0xecf48b0978e81aa12d565a24f0123916a11e103c22caf741a67accfda84f85cd", "type": "IN", - "senders": [ - "0x4258A05DBA420A398bcdFB389E4250759b4223ea" - ], - "recipients": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], + "senders": ["0x4258A05DBA420A398bcdFB389E4250759b4223ea"], + "recipients": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], "accountId": "js:2:ethereum_sepolia:0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6:", "blockHash": "0xbbc8a1a441c4b626f477ba3cf760dcdd71b79715ff5488cdb2a7552cb0599292", "blockHeight": 5908494, @@ -21585,300 +16606,88 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048739422428690000, - 4048091409072458000, - 4047495723802288000, - 4047495723802288000, - 4047495723802288000, - 4047495723802288000, - 4047495723802288000, - 4047495723802288000, - 4047495723802288000, - 4047495723802288000, - 4047495723802288000, - 4047495723802288000, - 4047495723802288000, - 4047495723802288000, - 4047495723802288000, - 4047495723802288000, - 4047495723802288000, - 4047401402777136000, - 4047401402777136000, - 4047401402777136000, - 4047401402777136000, - 4047401402777136000, - 4047401402777136000, - 4047401402777136000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4046055904234978000, - 4046055904234978000, - 4046055904234978000, - 4046055904234978000, - 4046055904234978000, - 4046055904234978000, - 4046055904234978000, - 4046055904234978000, - 4046055904234978000, - 4046055904234978000, - 4044424910555102000, - 4044424910555102000, - 4044424910555102000, - 4044424910555102000, - 4044424910555102000, - 4044424910555102000, - 4044424910555102000, - 4044424910555102000, - 4044424910555102000, - 4044424910555102000, - 4044424910555102000, - 4044424910555102000, - 4044424910555102000, - 4044424910555102000, - 4044424910555102000, - 4044424910555102000, - 4044288545611453000, - 4044288545611453000, - 4044288545611453000, - 4044288545611453000, - 4044288545611453000, - 4044288545611453000, - 4044288545611453000, - 4044288545611453000, - 4044288545611453000, - 4043458433032726000, - 4043458433032726000, - 4043458433032726000, - 4043458433032726000, - 4043458433032726000, - 4043458433032726000, - 4043458433032726000, - 4043458433032726000, - 4043458433032726000, - 4043458433032726000, - 4043458433032726000, - 4043458433032726000, - 4043458433032726000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043415724731429000, - 4043368099748390000, - 4043368099748390000, - 4043368099748390000, + 4048739422428690000, 4048739422428690000, 4048739422428690000, 4048739422428690000, + 4048739422428690000, 4048739422428690000, 4048739422428690000, 4048739422428690000, + 4048739422428690000, 4048739422428690000, 4048739422428690000, 4048739422428690000, + 4048739422428690000, 4048739422428690000, 4048739422428690000, 4048739422428690000, + 4048739422428690000, 4048739422428690000, 4048739422428690000, 4048739422428690000, + 4048739422428690000, 4048739422428690000, 4048739422428690000, 4048739422428690000, + 4048739422428690000, 4048739422428690000, 4048739422428690000, 4048739422428690000, + 4048739422428690000, 4048091409072458000, 4047495723802288000, 4047495723802288000, + 4047495723802288000, 4047495723802288000, 4047495723802288000, 4047495723802288000, + 4047495723802288000, 4047495723802288000, 4047495723802288000, 4047495723802288000, + 4047495723802288000, 4047495723802288000, 4047495723802288000, 4047495723802288000, + 4047495723802288000, 4047401402777136000, 4047401402777136000, 4047401402777136000, + 4047401402777136000, 4047401402777136000, 4047401402777136000, 4047401402777136000, + 4046111131892621000, 4046111131892621000, 4046111131892621000, 4046111131892621000, + 4046111131892621000, 4046111131892621000, 4046111131892621000, 4046111131892621000, + 4046111131892621000, 4046111131892621000, 4046111131892621000, 4046111131892621000, + 4046111131892621000, 4046111131892621000, 4046111131892621000, 4046111131892621000, + 4046111131892621000, 4046111131892621000, 4046111131892621000, 4046111131892621000, + 4046111131892621000, 4046111131892621000, 4046111131892621000, 4046111131892621000, + 4046111131892621000, 4046111131892621000, 4046111131892621000, 4046111131892621000, + 4046111131892621000, 4046111131892621000, 4046111131892621000, 4046111131892621000, + 4046111131892621000, 4046111131892621000, 4046111131892621000, 4046111131892621000, + 4046111131892621000, 4046111131892621000, 4046111131892621000, 4046111131892621000, + 4046111131892621000, 4046111131892621000, 4046111131892621000, 4046111131892621000, + 4046111131892621000, 4046111131892621000, 4046111131892621000, 4046111131892621000, + 4046111131892621000, 4046111131892621000, 4046111131892621000, 4046111131892621000, + 4046111131892621000, 4046111131892621000, 4046111131892621000, 4046111131892621000, + 4046111131892621000, 4046111131892621000, 4046111131892621000, 4046111131892621000, + 4046111131892621000, 4046111131892621000, 4046111131892621000, 4046111131892621000, + 4046111131892621000, 4046055904234978000, 4046055904234978000, 4046055904234978000, + 4046055904234978000, 4046055904234978000, 4046055904234978000, 4046055904234978000, + 4046055904234978000, 4046055904234978000, 4046055904234978000, 4044424910555102000, + 4044424910555102000, 4044424910555102000, 4044424910555102000, 4044424910555102000, + 4044424910555102000, 4044424910555102000, 4044424910555102000, 4044424910555102000, + 4044424910555102000, 4044424910555102000, 4044424910555102000, 4044424910555102000, + 4044424910555102000, 4044424910555102000, 4044424910555102000, 4044288545611453000, + 4044288545611453000, 4044288545611453000, 4044288545611453000, 4044288545611453000, + 4044288545611453000, 4044288545611453000, 4044288545611453000, 4044288545611453000, + 4043458433032726000, 4043458433032726000, 4043458433032726000, 4043458433032726000, + 4043458433032726000, 4043458433032726000, 4043458433032726000, 4043458433032726000, + 4043458433032726000, 4043458433032726000, 4043458433032726000, 4043458433032726000, + 4043458433032726000, 4043415724731429000, 4043415724731429000, 4043415724731429000, + 4043415724731429000, 4043415724731429000, 4043415724731429000, 4043415724731429000, + 4043415724731429000, 4043415724731429000, 4043415724731429000, 4043415724731429000, + 4043415724731429000, 4043415724731429000, 4043415724731429000, 4043415724731429000, + 4043415724731429000, 4043415724731429000, 4043415724731429000, 4043415724731429000, + 4043415724731429000, 4043415724731429000, 4043415724731429000, 4043415724731429000, + 4043415724731429000, 4043368099748390000, 4043368099748390000, 4043368099748390000, 4043368099748390000 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 161021620389048000, - 2142723473455341000, - 2131967534942869000, - 2131967534942869000, - 2131967534942869000, - 2131967534942869000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2113218932585880000, - 2110137049408349000, - 2107788497517747000, - 2107788497517747000, - 2107788497517747000, - 2107788497517747000, - 2107055526542825000, - 2104646033551611000, - 2104646033551611000, - 2104051580751067000, - 2101760456346317000, - 2101760456346317000, - 2101760456346317000, - 2098191813074913000, - 2098049965933928000, - 2087814479315737000, - 2067329281675242000, - 2066048844975900000, - 2066048844975900000, - 2066048844975900000, - 2059147831001317000, - 2054670863951628000, - 2053505784146698000, - 2053466442059070000, - 2053401505726220000, - 2053401505726220000, - 2053401505726220000, - 2051963556666400000, - 4050391547373669000, - 4048739422428690000, - 4047495723802288000, - 4046111131892621000, - 4046111131892621000, - 4046111131892621000, - 4044424910555102000, - 4043458433032726000, - 4043415724731429000 + 0, 161021620389048000, 2142723473455341000, 2131967534942869000, + 2131967534942869000, 2131967534942869000, 2131967534942869000, 2127083859210032000, + 2127083859210032000, 2127083859210032000, 2127083859210032000, 2127083859210032000, + 2127083859210032000, 2127083859210032000, 2127083859210032000, 2127083859210032000, + 2127083859210032000, 2127083859210032000, 2127083859210032000, 2127083859210032000, + 2127083859210032000, 2127083859210032000, 2127083859210032000, 2127083859210032000, + 2127083859210032000, 2127083859210032000, 2127083859210032000, 2127083859210032000, + 2127083859210032000, 2127083859210032000, 2127083859210032000, 2127083859210032000, + 2127083859210032000, 2127083859210032000, 2127083859210032000, 2127083859210032000, + 2127083859210032000, 2127083859210032000, 2127083859210032000, 2127083859210032000, + 2127083859210032000, 2127083859210032000, 2113218932585880000, 2110137049408349000, + 2107788497517747000, 2107788497517747000, 2107788497517747000, 2107788497517747000, + 2107055526542825000, 2104646033551611000, 2104646033551611000, 2104051580751067000, + 2101760456346317000, 2101760456346317000, 2101760456346317000, 2098191813074913000, + 2098049965933928000, 2087814479315737000, 2067329281675242000, 2066048844975900000, + 2066048844975900000, 2066048844975900000, 2059147831001317000, 2054670863951628000, + 2053505784146698000, 2053466442059070000, 2053401505726220000, 2053401505726220000, + 2053401505726220000, 2051963556666400000, 4050391547373669000, 4048739422428690000, + 4047495723802288000, 4046111131892621000, 4046111131892621000, 4046111131892621000, + 4044424910555102000, 4043458433032726000, 4043415724731429000 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 2131967534942869000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2127083859210032000, - 2107788497517747000, - 2101760456346317000, - 2066048844975900000, - 2053401505726220000, - 4046111131892621000 + 0, 2131967534942869000, 2127083859210032000, 2127083859210032000, + 2127083859210032000, 2127083859210032000, 2127083859210032000, 2107788497517747000, + 2101760456346317000, 2066048844975900000, 2053401505726220000, 4046111131892621000 ], "latestDate": 1722117600000 } @@ -21909,12 +16718,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x011e9dbcf7e5e972c0af5e345b3d94dbd3e02abdb7c6927214eb8a29ec038d41-IN", "hash": "0x011e9dbcf7e5e972c0af5e345b3d94dbd3e02abdb7c6927214eb8a29ec038d41", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x3d7789ffd46bedceb2bcd236927497e873fac1a90f7e40b7c7091b0d7420014a", "blockHeight": 6414373, @@ -21930,12 +16735,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x881e97397080ea7f31da07662e1526480e39b32294fc34d249a4ef7f838b411e-IN", "hash": "0x881e97397080ea7f31da07662e1526480e39b32294fc34d249a4ef7f838b411e", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x1092c7f21370f331201372ccafce5f9b2c78f9974811155fbbc9216d2457ea20", "blockHeight": 6408012, @@ -21951,12 +16752,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xbcb470d8e017db228826306e7bdee86c24f44b63abe63e71bc8844eb63931ded-IN", "hash": "0xbcb470d8e017db228826306e7bdee86c24f44b63abe63e71bc8844eb63931ded", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xa9ced9c41d062a09069d0dbfe99256fa6e3057cb1321e42d6eeb5d50ae724457", "blockHeight": 6404619, @@ -21972,12 +16769,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x713f1e08351394355db0d727266b09818e656ddc4666552152b8edf66e03b39b-IN", "hash": "0x713f1e08351394355db0d727266b09818e656ddc4666552152b8edf66e03b39b", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xf384bb771b6cf9fd7507e738e3a2906271620265f2286c0c69ce105a3616d340", "blockHeight": 6404563, @@ -21993,12 +16786,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xc74a881bbd6cb86600f690b47d6f0aa8ea7c9c60cbb11e59de1b23d419c293eb-IN", "hash": "0xc74a881bbd6cb86600f690b47d6f0aa8ea7c9c60cbb11e59de1b23d419c293eb", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x2f11b83f45594ffcaee1cd65c6c2788a44aeabcd3af25103c9b99e3cd5b053aa", "blockHeight": 6404557, @@ -22014,12 +16803,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x38e87845951a6726689af80324882a00760fa9a0d34a55afb574e35f3c73809d-IN", "hash": "0x38e87845951a6726689af80324882a00760fa9a0d34a55afb574e35f3c73809d", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x4f7a5ab9fd3d2c67b276a0de1e529eae58f8e43039677c79afa9e96cd54ead27", "blockHeight": 6402458, @@ -22035,12 +16820,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x5544c428114dafd2ee467724d04d79181f8226a5b755b15289e0b8b9a5dccd2f-IN", "hash": "0x5544c428114dafd2ee467724d04d79181f8226a5b755b15289e0b8b9a5dccd2f", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x499614f28e5513263e67dc704bf517e035e60e094f61786fdb780253c3a51f02", "blockHeight": 6398253, @@ -22056,12 +16837,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf23c4e6ea26f7d32f57b72c64a7d271a82a44af7d4035dfe639701922f5c8459-IN", "hash": "0xf23c4e6ea26f7d32f57b72c64a7d271a82a44af7d4035dfe639701922f5c8459", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x8eea5dbabc99ec399511660a3865e20ee09992172b639d91a89b74ee5e8a556e", "blockHeight": 6398169, @@ -22077,12 +16854,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xbc564a85f6a8b9eb26be70632f5af8d8ee75b6a5bd6e9f367a5a4957d7e55f59-IN", "hash": "0xbc564a85f6a8b9eb26be70632f5af8d8ee75b6a5bd6e9f367a5a4957d7e55f59", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xe4cb8b10628a2673ed23133dc34f1b73847121b1156752964098bf5344a46ec4", "blockHeight": 6395615, @@ -22098,12 +16871,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x0489d8474fab87298064ff7f30692b3e47e038543cf762645036f30ae07f2133-IN", "hash": "0x0489d8474fab87298064ff7f30692b3e47e038543cf762645036f30ae07f2133", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x54352ed5f8ca9a2b0b414391c0e17e6ab6d69c3eec2892d6771e6df84d8fec41", "blockHeight": 6379079, @@ -22119,12 +16888,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x67d88b84f3691abc57ac4e49da8a03b8dce27790a10853d70dbb45999f6c78fb-IN", "hash": "0x67d88b84f3691abc57ac4e49da8a03b8dce27790a10853d70dbb45999f6c78fb", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x23a038ce8ad558e39d19868957de798275bf14aa1261644da8788e7f73933334", "blockHeight": 6377378, @@ -22140,12 +16905,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x6d37f90e07bed20db7c835690f891f3dd600ae391bbe977d138c3cadc7f786f5-IN", "hash": "0x6d37f90e07bed20db7c835690f891f3dd600ae391bbe977d138c3cadc7f786f5", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xe3acad691fa99cf116d6084a8036feedb683df681149e07aa9dfd562835592ea", "blockHeight": 6373755, @@ -22161,12 +16922,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x9b6f1d61aebe0fd46210358595f2eedb336fb68ca048f3f2cc993cce863a93f1-IN", "hash": "0x9b6f1d61aebe0fd46210358595f2eedb336fb68ca048f3f2cc993cce863a93f1", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xa6c50a5e65db4a8860f85b8e17fdb5eb24733b64337c0af96f915f28df6b9802", "blockHeight": 6373631, @@ -22182,12 +16939,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf1e1ccc5395630aa0943f3113c3c4a77a1b03da7f5c6a3d234a817bd37654a67-IN", "hash": "0xf1e1ccc5395630aa0943f3113c3c4a77a1b03da7f5c6a3d234a817bd37654a67", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x3bbaf6ff5dc553d93cba43772bac7f66dc2116cd4548b24a9084100cd031773e", "blockHeight": 6366561, @@ -22203,12 +16956,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xc2faf53218ecf28dc82af6bb9724a4a7ed05668a06afeca269e9870c31be7e1c-IN", "hash": "0xc2faf53218ecf28dc82af6bb9724a4a7ed05668a06afeca269e9870c31be7e1c", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x538ffe33620e7c88cf679b93ec68d8535d07b08ef435856c516bd988af214407", "blockHeight": 6365868, @@ -22224,12 +16973,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x22a309d8a5ea199cefb7df225e5dd99ce08d891bb69f736f3b71c8746b9e1b67-IN", "hash": "0x22a309d8a5ea199cefb7df225e5dd99ce08d891bb69f736f3b71c8746b9e1b67", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x8b6946af00e829c954df027cab7738c5f6e39317d81f564ef6da2e06e007992e", "blockHeight": 6365863, @@ -22245,12 +16990,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x45eebb32d42862aa5dddb4053942a3810aa4a3911ad943bcba2dcdd279a75e89-IN", "hash": "0x45eebb32d42862aa5dddb4053942a3810aa4a3911ad943bcba2dcdd279a75e89", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x170ee1f4eb2b269803d679f47a72b2abae49f3d18040231f968cc5f31958bc31", "blockHeight": 6362420, @@ -22266,12 +17007,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x4c81d7b28b42cacf65da49b89be0706d365ddc903c38f9bed4e7854ed1ad923e-IN", "hash": "0x4c81d7b28b42cacf65da49b89be0706d365ddc903c38f9bed4e7854ed1ad923e", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x35c5091a19eee82f436ab47cdc052f989d99b7ac4640890bcddc5562728fcf74", "blockHeight": 6362383, @@ -22287,12 +17024,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x2fa5ae47255980001a6854776fbea08a395532cdfa87d25d47eaacf1b11bb127-IN", "hash": "0x2fa5ae47255980001a6854776fbea08a395532cdfa87d25d47eaacf1b11bb127", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xdd7320bd69555d87c79a1eb5b385aad551e239d2098eb7a705dcad406a0e2946", "blockHeight": 6362337, @@ -22308,12 +17041,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x249a1f2278bda16a102d806adc096c90eec9c9470b19e6d0f50a33b38ee4795d-IN", "hash": "0x249a1f2278bda16a102d806adc096c90eec9c9470b19e6d0f50a33b38ee4795d", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x66272c0fe78433675abfb6866c91173c9fb323dcd89ed1a2ca33a72718e99451", "blockHeight": 6361992, @@ -22329,12 +17058,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xac770e5013e8debfa70e48d17c9ae25297acfc55b225688d2f788bcdf893f770-IN", "hash": "0xac770e5013e8debfa70e48d17c9ae25297acfc55b225688d2f788bcdf893f770", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xedcfcff6dfc35b0eeacbbf2f0fa37512202ce684545ef43dafb01981f91aea8b", "blockHeight": 6361743, @@ -22350,12 +17075,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa18ea3926c43be72f6bd089f43f98d540687bbadb5b8592d4d4ed207bfa015f3-IN", "hash": "0xa18ea3926c43be72f6bd089f43f98d540687bbadb5b8592d4d4ed207bfa015f3", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xd7cb6b797a64a01d7691f002bf3084ccae6f21f2e88865cc0ddc5c790a52aa14", "blockHeight": 6360149, @@ -22371,12 +17092,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x158abbe0225f5af4feb7fef4b91f68c820bf8c48e7ee8f11f77f2a41682b7068-IN", "hash": "0x158abbe0225f5af4feb7fef4b91f68c820bf8c48e7ee8f11f77f2a41682b7068", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x2661bb738d9ca50893592e71c68ff31600f0d8ecd0d00713cc551567ce63f876", "blockHeight": 6356937, @@ -22392,12 +17109,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xb5964b7ce380e432b6b73e68b8984fb591cf77d86a6435ea09c9f392587c30a5-IN", "hash": "0xb5964b7ce380e432b6b73e68b8984fb591cf77d86a6435ea09c9f392587c30a5", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xba41874ae179ce7a0e145a1229bda1ee4cc73be935332f1c416ec2f53209a68d", "blockHeight": 6356893, @@ -22413,12 +17126,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x1a654e03159f12fb81f523b46bb38e42fb6e6333e427bd0a04e552b9b3cef913-IN", "hash": "0x1a654e03159f12fb81f523b46bb38e42fb6e6333e427bd0a04e552b9b3cef913", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x55a013bcf2b88beaed0e5fd3392f9c3a8774ea104574edebfbe558d7a038c959", "blockHeight": 6356693, @@ -22434,12 +17143,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x7a34710f3795cb764a3845f4685a9eb49344ad44815ead46bd75f17690459202-IN", "hash": "0x7a34710f3795cb764a3845f4685a9eb49344ad44815ead46bd75f17690459202", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x8fe6444369b39123d4f0ac4bf3ad60bc580ada15b996fa6f453caa80374cb70c", "blockHeight": 6356689, @@ -22455,12 +17160,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x6a26eb7ac9a3a9b2f9a17cceab110d47794530dea4580f7ccba2812cf7cde00c-IN", "hash": "0x6a26eb7ac9a3a9b2f9a17cceab110d47794530dea4580f7ccba2812cf7cde00c", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x39898c07bbbbb70583e5c7d4175323e38ba27fcac2ae06ebacd46ad47a259930", "blockHeight": 6355968, @@ -22476,12 +17177,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe99bf8e033533fc318660916239130b70898c1b1593b77a572feba528adb9498-IN", "hash": "0xe99bf8e033533fc318660916239130b70898c1b1593b77a572feba528adb9498", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x6377d414663d200ed6b8321aaab0627b2b076e035d4260993c8bfffe361ea3e9", "blockHeight": 6354410, @@ -22497,12 +17194,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xdec9990b13b0fa27acf3bb1af29fc44beec3ab4fb2990ef92c839abfe22d221f-IN", "hash": "0xdec9990b13b0fa27acf3bb1af29fc44beec3ab4fb2990ef92c839abfe22d221f", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x8c109f984ebc0c89a953761aaff71bcafc093bf7ae52bce3e35478ed3ff0d13b", "blockHeight": 6354404, @@ -22518,12 +17211,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x19e7312e410a68cc6fa57b4121792ea6753c0c74d6e4c4f697c9da9fef179659-IN", "hash": "0x19e7312e410a68cc6fa57b4121792ea6753c0c74d6e4c4f697c9da9fef179659", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x086d834ddad8b2ee8140252504ba8ad6048271cb56b01e17e4e999188106b93e", "blockHeight": 6337215, @@ -22539,12 +17228,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x9a8e5aaf6a0588798c038b70e008b7f06309f53787820587b2717eca6bcec6dc-IN", "hash": "0x9a8e5aaf6a0588798c038b70e008b7f06309f53787820587b2717eca6bcec6dc", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x1c40af3ade38fd0ef3b972e4fd04186be21dd636388159c2ec2cf72f0362cf57", "blockHeight": 6331421, @@ -22560,12 +17245,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x102334a53d24514e0c5eb9843de32b3447bf6790b951e2b74799dd84b577e3d3-IN", "hash": "0x102334a53d24514e0c5eb9843de32b3447bf6790b951e2b74799dd84b577e3d3", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xec38290a0f69b0d8a643fbaa409f2edfc4c19c329bb0c08098905067930f1630", "blockHeight": 6327440, @@ -22581,12 +17262,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf57e9f5bb5b31301ce6b03ee78172d07f882e82fe5ae49cea3a8b6ce79d2d6e9-IN", "hash": "0xf57e9f5bb5b31301ce6b03ee78172d07f882e82fe5ae49cea3a8b6ce79d2d6e9", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x25fecf89d86c0cdd4506ecaa179e0a94239cce012709996ecb384df11f2b8eef", "blockHeight": 6327434, @@ -22599,15 +17276,11 @@ "internalOperations": [] }, { - "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x9a75b82e7c546be4ad4c99eb97e9417793997e775960f9792d40c6c00d5c1cfe-IN", - "hash": "0x9a75b82e7c546be4ad4c99eb97e9417793997e775960f9792d40c6c00d5c1cfe", - "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x9a75b82e7c546be4ad4c99eb97e9417793997e775960f9792d40c6c00d5c1cfe-IN", + "hash": "0x9a75b82e7c546be4ad4c99eb97e9417793997e775960f9792d40c6c00d5c1cfe", + "type": "IN", + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xd45a663cf02d0a73d37b8e12c15e2c2a43e6e917b6a0bb8454abfbc719d23637", "blockHeight": 6327375, @@ -22623,12 +17296,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x25da6ac06667b51d205ed55d3112107546525d1d44d1d431fc8abfc31c328e29-IN", "hash": "0x25da6ac06667b51d205ed55d3112107546525d1d44d1d431fc8abfc31c328e29", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xf38d16ff825e2473c7672f74f9b3d557ce767ff1c0ae3430ebe5c178ea6033a8", "blockHeight": 6326340, @@ -22644,12 +17313,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe52528a2630d2672651d2c81e62ecfc69a5ad25fb833a2495d531dd04e7a1ad1-IN", "hash": "0xe52528a2630d2672651d2c81e62ecfc69a5ad25fb833a2495d531dd04e7a1ad1", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xdc28d04336c87bac933a729c01ae886846266bf1ee6a4f6e3738c3a79165fb6d", "blockHeight": 6325457, @@ -22665,12 +17330,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x992551b4e2abd8dc43da0ec27df0ef59488a274c4cf5c58a44a78034672ae85a-IN", "hash": "0x992551b4e2abd8dc43da0ec27df0ef59488a274c4cf5c58a44a78034672ae85a", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xf5abe5d55e652ac08013f7e912f9ab5f7a02461e117584d2ecc35bbbe1e72744", "blockHeight": 6321771, @@ -22686,12 +17347,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x1098cc186ba6c3bfe8c65af420f1413d35811a96241f19554a2845931059f048-IN", "hash": "0x1098cc186ba6c3bfe8c65af420f1413d35811a96241f19554a2845931059f048", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x1d3c9a44264b6a36d8a0d7584d0c980882256fc52c7b33cd5e4a05561b269b67", "blockHeight": 6321649, @@ -22707,12 +17364,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xd0b1b545d3de019a5e3bdb1e5d897e14007e438aa7b04c75a72e8b42890ec737-IN", "hash": "0xd0b1b545d3de019a5e3bdb1e5d897e14007e438aa7b04c75a72e8b42890ec737", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x9a9ad0629cc1a77efc86622ed4e5d1b7afa12592b0abfd5acae44ffcacf38f1c", "blockHeight": 6321451, @@ -22728,12 +17381,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xcf845af008274486935c81a5cfa37729956b46d2340dcf3c25c0e59d707a6e2b-IN", "hash": "0xcf845af008274486935c81a5cfa37729956b46d2340dcf3c25c0e59d707a6e2b", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x199d83f04d239ebe5089a1f9cc1ce3b19ee2fb8d02acdab6a5fd9ace324871c5", "blockHeight": 6321321, @@ -22749,12 +17398,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xb48b1fa36c8450cdde619c14cda004d2c04154044672dbe5b3f0d8e71a0ae443-IN", "hash": "0xb48b1fa36c8450cdde619c14cda004d2c04154044672dbe5b3f0d8e71a0ae443", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x3fc2ff71a58cfe15e3613858db0a55cf8e307eeda3013433d1edf984dd98a281", "blockHeight": 6321192, @@ -22770,12 +17415,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x83e2ae4ab975f822cb10be63d9d2ae4b8eb4155b1ced744454d30172b9ed6fa8-IN", "hash": "0x83e2ae4ab975f822cb10be63d9d2ae4b8eb4155b1ced744454d30172b9ed6fa8", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x8aa973eb7c7f304b8ed71dd71e7b9f6107976222cedd73ee1fbc464bcba2cfdd", "blockHeight": 6321145, @@ -22791,12 +17432,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x2dc8acedaf6df4707ab833dc179e861c4229d42d9fb6fc09f173d52af80682f3-IN", "hash": "0x2dc8acedaf6df4707ab833dc179e861c4229d42d9fb6fc09f173d52af80682f3", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x9ecd2179a59ddf6e3bd304d8082c76bbde1494b8115ee9c29c2ca1971313605f", "blockHeight": 6321058, @@ -22812,12 +17449,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xb44091e50b81aa30df696bfc026c21474812f23a6b59da3ae72d3929ce1324dd-IN", "hash": "0xb44091e50b81aa30df696bfc026c21474812f23a6b59da3ae72d3929ce1324dd", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xd6b3c26fa6ec068155b9d5ae0717dbf9fac210a8619e53ae20968d0958cff5bc", "blockHeight": 6321008, @@ -22833,12 +17466,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x4aa9ea944ab990243b48a245c737294808a861b9936a87ab920add28cfbfe79f-IN", "hash": "0x4aa9ea944ab990243b48a245c737294808a861b9936a87ab920add28cfbfe79f", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x2c225b10a2e98d44c3a69e3406e999f6c5332ee414d53f89ba875d20525df5a6", "blockHeight": 6320957, @@ -22854,12 +17483,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x88302d825f95bc582429a24593c49cc59f7dbfebecb2f019917df84d9e1ebc61-IN", "hash": "0x88302d825f95bc582429a24593c49cc59f7dbfebecb2f019917df84d9e1ebc61", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x534aa14902a6871e0f552e4ef4fd60213ee3c9585235f82caa1746fd3d2a0a84", "blockHeight": 6320545, @@ -22875,12 +17500,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x52a76f547da56c5d70526b5d8bfb65a77d77d394161e34b427a85a0bf2d40b52-IN", "hash": "0x52a76f547da56c5d70526b5d8bfb65a77d77d394161e34b427a85a0bf2d40b52", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x7ee4f62e053bcf205d69f29d296ac04c39879193c245eafad990dc654cef069c", "blockHeight": 6320497, @@ -22896,12 +17517,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x1e0ee3a5885362f64bd170c1998e21117dd8e4468713687fe10d59d74b5729e5-IN", "hash": "0x1e0ee3a5885362f64bd170c1998e21117dd8e4468713687fe10d59d74b5729e5", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xe1973f1bf1363da25db28f387f56ff0818032f00629cdbdc7b4c08b4dd071c73", "blockHeight": 6320425, @@ -22917,12 +17534,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x2671881733b65dcd3e7bc1fcfb8308deedb174b572543b47cbbcf958c444a1a2-IN", "hash": "0x2671881733b65dcd3e7bc1fcfb8308deedb174b572543b47cbbcf958c444a1a2", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xd4d1aa197db34351a74d424f8b5eb253d92b5012d5a570e7743b68095329e6fa", "blockHeight": 6320328, @@ -22938,12 +17551,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe0cfc65dc62024c8435d1270529cbbd0a00f3c84aa1359246fa6129b279fcd13-IN", "hash": "0xe0cfc65dc62024c8435d1270529cbbd0a00f3c84aa1359246fa6129b279fcd13", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xf92957cae20a90e29e3d26db754f48c20ced75c1738aad7b9a0b3beb447dbf10", "blockHeight": 6320248, @@ -22959,12 +17568,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x583af458b5d38e8068bcb1444c0e82ab415635fe3499327b8edfcd092aa05b7c-IN", "hash": "0x583af458b5d38e8068bcb1444c0e82ab415635fe3499327b8edfcd092aa05b7c", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xd902cbc3538aaf3b49a16b1f507ec003c5fb4699ab589f0861d8fe4d2d40ec6a", "blockHeight": 6319927, @@ -22980,12 +17585,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x73fa1c266877402e5ae376d7f0d4fcff38498468d7eb9a01000ad4498156c4fa-IN", "hash": "0x73fa1c266877402e5ae376d7f0d4fcff38498468d7eb9a01000ad4498156c4fa", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x480bae63123899d345b3c9782acac8c3b52aa6be26d4f6a840f22acc4ac3b069", "blockHeight": 6319301, @@ -23001,12 +17602,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x08fadca08c8f9af1bb0bd2352fed195778fda59f36f75b57f8392aacd7c0fa5d-IN", "hash": "0x08fadca08c8f9af1bb0bd2352fed195778fda59f36f75b57f8392aacd7c0fa5d", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xf07363e30651fc54f30b381ec9a6aa2521878a729520eac44c7be93f39144628", "blockHeight": 6316070, @@ -23022,12 +17619,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf6ded7f5b5dde12391f2efc02c2c3b5e3e51759a4cf6ec9130ad47120e341367-IN", "hash": "0xf6ded7f5b5dde12391f2efc02c2c3b5e3e51759a4cf6ec9130ad47120e341367", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xe9862acf66d207051e695072616e6bd0accacfc8e6dc6a309d98ad525bce3982", "blockHeight": 6316034, @@ -23043,12 +17636,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x8374e8f7a051d407a34374a24f9f3ec2ec9c9660834e6c7505f45f5d04211ac4-IN", "hash": "0x8374e8f7a051d407a34374a24f9f3ec2ec9c9660834e6c7505f45f5d04211ac4", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xa0289151581e9b3e69fe4614349f525660db66f8583d9f761fc8a20d215ab934", "blockHeight": 6315937, @@ -23064,12 +17653,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe69844e3ade7cec9d8bffb891046560352a2b28b75352140d7e5bf5d0bdabaec-IN", "hash": "0xe69844e3ade7cec9d8bffb891046560352a2b28b75352140d7e5bf5d0bdabaec", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xb0b00c735b9d6f4a9201fbede51c9798ae0e1c656bbe0e0760342e376a1efd28", "blockHeight": 6315879, @@ -23085,12 +17670,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x33c0884aa88904a5e89850ad8b1b67b5eacb47a4bcc455cc90591b094c874364-IN", "hash": "0x33c0884aa88904a5e89850ad8b1b67b5eacb47a4bcc455cc90591b094c874364", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xf3d1ad57a5ca912f6b2e9778954d4a8bfc07daf43a528746f8829ea97e1f1f64", "blockHeight": 6315832, @@ -23106,12 +17687,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xc4eaf3d822228be08b6cdeece8d0e124e63c9bf29d12690db17cab15123e7b43-IN", "hash": "0xc4eaf3d822228be08b6cdeece8d0e124e63c9bf29d12690db17cab15123e7b43", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x4d58ccbdcb8944d0a356d34356c2320b5a123b615e025569158758cc6b7a8792", "blockHeight": 6315712, @@ -23127,12 +17704,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x98ba60302f1f89deca3ecf0335b8ed4f68127fd23fe753896d08d3f1283ffa43-IN", "hash": "0x98ba60302f1f89deca3ecf0335b8ed4f68127fd23fe753896d08d3f1283ffa43", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x7fa82381a13b6a37a80cc6fbb62d272596b3f3510556df93933106769f2a65e2", "blockHeight": 6315479, @@ -23148,12 +17721,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x8287832f1a09f79abd648296327674a8c01caafddfcf6a015ea0a6cf3097e45b-IN", "hash": "0x8287832f1a09f79abd648296327674a8c01caafddfcf6a015ea0a6cf3097e45b", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x3c7241cfd1daf522243aafd374eed0abb23fa20e7f0f6b60a2601079b8d19151", "blockHeight": 6315431, @@ -23169,12 +17738,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xab4efe12d7cde2f2f5a1c3a4d1be7d1ee5850afadbf7a6d2fdc03f3d39793da0-IN", "hash": "0xab4efe12d7cde2f2f5a1c3a4d1be7d1ee5850afadbf7a6d2fdc03f3d39793da0", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x627bf6ada7a6cd2e506ad542a068be28169f3139b844ac0208b154fbb52eb922", "blockHeight": 6315335, @@ -23190,12 +17755,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe1c982c25bf380987e4cb1c22a88a8dd26360ce72c6e95edd217dfe3975f684d-IN", "hash": "0xe1c982c25bf380987e4cb1c22a88a8dd26360ce72c6e95edd217dfe3975f684d", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x8a10021caeff458151a015bfa453738683e5c4d1ce9d64ad9dc81bc524556477", "blockHeight": 6315275, @@ -23211,12 +17772,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x394f3347b7152e47bd230c070f7f301cac8ea08ad48f8afb773db2d847680ebd-IN", "hash": "0x394f3347b7152e47bd230c070f7f301cac8ea08ad48f8afb773db2d847680ebd", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x3f767ceb99d7836e57829c0b185e99aaea7bdc3b07f3bf28ce9d2399bd924460", "blockHeight": 6315234, @@ -23232,12 +17789,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xcacc2da787c32b03cdae5d69bf8fca1d2962e2b4864389925b6ba99a796f21da-IN", "hash": "0xcacc2da787c32b03cdae5d69bf8fca1d2962e2b4864389925b6ba99a796f21da", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x8e6c1304a7179cb02b5979eca60b6c288334f5ffe04565b8289bf6b828d677bc", "blockHeight": 6315186, @@ -23253,12 +17806,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa90533646c8ab05004b8667a4da89c5bcc99048f356c5a1735cbef20849e2212-IN", "hash": "0xa90533646c8ab05004b8667a4da89c5bcc99048f356c5a1735cbef20849e2212", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xabcdc7cd937d46fce751e60a8015d019ab480bfd67fe38a5eb85a4bafd198c2b", "blockHeight": 6315081, @@ -23274,12 +17823,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xd480408f54630508b3453bb3c0f15972ca053aeb0f952c719744118f5bcc5e10-IN", "hash": "0xd480408f54630508b3453bb3c0f15972ca053aeb0f952c719744118f5bcc5e10", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x1d20959e76eb0a89e579d16a34b0019d4c4728d74ec835fc34a60ff41d414230", "blockHeight": 6314907, @@ -23295,12 +17840,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x9b698e0436b085938ebb0c0616db1806099c8e5f477b8a2a85198fc3c459738c-IN", "hash": "0x9b698e0436b085938ebb0c0616db1806099c8e5f477b8a2a85198fc3c459738c", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x6a4146a601f395e7057da56f7865ddfc84642002ae82893e4875dc2053ff3912", "blockHeight": 6314783, @@ -23316,12 +17857,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x1f00d3101e66e16f39e3d7366b781a8078ced1e6570be7506983bb33ea929ba0-IN", "hash": "0x1f00d3101e66e16f39e3d7366b781a8078ced1e6570be7506983bb33ea929ba0", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x86a85c75730bf4319e075dc5472e3f95d8cd55e1d2c3584a32e35dbb7fc111c5", "blockHeight": 6314751, @@ -23337,12 +17874,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x740f82aa19fc4916691334e30d33ecc3acc69ba8a67c23d7e2fb1099da8f366d-IN", "hash": "0x740f82aa19fc4916691334e30d33ecc3acc69ba8a67c23d7e2fb1099da8f366d", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xb3891e6d524664de40767be28e373a84d254c6ccb310a47f1e23b32edc7452e1", "blockHeight": 6314421, @@ -23358,12 +17891,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x25082e71835675437e3aa3ca7f24c8b3ee35a24f54409117bd41690227967171-IN", "hash": "0x25082e71835675437e3aa3ca7f24c8b3ee35a24f54409117bd41690227967171", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x2bb9c0a52d14d19ad9fb92918e4143e2251348dc84ecada29c8d01d0b7b478d3", "blockHeight": 6314343, @@ -23379,12 +17908,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xca62b399e482de8e32f619abdb828e965f4ffe5525bb255ba8a73d7931d04f71-IN", "hash": "0xca62b399e482de8e32f619abdb828e965f4ffe5525bb255ba8a73d7931d04f71", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x2edef9ff2c2fad3553e410e8f32883f56bab6736bc96ab17479247ff32d1956f", "blockHeight": 6314288, @@ -23400,12 +17925,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa2fcc25ce7c8fe8f0e97408258982f4bfce626b0adbcaa3d28e3b35a084f1955-IN", "hash": "0xa2fcc25ce7c8fe8f0e97408258982f4bfce626b0adbcaa3d28e3b35a084f1955", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x1d1373093329a081c79256465a380d5b9a3400b7980dd77ba145b57d6839651a", "blockHeight": 6314240, @@ -23421,12 +17942,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x187c7b233f2f930aeacf46f7eb0aed2575606a50d8f1188a9241196fb2d70d78-IN", "hash": "0x187c7b233f2f930aeacf46f7eb0aed2575606a50d8f1188a9241196fb2d70d78", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x3debfc7dbbfc40ad582b19cff6384beaf04983a469f2c864fc355c54ec1ca8ae", "blockHeight": 6314184, @@ -23442,12 +17959,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x836d68cc222fa7fe624e2187545b0ebd616348e0ed241bf6ff084aad72a29ac9-IN", "hash": "0x836d68cc222fa7fe624e2187545b0ebd616348e0ed241bf6ff084aad72a29ac9", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x3ed46ecc18eb2c0ee5a7827f2750d39069f96d6dee78a4e6ae455871b3fda625", "blockHeight": 6313816, @@ -23463,12 +17976,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x947f918c4e329983b026014c4dc4e68a241f66e2c41508fd8a4ab4adf8d1e8ea-IN", "hash": "0x947f918c4e329983b026014c4dc4e68a241f66e2c41508fd8a4ab4adf8d1e8ea", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x33a1271b6d60941a07aa5c4310df0937b541aec11647123ab7b0123fb0b5496e", "blockHeight": 6313105, @@ -23484,12 +17993,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xfbdf396c46a58ec3f0c3b668b01948208c91081a0c3ecc454ed1f93afb5da115-IN", "hash": "0xfbdf396c46a58ec3f0c3b668b01948208c91081a0c3ecc454ed1f93afb5da115", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xf1c4a12c781f61ff71a1ef7640c0ff17bd173f294dc2291245c1a5c18c7a5cd8", "blockHeight": 6296931, @@ -23505,12 +18010,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa5d9240dc3d08f0c9c1f4e315b5382e9fc565acf35d8a2da4cc7af9c2c315132-IN", "hash": "0xa5d9240dc3d08f0c9c1f4e315b5382e9fc565acf35d8a2da4cc7af9c2c315132", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xa4fd38d3be127f430b6c0312978ead3aad30d437d4ad1ac94441ca516896cd12", "blockHeight": 6296527, @@ -23526,12 +18027,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x2b8ab7f1c2fbd6a22de46ba7710ff3595c95901a27a155cf4a72551ca0ba6f9a-IN", "hash": "0x2b8ab7f1c2fbd6a22de46ba7710ff3595c95901a27a155cf4a72551ca0ba6f9a", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x44e3ab54e834729b507d08bf52ed4bcfea500009f32eecb48a012f95ec0a4075", "blockHeight": 6296356, @@ -23547,12 +18044,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x40641dfdede49aa0cd603a9b83ac9403464a6354a4a33d1aa2bd3215bf0c3599-IN", "hash": "0x40641dfdede49aa0cd603a9b83ac9403464a6354a4a33d1aa2bd3215bf0c3599", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x9f01a0944df13f74b119b3ddb80c7f52acdd8a4aca692872da89e93f5ea87aaa", "blockHeight": 6295675, @@ -23568,12 +18061,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xed9e85d8da415782fe9b19f5fb5b34d75d47554a9e4f63609a74f4dde51b1cc5-IN", "hash": "0xed9e85d8da415782fe9b19f5fb5b34d75d47554a9e4f63609a74f4dde51b1cc5", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x2cd18d783310c5e6474b2c1b54e5581573fbde6004f7fcae27b9ae3c700e1cc3", "blockHeight": 6295584, @@ -23589,12 +18078,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xd0bc702053dc3af011914927251366b63bade5b4642638c99c99db0a6c42c3e1-IN", "hash": "0xd0bc702053dc3af011914927251366b63bade5b4642638c99c99db0a6c42c3e1", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x1133f2315222b1948487ec6f9b27fbda30dc4d977ec493b3c3d8a905bbf798e0", "blockHeight": 6294255, @@ -23610,12 +18095,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf03b609f92bf33f71fdad536d60282d23bd60112617e8626dd49f204a7bea157-IN", "hash": "0xf03b609f92bf33f71fdad536d60282d23bd60112617e8626dd49f204a7bea157", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x6f00fa3061437c072e86a0162a9edd3cd3a7b99d3562af41a9b10aa24374d425", "blockHeight": 6290243, @@ -23631,12 +18112,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x8701f6c95bb0f1ee8f74425d1d70b74fb5661923d1878f25336c6b855da1b56e-IN", "hash": "0x8701f6c95bb0f1ee8f74425d1d70b74fb5661923d1878f25336c6b855da1b56e", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x40fbdf37d12472ce3f21414f6751791f6df62c4367a3cc32fdcf907bdb3f58bf", "blockHeight": 6289824, @@ -23652,12 +18129,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x189a300552c35d326e4dd4252c56dafbea66aa3736636e13e44c54e5061ff272-IN", "hash": "0x189a300552c35d326e4dd4252c56dafbea66aa3736636e13e44c54e5061ff272", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xf930485bf897887165b66172a38d21c901f25b9a94276218e42ec1b901c6f00f", "blockHeight": 6289659, @@ -23673,12 +18146,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x1d5f7574a17c23607139860ac67c8a8422e250acc1abeefd27b579ab9db5af4e-IN", "hash": "0x1d5f7574a17c23607139860ac67c8a8422e250acc1abeefd27b579ab9db5af4e", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x68ec5b7ec9bd54082db5ff4f91a00cc0105faba8e3e8a2bfe0f2b36db55dc46e", "blockHeight": 6289570, @@ -23694,12 +18163,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x5e59ecd3efec13729aff89b556c28cbf064ec7ed5e67d8aaa2aeaa275034bf26-IN", "hash": "0x5e59ecd3efec13729aff89b556c28cbf064ec7ed5e67d8aaa2aeaa275034bf26", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x38d6535ca7c7a7efc8f3bfc6ad3461c3278c64455d2b40ed0556aae3890d5142", "blockHeight": 6288923, @@ -23715,12 +18180,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x5cdd3649dc7144b19cad77794f94f99c962088a316f0b51bb966b740ead6c447-IN", "hash": "0x5cdd3649dc7144b19cad77794f94f99c962088a316f0b51bb966b740ead6c447", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xb73836eda9c1ccc485d6de1fb0d3de924f3189287f7cc5eaa7aaffc14927391e", "blockHeight": 6288891, @@ -23736,12 +18197,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xadf80ef59d7cd4b5621fdafd5f607251439acd3f3875323a877e70a723c0fa10-IN", "hash": "0xadf80ef59d7cd4b5621fdafd5f607251439acd3f3875323a877e70a723c0fa10", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xd939cce454a87eab1042b33f78585d03a054e3db55c1289ca79ada18ae0fa199", "blockHeight": 6287677, @@ -23757,12 +18214,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xbbbbd02b2f6199c23e476eab7b7411f71a3b213b9e73b1f0827d90fb5aac76cc-IN", "hash": "0xbbbbd02b2f6199c23e476eab7b7411f71a3b213b9e73b1f0827d90fb5aac76cc", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x77a24bc67a383f62771273bfa82a6900593e390af0341ae951f66fded2f8f710", "blockHeight": 6284148, @@ -23778,12 +18231,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x96dad5deb72b71520e399308ee8426c980f15d6b18b615e52dcb4da3d9e3d183-IN", "hash": "0x96dad5deb72b71520e399308ee8426c980f15d6b18b615e52dcb4da3d9e3d183", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xda720387be1bed46d5bf6924ad0ad1575bcc73ca2fa2a2640ff44eb62871c0f5", "blockHeight": 6284041, @@ -23799,12 +18248,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x73b42a6895edcf066fb0c650cd93b74db844f06df779430fb6733b5da7f446f5-IN", "hash": "0x73b42a6895edcf066fb0c650cd93b74db844f06df779430fb6733b5da7f446f5", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x7fa61101d550991fa9fb3673312999361ff2caa406fbe34fd2553b7e80863ed6", "blockHeight": 6283437, @@ -23820,12 +18265,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa68bdd7109468d6d8ab7afabeb7043e98a19ecc9ba19e53038df74ea28abf704-IN", "hash": "0xa68bdd7109468d6d8ab7afabeb7043e98a19ecc9ba19e53038df74ea28abf704", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x3295e35edd4e4b71de88e8514bacf75a78d4e6515cf5bd148cf03e7fdb4c1935", "blockHeight": 6281119, @@ -23841,12 +18282,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xabce9b853c58ddbbbb97b1a4dfc2ba68e756e66ecfcbd2a441fb2a44a931fa8a-IN", "hash": "0xabce9b853c58ddbbbb97b1a4dfc2ba68e756e66ecfcbd2a441fb2a44a931fa8a", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x6f376ccb655a09f8c21d1fc84096665def360adafb3ccf108930e5fefb14a1c3", "blockHeight": 6274534, @@ -23862,12 +18299,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xcd722ef4389e57f44c1e2f3977b2a7801c10cfe210175e95ce13b081e19b327d-IN", "hash": "0xcd722ef4389e57f44c1e2f3977b2a7801c10cfe210175e95ce13b081e19b327d", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x09f2213b25313ccc8f93be40ef1f4fde2aed6f9d6f2d8557d107705627833fbf", "blockHeight": 6269503, @@ -23883,12 +18316,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x49f5ef92a666b0e5f7defadf48bb916eec22ff2ba965db69f0e1d17cec61258d-IN", "hash": "0x49f5ef92a666b0e5f7defadf48bb916eec22ff2ba965db69f0e1d17cec61258d", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xd3783a94959e4a6629ba0d5ed096c800e9937ed8e6cd1661caf6c3c81a1a6c61", "blockHeight": 6268070, @@ -23904,12 +18333,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x77a3174d8fbead584714fcba49e619d722ab1f907b5a57640eba4f124a8a4220-IN", "hash": "0x77a3174d8fbead584714fcba49e619d722ab1f907b5a57640eba4f124a8a4220", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x305d10208f8efad03f763941d0be55f07b4a578adf258b26eb9976ac0789e601", "blockHeight": 6250993, @@ -23925,12 +18350,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xba6148362ba594f8f10e60e6e5aa9126bdd7923ac6b8bf1a91efbf4329cdbb91-IN", "hash": "0xba6148362ba594f8f10e60e6e5aa9126bdd7923ac6b8bf1a91efbf4329cdbb91", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xfea5bee2a4adeb6374b66cb9b673ff7084b0ca961879977a7cfcd2c04afe679a", "blockHeight": 6250714, @@ -23946,12 +18367,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x13bb563174a62ce0ceb172a3a21213f01c376e0f364c8f1cf9bbd51291ffde34-IN", "hash": "0x13bb563174a62ce0ceb172a3a21213f01c376e0f364c8f1cf9bbd51291ffde34", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xfa7c17e0312d0e92d04dd9965b4c8befcefd70d0b098a88bbaff678db20f3b33", "blockHeight": 6250619, @@ -23967,12 +18384,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xc4ac31da2ef8327abfede3b8708074d1883af32f70a782d3abcc57ed49c74462-IN", "hash": "0xc4ac31da2ef8327abfede3b8708074d1883af32f70a782d3abcc57ed49c74462", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x0516e622cce467700cffa283b1a58f848e9616c18248ad35e90c0310caf664f9", "blockHeight": 6250114, @@ -23988,12 +18401,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xd4fc674547226419a6573c5a3b56c898a4edc3a13bdd2a9921037e7ce4789da7-IN", "hash": "0xd4fc674547226419a6573c5a3b56c898a4edc3a13bdd2a9921037e7ce4789da7", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xe3d8a84a5180d3c35d9e5eae9f88511820438d49da956b376fe8898571f2d5ac", "blockHeight": 6248838, @@ -24009,12 +18418,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x08cd1147f8e2e8ec8d77a9283835284a7947d7e26cd15764c809af67a7c58936-IN", "hash": "0x08cd1147f8e2e8ec8d77a9283835284a7947d7e26cd15764c809af67a7c58936", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x0c6e74a7d7dc6c019b94ea98ddad8ce1479bef48008b0e0f6ba0318c0d1a704e", "blockHeight": 6242864, @@ -24030,12 +18435,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x2f47bff8ef68f545e1bfcead2a3e268756b015c9997f9acd8aede188374679c7-IN", "hash": "0x2f47bff8ef68f545e1bfcead2a3e268756b015c9997f9acd8aede188374679c7", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x3d2d7ce96433933cc6da36579d15a250a9a53492b9a848fb1458ea4168d967bc", "blockHeight": 6242418, @@ -24051,12 +18452,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x66765de8055e6d64df78db8442eae4921683e561e6922210ee665355a868910d-IN", "hash": "0x66765de8055e6d64df78db8442eae4921683e561e6922210ee665355a868910d", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x01feae7fda0e814282eceaa84538ab8aa72d62278ef4672020dc0d5d1a69cd67", "blockHeight": 6232921, @@ -24072,12 +18469,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xb8e4b84f0e92541d1692309125de1737c8129a6b6083666838bb64a29a4680f7-IN", "hash": "0xb8e4b84f0e92541d1692309125de1737c8129a6b6083666838bb64a29a4680f7", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x997145201fb4eca8a4274e805a2faff09ea4f6f173342f9409270c18559a1769", "blockHeight": 6232488, @@ -24093,12 +18486,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x901a762881747436b15f32aea986ea8d582b2b41e20d0877607a6c7aed20de04-IN", "hash": "0x901a762881747436b15f32aea986ea8d582b2b41e20d0877607a6c7aed20de04", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xc7d018e3c977372ea6e34f747f9d9d26be1cd9addcf8b5e3fe449be41782df16", "blockHeight": 6225176, @@ -24114,12 +18503,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xbb9420e45938f9f78881f16d46d4effab63c9c1fc832060c7189aa6d76b6b43c-IN", "hash": "0xbb9420e45938f9f78881f16d46d4effab63c9c1fc832060c7189aa6d76b6b43c", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xc319ef569fd6a5e6200123722d957d1d2aae9c77877cd47849b5e6cad69a2bb8", "blockHeight": 6197721, @@ -24135,12 +18520,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x739a7ece91d47f1b2b565a05dfd6b51b74004724b42413b6781ac45267b59e98-IN", "hash": "0x739a7ece91d47f1b2b565a05dfd6b51b74004724b42413b6781ac45267b59e98", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x1ab17aa27da957704625988b8d1393ec26b8a673d959ea1676b686cfd91715b0", "blockHeight": 6196975, @@ -24156,12 +18537,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x22c6bf17e0b367230e62c5d089468c7747fe5ab36cb89601ce5cb7307a3586fe-IN", "hash": "0x22c6bf17e0b367230e62c5d089468c7747fe5ab36cb89601ce5cb7307a3586fe", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x5c0467ec3a2a92dce885da2107548fcd2424ab64ca17408289661d7aae09ce08", "blockHeight": 6191349, @@ -24177,12 +18554,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x521b951ca106daaa0944a0c34e44de58532a8b52f2a993483a947f50626eb356-IN", "hash": "0x521b951ca106daaa0944a0c34e44de58532a8b52f2a993483a947f50626eb356", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x82102cd73beced6e3859aab1f4df57426a8cefe22d1625416639d99cafe4394a", "blockHeight": 6183775, @@ -24198,12 +18571,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe710ad8cd22e58f399cdbdcb1cb48c28cc13689edcc773ee31ac22c59abc02fa-IN", "hash": "0xe710ad8cd22e58f399cdbdcb1cb48c28cc13689edcc773ee31ac22c59abc02fa", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x0714ca1e6b5b5b3545a1692896fc338ad065ae642314a7f5bded9d64a4ea555c", "blockHeight": 6183744, @@ -24219,12 +18588,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xfc2bc87bb4ad204866d354167d66b1d4e037a5308ac88e7ff98ca8f976bca00a-IN", "hash": "0xfc2bc87bb4ad204866d354167d66b1d4e037a5308ac88e7ff98ca8f976bca00a", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x93b7c44651ed088438b124d9656e74741823958785c893338e0d28cff78c4607", "blockHeight": 6183737, @@ -24240,12 +18605,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xd1e795ac67e50cec2012ea39856a67afed0f833396a58649fed004f145bb4275-IN", "hash": "0xd1e795ac67e50cec2012ea39856a67afed0f833396a58649fed004f145bb4275", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xa549ef62957da037e062f6a55837dc74f8c8bf30a5438bbc38a44c279d7c156e", "blockHeight": 6183719, @@ -24261,12 +18622,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xce6f1644e92292c1643800d56ad550f46ba74caffd76a4185315500e6f942667-IN", "hash": "0xce6f1644e92292c1643800d56ad550f46ba74caffd76a4185315500e6f942667", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x9034be974802394eea3ba1e8db49217887a55d49314890ff79712fc08571665a", "blockHeight": 6183370, @@ -24282,12 +18639,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x9259291476b5249d5fbf372b9623dbc7d803d212e64de55cb73f3e2c4a2147ad-IN", "hash": "0x9259291476b5249d5fbf372b9623dbc7d803d212e64de55cb73f3e2c4a2147ad", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x5fbb36f788f8a27bbef9940179a4d7af0461f6e31616458e9f2347a95e010f27", "blockHeight": 6183360, @@ -24303,12 +18656,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf4071d55090721a67e4384e874598eb5ac6e2bda3b6092e8b27defe14713f690-IN", "hash": "0xf4071d55090721a67e4384e874598eb5ac6e2bda3b6092e8b27defe14713f690", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xbf2021a4edb759dd6484149d8fa715f950379d31b04e04244a5ffd089e9b229f", "blockHeight": 6183341, @@ -24324,12 +18673,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x0b710341d21c3e17d22e61e1805444cb62ec04b0a90687a10bf3ac2228b2db51-IN", "hash": "0x0b710341d21c3e17d22e61e1805444cb62ec04b0a90687a10bf3ac2228b2db51", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x0b152b97a442c7a9b2a28c6a37cd645815a29abb8b2e8b241788a30d0e1ad7ed", "blockHeight": 6183328, @@ -24345,12 +18690,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xa419faa350a35a8c79d02b9018b76518e7bcdaa32bf631a407fa6423e17a2260-IN", "hash": "0xa419faa350a35a8c79d02b9018b76518e7bcdaa32bf631a407fa6423e17a2260", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x728710963ef92df6b6bcefcc0a9dec28c6ad5882e3ea38af60099e956b1342c6", "blockHeight": 6183315, @@ -24366,12 +18707,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf664608d11940e7d540e423deb29db9d68bc120d49a17971565f078ac224c853-IN", "hash": "0xf664608d11940e7d540e423deb29db9d68bc120d49a17971565f078ac224c853", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x5bf87b8aaff9c17e49e990f5f245bef03bcd69d2272602c1995c8959ca6a0af9", "blockHeight": 6183238, @@ -24387,12 +18724,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x1c54bc4a62f74aa4d10ce8cdbb0e7290bf086b2e54259e4e619d3717e2009df2-IN", "hash": "0x1c54bc4a62f74aa4d10ce8cdbb0e7290bf086b2e54259e4e619d3717e2009df2", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xdca2f6773e2bd0ae398c2c170dce0bd254b48c5a66a253d069f4169d6f894357", "blockHeight": 6182763, @@ -24408,12 +18741,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xc4183a9c8df2df06ac873c5b9152cf2a7f52eb3c4dab3bdea2e07755b0197f2c-IN", "hash": "0xc4183a9c8df2df06ac873c5b9152cf2a7f52eb3c4dab3bdea2e07755b0197f2c", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x4b8617ddd53f5def705d0cc0c8df36ebdff860d6c46621cb282ae27838c62d13", "blockHeight": 5949742, @@ -24429,12 +18758,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xb0b09a52756fd7bf2f3fefd2fbb0cf5d1af93b3e07502d41fdfbdc45b52805b3-IN", "hash": "0xb0b09a52756fd7bf2f3fefd2fbb0cf5d1af93b3e07502d41fdfbdc45b52805b3", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x9843b0d5c2a88b7d40614c937a28fa19e937fb6ffb111ed36db296b959026042", "blockHeight": 5948269, @@ -24450,12 +18775,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x62bd7eaee68eed0c39f18f1436864a9a9b48ecc17172e1e5dc7684db8ea6d648-IN", "hash": "0x62bd7eaee68eed0c39f18f1436864a9a9b48ecc17172e1e5dc7684db8ea6d648", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x0210f8119a81f511aa072d8bd0bd23ec991c89f9e59f4e5f37a8cf6be383f849", "blockHeight": 5948085, @@ -24471,12 +18792,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf7ce5e98d7c7417a70c8c4164dc80b09d016bc86302f5a083f6a4573329bbf34-IN", "hash": "0xf7ce5e98d7c7417a70c8c4164dc80b09d016bc86302f5a083f6a4573329bbf34", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xd65c9591c37d17d711595ea36c3b249d6a5f31427761ac7c92b2fa7228b080e7", "blockHeight": 5947702, @@ -24492,12 +18809,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x8c27f673e9442dc56c667997da3b1f56ca3523d256b8b4dca975352857c4e34d-IN", "hash": "0x8c27f673e9442dc56c667997da3b1f56ca3523d256b8b4dca975352857c4e34d", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xede29aa5658064b564348e11f23b8d074df16c6d5055c8979e4ae9f73806bca1", "blockHeight": 5947337, @@ -24513,12 +18826,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x9def1ab1895552c99022a16c19828726298a0bf2f8ec348e2af72929d2ba52a3-IN", "hash": "0x9def1ab1895552c99022a16c19828726298a0bf2f8ec348e2af72929d2ba52a3", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x21b63c6698aee8c9e6ce8703a2fcb7a472c53eca377466a3001caeeff9302b62", "blockHeight": 5921624, @@ -24534,12 +18843,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xd884ab4034e25bdd50fb159ab9bf78a0242d839e7c99ba2cec27e738959631eb-IN", "hash": "0xd884ab4034e25bdd50fb159ab9bf78a0242d839e7c99ba2cec27e738959631eb", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xf6d7c8399b1354e001c7f92783cb905c10a05829b1b0a0b6c673a77c7be1be49", "blockHeight": 5921300, @@ -24555,12 +18860,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x7e0481c353102e9d1dda32a00190e9c28c953e1d4cd133421428758653542caf-IN", "hash": "0x7e0481c353102e9d1dda32a00190e9c28c953e1d4cd133421428758653542caf", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x4065987c7141ed76a5061ba839df3d0ccb8561c82f106899840f25825c90c433", "blockHeight": 5921246, @@ -24576,12 +18877,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x3f9e1a9f133ba3ba15d92e49bfc77bc16255422953db2bcacde74a51bd125736-IN", "hash": "0x3f9e1a9f133ba3ba15d92e49bfc77bc16255422953db2bcacde74a51bd125736", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x7ee06a31ef76d337a2badeab0b2cf525b13e6ce9de7b08353a7f954048b0da49", "blockHeight": 5921240, @@ -24597,12 +18894,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf7498ff0092fed2e7f31650115b9eb98247b78479b3360352254f13e56d77932-IN", "hash": "0xf7498ff0092fed2e7f31650115b9eb98247b78479b3360352254f13e56d77932", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xf156feb9590b652011f363c906754ae23efe2d6fc0386bf0fd5d6cb8a5176ebc", "blockHeight": 5921010, @@ -24618,12 +18911,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xcb1270749d8dcc53042c0e9dc551a3dacd5dcf6335f0f94bf6b8568df5424108-IN", "hash": "0xcb1270749d8dcc53042c0e9dc551a3dacd5dcf6335f0f94bf6b8568df5424108", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x342a2b20eb330632b0ac502df8b370d2c8dc2f5d85eaf0556e53dcabbf4688e4", "blockHeight": 5915303, @@ -24639,12 +18928,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xe41e1b42e37784e9c1041f9e040256c2b093e5e9d821feee43fb53d94cda16eb-IN", "hash": "0xe41e1b42e37784e9c1041f9e040256c2b093e5e9d821feee43fb53d94cda16eb", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x5a8bcf8fc598121413a3e113bca19eb6bac585455683c1b5f34d62abf20b86f4", "blockHeight": 5915290, @@ -24660,12 +18945,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xf0113a90212d31d5be0d31464db6d570909ac9950f76f9f421547a75cb5567e8-IN", "hash": "0xf0113a90212d31d5be0d31464db6d570909ac9950f76f9f421547a75cb5567e8", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xe833d2ace5e115a20ad913f67dbb1092c04718763806da71ac959b9a8cc72302", "blockHeight": 5914498, @@ -24681,12 +18962,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x0aa844cd6ebeedb3bd996c94ea35431c38f527148de7ca94a7395485c72dcde4-IN", "hash": "0x0aa844cd6ebeedb3bd996c94ea35431c38f527148de7ca94a7395485c72dcde4", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xa7bb92e4eefc54d883126bc15aa45037e4dc3151d0f3e6962c6d6d43b6fb4189", "blockHeight": 5913917, @@ -24702,12 +18979,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x0cd3d38cef087638574f62c4d61e67e6f6d5abb1bc788a9a82784b261672d343-IN", "hash": "0x0cd3d38cef087638574f62c4d61e67e6f6d5abb1bc788a9a82784b261672d343", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xeedfc9598e63b1b065702b8dbc2ee252f0219acb4ff8a42c1b68c074ea6dfff6", "blockHeight": 5913862, @@ -24723,12 +18996,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x21f254ba3ff939e27b34fca419f7afc86770c1b6bcb06214980e127a64fc3547-IN", "hash": "0x21f254ba3ff939e27b34fca419f7afc86770c1b6bcb06214980e127a64fc3547", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x05e9ba2ba126f17436db61dc18d6545d95334863101015063776a62b1be33464", "blockHeight": 5913823, @@ -24744,12 +19013,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x3f0a86a9c91910aea23873969845bbd88188d16c8ee4e0fef787ddfff5f15031-IN", "hash": "0x3f0a86a9c91910aea23873969845bbd88188d16c8ee4e0fef787ddfff5f15031", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x7d1bb861917221312002aa991561a0b7509a7d2d98e0d3d6c9b07972192bff59", "blockHeight": 5913813, @@ -24765,12 +19030,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xc67a038db532d77d3c5ec6fda74bd4bfcbf4077d35b7105d3e790b2ff89c0b3a-IN", "hash": "0xc67a038db532d77d3c5ec6fda74bd4bfcbf4077d35b7105d3e790b2ff89c0b3a", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x58d3e6c8ea6221417bfe9c51008bca89aa672fdc8e9321ee9d26a3d85fcba531", "blockHeight": 5913205, @@ -24786,12 +19047,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x536e78db72060830930dd0fe1fe4a86eeb31ae4f6db4b76b407627f094ed9439-IN", "hash": "0x536e78db72060830930dd0fe1fe4a86eeb31ae4f6db4b76b407627f094ed9439", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0xef17ba249574adc4bf07e1da5e0b89dd2e131786ae12460f65d8c8fc17f4bc4e", "blockHeight": 5908643, @@ -24807,12 +19064,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0xc484624fcb7eb247fb60126670f8a77d8a798638c3044a090ae7caa9df2fa981-IN", "hash": "0xc484624fcb7eb247fb60126670f8a77d8a798638c3044a090ae7caa9df2fa981", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x2caea8c7fce9229f084d4526eeec8fe961e6165bf9d2169fcd5a47cf958b98c3", "blockHeight": 5908633, @@ -24828,12 +19081,8 @@ "id": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:-0x4e922150f45253718fcae9ac728c707c3f74f47a2f189e076d13dc93095e11eb-IN", "hash": "0x4e922150f45253718fcae9ac728c707c3f74f47a2f189e076d13dc93095e11eb", "type": "IN", - "senders": [ - "0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6" - ], - "recipients": [ - "0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad" - ], + "senders": ["0xB9051f83AC6e147924377BBEebd1Aa7aB43a67F6"], + "recipients": ["0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad"], "accountId": "js:2:ethereum_sepolia:0x43047a5023D55a8658Fcb1c1Cea468311AdAA3Ad:", "blockHash": "0x6e8a898ca5d18ea04710c13d9bbb442f7bdfce55b4a36bcd9b0135d658991446", "blockHeight": 5908631, @@ -24854,300 +19103,85 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1270000000000000, - 1280000000000000, - 1290000000000000, - 1290000000000000, - 1290000000000000, - 1290000000000000, - 1290000000000000, - 1290000000000000, - 1290000000000000, - 1290000000000000, - 1290000000000000, - 1290000000000000, - 1290000000000000, - 1290000000000000, - 1290000000000000, - 1290000000000000, - 1290000000000000, - 1300000000000000, - 1300000000000000, - 1300000000000000, - 1300000000000000, - 1300000000000000, - 1300000000000000, - 1300000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1320000000000000, - 1320000000000000, - 1320000000000000, - 1320000000000000, - 1320000000000000, - 1320000000000000, - 1320000000000000, - 1320000000000000, - 1320000000000000, - 1320000000000000, - 1340000000000000, - 1340000000000000, - 1340000000000000, - 1340000000000000, - 1340000000000000, - 1340000000000000, - 1340000000000000, - 1340000000000000, - 1340000000000000, - 1340000000000000, - 1340000000000000, - 1340000000000000, - 1340000000000000, - 1340000000000000, - 1340000000000000, - 1340000000000000, - 1350000000000000, - 1350000000000000, - 1350000000000000, - 1350000000000000, - 1350000000000000, - 1350000000000000, - 1350000000000000, - 1350000000000000, - 1350000000000000, - 1380000000000000, - 1380000000000000, - 1380000000000000, - 1380000000000000, - 1380000000000000, - 1380000000000000, - 1380000000000000, - 1380000000000000, - 1380000000000000, - 1380000000000000, - 1380000000000000, - 1380000000000000, - 1380000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1390000000000000, - 1400000000000000, - 1400000000000000, - 1400000000000000, + 1270000000000000, 1270000000000000, 1270000000000000, 1270000000000000, + 1270000000000000, 1270000000000000, 1270000000000000, 1270000000000000, + 1270000000000000, 1270000000000000, 1270000000000000, 1270000000000000, + 1270000000000000, 1270000000000000, 1270000000000000, 1270000000000000, + 1270000000000000, 1270000000000000, 1270000000000000, 1270000000000000, + 1270000000000000, 1270000000000000, 1270000000000000, 1270000000000000, + 1270000000000000, 1270000000000000, 1270000000000000, 1270000000000000, + 1270000000000000, 1280000000000000, 1290000000000000, 1290000000000000, + 1290000000000000, 1290000000000000, 1290000000000000, 1290000000000000, + 1290000000000000, 1290000000000000, 1290000000000000, 1290000000000000, + 1290000000000000, 1290000000000000, 1290000000000000, 1290000000000000, + 1290000000000000, 1300000000000000, 1300000000000000, 1300000000000000, + 1300000000000000, 1300000000000000, 1300000000000000, 1300000000000000, + 1310000000000000, 1310000000000000, 1310000000000000, 1310000000000000, + 1310000000000000, 1310000000000000, 1310000000000000, 1310000000000000, + 1310000000000000, 1310000000000000, 1310000000000000, 1310000000000000, + 1310000000000000, 1310000000000000, 1310000000000000, 1310000000000000, + 1310000000000000, 1310000000000000, 1310000000000000, 1310000000000000, + 1310000000000000, 1310000000000000, 1310000000000000, 1310000000000000, + 1310000000000000, 1310000000000000, 1310000000000000, 1310000000000000, + 1310000000000000, 1310000000000000, 1310000000000000, 1310000000000000, + 1310000000000000, 1310000000000000, 1310000000000000, 1310000000000000, + 1310000000000000, 1310000000000000, 1310000000000000, 1310000000000000, + 1310000000000000, 1310000000000000, 1310000000000000, 1310000000000000, + 1310000000000000, 1310000000000000, 1310000000000000, 1310000000000000, + 1310000000000000, 1310000000000000, 1310000000000000, 1310000000000000, + 1310000000000000, 1310000000000000, 1310000000000000, 1310000000000000, + 1310000000000000, 1310000000000000, 1310000000000000, 1310000000000000, + 1310000000000000, 1310000000000000, 1310000000000000, 1310000000000000, + 1310000000000000, 1320000000000000, 1320000000000000, 1320000000000000, + 1320000000000000, 1320000000000000, 1320000000000000, 1320000000000000, + 1320000000000000, 1320000000000000, 1320000000000000, 1340000000000000, + 1340000000000000, 1340000000000000, 1340000000000000, 1340000000000000, + 1340000000000000, 1340000000000000, 1340000000000000, 1340000000000000, + 1340000000000000, 1340000000000000, 1340000000000000, 1340000000000000, + 1340000000000000, 1340000000000000, 1340000000000000, 1350000000000000, + 1350000000000000, 1350000000000000, 1350000000000000, 1350000000000000, + 1350000000000000, 1350000000000000, 1350000000000000, 1350000000000000, + 1380000000000000, 1380000000000000, 1380000000000000, 1380000000000000, + 1380000000000000, 1380000000000000, 1380000000000000, 1380000000000000, + 1380000000000000, 1380000000000000, 1380000000000000, 1380000000000000, + 1380000000000000, 1390000000000000, 1390000000000000, 1390000000000000, + 1390000000000000, 1390000000000000, 1390000000000000, 1390000000000000, + 1390000000000000, 1390000000000000, 1390000000000000, 1390000000000000, + 1390000000000000, 1390000000000000, 1390000000000000, 1390000000000000, + 1390000000000000, 1390000000000000, 1390000000000000, 1390000000000000, + 1390000000000000, 1390000000000000, 1390000000000000, 1390000000000000, + 1390000000000000, 1400000000000000, 1400000000000000, 1400000000000000, 1400000000000000 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 30000000000000, - 110000000000000, - 160000000000000, - 160000000000000, - 160000000000000, - 160000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 320000000000000, - 330000000000000, - 350000000000000, - 350000000000000, - 350000000000000, - 350000000000000, - 360000000000000, - 380000000000000, - 380000000000000, - 400000000000000, - 450000000000000, - 450000000000000, - 450000000000000, - 470000000000000, - 480000000000000, - 520000000000000, - 590000000000000, - 650000000000000, - 650000000000000, - 650000000000000, - 880000000000000, - 1040000000000000, - 1090000000000000, - 1100000000000000, - 1110000000000000, - 1110000000000000, - 1110000000000000, - 1180000000000000, - 1240000000000000, - 1270000000000000, - 1290000000000000, - 1310000000000000, - 1310000000000000, - 1310000000000000, - 1340000000000000, - 1380000000000000, - 1390000000000000 + 0, 30000000000000, 110000000000000, 160000000000000, 160000000000000, + 160000000000000, 160000000000000, 210000000000000, 210000000000000, 210000000000000, + 210000000000000, 210000000000000, 210000000000000, 210000000000000, 210000000000000, + 210000000000000, 210000000000000, 210000000000000, 210000000000000, 210000000000000, + 210000000000000, 210000000000000, 210000000000000, 210000000000000, 210000000000000, + 210000000000000, 210000000000000, 210000000000000, 210000000000000, 210000000000000, + 210000000000000, 210000000000000, 210000000000000, 210000000000000, 210000000000000, + 210000000000000, 210000000000000, 210000000000000, 210000000000000, 210000000000000, + 210000000000000, 210000000000000, 320000000000000, 330000000000000, 350000000000000, + 350000000000000, 350000000000000, 350000000000000, 360000000000000, 380000000000000, + 380000000000000, 400000000000000, 450000000000000, 450000000000000, 450000000000000, + 470000000000000, 480000000000000, 520000000000000, 590000000000000, 650000000000000, + 650000000000000, 650000000000000, 880000000000000, 1040000000000000, + 1090000000000000, 1100000000000000, 1110000000000000, 1110000000000000, + 1110000000000000, 1180000000000000, 1240000000000000, 1270000000000000, + 1290000000000000, 1310000000000000, 1310000000000000, 1310000000000000, + 1340000000000000, 1380000000000000, 1390000000000000 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 160000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 210000000000000, - 350000000000000, - 450000000000000, - 650000000000000, - 1110000000000000, - 1310000000000000 + 0, 160000000000000, 210000000000000, 210000000000000, 210000000000000, + 210000000000000, 210000000000000, 350000000000000, 450000000000000, 650000000000000, + 1110000000000000, 1310000000000000 ], "latestDate": 1722117600000 } @@ -25177,12 +19211,8 @@ "id": "js:2:polkadot:15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3:polkadotbip44-0x016ec2a62549620b15ef7be6f24b4cbcbe16d595358df5a745778e5417f19861-OUT", "hash": "0x016ec2a62549620b15ef7be6f24b4cbcbe16d595358df5a745778e5417f19861", "type": "OUT", - "senders": [ - "15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3" - ], - "recipients": [ - "12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY" - ], + "senders": ["15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3"], + "recipients": ["12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY"], "accountId": "js:2:polkadot:15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3:polkadotbip44", "blockHash": null, "blockHeight": 20552561, @@ -25200,12 +19230,8 @@ "id": "js:2:polkadot:15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3:polkadotbip44-0x08efc6e41ab383890ebc762f1c970d39e395f2fb9f8298058e7c247f45995fa3-IN", "hash": "0x08efc6e41ab383890ebc762f1c970d39e395f2fb9f8298058e7c247f45995fa3", "type": "IN", - "senders": [ - "12NMUbX5aoHg4apc2XNoR4qe6bTWpuLg4e1zC2g7Lqe6GtFe" - ], - "recipients": [ - "15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3" - ], + "senders": ["12NMUbX5aoHg4apc2XNoR4qe6bTWpuLg4e1zC2g7Lqe6GtFe"], + "recipients": ["15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3"], "accountId": "js:2:polkadot:15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3:polkadotbip44", "blockHash": null, "blockHeight": 20397729, @@ -25227,331 +19253,70 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 30000000000, - 30000000000, - 30000000000, - 30000000000, - 30000000000, - 30000000000, - 30000000000, - 30000000000, - 30000000000, - 30000000000, - 30000000000, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221 + 0, 30000000000, 30000000000, 30000000000, 30000000000, 30000000000, 30000000000, + 30000000000, 30000000000, 30000000000, 30000000000, 30000000000, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 30000000000, - 30000000000, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221, - 19842892221 + 0, 30000000000, 30000000000, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, 19842892221, + 19842892221, 19842892221, 19842892221 ], "latestDate": 1722117600000 } @@ -25589,12 +19354,8 @@ "id": "js:2:polkadot:12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY:polkadotbip44-0x016ec2a62549620b15ef7be6f24b4cbcbe16d595358df5a745778e5417f19861-IN", "hash": "0x016ec2a62549620b15ef7be6f24b4cbcbe16d595358df5a745778e5417f19861", "type": "IN", - "senders": [ - "15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3" - ], - "recipients": [ - "12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY" - ], + "senders": ["15NKsw4AoSEgBJ5NpHDkAjUmqLRfeSuqZBzZXH9uRg6MWbo3"], + "recipients": ["12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY"], "accountId": "js:2:polkadot:12fY9vqzD8j1uvqSRx9y3gXRA1S3bwr5xunBVZvx1eeZFaHY:polkadotbip44", "blockHash": null, "blockHeight": 20552561, @@ -25616,317 +19377,67 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000 + 0, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, - 10000000000, + 0, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, + 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000, 10000000000 ], "latestDate": 1722117600000 @@ -25965,12 +19476,8 @@ "id": "js:2:solana:HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id:solanaSub-45wpnHxgDNqJ5o566oJmQjgizwPu5Vtyn1YTx3jadZFvR6DD1tGPCs35A1K7CwDbZmjayhzt7bToCMViVVtbrkBK-IN", "hash": "45wpnHxgDNqJ5o566oJmQjgizwPu5Vtyn1YTx3jadZFvR6DD1tGPCs35A1K7CwDbZmjayhzt7bToCMViVVtbrkBK", "type": "IN", - "senders": [ - "AH727xqoLjwUjj9xcUCmHfw2MDU6mvfc9mLCdX21pRq3" - ], - "recipients": [ - "HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id" - ], + "senders": ["AH727xqoLjwUjj9xcUCmHfw2MDU6mvfc9mLCdX21pRq3"], + "recipients": ["HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id"], "accountId": "js:2:solana:HxoKQ5eu5MkqaAw7DaGVermrJqeNH8XkVnEKEpFuS9id:solanaSub", "blockHash": "GwoMfGmDH4qA6zfi6vSocvZgRWe9G6PmdxaGAZkpVqcs", "blockHeight": 260858101, @@ -25990,331 +19497,57 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, + 0, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000, - 20000000 + 0, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, + 20000000, 20000000, 20000000, 20000000, 20000000, 20000000, 20000000 ], "latestDate": 1722117600000 } @@ -26346,12 +19579,8 @@ "id": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5-07025ee7537ce8b75508911aef94ab7563c8d359c3e30aaf737cffedb931b80e-IN", "hash": "07025ee7537ce8b75508911aef94ab7563c8d359c3e30aaf737cffedb931b80e", "type": "NONE", - "senders": [ - "GAI4QCPBECPIOBGSEYU7AG7UQW5GTBRZHEY5Q6BZW76HP7UBDQVO3PXQ" - ], - "recipients": [ - "GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX" - ], + "senders": ["GAI4QCPBECPIOBGSEYU7AG7UQW5GTBRZHEY5Q6BZW76HP7UBDQVO3PXQ"], + "recipients": ["GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX"], "accountId": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5", "blockHash": null, "blockHeight": 52625220, @@ -26373,9 +19602,7 @@ "id": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5-f3b0e51b56ac864d2da217e4510188552917d72126e0d6c633a1051b74356adb-OPT_IN", "hash": "f3b0e51b56ac864d2da217e4510188552917d72126e0d6c633a1051b74356adb", "type": "OPT_IN", - "senders": [ - "GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX" - ], + "senders": ["GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX"], "recipients": [], "accountId": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5", "blockHash": null, @@ -26397,12 +19624,8 @@ "id": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5-e97d376c55cdbe7098d9508e4cc23e74e3cbf5807c64a05d9efa4ddbfa7f007f-OUT", "hash": "e97d376c55cdbe7098d9508e4cc23e74e3cbf5807c64a05d9efa4ddbfa7f007f", "type": "OUT", - "senders": [ - "GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX" - ], - "recipients": [ - "GCTGRCFN7AT6NW4DZVI4QN55BRNQA64TXEZSMYPE7BNUZMLMVISXT652" - ], + "senders": ["GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX"], + "recipients": ["GCTGRCFN7AT6NW4DZVI4QN55BRNQA64TXEZSMYPE7BNUZMLMVISXT652"], "accountId": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5", "blockHash": null, "blockHeight": 51899330, @@ -26420,12 +19643,8 @@ "id": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5-850e33a07e3dd9c290b51b380c27a38cf0e7680fe7236fdadef531796d9f7cde-IN", "hash": "850e33a07e3dd9c290b51b380c27a38cf0e7680fe7236fdadef531796d9f7cde", "type": "IN", - "senders": [ - "GD5NP74FP22VVRVPUFWONJVXTMK64R4Y6EEJZYW6JNKDTPK4TR6HR6OT" - ], - "recipients": [ - "GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX" - ], + "senders": ["GD5NP74FP22VVRVPUFWONJVXTMK64R4Y6EEJZYW6JNKDTPK4TR6HR6OT"], + "recipients": ["GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX"], "accountId": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5", "blockHash": null, "blockHeight": 51884975, @@ -26448,284 +19667,56 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598 + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 2673609798, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609698, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598 + 0, 2673609798, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, + 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609698, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 2663609698, - 2663609698, - 2663609698, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598, - 2663609598 + 0, 2663609698, 2663609698, 2663609698, 2663609598, 2663609598, 2663609598, + 2663609598, 2663609598, 2663609598 ], "latestDate": 1722117600000 } @@ -26759,12 +19750,8 @@ "id": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5+USDC:GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN-07025ee7537ce8b75508911aef94ab7563c8d359c3e30aaf737cffedb931b80e-IN", "hash": "07025ee7537ce8b75508911aef94ab7563c8d359c3e30aaf737cffedb931b80e", "type": "IN", - "senders": [ - "GAI4QCPBECPIOBGSEYU7AG7UQW5GTBRZHEY5Q6BZW76HP7UBDQVO3PXQ" - ], - "recipients": [ - "GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX" - ], + "senders": ["GAI4QCPBECPIOBGSEYU7AG7UQW5GTBRZHEY5Q6BZW76HP7UBDQVO3PXQ"], + "recipients": ["GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX"], "accountId": "js:2:stellar:GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX:sep5+USDC:GA5ZSEJYB37JRC5AVCIA5MOP4RHTM335X2KGX3IHOJAPP5RE34K4KZVN", "blockHash": null, "blockHeight": 52625220, @@ -26811,12 +19798,8 @@ "id": "js:2:stellar:GCTGRCFN7AT6NW4DZVI4QN55BRNQA64TXEZSMYPE7BNUZMLMVISXT652:sep5-e97d376c55cdbe7098d9508e4cc23e74e3cbf5807c64a05d9efa4ddbfa7f007f-IN", "hash": "e97d376c55cdbe7098d9508e4cc23e74e3cbf5807c64a05d9efa4ddbfa7f007f", "type": "IN", - "senders": [ - "GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX" - ], - "recipients": [ - "GCTGRCFN7AT6NW4DZVI4QN55BRNQA64TXEZSMYPE7BNUZMLMVISXT652" - ], + "senders": ["GCAGRZ7XABYSXV7CPFSFWQIUK6XFXECBPWP2SGMVOB2KFWN7YM4TDGSX"], + "recipients": ["GCTGRCFN7AT6NW4DZVI4QN55BRNQA64TXEZSMYPE7BNUZMLMVISXT652"], "accountId": "js:2:stellar:GCTGRCFN7AT6NW4DZVI4QN55BRNQA64TXEZSMYPE7BNUZMLMVISXT652:sep5", "blockHash": null, "blockHeight": 51899330, @@ -26839,282 +19822,50 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000 + 0, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, + 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, - 10000000, + 0, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000, 10000000 ], "latestDate": 1722117600000 @@ -27144,12 +19895,8 @@ "id": "js:2:tezos:02d4a3fb02af1174ca104cea770ea4fa6c35db124dbb815fb3896f69e09b680dbb:tezbox-oodtmZdRakkaHDuefFEbCtYBQRhX5RSjANSUMdaFNUVjbKFjFjD-IN", "hash": "oodtmZdRakkaHDuefFEbCtYBQRhX5RSjANSUMdaFNUVjbKFjFjD", "type": "IN", - "senders": [ - "tz1bAjg8KhBjzRMuPbdLfC4EvETmdsuruynm" - ], - "recipients": [ - "tz1UD2zz5eFTW2Jy26kBnC3ZkdeazUgeFWST" - ], + "senders": ["tz1bAjg8KhBjzRMuPbdLfC4EvETmdsuruynm"], + "recipients": ["tz1UD2zz5eFTW2Jy26kBnC3ZkdeazUgeFWST"], "accountId": "js:2:tezos:02d4a3fb02af1174ca104cea770ea4fa6c35db124dbb815fb3896f69e09b680dbb:tezbox", "blockHash": "BLr5rkBixbXPryNzcQDHCP56gCzuN3CdjbTLJphLiaUugkvSK1w", "blockHeight": 5690463, @@ -27170,283 +19917,50 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701 + 0, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, + 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, - 12788701, + 0, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701, 12788701 ], "latestDate": 1722117600000 @@ -27481,12 +19995,8 @@ "id": "js:2:tron:TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1:-5ace0bcd63b95b4e7d5e60981ddb5901e68673896b0ddbf264b4df7e0c9fbc14-IN", "hash": "5ace0bcd63b95b4e7d5e60981ddb5901e68673896b0ddbf264b4df7e0c9fbc14", "type": "IN", - "senders": [ - "TH4RZibHXTi4EjZEVbPYVhSmB6GCHAmRcn" - ], - "recipients": [ - "TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1" - ], + "senders": ["TH4RZibHXTi4EjZEVbPYVhSmB6GCHAmRcn"], + "recipients": ["TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1"], "accountId": "js:2:tron:TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1:", "blockHash": null, "blockHeight": 60935756, @@ -27505,331 +20015,52 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000 + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000 + 0, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000, - 1719000 + 0, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, 1719000, + 1719000, 1719000, 1719000, 1719000, 1719000, 1719000 ], "latestDate": 1722117600000 } @@ -27863,12 +20094,8 @@ "id": "js:2:tron:TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1:+tron%2Ftrc20%2Ftr7nhqjekqxgtci8q8zy4pl8otszgjlj6t-a6d9947741aa30fab1ae513714049a5eece2b66ebe31961b72e2013b1e19d948-IN", "hash": "a6d9947741aa30fab1ae513714049a5eece2b66ebe31961b72e2013b1e19d948", "type": "IN", - "senders": [ - "TWS1onJnNTg8tJHomceqxBxTsUB1DHh7PV" - ], - "recipients": [ - "TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1" - ], + "senders": ["TWS1onJnNTg8tJHomceqxBxTsUB1DHh7PV"], + "recipients": ["TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1"], "accountId": "js:2:tron:TDUKFB9wj3P5f2iNvkRuaDDeWVkTdUVhs1:+tron%2Ftrc20%2Ftr7nhqjekqxgtci8q8zy4pl8otszgjlj6t", "blockHash": null, "blockHeight": 62748273, @@ -27952,12 +20179,8 @@ "id": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:-881D63CBFCE48958A61D34146B390FD2FF3F8A035EC319897873B8BCF0B178A3-IN", "hash": "881D63CBFCE48958A61D34146B390FD2FF3F8A035EC319897873B8BCF0B178A3", "type": "IN", - "senders": [ - "rfc4tdZbtrWWsgjYm3WSNbUXh2asz4fTE7" - ], - "recipients": [ - "rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV" - ], + "senders": ["rfc4tdZbtrWWsgjYm3WSNbUXh2asz4fTE7"], + "recipients": ["rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV"], "accountId": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:", "blockHash": null, "blockHeight": 87959999, @@ -27971,12 +20194,8 @@ "id": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:-B09E847117920D2925F9E3BBD1CAB3F07CBB648B1EC2BAFB6D0387E8A8A5B5B5-IN", "hash": "B09E847117920D2925F9E3BBD1CAB3F07CBB648B1EC2BAFB6D0387E8A8A5B5B5", "type": "IN", - "senders": [ - "rp5h17hXqfqBWBbj1zqNdLSPjrEXHzooQ3" - ], - "recipients": [ - "rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV" - ], + "senders": ["rp5h17hXqfqBWBbj1zqNdLSPjrEXHzooQ3"], + "recipients": ["rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV"], "accountId": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:", "blockHash": null, "blockHeight": 87413700, @@ -27990,12 +20209,8 @@ "id": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:-BB547E9593D1C2746069A0C780A8B1D6470C48B857814B0E789653E84E785F32-IN", "hash": "BB547E9593D1C2746069A0C780A8B1D6470C48B857814B0E789653E84E785F32", "type": "IN", - "senders": [ - "rLZ3yK1PEjBk241Kz1vwDCHECeHQW6iCca" - ], - "recipients": [ - "rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV" - ], + "senders": ["rLZ3yK1PEjBk241Kz1vwDCHECeHQW6iCca"], + "recipients": ["rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV"], "accountId": "js:2:ripple:rhQvt8XfAGn1hVVtMUmdGKBUdnKzi2oimV:", "blockHash": null, "blockHeight": 87413452, @@ -28014,330 +20229,56 @@ "balanceHistoryCache": { "HOUR": { "balances": [ - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000 ], "latestDate": 1722502800000 }, "DAY": { "balances": [ - 0, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 11000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000 + 0, 11000000, 11000000, 11000000, 11000000, 11000000, 11000000, 11000000, 11000000, + 11000000, 11000000, 11000000, 11000000, 11000000, 11000000, 11000000, 11000000, + 11000000, 11000000, 11000000, 11000000, 11000000, 11000000, 11000000, 11000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000 ], "latestDate": 1722463200000 }, "WEEK": { "balances": [ - 0, - 11000000, - 11000000, - 11000000, - 11000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000, - 22000000 + 0, 11000000, 11000000, 11000000, 11000000, 22000000, 22000000, 22000000, 22000000, + 22000000, 22000000, 22000000, 22000000, 22000000, 22000000, 22000000 ], "latestDate": 1722117600000 } @@ -28353,11 +20294,7 @@ "postOnboarding": { "deviceModelId": "stax", "walletEntryPointDismissed": true, - "actionsToComplete": [ - "customImage", - "assetsTransfer", - "buyCrypto" - ], + "actionsToComplete": ["customImage", "assetsTransfer", "buyCrypto"], "actionsCompleted": { "customImage": false, "assetsTransfer": true, @@ -82180,4 +74117,4 @@ "localLiveApp": [] } } -} \ No newline at end of file +} diff --git a/apps/ledger-live-desktop/tests/utils/allureUtils.ts b/apps/ledger-live-desktop/tests/utils/allureUtils.ts index fbf067f7240a..49a90707c53f 100644 --- a/apps/ledger-live-desktop/tests/utils/allureUtils.ts +++ b/apps/ledger-live-desktop/tests/utils/allureUtils.ts @@ -2,6 +2,8 @@ import { allure } from "allure-playwright"; import { Page, TestInfo } from "@playwright/test"; import { promisify } from "util"; import fs from "fs"; +import { takeScreenshot } from "@ledgerhq/live-common/e2e/speculos"; + const readFileAsync = promisify(fs.readFile); export async function addTmsLink(ids: string[]) { @@ -14,6 +16,12 @@ export async function captureArtifacts(page: Page, testInfo: TestInfo) { const screenshot = await page.screenshot(); await testInfo.attach("Screenshot", { body: screenshot, contentType: "image/png" }); + const speculosScreenshot = await takeScreenshot(); + await testInfo.attach("Speculos Screenshot", { + body: speculosScreenshot, + contentType: "image/png", + }); + if (page.video()) { const finalVideoPath = await page.video()?.path(); if (finalVideoPath) { diff --git a/apps/ledger-live-desktop/tests/utils/fileUtils.ts b/apps/ledger-live-desktop/tests/utils/fileUtils.ts index 5ea7bdc8f53b..33fe540be3e8 100644 --- a/apps/ledger-live-desktop/tests/utils/fileUtils.ts +++ b/apps/ledger-live-desktop/tests/utils/fileUtils.ts @@ -1,10 +1,5 @@ -import crypto from "crypto"; import { appendFile } from "fs/promises"; -export function generateUUID(): string { - return crypto.randomBytes(16).toString("hex"); -} - export async function safeAppendFile(filePath: string, data: string) { try { await appendFile(filePath, data); diff --git a/apps/ledger-live-desktop/tests/utils/textParserUtils.ts b/apps/ledger-live-desktop/tests/utils/textParserUtils.ts new file mode 100644 index 000000000000..304a094d15eb --- /dev/null +++ b/apps/ledger-live-desktop/tests/utils/textParserUtils.ts @@ -0,0 +1,4 @@ +export async function extractNumberFromText(text: string): Promise { + const match = text.match(/\d+/); + return match ? parseInt(match[0], 10) : 0; +} diff --git a/apps/ledger-live-desktop/tsconfig.json b/apps/ledger-live-desktop/tsconfig.json index c18afa00db3d..2b0a1aeeae9d 100644 --- a/apps/ledger-live-desktop/tsconfig.json +++ b/apps/ledger-live-desktop/tsconfig.json @@ -27,6 +27,7 @@ "package.json", "release-notes.json", "tests", + "tests/handlers/**/*.json", "index-types.d.ts", "tests/jestSetup.ts" ] diff --git a/apps/ledger-live-mobile/.unimportedrc.json b/apps/ledger-live-mobile/.unimportedrc.json index 96637af194d8..812172f14cf7 100644 --- a/apps/ledger-live-mobile/.unimportedrc.json +++ b/apps/ledger-live-mobile/.unimportedrc.json @@ -17,7 +17,9 @@ "src/contentCards/cards/vertical/*", "src/**/__integrations__/*.tsx", "src/MobileStorageProvider.ts", - "src/newArch/components/Dummy/*.tsx" + "src/newArch/features/WalletSync/components/Error/index.tsx", + "src/newArch/features/WalletSync/screens/Synchronize/PinCodeDisplay.tsx", + "src/newArch/features/WalletSync/screens/Synchronize/PinCodeInput.tsx" ], "ignoreUnused": [ "@react-native-masked-view/masked-view", @@ -28,7 +30,7 @@ "expo-image-loader", "expo-modules-autolinking", "expo-modules-core", - "expo-random", + "expo-crypto", "prop-types", "react-native-codegen", "react-native-fast-pbkdf2", diff --git a/apps/ledger-live-mobile/CHANGELOG.md b/apps/ledger-live-mobile/CHANGELOG.md index 92af863b06f9..8f3b9d0ce5aa 100644 --- a/apps/ledger-live-mobile/CHANGELOG.md +++ b/apps/ledger-live-mobile/CHANGELOG.md @@ -1,5 +1,335 @@ # live-mobile +## 3.49.0 + +### Minor Changes + +- [#7634](https://github.com/LedgerHQ/ledger-live/pull/7634) [`940d807`](https://github.com/LedgerHQ/ledger-live/commit/940d8073f6395cbcc2369f46aa6ad30216b00198) Thanks [@Justkant](https://github.com/Justkant)! - feat: add dependencies support on wallet-api and dapp browser for transaction + +- [#7646](https://github.com/LedgerHQ/ledger-live/pull/7646) [`267526c`](https://github.com/LedgerHQ/ledger-live/commit/267526c3f8cc4863d4947ab3c28ba20dc5593028) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - Ledger Sync - Added the synchronization of a trustchain from mobile to desktop by scanning the QR code + +- [#7414](https://github.com/LedgerHQ/ledger-live/pull/7414) [`5758950`](https://github.com/LedgerHQ/ledger-live/commit/5758950841fbf8018dd848e745017484aec67333) Thanks [@hzheng-ledger](https://github.com/hzheng-ledger)! - Add ERC20 token support for filecoin + +- [#7733](https://github.com/LedgerHQ/ledger-live/pull/7733) [`ef99222`](https://github.com/LedgerHQ/ledger-live/commit/ef99222a5adcd9732d06600bc875309c440e084f) Thanks [@thesan](https://github.com/thesan)! - Handle Ledgersync onboarding errors + +- [#7606](https://github.com/LedgerHQ/ledger-live/pull/7606) [`f839708`](https://github.com/LedgerHQ/ledger-live/commit/f83970899830bb9152323a18355a5f61d4832a13) Thanks [@thesan](https://github.com/thesan)! - Add currency support to quick actions + +- [#7714](https://github.com/LedgerHQ/ledger-live/pull/7714) [`5ecbe88`](https://github.com/LedgerHQ/ledger-live/commit/5ecbe88474032b724d6c408ab63be08aa567e0fc) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - Ledger Sync - Improve account names module to avoid erasing custom names with the default ones when two instances are pushing around the same time + +- [#7691](https://github.com/LedgerHQ/ledger-live/pull/7691) [`ce18c9b`](https://github.com/LedgerHQ/ledger-live/commit/ce18c9bde11fbd6cc196091716b1547354063d89) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - Ledger Sync - Added a Loading screen on LLM and LLD when initializing ledger sync while accounts are synchronizing + +- [#7702](https://github.com/LedgerHQ/ledger-live/pull/7702) [`248901b`](https://github.com/LedgerHQ/ledger-live/commit/248901b235ea2ace10bebea77453592494636371) Thanks [@Justkant](https://github.com/Justkant)! - feat(web3hub): new bottom modal to select network and account with dapp browser v3 + Small perf improvement for dapp browser v3 dapps initial load + Lots of small visual improvements, polish and bugfixes + Update app screen header url + +- [#7559](https://github.com/LedgerHQ/ledger-live/pull/7559) [`6ebea98`](https://github.com/LedgerHQ/ledger-live/commit/6ebea98ccd5c675cacc3e6c8eb29a8e53842c27b) Thanks [@Justkant](https://github.com/Justkant)! - feat: add header and bottom bar animations on webview scroll + +- [#7751](https://github.com/LedgerHQ/ledger-live/pull/7751) [`5df9941`](https://github.com/LedgerHQ/ledger-live/commit/5df9941cb533825fea15fce3484224fbf04ad13e) Thanks [@Justkant](https://github.com/Justkant)! - feat(LLM): pass some additional params to wallet-connect live-app when receiving a request + +- [#7572](https://github.com/LedgerHQ/ledger-live/pull/7572) [`c8c273c`](https://github.com/LedgerHQ/ledger-live/commit/c8c273c9a443a75b2fb85b831c8d40cf6ff068c6) Thanks [@valpinkman](https://github.com/valpinkman)! - Implement app data backup and restore when installing, uninstalling and updating apps on the device + +- [#7440](https://github.com/LedgerHQ/ledger-live/pull/7440) [`bc044e4`](https://github.com/LedgerHQ/ledger-live/commit/bc044e482ea2827dca281c44ec36526d63da5194) Thanks [@thesan](https://github.com/thesan)! - Request device access within `HWDeviceProvider` + +- [#7668](https://github.com/LedgerHQ/ledger-live/pull/7668) [`120c1f8`](https://github.com/LedgerHQ/ledger-live/commit/120c1f815fc170b1278a4da5997eefeddb95c7b5) Thanks [@thesan](https://github.com/thesan)! - Fix "Delete my encryption key" action on wrong seed errors + +- [#7580](https://github.com/LedgerHQ/ledger-live/pull/7580) [`6417959`](https://github.com/LedgerHQ/ledger-live/commit/641795937e14908ba9632a7b9744563b7e206be7) Thanks [@marcotoniut-ledger](https://github.com/marcotoniut-ledger)! - Add discover section deep link initial category filter to enable links like `ledgerlive://discover?category=restaking` to load the discover screen with the category pre-selected + +- [#7729](https://github.com/LedgerHQ/ledger-live/pull/7729) [`f5c8891`](https://github.com/LedgerHQ/ledger-live/commit/f5c88915cd5642e0bdce8ffb3ea1abe32e249f9b) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - LLM - Ledger Sync redirects to Qr code when syncing again after a successful sync + +- [#7558](https://github.com/LedgerHQ/ledger-live/pull/7558) [`9a650da`](https://github.com/LedgerHQ/ledger-live/commit/9a650da9a147d6881f7082278d2bf764c37e1451) Thanks [@thesan](https://github.com/thesan)! - Create the llmMarketQuickActions feature flag + +- [#7706](https://github.com/LedgerHQ/ledger-live/pull/7706) [`84ea362`](https://github.com/LedgerHQ/ledger-live/commit/84ea362e10ef5885428248c5689ae9ae595e653f) Thanks [@thesan](https://github.com/thesan)! - Create the `/ledgersync` deeplink + +### Patch Changes + +- [#7520](https://github.com/LedgerHQ/ledger-live/pull/7520) [`641cc17`](https://github.com/LedgerHQ/ledger-live/commit/641cc17c1e75918f2696c666fa0366ddd8902e38) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Add trustchain & createQRCodeHostInstance flow + +- [#7529](https://github.com/LedgerHQ/ledger-live/pull/7529) [`a409ecc`](https://github.com/LedgerHQ/ledger-live/commit/a409ecceb71d5ffedf0362130c18de99ec594e36) Thanks [@RamyEB](https://github.com/RamyEB)! - Add label clear signing + +- [#7626](https://github.com/LedgerHQ/ledger-live/pull/7626) [`aa0126a`](https://github.com/LedgerHQ/ledger-live/commit/aa0126ae3edf0c7604cb9e4027473ba86f151f01) Thanks [@Justkant](https://github.com/Justkant)! - fix: hidden header should show again when searching + +- [#7720](https://github.com/LedgerHQ/ledger-live/pull/7720) [`7a5a837`](https://github.com/LedgerHQ/ledger-live/commit/7a5a837fab67939b59b885f1db1978b44c55a1dd) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Rework LedgerSync Analytics + +- [#7624](https://github.com/LedgerHQ/ledger-live/pull/7624) [`ce45204`](https://github.com/LedgerHQ/ledger-live/commit/ce45204c73294850734461dd110402bc4826ade4) Thanks [@Justkant](https://github.com/Justkant)! - fix: missing query params for web3hub manifests requests + +- [#7561](https://github.com/LedgerHQ/ledger-live/pull/7561) [`1fb2b90`](https://github.com/LedgerHQ/ledger-live/commit/1fb2b909c5d97e373a0f72baa37578132bd8b24a) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix get Members errors GetMember :Error: ["useGetMembers", null] data is undefined + +- [#7710](https://github.com/LedgerHQ/ledger-live/pull/7710) [`cc291f5`](https://github.com/LedgerHQ/ledger-live/commit/cc291f5466d80a2b7e9394338ab588ecd3db4623) Thanks [@lambertkevin](https://github.com/lambertkevin)! - Migrating the Matic currency to POL (see https://polygon.technology/blog/save-the-date-matic-pol-migration-coming-september-4th-everything-you-need-to-know) + +- [#7512](https://github.com/LedgerHQ/ledger-live/pull/7512) [`7781e20`](https://github.com/LedgerHQ/ledger-live/commit/7781e20bf484d8e6dcc3375ed0f32a65c1fd5eb5) Thanks [@LucasWerey](https://github.com/LucasWerey)! - add WS scan qr code + +- [#7725](https://github.com/LedgerHQ/ledger-live/pull/7725) [`b2c4c51`](https://github.com/LedgerHQ/ledger-live/commit/b2c4c514afe35422c75f5de26c9ae45c67c10b01) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Update errors in trad + +- [#7672](https://github.com/LedgerHQ/ledger-live/pull/7672) [`fb9466a`](https://github.com/LedgerHQ/ledger-live/commit/fb9466a4d7827fd4759c726ad3ae0b43dddcacd3) Thanks [@hzheng-ledger](https://github.com/hzheng-ledger)! - Add support for jettons + +- [#7655](https://github.com/LedgerHQ/ledger-live/pull/7655) [`c358bb7`](https://github.com/LedgerHQ/ledger-live/commit/c358bb720a24a69a0ac813662d77c78af0b55055) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Update copy for LedgerSync + +- [#7697](https://github.com/LedgerHQ/ledger-live/pull/7697) [`b1a8c54`](https://github.com/LedgerHQ/ledger-live/commit/b1a8c549b190863ea026426f7cb9db48d8a97083) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - User connects backup to instance with same backup or different backup + +- [#7721](https://github.com/LedgerHQ/ledger-live/pull/7721) [`c0bcef6`](https://github.com/LedgerHQ/ledger-live/commit/c0bcef618128f849b672c403dfad51d1fe1cc7d5) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix Wording on FollowInstructions + +- [#7661](https://github.com/LedgerHQ/ledger-live/pull/7661) [`b07279f`](https://github.com/LedgerHQ/ledger-live/commit/b07279feb8fb8939ff880be5460c1ec16f1fee3b) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Add fromLedgerSyncOnboarding to trigger right onClose action for Activation + +- [#7525](https://github.com/LedgerHQ/ledger-live/pull/7525) [`4799d5d`](https://github.com/LedgerHQ/ledger-live/commit/4799d5de3fb1dcef2b01de31fe29b59e76922576) Thanks [@valpinkman](https://github.com/valpinkman)! - Add new developer setting to mock app update in the manager + +- [#7712](https://github.com/LedgerHQ/ledger-live/pull/7712) [`a84f3d3`](https://github.com/LedgerHQ/ledger-live/commit/a84f3d344e37301dc76f182c0f99b0b01106abfa) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Handle TrustchainAlreadyInitialized & TrustchainAlreadyInitializedWithOtherSeed on Scan QR + +- [#7467](https://github.com/LedgerHQ/ledger-live/pull/7467) [`3de93cc`](https://github.com/LedgerHQ/ledger-live/commit/3de93cc5597e0f87a70b9c728589a2ef363ac65d) Thanks [@LucasWerey](https://github.com/LucasWerey)! - Add the show qr code implementation for WS flow. Create tabSelector in RN UI Lib + +- [#7754](https://github.com/LedgerHQ/ledger-live/pull/7754) [`9ad7895`](https://github.com/LedgerHQ/ledger-live/commit/9ad7895e6ef311e4a7c5913b5acb8c041eef715e) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix navigation on Drawer when AlreadySecuredOtherSeed error + +- [#7744](https://github.com/LedgerHQ/ledger-live/pull/7744) [`7e81505`](https://github.com/LedgerHQ/ledger-live/commit/7e815054bf47f31b0ec23e2cbed7e076b980725b) Thanks [@valpinkman](https://github.com/valpinkman)! - Delete local app data when uninstalling apps + +- [#7632](https://github.com/LedgerHQ/ledger-live/pull/7632) [`271f90d`](https://github.com/LedgerHQ/ledger-live/commit/271f90dc0f5b46ddaf136873dc034d4c44045dd0) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - LLM / LLD - Fix the getOrCreateTrustchain that wasn't working when another instance destroyed the trustchain + +- [#7562](https://github.com/LedgerHQ/ledger-live/pull/7562) [`bd1b099`](https://github.com/LedgerHQ/ledger-live/commit/bd1b09970f2f5a27eb08352a67a73dfa2fce29f6) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - LLM - Added navigation to the manage key screen + +- [#7542](https://github.com/LedgerHQ/ledger-live/pull/7542) [`313d0e4`](https://github.com/LedgerHQ/ledger-live/commit/313d0e42b81b69b57aa81a760465a414e6afd7f7) Thanks [@ofreyssinet-ledger](https://github.com/ofreyssinet-ledger)! - My Ledger: fix & refactor logic of "is app supported by Ledger Live" depending on feature flags, and associated filters in apps catalog. Now this logic is in one single place and fully unit tested. + +- [#7644](https://github.com/LedgerHQ/ledger-live/pull/7644) [`a8971eb`](https://github.com/LedgerHQ/ledger-live/commit/a8971eb98ee1cfe87e1dc4972f96fdb59e46c4e7) Thanks [@Wozacosta](https://github.com/Wozacosta)! - uses main account's unit when displayed fees with no options + +- [#7556](https://github.com/LedgerHQ/ledger-live/pull/7556) [`ebbbe52`](https://github.com/LedgerHQ/ledger-live/commit/ebbbe521b62c91be646925ff6c87fd79357cff82) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Throw errors to avoid rejection on QRCode + +- [#7717](https://github.com/LedgerHQ/ledger-live/pull/7717) [`9a4a3bc`](https://github.com/LedgerHQ/ledger-live/commit/9a4a3bce55a2332ae4bdb13cc2bdbbb97ed7693b) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix minor bugs on both LL + +- [#7538](https://github.com/LedgerHQ/ledger-live/pull/7538) [`4dad5d0`](https://github.com/LedgerHQ/ledger-live/commit/4dad5d0cb3bbe3ea31635ab13fc387fc8a0ec5e2) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Add LedgerSync status banner + hook + +- [#7553](https://github.com/LedgerHQ/ledger-live/pull/7553) [`0407529`](https://github.com/LedgerHQ/ledger-live/commit/04075299b5291a93d34f507f0bd8cde43f4d745a) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Set nbDigits dynamic for PinCodeInput + +- [#7651](https://github.com/LedgerHQ/ledger-live/pull/7651) [`6f781da`](https://github.com/LedgerHQ/ledger-live/commit/6f781daef5bfb736edb7df003f39bdbd132b12aa) Thanks [@thesan](https://github.com/thesan)! - Add more descriptive mobile device name to the trustchain + +- [#7570](https://github.com/LedgerHQ/ledger-live/pull/7570) [`3c19077`](https://github.com/LedgerHQ/ledger-live/commit/3c19077f647b3499402de168070215885154f4fa) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix color PinCodeInput + +- [#7666](https://github.com/LedgerHQ/ledger-live/pull/7666) [`32b33b6`](https://github.com/LedgerHQ/ledger-live/commit/32b33b63661f58ae025539bab381a77aa1970c17) Thanks [@RamyEB](https://github.com/RamyEB)! - Setup analytics on Web3Hub + +- [#7748](https://github.com/LedgerHQ/ledger-live/pull/7748) [`f34dd22`](https://github.com/LedgerHQ/ledger-live/commit/f34dd220fc21afb1107854b7d6d167c3e0706001) Thanks [@thesan](https://github.com/thesan)! - Fix extra device action at the end of the remove member flow + +- [#7663](https://github.com/LedgerHQ/ledger-live/pull/7663) [`1a5bcec`](https://github.com/LedgerHQ/ledger-live/commit/1a5bcecb79d6c29b895f5d2d317a7aec00013acf) Thanks [@valpinkman](https://github.com/valpinkman)! - Avoid running watchloop when LS ff is disabled + +- [#7545](https://github.com/LedgerHQ/ledger-live/pull/7545) [`10deab9`](https://github.com/LedgerHQ/ledger-live/commit/10deab9a5a60c5983b68e29c1561527e55342bff) Thanks [@LucasWerey](https://github.com/LucasWerey)! - Trustchain integration on LLM scan qr code. We can now join a trustchain scanning a qr code + +- [#7660](https://github.com/LedgerHQ/ledger-live/pull/7660) [`9c584a0`](https://github.com/LedgerHQ/ledger-live/commit/9c584a08063dedc4eb4baeb3b0e719acf98a2087) Thanks [@sergiubreban](https://github.com/sergiubreban)! - removes old manifest id for buy-sell app + +- [#7563](https://github.com/LedgerHQ/ledger-live/pull/7563) [`ef82161`](https://github.com/LedgerHQ/ledger-live/commit/ef82161688fc49bf32cbc88f1837b15490e5d2b4) Thanks [@Wozacosta](https://github.com/Wozacosta)! - remove pivx code + +- [#7610](https://github.com/LedgerHQ/ledger-live/pull/7610) [`08fd8b4`](https://github.com/LedgerHQ/ledger-live/commit/08fd8b4c2150a32a72f2b943d1ef76724a1e2544) Thanks [@mwiercinska](https://github.com/mwiercinska)! - Add locale and ticker query params for buy/sell + +- [#7746](https://github.com/LedgerHQ/ledger-live/pull/7746) [`2147bd2`](https://github.com/LedgerHQ/ledger-live/commit/2147bd2fb48cc58809cf6aa3a46e606539f1423d) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Update Copy and fix color on Analytics Opt-in + +- [#7629](https://github.com/LedgerHQ/ledger-live/pull/7629) [`81468af`](https://github.com/LedgerHQ/ledger-live/commit/81468af073af1ccdeb3fdbcf6b2c998cebc68ab5) Thanks [@mwiercinska](https://github.com/mwiercinska)! - add translation for back to quote CTA in WebPTXPlayer + +- [#7586](https://github.com/LedgerHQ/ledger-live/pull/7586) [`94bf322`](https://github.com/LedgerHQ/ledger-live/commit/94bf322023cf497b19399be8abcf54a57ea740d1) Thanks [@hzheng-ledger](https://github.com/hzheng-ledger)! - fix: replace expo-random lib with expo-crypto + +- [#7690](https://github.com/LedgerHQ/ledger-live/pull/7690) [`a3fd728`](https://github.com/LedgerHQ/ledger-live/commit/a3fd72861f2a7df676bd793062b3816fdb9d1f57) Thanks [@thesan](https://github.com/thesan)! - Refresh ledger sync QR code on expiration + +- [#7635](https://github.com/LedgerHQ/ledger-live/pull/7635) [`e85f65b`](https://github.com/LedgerHQ/ledger-live/commit/e85f65b23ccb64599c235d62ff0db67b32dc3257) Thanks [@thesan](https://github.com/thesan)! - Create accounts with the receive market quick action + +- [#7636](https://github.com/LedgerHQ/ledger-live/pull/7636) [`a0bb74b`](https://github.com/LedgerHQ/ledger-live/commit/a0bb74b8f3704ab9d5567c9d14c16cab9e0872f7) Thanks [@Wozacosta](https://github.com/Wozacosta)! - Move Cosmos and Cosmos-based coins to its own module + +- [#7648](https://github.com/LedgerHQ/ledger-live/pull/7648) [`3e3e839`](https://github.com/LedgerHQ/ledger-live/commit/3e3e83983ca4d8ef93f535cba391f0f7231ea6e7) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix starting step when WS is activated and you want to sync again + +- [#7764](https://github.com/LedgerHQ/ledger-live/pull/7764) [`e805a7e`](https://github.com/LedgerHQ/ledger-live/commit/e805a7e40dfc595ebb83ae0365b643eb1ac424ba) Thanks [@themooneer](https://github.com/themooneer)! - Assign the right color to settings icon in Fallback camera permission screen + +- [#7689](https://github.com/LedgerHQ/ledger-live/pull/7689) [`302dcd7`](https://github.com/LedgerHQ/ledger-live/commit/302dcd78a4ac0ecb2336ce11094b6d703e01a2ae) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Update ManageKey flow copy + +- [#7753](https://github.com/LedgerHQ/ledger-live/pull/7753) [`d7163a7`](https://github.com/LedgerHQ/ledger-live/commit/d7163a7da9918897b61b5bb76ca750a1253f767c) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - LLM - Ledger sync small navigation fixes + +- [#7625](https://github.com/LedgerHQ/ledger-live/pull/7625) [`22019d6`](https://github.com/LedgerHQ/ledger-live/commit/22019d6834f3ebbe0798719c0e1abaff3b3ce1dd) Thanks [@Justkant](https://github.com/Justkant)! - fix: freeze when opening a live-app + +- [#7758](https://github.com/LedgerHQ/ledger-live/pull/7758) [`c4460cf`](https://github.com/LedgerHQ/ledger-live/commit/c4460cf7d1a5c53b3b1ce493731952b3e2bf6102) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix Analytics LedgerSync + +- Updated dependencies [[`f8756b2`](https://github.com/LedgerHQ/ledger-live/commit/f8756b29a83048d423d500e16ea3f9789763b90d), [`87c160d`](https://github.com/LedgerHQ/ledger-live/commit/87c160d855b512d5a0394eaee7626e2b8cd431ee), [`5c738cb`](https://github.com/LedgerHQ/ledger-live/commit/5c738cbd35ce5d0ca39ad3b86a61cc6234d1bdf7), [`940d807`](https://github.com/LedgerHQ/ledger-live/commit/940d8073f6395cbcc2369f46aa6ad30216b00198), [`354d913`](https://github.com/LedgerHQ/ledger-live/commit/354d9138a4bd9b54001ff1330a8000ee94aea008), [`d60a022`](https://github.com/LedgerHQ/ledger-live/commit/d60a02238db9ed16142de4c1874e26d27aaaa98c), [`9c55e81`](https://github.com/LedgerHQ/ledger-live/commit/9c55e81c84d3372f2a7fd36248f970376aec905a), [`5de6b47`](https://github.com/LedgerHQ/ledger-live/commit/5de6b47f4fec831a24ccd58ee95d69b8c2c15d57), [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab), [`267526c`](https://github.com/LedgerHQ/ledger-live/commit/267526c3f8cc4863d4947ab3c28ba20dc5593028), [`b97b76c`](https://github.com/LedgerHQ/ledger-live/commit/b97b76cc99845b0240426f5ca75c765b615ccec5), [`e9bb8b9`](https://github.com/LedgerHQ/ledger-live/commit/e9bb8b969e3c07cb80a9247b8b5830693f35ef84), [`1825bd3`](https://github.com/LedgerHQ/ledger-live/commit/1825bd36642e34e4b4aaeefb1805b04c87a32a22), [`1fb2b90`](https://github.com/LedgerHQ/ledger-live/commit/1fb2b909c5d97e373a0f72baa37578132bd8b24a), [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab), [`cc291f5`](https://github.com/LedgerHQ/ledger-live/commit/cc291f5466d80a2b7e9394338ab588ecd3db4623), [`fb9466a`](https://github.com/LedgerHQ/ledger-live/commit/fb9466a4d7827fd4759c726ad3ae0b43dddcacd3), [`f0eb405`](https://github.com/LedgerHQ/ledger-live/commit/f0eb405b52de5484ee98ac87e87522b33836224c), [`5758950`](https://github.com/LedgerHQ/ledger-live/commit/5758950841fbf8018dd848e745017484aec67333), [`ef99222`](https://github.com/LedgerHQ/ledger-live/commit/ef99222a5adcd9732d06600bc875309c440e084f), [`5ecbe88`](https://github.com/LedgerHQ/ledger-live/commit/5ecbe88474032b724d6c408ab63be08aa567e0fc), [`a84f3d3`](https://github.com/LedgerHQ/ledger-live/commit/a84f3d344e37301dc76f182c0f99b0b01106abfa), [`ce18c9b`](https://github.com/LedgerHQ/ledger-live/commit/ce18c9bde11fbd6cc196091716b1547354063d89), [`3de93cc`](https://github.com/LedgerHQ/ledger-live/commit/3de93cc5597e0f87a70b9c728589a2ef363ac65d), [`271f90d`](https://github.com/LedgerHQ/ledger-live/commit/271f90dc0f5b46ddaf136873dc034d4c44045dd0), [`313d0e4`](https://github.com/LedgerHQ/ledger-live/commit/313d0e42b81b69b57aa81a760465a414e6afd7f7), [`297ce51`](https://github.com/LedgerHQ/ledger-live/commit/297ce513f496f256efe8f9011734324125f462a5), [`fcd8d52`](https://github.com/LedgerHQ/ledger-live/commit/fcd8d5272176a4acec4e396ed313d3578e1c5b86), [`94afd9e`](https://github.com/LedgerHQ/ledger-live/commit/94afd9e0742d0e227b1e6ff953edee7a66ad61a3), [`0c80144`](https://github.com/LedgerHQ/ledger-live/commit/0c80144b8c16fc3729baa6503875d21af87b2752), [`4799d5d`](https://github.com/LedgerHQ/ledger-live/commit/4799d5de3fb1dcef2b01de31fe29b59e76922576), [`1353e7a`](https://github.com/LedgerHQ/ledger-live/commit/1353e7ae02f22e8f9194a1e3c34f9444785b6fb6), [`6ccd01c`](https://github.com/LedgerHQ/ledger-live/commit/6ccd01cd738362db00c9dbc74cd0a77ccc01b206), [`224e33c`](https://github.com/LedgerHQ/ledger-live/commit/224e33c93d2acd22c82892148b240df004284037), [`bc044e4`](https://github.com/LedgerHQ/ledger-live/commit/bc044e482ea2827dca281c44ec36526d63da5194), [`4799d5d`](https://github.com/LedgerHQ/ledger-live/commit/4799d5de3fb1dcef2b01de31fe29b59e76922576), [`ef82161`](https://github.com/LedgerHQ/ledger-live/commit/ef82161688fc49bf32cbc88f1837b15490e5d2b4), [`8e0ac04`](https://github.com/LedgerHQ/ledger-live/commit/8e0ac04ac8cdaaee59633ebdf219e5dcf44a10df), [`cd440bb`](https://github.com/LedgerHQ/ledger-live/commit/cd440bbd647633278d983a15803032c1e676d4fe), [`9070cff`](https://github.com/LedgerHQ/ledger-live/commit/9070cffc83fd607b593c4b85a78faaf8e29f7acb), [`c8ac662`](https://github.com/LedgerHQ/ledger-live/commit/c8ac662e6f88349187f802741e14c3d5fb67cddb), [`c8c273c`](https://github.com/LedgerHQ/ledger-live/commit/c8c273c9a443a75b2fb85b831c8d40cf6ff068c6), [`6417959`](https://github.com/LedgerHQ/ledger-live/commit/641795937e14908ba9632a7b9744563b7e206be7), [`277648c`](https://github.com/LedgerHQ/ledger-live/commit/277648cbc0b58694a49d8d929c8ec0b89986f4cf), [`94bf322`](https://github.com/LedgerHQ/ledger-live/commit/94bf322023cf497b19399be8abcf54a57ea740d1), [`a3fd728`](https://github.com/LedgerHQ/ledger-live/commit/a3fd72861f2a7df676bd793062b3816fdb9d1f57), [`1bcff16`](https://github.com/LedgerHQ/ledger-live/commit/1bcff1673fa0cbc43f43201044d7e9425f8991f1), [`a0bb74b`](https://github.com/LedgerHQ/ledger-live/commit/a0bb74b8f3704ab9d5567c9d14c16cab9e0872f7), [`eb9a36f`](https://github.com/LedgerHQ/ledger-live/commit/eb9a36f6ee8487c9ffbb841c3e6c0ca84f68bb0a), [`9c2f1b3`](https://github.com/LedgerHQ/ledger-live/commit/9c2f1b3b6e11a37a6b5ecf02d1e1ae7f0258e3ae), [`1d1bfd1`](https://github.com/LedgerHQ/ledger-live/commit/1d1bfd164847431c0f4afe7ed8ae6d5df535c9cf), [`91374dd`](https://github.com/LedgerHQ/ledger-live/commit/91374dde37f0ec3b63817254b9e26c1eb02ed981), [`042e1ab`](https://github.com/LedgerHQ/ledger-live/commit/042e1abf2d0bdbdc906cb88e30770d4de1eef356), [`531bc03`](https://github.com/LedgerHQ/ledger-live/commit/531bc03228d486e4b18f10df83b7b9bfdbd025b8), [`9a650da`](https://github.com/LedgerHQ/ledger-live/commit/9a650da9a147d6881f7082278d2bf764c37e1451), [`54578c3`](https://github.com/LedgerHQ/ledger-live/commit/54578c329baf4434f9c5d9accb8842da00e45630), [`d213d81`](https://github.com/LedgerHQ/ledger-live/commit/d213d8122647d559b7a0f44e2beffa5e39c3249b), [`e7db725`](https://github.com/LedgerHQ/ledger-live/commit/e7db72552042ff4dd85bec236f6bd083fa3da533), [`9d58923`](https://github.com/LedgerHQ/ledger-live/commit/9d5892327b43e219b3b672e7a56e1e2d6413a83b)]: + - @ledgerhq/live-common@34.8.0 + - @ledgerhq/trustchain@0.3.0 + - @ledgerhq/errors@6.19.0 + - @ledgerhq/hw-transport-http@6.30.3 + - @ledgerhq/coin-evm@2.2.0 + - @ledgerhq/domain-service@1.2.4 + - @ledgerhq/live-network@2.0.0 + - @ledgerhq/native-ui@0.24.0 + - @ledgerhq/live-countervalues@0.2.5 + - @ledgerhq/coin-framework@0.18.0 + - @ledgerhq/types-live@6.51.0 + - @ledgerhq/live-countervalues-react@0.2.5 + - @ledgerhq/icons-ui@0.7.3 + - @ledgerhq/live-env@2.3.0 + - @ledgerhq/live-wallet@0.6.0 + - @ledgerhq/types-cryptoassets@7.15.1 + - @ledgerhq/hw-trustchain@0.1.5 + - @ledgerhq/coin-cosmos@0.1.1 + - @ledgerhq/devices@8.4.3 + - @ledgerhq/hw-transport@6.31.3 + - @ledgerhq/react-native-hid@6.32.3 + - @ledgerhq/react-native-hw-transport-ble@6.33.3 + - @ledgerhq/live-nft@0.4.5 + - @ledgerhq/live-nft-react@0.4.5 + +## 3.49.0-next.0 + +### Minor Changes + +- [#7634](https://github.com/LedgerHQ/ledger-live/pull/7634) [`940d807`](https://github.com/LedgerHQ/ledger-live/commit/940d8073f6395cbcc2369f46aa6ad30216b00198) Thanks [@Justkant](https://github.com/Justkant)! - feat: add dependencies support on wallet-api and dapp browser for transaction + +- [#7646](https://github.com/LedgerHQ/ledger-live/pull/7646) [`267526c`](https://github.com/LedgerHQ/ledger-live/commit/267526c3f8cc4863d4947ab3c28ba20dc5593028) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - Ledger Sync - Added the synchronization of a trustchain from mobile to desktop by scanning the QR code + +- [#7414](https://github.com/LedgerHQ/ledger-live/pull/7414) [`5758950`](https://github.com/LedgerHQ/ledger-live/commit/5758950841fbf8018dd848e745017484aec67333) Thanks [@hzheng-ledger](https://github.com/hzheng-ledger)! - Add ERC20 token support for filecoin + +- [#7733](https://github.com/LedgerHQ/ledger-live/pull/7733) [`ef99222`](https://github.com/LedgerHQ/ledger-live/commit/ef99222a5adcd9732d06600bc875309c440e084f) Thanks [@thesan](https://github.com/thesan)! - Handle Ledgersync onboarding errors + +- [#7606](https://github.com/LedgerHQ/ledger-live/pull/7606) [`f839708`](https://github.com/LedgerHQ/ledger-live/commit/f83970899830bb9152323a18355a5f61d4832a13) Thanks [@thesan](https://github.com/thesan)! - Add currency support to quick actions + +- [#7714](https://github.com/LedgerHQ/ledger-live/pull/7714) [`5ecbe88`](https://github.com/LedgerHQ/ledger-live/commit/5ecbe88474032b724d6c408ab63be08aa567e0fc) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - Ledger Sync - Improve account names module to avoid erasing custom names with the default ones when two instances are pushing around the same time + +- [#7691](https://github.com/LedgerHQ/ledger-live/pull/7691) [`ce18c9b`](https://github.com/LedgerHQ/ledger-live/commit/ce18c9bde11fbd6cc196091716b1547354063d89) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - Ledger Sync - Added a Loading screen on LLM and LLD when initializing ledger sync while accounts are synchronizing + +- [#7702](https://github.com/LedgerHQ/ledger-live/pull/7702) [`248901b`](https://github.com/LedgerHQ/ledger-live/commit/248901b235ea2ace10bebea77453592494636371) Thanks [@Justkant](https://github.com/Justkant)! - feat(web3hub): new bottom modal to select network and account with dapp browser v3 + Small perf improvement for dapp browser v3 dapps initial load + Lots of small visual improvements, polish and bugfixes + Update app screen header url + +- [#7559](https://github.com/LedgerHQ/ledger-live/pull/7559) [`6ebea98`](https://github.com/LedgerHQ/ledger-live/commit/6ebea98ccd5c675cacc3e6c8eb29a8e53842c27b) Thanks [@Justkant](https://github.com/Justkant)! - feat: add header and bottom bar animations on webview scroll + +- [#7751](https://github.com/LedgerHQ/ledger-live/pull/7751) [`5df9941`](https://github.com/LedgerHQ/ledger-live/commit/5df9941cb533825fea15fce3484224fbf04ad13e) Thanks [@Justkant](https://github.com/Justkant)! - feat(LLM): pass some additional params to wallet-connect live-app when receiving a request + +- [#7572](https://github.com/LedgerHQ/ledger-live/pull/7572) [`c8c273c`](https://github.com/LedgerHQ/ledger-live/commit/c8c273c9a443a75b2fb85b831c8d40cf6ff068c6) Thanks [@valpinkman](https://github.com/valpinkman)! - Implement app data backup and restore when installing, uninstalling and updating apps on the device + +- [#7440](https://github.com/LedgerHQ/ledger-live/pull/7440) [`bc044e4`](https://github.com/LedgerHQ/ledger-live/commit/bc044e482ea2827dca281c44ec36526d63da5194) Thanks [@thesan](https://github.com/thesan)! - Request device access within `HWDeviceProvider` + +- [#7668](https://github.com/LedgerHQ/ledger-live/pull/7668) [`120c1f8`](https://github.com/LedgerHQ/ledger-live/commit/120c1f815fc170b1278a4da5997eefeddb95c7b5) Thanks [@thesan](https://github.com/thesan)! - Fix "Delete my encryption key" action on wrong seed errors + +- [#7580](https://github.com/LedgerHQ/ledger-live/pull/7580) [`6417959`](https://github.com/LedgerHQ/ledger-live/commit/641795937e14908ba9632a7b9744563b7e206be7) Thanks [@marcotoniut-ledger](https://github.com/marcotoniut-ledger)! - Add discover section deep link initial category filter to enable links like `ledgerlive://discover?category=restaking` to load the discover screen with the category pre-selected + +- [#7729](https://github.com/LedgerHQ/ledger-live/pull/7729) [`f5c8891`](https://github.com/LedgerHQ/ledger-live/commit/f5c88915cd5642e0bdce8ffb3ea1abe32e249f9b) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - LLM - Ledger Sync redirects to Qr code when syncing again after a successful sync + +- [#7558](https://github.com/LedgerHQ/ledger-live/pull/7558) [`9a650da`](https://github.com/LedgerHQ/ledger-live/commit/9a650da9a147d6881f7082278d2bf764c37e1451) Thanks [@thesan](https://github.com/thesan)! - Create the llmMarketQuickActions feature flag + +- [#7706](https://github.com/LedgerHQ/ledger-live/pull/7706) [`84ea362`](https://github.com/LedgerHQ/ledger-live/commit/84ea362e10ef5885428248c5689ae9ae595e653f) Thanks [@thesan](https://github.com/thesan)! - Create the `/ledgersync` deeplink + +### Patch Changes + +- [#7520](https://github.com/LedgerHQ/ledger-live/pull/7520) [`641cc17`](https://github.com/LedgerHQ/ledger-live/commit/641cc17c1e75918f2696c666fa0366ddd8902e38) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Add trustchain & createQRCodeHostInstance flow + +- [#7529](https://github.com/LedgerHQ/ledger-live/pull/7529) [`a409ecc`](https://github.com/LedgerHQ/ledger-live/commit/a409ecceb71d5ffedf0362130c18de99ec594e36) Thanks [@RamyEB](https://github.com/RamyEB)! - Add label clear signing + +- [#7626](https://github.com/LedgerHQ/ledger-live/pull/7626) [`aa0126a`](https://github.com/LedgerHQ/ledger-live/commit/aa0126ae3edf0c7604cb9e4027473ba86f151f01) Thanks [@Justkant](https://github.com/Justkant)! - fix: hidden header should show again when searching + +- [#7720](https://github.com/LedgerHQ/ledger-live/pull/7720) [`7a5a837`](https://github.com/LedgerHQ/ledger-live/commit/7a5a837fab67939b59b885f1db1978b44c55a1dd) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Rework LedgerSync Analytics + +- [#7624](https://github.com/LedgerHQ/ledger-live/pull/7624) [`ce45204`](https://github.com/LedgerHQ/ledger-live/commit/ce45204c73294850734461dd110402bc4826ade4) Thanks [@Justkant](https://github.com/Justkant)! - fix: missing query params for web3hub manifests requests + +- [#7561](https://github.com/LedgerHQ/ledger-live/pull/7561) [`1fb2b90`](https://github.com/LedgerHQ/ledger-live/commit/1fb2b909c5d97e373a0f72baa37578132bd8b24a) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix get Members errors GetMember :Error: ["useGetMembers", null] data is undefined + +- [#7710](https://github.com/LedgerHQ/ledger-live/pull/7710) [`cc291f5`](https://github.com/LedgerHQ/ledger-live/commit/cc291f5466d80a2b7e9394338ab588ecd3db4623) Thanks [@lambertkevin](https://github.com/lambertkevin)! - Migrating the Matic currency to POL (see https://polygon.technology/blog/save-the-date-matic-pol-migration-coming-september-4th-everything-you-need-to-know) + +- [#7512](https://github.com/LedgerHQ/ledger-live/pull/7512) [`7781e20`](https://github.com/LedgerHQ/ledger-live/commit/7781e20bf484d8e6dcc3375ed0f32a65c1fd5eb5) Thanks [@LucasWerey](https://github.com/LucasWerey)! - add WS scan qr code + +- [#7725](https://github.com/LedgerHQ/ledger-live/pull/7725) [`b2c4c51`](https://github.com/LedgerHQ/ledger-live/commit/b2c4c514afe35422c75f5de26c9ae45c67c10b01) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Update errors in trad + +- [#7672](https://github.com/LedgerHQ/ledger-live/pull/7672) [`fb9466a`](https://github.com/LedgerHQ/ledger-live/commit/fb9466a4d7827fd4759c726ad3ae0b43dddcacd3) Thanks [@hzheng-ledger](https://github.com/hzheng-ledger)! - Add support for jettons + +- [#7655](https://github.com/LedgerHQ/ledger-live/pull/7655) [`c358bb7`](https://github.com/LedgerHQ/ledger-live/commit/c358bb720a24a69a0ac813662d77c78af0b55055) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Update copy for LedgerSync + +- [#7697](https://github.com/LedgerHQ/ledger-live/pull/7697) [`b1a8c54`](https://github.com/LedgerHQ/ledger-live/commit/b1a8c549b190863ea026426f7cb9db48d8a97083) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - User connects backup to instance with same backup or different backup + +- [#7721](https://github.com/LedgerHQ/ledger-live/pull/7721) [`c0bcef6`](https://github.com/LedgerHQ/ledger-live/commit/c0bcef618128f849b672c403dfad51d1fe1cc7d5) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix Wording on FollowInstructions + +- [#7661](https://github.com/LedgerHQ/ledger-live/pull/7661) [`b07279f`](https://github.com/LedgerHQ/ledger-live/commit/b07279feb8fb8939ff880be5460c1ec16f1fee3b) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Add fromLedgerSyncOnboarding to trigger right onClose action for Activation + +- [#7525](https://github.com/LedgerHQ/ledger-live/pull/7525) [`4799d5d`](https://github.com/LedgerHQ/ledger-live/commit/4799d5de3fb1dcef2b01de31fe29b59e76922576) Thanks [@valpinkman](https://github.com/valpinkman)! - Add new developer setting to mock app update in the manager + +- [#7712](https://github.com/LedgerHQ/ledger-live/pull/7712) [`a84f3d3`](https://github.com/LedgerHQ/ledger-live/commit/a84f3d344e37301dc76f182c0f99b0b01106abfa) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Handle TrustchainAlreadyInitialized & TrustchainAlreadyInitializedWithOtherSeed on Scan QR + +- [#7467](https://github.com/LedgerHQ/ledger-live/pull/7467) [`3de93cc`](https://github.com/LedgerHQ/ledger-live/commit/3de93cc5597e0f87a70b9c728589a2ef363ac65d) Thanks [@LucasWerey](https://github.com/LucasWerey)! - Add the show qr code implementation for WS flow. Create tabSelector in RN UI Lib + +- [#7754](https://github.com/LedgerHQ/ledger-live/pull/7754) [`9ad7895`](https://github.com/LedgerHQ/ledger-live/commit/9ad7895e6ef311e4a7c5913b5acb8c041eef715e) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix navigation on Drawer when AlreadySecuredOtherSeed error + +- [#7744](https://github.com/LedgerHQ/ledger-live/pull/7744) [`7e81505`](https://github.com/LedgerHQ/ledger-live/commit/7e815054bf47f31b0ec23e2cbed7e076b980725b) Thanks [@valpinkman](https://github.com/valpinkman)! - Delete local app data when uninstalling apps + +- [#7632](https://github.com/LedgerHQ/ledger-live/pull/7632) [`271f90d`](https://github.com/LedgerHQ/ledger-live/commit/271f90dc0f5b46ddaf136873dc034d4c44045dd0) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - LLM / LLD - Fix the getOrCreateTrustchain that wasn't working when another instance destroyed the trustchain + +- [#7562](https://github.com/LedgerHQ/ledger-live/pull/7562) [`bd1b099`](https://github.com/LedgerHQ/ledger-live/commit/bd1b09970f2f5a27eb08352a67a73dfa2fce29f6) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - LLM - Added navigation to the manage key screen + +- [#7542](https://github.com/LedgerHQ/ledger-live/pull/7542) [`313d0e4`](https://github.com/LedgerHQ/ledger-live/commit/313d0e42b81b69b57aa81a760465a414e6afd7f7) Thanks [@ofreyssinet-ledger](https://github.com/ofreyssinet-ledger)! - My Ledger: fix & refactor logic of "is app supported by Ledger Live" depending on feature flags, and associated filters in apps catalog. Now this logic is in one single place and fully unit tested. + +- [#7644](https://github.com/LedgerHQ/ledger-live/pull/7644) [`a8971eb`](https://github.com/LedgerHQ/ledger-live/commit/a8971eb98ee1cfe87e1dc4972f96fdb59e46c4e7) Thanks [@Wozacosta](https://github.com/Wozacosta)! - uses main account's unit when displayed fees with no options + +- [#7556](https://github.com/LedgerHQ/ledger-live/pull/7556) [`ebbbe52`](https://github.com/LedgerHQ/ledger-live/commit/ebbbe521b62c91be646925ff6c87fd79357cff82) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Throw errors to avoid rejection on QRCode + +- [#7717](https://github.com/LedgerHQ/ledger-live/pull/7717) [`9a4a3bc`](https://github.com/LedgerHQ/ledger-live/commit/9a4a3bce55a2332ae4bdb13cc2bdbbb97ed7693b) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix minor bugs on both LL + +- [#7538](https://github.com/LedgerHQ/ledger-live/pull/7538) [`4dad5d0`](https://github.com/LedgerHQ/ledger-live/commit/4dad5d0cb3bbe3ea31635ab13fc387fc8a0ec5e2) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Add LedgerSync status banner + hook + +- [#7553](https://github.com/LedgerHQ/ledger-live/pull/7553) [`0407529`](https://github.com/LedgerHQ/ledger-live/commit/04075299b5291a93d34f507f0bd8cde43f4d745a) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Set nbDigits dynamic for PinCodeInput + +- [#7651](https://github.com/LedgerHQ/ledger-live/pull/7651) [`6f781da`](https://github.com/LedgerHQ/ledger-live/commit/6f781daef5bfb736edb7df003f39bdbd132b12aa) Thanks [@thesan](https://github.com/thesan)! - Add more descriptive mobile device name to the trustchain + +- [#7570](https://github.com/LedgerHQ/ledger-live/pull/7570) [`3c19077`](https://github.com/LedgerHQ/ledger-live/commit/3c19077f647b3499402de168070215885154f4fa) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix color PinCodeInput + +- [#7666](https://github.com/LedgerHQ/ledger-live/pull/7666) [`32b33b6`](https://github.com/LedgerHQ/ledger-live/commit/32b33b63661f58ae025539bab381a77aa1970c17) Thanks [@RamyEB](https://github.com/RamyEB)! - Setup analytics on Web3Hub + +- [#7748](https://github.com/LedgerHQ/ledger-live/pull/7748) [`f34dd22`](https://github.com/LedgerHQ/ledger-live/commit/f34dd220fc21afb1107854b7d6d167c3e0706001) Thanks [@thesan](https://github.com/thesan)! - Fix extra device action at the end of the remove member flow + +- [#7663](https://github.com/LedgerHQ/ledger-live/pull/7663) [`1a5bcec`](https://github.com/LedgerHQ/ledger-live/commit/1a5bcecb79d6c29b895f5d2d317a7aec00013acf) Thanks [@valpinkman](https://github.com/valpinkman)! - Avoid running watchloop when LS ff is disabled + +- [#7545](https://github.com/LedgerHQ/ledger-live/pull/7545) [`10deab9`](https://github.com/LedgerHQ/ledger-live/commit/10deab9a5a60c5983b68e29c1561527e55342bff) Thanks [@LucasWerey](https://github.com/LucasWerey)! - Trustchain integration on LLM scan qr code. We can now join a trustchain scanning a qr code + +- [#7660](https://github.com/LedgerHQ/ledger-live/pull/7660) [`9c584a0`](https://github.com/LedgerHQ/ledger-live/commit/9c584a08063dedc4eb4baeb3b0e719acf98a2087) Thanks [@sergiubreban](https://github.com/sergiubreban)! - removes old manifest id for buy-sell app + +- [#7563](https://github.com/LedgerHQ/ledger-live/pull/7563) [`ef82161`](https://github.com/LedgerHQ/ledger-live/commit/ef82161688fc49bf32cbc88f1837b15490e5d2b4) Thanks [@Wozacosta](https://github.com/Wozacosta)! - remove pivx code + +- [#7610](https://github.com/LedgerHQ/ledger-live/pull/7610) [`08fd8b4`](https://github.com/LedgerHQ/ledger-live/commit/08fd8b4c2150a32a72f2b943d1ef76724a1e2544) Thanks [@mwiercinska](https://github.com/mwiercinska)! - Add locale and ticker query params for buy/sell + +- [#7746](https://github.com/LedgerHQ/ledger-live/pull/7746) [`2147bd2`](https://github.com/LedgerHQ/ledger-live/commit/2147bd2fb48cc58809cf6aa3a46e606539f1423d) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Update Copy and fix color on Analytics Opt-in + +- [#7629](https://github.com/LedgerHQ/ledger-live/pull/7629) [`81468af`](https://github.com/LedgerHQ/ledger-live/commit/81468af073af1ccdeb3fdbcf6b2c998cebc68ab5) Thanks [@mwiercinska](https://github.com/mwiercinska)! - add translation for back to quote CTA in WebPTXPlayer + +- [#7586](https://github.com/LedgerHQ/ledger-live/pull/7586) [`94bf322`](https://github.com/LedgerHQ/ledger-live/commit/94bf322023cf497b19399be8abcf54a57ea740d1) Thanks [@hzheng-ledger](https://github.com/hzheng-ledger)! - fix: replace expo-random lib with expo-crypto + +- [#7690](https://github.com/LedgerHQ/ledger-live/pull/7690) [`a3fd728`](https://github.com/LedgerHQ/ledger-live/commit/a3fd72861f2a7df676bd793062b3816fdb9d1f57) Thanks [@thesan](https://github.com/thesan)! - Refresh ledger sync QR code on expiration + +- [#7635](https://github.com/LedgerHQ/ledger-live/pull/7635) [`e85f65b`](https://github.com/LedgerHQ/ledger-live/commit/e85f65b23ccb64599c235d62ff0db67b32dc3257) Thanks [@thesan](https://github.com/thesan)! - Create accounts with the receive market quick action + +- [#7636](https://github.com/LedgerHQ/ledger-live/pull/7636) [`a0bb74b`](https://github.com/LedgerHQ/ledger-live/commit/a0bb74b8f3704ab9d5567c9d14c16cab9e0872f7) Thanks [@Wozacosta](https://github.com/Wozacosta)! - Move Cosmos and Cosmos-based coins to its own module + +- [#7648](https://github.com/LedgerHQ/ledger-live/pull/7648) [`3e3e839`](https://github.com/LedgerHQ/ledger-live/commit/3e3e83983ca4d8ef93f535cba391f0f7231ea6e7) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix starting step when WS is activated and you want to sync again + +- [#7764](https://github.com/LedgerHQ/ledger-live/pull/7764) [`e805a7e`](https://github.com/LedgerHQ/ledger-live/commit/e805a7e40dfc595ebb83ae0365b643eb1ac424ba) Thanks [@themooneer](https://github.com/themooneer)! - Assign the right color to settings icon in Fallback camera permission screen + +- [#7689](https://github.com/LedgerHQ/ledger-live/pull/7689) [`302dcd7`](https://github.com/LedgerHQ/ledger-live/commit/302dcd78a4ac0ecb2336ce11094b6d703e01a2ae) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Update ManageKey flow copy + +- [#7753](https://github.com/LedgerHQ/ledger-live/pull/7753) [`d7163a7`](https://github.com/LedgerHQ/ledger-live/commit/d7163a7da9918897b61b5bb76ca750a1253f767c) Thanks [@cgrellard-ledger](https://github.com/cgrellard-ledger)! - LLM - Ledger sync small navigation fixes + +- [#7625](https://github.com/LedgerHQ/ledger-live/pull/7625) [`22019d6`](https://github.com/LedgerHQ/ledger-live/commit/22019d6834f3ebbe0798719c0e1abaff3b3ce1dd) Thanks [@Justkant](https://github.com/Justkant)! - fix: freeze when opening a live-app + +- [#7758](https://github.com/LedgerHQ/ledger-live/pull/7758) [`c4460cf`](https://github.com/LedgerHQ/ledger-live/commit/c4460cf7d1a5c53b3b1ce493731952b3e2bf6102) Thanks [@mcayuelas-ledger](https://github.com/mcayuelas-ledger)! - Fix Analytics LedgerSync + +- Updated dependencies [[`f8756b2`](https://github.com/LedgerHQ/ledger-live/commit/f8756b29a83048d423d500e16ea3f9789763b90d), [`87c160d`](https://github.com/LedgerHQ/ledger-live/commit/87c160d855b512d5a0394eaee7626e2b8cd431ee), [`5c738cb`](https://github.com/LedgerHQ/ledger-live/commit/5c738cbd35ce5d0ca39ad3b86a61cc6234d1bdf7), [`940d807`](https://github.com/LedgerHQ/ledger-live/commit/940d8073f6395cbcc2369f46aa6ad30216b00198), [`354d913`](https://github.com/LedgerHQ/ledger-live/commit/354d9138a4bd9b54001ff1330a8000ee94aea008), [`d60a022`](https://github.com/LedgerHQ/ledger-live/commit/d60a02238db9ed16142de4c1874e26d27aaaa98c), [`9c55e81`](https://github.com/LedgerHQ/ledger-live/commit/9c55e81c84d3372f2a7fd36248f970376aec905a), [`5de6b47`](https://github.com/LedgerHQ/ledger-live/commit/5de6b47f4fec831a24ccd58ee95d69b8c2c15d57), [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab), [`267526c`](https://github.com/LedgerHQ/ledger-live/commit/267526c3f8cc4863d4947ab3c28ba20dc5593028), [`b97b76c`](https://github.com/LedgerHQ/ledger-live/commit/b97b76cc99845b0240426f5ca75c765b615ccec5), [`e9bb8b9`](https://github.com/LedgerHQ/ledger-live/commit/e9bb8b969e3c07cb80a9247b8b5830693f35ef84), [`1825bd3`](https://github.com/LedgerHQ/ledger-live/commit/1825bd36642e34e4b4aaeefb1805b04c87a32a22), [`1fb2b90`](https://github.com/LedgerHQ/ledger-live/commit/1fb2b909c5d97e373a0f72baa37578132bd8b24a), [`187293c`](https://github.com/LedgerHQ/ledger-live/commit/187293c6cf6093f15f07d5effc1ded0843a9e6ab), [`cc291f5`](https://github.com/LedgerHQ/ledger-live/commit/cc291f5466d80a2b7e9394338ab588ecd3db4623), [`fb9466a`](https://github.com/LedgerHQ/ledger-live/commit/fb9466a4d7827fd4759c726ad3ae0b43dddcacd3), [`f0eb405`](https://github.com/LedgerHQ/ledger-live/commit/f0eb405b52de5484ee98ac87e87522b33836224c), [`5758950`](https://github.com/LedgerHQ/ledger-live/commit/5758950841fbf8018dd848e745017484aec67333), [`ef99222`](https://github.com/LedgerHQ/ledger-live/commit/ef99222a5adcd9732d06600bc875309c440e084f), [`5ecbe88`](https://github.com/LedgerHQ/ledger-live/commit/5ecbe88474032b724d6c408ab63be08aa567e0fc), [`a84f3d3`](https://github.com/LedgerHQ/ledger-live/commit/a84f3d344e37301dc76f182c0f99b0b01106abfa), [`ce18c9b`](https://github.com/LedgerHQ/ledger-live/commit/ce18c9bde11fbd6cc196091716b1547354063d89), [`3de93cc`](https://github.com/LedgerHQ/ledger-live/commit/3de93cc5597e0f87a70b9c728589a2ef363ac65d), [`271f90d`](https://github.com/LedgerHQ/ledger-live/commit/271f90dc0f5b46ddaf136873dc034d4c44045dd0), [`313d0e4`](https://github.com/LedgerHQ/ledger-live/commit/313d0e42b81b69b57aa81a760465a414e6afd7f7), [`297ce51`](https://github.com/LedgerHQ/ledger-live/commit/297ce513f496f256efe8f9011734324125f462a5), [`fcd8d52`](https://github.com/LedgerHQ/ledger-live/commit/fcd8d5272176a4acec4e396ed313d3578e1c5b86), [`94afd9e`](https://github.com/LedgerHQ/ledger-live/commit/94afd9e0742d0e227b1e6ff953edee7a66ad61a3), [`0c80144`](https://github.com/LedgerHQ/ledger-live/commit/0c80144b8c16fc3729baa6503875d21af87b2752), [`4799d5d`](https://github.com/LedgerHQ/ledger-live/commit/4799d5de3fb1dcef2b01de31fe29b59e76922576), [`1353e7a`](https://github.com/LedgerHQ/ledger-live/commit/1353e7ae02f22e8f9194a1e3c34f9444785b6fb6), [`6ccd01c`](https://github.com/LedgerHQ/ledger-live/commit/6ccd01cd738362db00c9dbc74cd0a77ccc01b206), [`224e33c`](https://github.com/LedgerHQ/ledger-live/commit/224e33c93d2acd22c82892148b240df004284037), [`bc044e4`](https://github.com/LedgerHQ/ledger-live/commit/bc044e482ea2827dca281c44ec36526d63da5194), [`4799d5d`](https://github.com/LedgerHQ/ledger-live/commit/4799d5de3fb1dcef2b01de31fe29b59e76922576), [`ef82161`](https://github.com/LedgerHQ/ledger-live/commit/ef82161688fc49bf32cbc88f1837b15490e5d2b4), [`8e0ac04`](https://github.com/LedgerHQ/ledger-live/commit/8e0ac04ac8cdaaee59633ebdf219e5dcf44a10df), [`cd440bb`](https://github.com/LedgerHQ/ledger-live/commit/cd440bbd647633278d983a15803032c1e676d4fe), [`9070cff`](https://github.com/LedgerHQ/ledger-live/commit/9070cffc83fd607b593c4b85a78faaf8e29f7acb), [`c8ac662`](https://github.com/LedgerHQ/ledger-live/commit/c8ac662e6f88349187f802741e14c3d5fb67cddb), [`c8c273c`](https://github.com/LedgerHQ/ledger-live/commit/c8c273c9a443a75b2fb85b831c8d40cf6ff068c6), [`6417959`](https://github.com/LedgerHQ/ledger-live/commit/641795937e14908ba9632a7b9744563b7e206be7), [`277648c`](https://github.com/LedgerHQ/ledger-live/commit/277648cbc0b58694a49d8d929c8ec0b89986f4cf), [`94bf322`](https://github.com/LedgerHQ/ledger-live/commit/94bf322023cf497b19399be8abcf54a57ea740d1), [`a3fd728`](https://github.com/LedgerHQ/ledger-live/commit/a3fd72861f2a7df676bd793062b3816fdb9d1f57), [`1bcff16`](https://github.com/LedgerHQ/ledger-live/commit/1bcff1673fa0cbc43f43201044d7e9425f8991f1), [`a0bb74b`](https://github.com/LedgerHQ/ledger-live/commit/a0bb74b8f3704ab9d5567c9d14c16cab9e0872f7), [`eb9a36f`](https://github.com/LedgerHQ/ledger-live/commit/eb9a36f6ee8487c9ffbb841c3e6c0ca84f68bb0a), [`9c2f1b3`](https://github.com/LedgerHQ/ledger-live/commit/9c2f1b3b6e11a37a6b5ecf02d1e1ae7f0258e3ae), [`1d1bfd1`](https://github.com/LedgerHQ/ledger-live/commit/1d1bfd164847431c0f4afe7ed8ae6d5df535c9cf), [`91374dd`](https://github.com/LedgerHQ/ledger-live/commit/91374dde37f0ec3b63817254b9e26c1eb02ed981), [`042e1ab`](https://github.com/LedgerHQ/ledger-live/commit/042e1abf2d0bdbdc906cb88e30770d4de1eef356), [`531bc03`](https://github.com/LedgerHQ/ledger-live/commit/531bc03228d486e4b18f10df83b7b9bfdbd025b8), [`9a650da`](https://github.com/LedgerHQ/ledger-live/commit/9a650da9a147d6881f7082278d2bf764c37e1451), [`54578c3`](https://github.com/LedgerHQ/ledger-live/commit/54578c329baf4434f9c5d9accb8842da00e45630), [`d213d81`](https://github.com/LedgerHQ/ledger-live/commit/d213d8122647d559b7a0f44e2beffa5e39c3249b), [`e7db725`](https://github.com/LedgerHQ/ledger-live/commit/e7db72552042ff4dd85bec236f6bd083fa3da533), [`9d58923`](https://github.com/LedgerHQ/ledger-live/commit/9d5892327b43e219b3b672e7a56e1e2d6413a83b)]: + - @ledgerhq/live-common@34.8.0-next.0 + - @ledgerhq/trustchain@0.3.0-next.0 + - @ledgerhq/errors@6.19.0-next.0 + - @ledgerhq/hw-transport-http@6.30.3-next.0 + - @ledgerhq/coin-evm@2.2.0-next.0 + - @ledgerhq/domain-service@1.2.4-next.0 + - @ledgerhq/live-network@2.0.0-next.0 + - @ledgerhq/native-ui@0.24.0-next.0 + - @ledgerhq/live-countervalues@0.2.5-next.0 + - @ledgerhq/coin-framework@0.18.0-next.0 + - @ledgerhq/types-live@6.51.0-next.0 + - @ledgerhq/live-countervalues-react@0.2.5-next.0 + - @ledgerhq/icons-ui@0.7.3-next.0 + - @ledgerhq/live-env@2.3.0-next.0 + - @ledgerhq/live-wallet@0.6.0-next.0 + - @ledgerhq/types-cryptoassets@7.15.1-next.0 + - @ledgerhq/hw-trustchain@0.1.5-next.0 + - @ledgerhq/coin-cosmos@0.1.1-next.0 + - @ledgerhq/devices@8.4.3-next.0 + - @ledgerhq/hw-transport@6.31.3-next.0 + - @ledgerhq/react-native-hid@6.32.3-next.0 + - @ledgerhq/react-native-hw-transport-ble@6.33.3-next.0 + - @ledgerhq/live-nft@0.4.5-next.0 + - @ledgerhq/live-nft-react@0.4.5-next.0 + ## 3.48.1 ### Patch Changes diff --git a/apps/ledger-live-mobile/Gemfile.lock b/apps/ledger-live-mobile/Gemfile.lock index d6195b016620..ccfd7e88b0db 100644 --- a/apps/ledger-live-mobile/Gemfile.lock +++ b/apps/ledger-live-mobile/Gemfile.lock @@ -5,33 +5,33 @@ GEM base64 nkf rexml - activesupport (7.0.8.1) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) - addressable (2.8.6) - public_suffix (>= 2.0.2, < 6.0) + addressable (2.8.7) + public_suffix (>= 2.0.2, < 7.0) algoliasearch (1.27.5) httpclient (~> 2.8, >= 2.8.3) json (>= 1.5.1) artifactory (3.0.17) atomos (0.1.3) aws-eventstream (1.3.0) - aws-partitions (1.935.0) - aws-sdk-core (3.196.1) + aws-partitions (1.967.0) + aws-sdk-core (3.201.5) aws-eventstream (~> 1, >= 1.3.0) aws-partitions (~> 1, >= 1.651.0) - aws-sigv4 (~> 1.8) + aws-sigv4 (~> 1.9) jmespath (~> 1, >= 1.6.1) - aws-sdk-kms (1.82.0) - aws-sdk-core (~> 3, >= 3.193.0) - aws-sigv4 (~> 1.1) - aws-sdk-s3 (1.151.0) - aws-sdk-core (~> 3, >= 3.194.0) + aws-sdk-kms (1.88.0) + aws-sdk-core (~> 3, >= 3.201.0) + aws-sigv4 (~> 1.5) + aws-sdk-s3 (1.159.0) + aws-sdk-core (~> 3, >= 3.201.0) aws-sdk-kms (~> 1) - aws-sigv4 (~> 1.8) - aws-sigv4 (1.8.0) + aws-sigv4 (~> 1.5) + aws-sigv4 (1.9.1) aws-eventstream (~> 1, >= 1.0.2) babosa (1.0.4) base64 (0.2.0) @@ -77,7 +77,7 @@ GEM colored2 (3.1.2) commander (4.6.0) highline (~> 2.0.0) - concurrent-ruby (1.2.3) + concurrent-ruby (1.3.4) declarative (0.0.20) digest-crc (0.6.5) rake (>= 12.0.0, < 14.0.0) @@ -87,7 +87,7 @@ GEM escape (0.0.4) ethon (0.16.0) ffi (>= 1.15.0) - excon (0.110.0) + excon (0.111.0) faraday (1.10.3) faraday-em_http (~> 1.0) faraday-em_synchrony (~> 1.0) @@ -109,7 +109,7 @@ GEM faraday-httpclient (1.0.1) faraday-multipart (1.0.4) multipart-post (~> 2) - faraday-net_http (1.0.1) + faraday-net_http (1.0.2) faraday-net_http_persistent (1.2.0) faraday-patron (1.0.0) faraday-rack (1.0.0) @@ -160,7 +160,7 @@ GEM xcpretty-travis-formatter (>= 0.0.3) fastlane-plugin-load_json (0.0.1) fastlane-plugin-versioning_android (0.1.1) - ffi (1.16.3) + ffi (1.17.0) fourflusher (2.3.1) fuzzy_match (2.0.4) gh_inspector (1.1.3) @@ -180,7 +180,7 @@ GEM google-apis-core (>= 0.11.0, < 2.a) google-apis-storage_v1 (0.31.0) google-apis-core (>= 0.11.0, < 2.a) - google-cloud-core (1.7.0) + google-cloud-core (1.7.1) google-cloud-env (>= 1.0, < 3.a) google-cloud-errors (~> 1.0) google-cloud-env (1.6.0) @@ -201,18 +201,18 @@ GEM os (>= 0.9, < 2.0) signet (>= 0.16, < 2.a) highline (2.0.3) - http-cookie (1.0.5) + http-cookie (1.0.7) domain_name (~> 0.5) httpclient (2.8.3) - i18n (1.14.4) + i18n (1.14.5) concurrent-ruby (~> 1.0) jmespath (1.6.2) - json (2.7.1) - jwt (2.8.1) + json (2.7.2) + jwt (2.8.2) base64 - mini_magick (4.12.0) + mini_magick (4.13.2) mini_mime (1.1.5) - minitest (5.22.3) + minitest (5.25.1) molinillo (0.8.0) multi_json (1.15.0) multipart-post (2.4.1) @@ -231,7 +231,8 @@ GEM trailblazer-option (>= 0.1.1, < 0.2.0) uber (< 0.2.0) retriable (3.1.2) - rexml (3.2.6) + rexml (3.3.6) + strscan rouge (2.0.7) ruby-macho (2.5.1) ruby2_keywords (0.0.5) @@ -246,6 +247,7 @@ GEM simctl (1.6.10) CFPropertyList naturally + strscan (3.1.0) terminal-notifier (2.0.0) terminal-table (3.0.2) unicode-display_width (>= 1.1.1, < 3) @@ -261,13 +263,13 @@ GEM uber (0.1.0) unicode-display_width (2.5.0) word_wrap (1.0.0) - xcodeproj (1.24.0) + xcodeproj (1.25.0) CFPropertyList (>= 2.3.3, < 4.0) atomos (~> 0.1.3) claide (>= 1.0.2, < 2.0) colored2 (~> 3.1) nanaimo (~> 0.3.0) - rexml (~> 3.2.4) + rexml (>= 3.3.2, < 4.0) xcpretty (0.3.0) rouge (~> 2.0.7) xcpretty-travis-formatter (1.0.1) diff --git a/apps/ledger-live-mobile/__mocks__/api/market/coinsList.json b/apps/ledger-live-mobile/__mocks__/api/market/coinsList.json index 3961458afa88..5de7364784c2 100644 --- a/apps/ledger-live-mobile/__mocks__/api/market/coinsList.json +++ b/apps/ledger-live-mobile/__mocks__/api/market/coinsList.json @@ -8553,7 +8553,6 @@ { "id": "pitch-fxs", "symbol": "pitchfxs", "name": "Pitch FXS" }, { "id": "piteas", "symbol": "pts", "name": "Piteas" }, { "id": "pivn", "symbol": "pivn", "name": "PIVN" }, - { "id": "pivx", "symbol": "pivx", "name": "PIVX" }, { "id": "pixel-battle", "symbol": "pwc", "name": "Pixel Battle" }, { "id": "pixelpotus", "symbol": "pxl", "name": "PixelPotus" }, { "id": "pixelverse", "symbol": "pixel", "name": "PixelVerse" }, diff --git a/apps/ledger-live-mobile/__tests__/jest-setup.js b/apps/ledger-live-mobile/__tests__/jest-setup.js index d97ec9e9f29e..d252882442e5 100644 --- a/apps/ledger-live-mobile/__tests__/jest-setup.js +++ b/apps/ledger-live-mobile/__tests__/jest-setup.js @@ -132,6 +132,10 @@ jest.mock("@braze/react-native-sdk", () => ({})); jest.mock("react-native-webview", () => jest.fn()); +jest.mock("react-native-device-info", () => ({ + getDeviceNameSync: jest.fn(() => "Mocked Device"), +})); + const originalError = console.error; const originalWarn = console.warn; diff --git a/apps/ledger-live-mobile/__tests__/test-renderer.tsx b/apps/ledger-live-mobile/__tests__/test-renderer.tsx index 58755d96238c..c44297e07feb 100644 --- a/apps/ledger-live-mobile/__tests__/test-renderer.tsx +++ b/apps/ledger-live-mobile/__tests__/test-renderer.tsx @@ -1,5 +1,10 @@ import React from "react"; -import { render, RenderOptions, userEvent } from "@testing-library/react-native"; +import { + render as rntlRender, + RenderOptions, + userEvent, + renderHook as rntlRenderHook, +} from "@testing-library/react-native"; import { I18nextProvider } from "react-i18next"; import { Provider } from "react-redux"; import { NavigationContainer } from "@react-navigation/native"; @@ -29,8 +34,9 @@ import { INITIAL_STATE as MARKET_INITIAL_STATE } from "~/reducers/market"; import { INITIAL_STATE as WALLETSYNC_INITIAL_STATE } from "~/reducers/walletSync"; import { initialState as WALLET_INITIAL_STATE } from "@ledgerhq/live-wallet/store"; -import QueuedDrawersContextProvider from "~/newArch/components/QueuedDrawer/QueuedDrawersContextProvider"; +import QueuedDrawersContextProvider from "LLM/components/QueuedDrawer/QueuedDrawersContextProvider"; import { INITIAL_STATE as TRUSTCHAIN_INITIAL_STATE } from "@ledgerhq/trustchain/store"; +import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; const initialState = { accounts: ACCOUNTS_INITIAL_STATE, @@ -93,14 +99,45 @@ const customRender = ( return { user: userEvent.setup(userEventOptions), - ...render(ui, { wrapper: ProvidersWrapper, ...renderOptions }), + ...rntlRender(ui, { wrapper: ProvidersWrapper, ...renderOptions }), }; }; +const customRenderHook = ( + hook: () => Result, + { + overrideInitialState: overrideInitialState = state => state, + ...renderOptions + }: ExtraOptions = {}, +) => { + const store = configureStore({ + reducer: reducers, + middleware: getDefaultMiddleware => + getDefaultMiddleware({ serializableCheck: false, immutableCheck: false }), + preloadedState: overrideInitialState(initialState), + devTools: false, + }); + + const ProvidersWrapper: React.FC<{ children: React.ReactNode }> = ({ children }) => { + const queryClient = new QueryClient(); + return ( + + + + {children} + + + + ); + }; + + return { store, ...rntlRenderHook(hook, { wrapper: ProvidersWrapper, ...renderOptions }) }; +}; + export const LONG_TIMEOUT = 30000; // re-export everything export * from "@testing-library/react-native"; // override render method -export { customRender as render }; +export { customRender as render, customRenderHook as renderHook }; diff --git a/apps/ledger-live-mobile/android/app/build.gradle b/apps/ledger-live-mobile/android/app/build.gradle index f4f8b6f848b8..fe8f83e41585 100644 --- a/apps/ledger-live-mobile/android/app/build.gradle +++ b/apps/ledger-live-mobile/android/app/build.gradle @@ -128,7 +128,7 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion versionCode 36176158 - versionName "3.40.1" + versionName "3.48.0" resValue "string", "build_config_package", "com.ledger.live" testBuildType System.getProperty('testBuildType', 'debug') testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner' diff --git a/apps/ledger-live-mobile/android/dapp-store/config.yaml b/apps/ledger-live-mobile/android/dapp-store/config.yaml index 312b825b1804..5d871af95083 100644 --- a/apps/ledger-live-mobile/android/dapp-store/config.yaml +++ b/apps/ledger-live-mobile/android/dapp-store/config.yaml @@ -92,10 +92,10 @@ release: Bitcoin (BTC), Ethereum (ETH), Binance Coin (BNB), Ripple (XRP), Bitcoin Cash (BCH), Litecoin (LTC), Tezos (XTZ), Stellar (XLM), Polkadot (DOT), - Tron (TRX), Polygon (MATIC), Ethereum Classic (ETC), Dash (DASH), Cosmos + Tron (TRX), Polygon (POL), Ethereum Classic (ETC), Dash (DASH), Cosmos (ATOM), Elrond (EGLD), Zcash (ZEC), Dogecoin (DOGE), Digibyte (DGB), Bitcoin Gold (BTG), Decred (DCR), Qtum (QTUM), Algorand (ALGO), Komodo - (KMD), Horizen (ZEN), PivX (PIVX), Stakenet (XSN), ERC-20 and BEP-20 tokens. + (KMD), Horizen (ZEN), Stakenet (XSN), ERC-20 and BEP-20 tokens. diff --git a/apps/ledger-live-mobile/e2e/specs/receive/receiveFlow.spec.ts b/apps/ledger-live-mobile/e2e/specs/receive/receiveFlow.spec.ts index cb307ce515ca..d53df9941973 100644 --- a/apps/ledger-live-mobile/e2e/specs/receive/receiveFlow.spec.ts +++ b/apps/ledger-live-mobile/e2e/specs/receive/receiveFlow.spec.ts @@ -67,7 +67,7 @@ describe("Receive Flow", () => { it("Should access to receive after importing a cryptocurrency on a selected network", async () => { await openReceive(); await app.common.performSearch("Polygon"); - await app.receive.selectAsset("MATIC"); + await app.receive.selectAsset("POL"); await app.receive.selectNetwork("binance smart chain"); first && (await deviceAction.selectMockDevice(), (first = false)); await deviceAction.openApp(); diff --git a/apps/ledger-live-mobile/e2e/xray.formater.sh b/apps/ledger-live-mobile/e2e/xray.formater.sh new file mode 100755 index 000000000000..1859333d2d81 --- /dev/null +++ b/apps/ledger-live-mobile/e2e/xray.formater.sh @@ -0,0 +1,81 @@ +# Script to format the Allure test results into a single JSON file for Xray export +#!/bin/bash + +# Check if testExecutionKey is provided as an argument +if [ -z "$1" ]; then + echo "Usage: $0 " + exit 1 +fi + +# Assign the provided arguments +path="$1" +platform=$(echo "$2" | tr '[:lower:]' '[:upper:]') +testExecutionKey="$3" +info="{}" + +if [[ -z "$testExecutionKey" ]]; then + info="{\"summary\":\"[$platform] Speculos test execution\", + \"description\":\"This execution is automatically created when importing execution results from an external source\"}" +fi + +# Initialize the result structure +combined_json="{\"testExecutionKey\":\"$testExecutionKey\",\"info\":$info,\"tests\":[]}" + +# Temporary file to store the combined JSON +temp_file=$(mktemp) + +# Create the initial structure in the temporary file +echo $combined_json > "$temp_file" + +# Arrays to track testKeys and their statuses +testKeys=() +statuses=() + +# Process each JSON file in the current directory +for file in $path/*-result.json; do + # Extract the necessary fields + testKey=$(jq -r '.links[0].name // empty' "$file") + status=$(jq -r '.status | ascii_upcase' "$file") + + # Replace 'broken' status with 'FAILED' + if [ "$status" == "BROKEN" ]; then + status="FAILED" + fi + + # Check if testKey is not null or empty + if [[ -n "$testKey" ]]; then + # Check if the testKey is already in the array + found=false + for i in "${!testKeys[@]}"; do + if [ "${testKeys[$i]}" == "$testKey" ]; then + # Update status if it's not failed + if [ "${statuses[$i]}" != "FAILED" ]; then + statuses[$i]="$status" + fi + found=true + break + fi + done + + # If testKey not found, add it + if [ "$found" == false ]; then + testKeys+=("$testKey") + statuses+=("$status") + fi + fi +done + +# Add the collected test entries to the combined JSON +for i in "${!testKeys[@]}"; do + test_entry="{\"testKey\":\"${testKeys[$i]}\",\"status\":\"${statuses[$i]}\"}" + jq --argjson entry "$test_entry" '.tests += [$entry]' "$temp_file" > tmp && mv tmp "$temp_file" +done + +# Save the combined JSON to a final output file +output_file="$path/xray_report.json" +jq '.' "$temp_file" > "$output_file" + +# Clean up the temporary file +rm "$temp_file" + +echo "Xray JSON file created: $output_file" \ No newline at end of file diff --git a/apps/ledger-live-mobile/ios/Podfile.lock b/apps/ledger-live-mobile/ios/Podfile.lock index d4a469737f5c..2c06261a7d4a 100644 --- a/apps/ledger-live-mobile/ios/Podfile.lock +++ b/apps/ledger-live-mobile/ios/Podfile.lock @@ -33,6 +33,8 @@ PODS: - ExpoModulesCore - ZXingObjC/OneD - ZXingObjC/PDF417 + - ExpoCrypto (12.8.1): + - ExpoModulesCore - ExpoFileSystem (16.0.8): - ExpoModulesCore - ExpoImageManipulator (11.8.0): @@ -47,8 +49,6 @@ PODS: - React-NativeModulesApple - React-RCTAppDelegate - ReactCommon/turbomodule/core - - ExpoRandom (13.6.0): - - ExpoModulesCore - FBLazyVector (0.73.6) - FBReactNativeSpec (0.73.6): - RCT-Folly (= 2022.05.16.00) @@ -1330,6 +1330,8 @@ PODS: - React-Core - RNCMaskedView (0.2.9): - React-Core + - RNDeviceInfo (11.1.0): + - React-Core - RNFastImage (8.6.3): - React-Core - SDWebImage (~> 5.11.1) @@ -1418,11 +1420,11 @@ DEPENDENCIES: - "EXImageLoader (from `../../../node_modules/.pnpm/expo-image-loader@4.6.0_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_reac_wajnkpyn453mstvl5ptvmgckqi/node_modules/expo-image-loader/ios`)" - "Expo (from `../../../node_modules/.pnpm/expo@50.0.14_@babel+core@7.24.3_@react-native+babel-preset@0.73.19_@babel+core@7.24.3__expo-m_x6ekalzt4c5scoc72n5xqrun6q/node_modules/expo`)" - "ExpoCamera (from `../../../node_modules/.pnpm/expo-camera@14.1.3_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react@18._7axu465aov6jwcuohjxifpffzu/node_modules/expo-camera/ios`)" + - "ExpoCrypto (from `../../../node_modules/.pnpm/expo-crypto@12.8.1_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react@18._f3pw2vhdzqwifnm4jdvwei6rie/node_modules/expo-crypto/ios`)" - "ExpoFileSystem (from `../../../node_modules/.pnpm/expo-file-system@16.0.8_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_reac_f2vophyguewptethhwrvhw6jze/node_modules/expo-file-system/ios`)" - "ExpoImageManipulator (from `../../../node_modules/.pnpm/expo-image-manipulator@11.8.0_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24._sgbzbk7nfhtlihtns5cja4huei/node_modules/expo-image-manipulator/ios`)" - "ExpoKeepAwake (from `../../../node_modules/.pnpm/expo-keep-awake@12.8.2_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react_gqhplzyroote7enqgwhytprwhq/node_modules/expo-keep-awake/ios`)" - "ExpoModulesCore (from `../../../node_modules/.pnpm/expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react@18.2.0__react@18.2.0/node_modules/expo-modules-core`)" - - "ExpoRandom (from `../../../node_modules/.pnpm/expo-random@13.6.0_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react@18._74hzmsxcfy4hq2gp3ztpqsecuu/node_modules/expo-random/ios`)" - FBLazyVector (from `../node_modules/react-native/Libraries/FBLazyVector`) - FBReactNativeSpec (from `../node_modules/react-native/React/FBReactNativeSpec`) - Flipper (= 0.201.0) @@ -1524,6 +1526,7 @@ DEPENDENCIES: - "RNCAsyncStorage (from `../node_modules/@react-native-async-storage/async-storage`)" - "RNCClipboard (from `../node_modules/@react-native-clipboard/clipboard`)" - "RNCMaskedView (from `../node_modules/@react-native-masked-view/masked-view`)" + - RNDeviceInfo (from `../node_modules/react-native-device-info`) - RNFastImage (from `../node_modules/react-native-fast-image`) - "RNFBApp (from `../node_modules/@react-native-firebase/app`)" - "RNFBMessaging (from `../node_modules/@react-native-firebase/messaging`)" @@ -1605,6 +1608,8 @@ EXTERNAL SOURCES: :path: "../../../node_modules/.pnpm/expo@50.0.14_@babel+core@7.24.3_@react-native+babel-preset@0.73.19_@babel+core@7.24.3__expo-m_x6ekalzt4c5scoc72n5xqrun6q/node_modules/expo" ExpoCamera: :path: "../../../node_modules/.pnpm/expo-camera@14.1.3_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react@18._7axu465aov6jwcuohjxifpffzu/node_modules/expo-camera/ios" + ExpoCrypto: + :path: "../../../node_modules/.pnpm/expo-crypto@12.8.1_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react@18._f3pw2vhdzqwifnm4jdvwei6rie/node_modules/expo-crypto/ios" ExpoFileSystem: :path: "../../../node_modules/.pnpm/expo-file-system@16.0.8_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_reac_f2vophyguewptethhwrvhw6jze/node_modules/expo-file-system/ios" ExpoImageManipulator: @@ -1613,8 +1618,6 @@ EXTERNAL SOURCES: :path: "../../../node_modules/.pnpm/expo-keep-awake@12.8.2_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react_gqhplzyroote7enqgwhytprwhq/node_modules/expo-keep-awake/ios" ExpoModulesCore: :path: "../../../node_modules/.pnpm/expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react@18.2.0__react@18.2.0/node_modules/expo-modules-core" - ExpoRandom: - :path: "../../../node_modules/.pnpm/expo-random@13.6.0_expo-modules-core@1.11.12_react-native@0.73.6_@babel+core@7.24.3_react@18._74hzmsxcfy4hq2gp3ztpqsecuu/node_modules/expo-random/ios" FBLazyVector: :path: "../node_modules/react-native/Libraries/FBLazyVector" FBReactNativeSpec: @@ -1768,6 +1771,8 @@ EXTERNAL SOURCES: :path: "../node_modules/@react-native-clipboard/clipboard" RNCMaskedView: :path: "../node_modules/@react-native-masked-view/masked-view" + RNDeviceInfo: + :path: "../node_modules/react-native-device-info" RNFastImage: :path: "../node_modules/react-native-fast-image" RNFBApp: @@ -1824,11 +1829,11 @@ SPEC CHECKSUMS: EXImageLoader: 55080616b2fe9da19ef8c7f706afd9814e279b6b Expo: e01a77c6fa4bc80a6d1bb949cda1d12d21044abd ExpoCamera: f3f157db67e5a491e1104a2c0018c240242936e7 + ExpoCrypto: b6428f48599c007676dc81a9b5f72c07e62fdccc ExpoFileSystem: eecaf6796aed0f4dd20042dc2ca2cac6c4bc1185 ExpoImageManipulator: c1d7cb865eacd620a35659f3da34c70531f10b59 ExpoKeepAwake: 0f5cad99603a3268e50af9a6eb8b76d0d9ac956c ExpoModulesCore: 61dc57c6e2a35f2f84baf488146db624e03af4cd - ExpoRandom: f0cd58e154e463d913462f3b445870b12d1c2f12 FBLazyVector: f64d1e2ea739b4d8f7e4740cde18089cd97fe864 FBReactNativeSpec: 7351d9daa8a692bc3af6eb00a56e4cdb07403431 Firebase: 5f8193dff4b5b7c5d5ef72ae54bb76c08e2b841d @@ -1930,6 +1935,7 @@ SPEC CHECKSUMS: RNCAsyncStorage: 826b603ae9c0f88b5ac4e956801f755109fa4d5c RNCClipboard: 60fed4b71560d7bfe40e9d35dea9762b024da86d RNCMaskedView: 949696f25ec596bfc697fc88e6f95cf0c79669b6 + RNDeviceInfo: b899ce37a403a4dea52b7cb85e16e49c04a5b88e RNFastImage: 5c9c9fed9c076e521b3f509fe79e790418a544e8 RNFBApp: e4439717c23252458da2b41b81b4b475c86f90c4 RNFBMessaging: 40dac204b4197a2661dec5be964780c6ec39bf65 diff --git a/apps/ledger-live-mobile/ios/ledgerlivemobile.xcodeproj/project.pbxproj b/apps/ledger-live-mobile/ios/ledgerlivemobile.xcodeproj/project.pbxproj index 941436c1ee32..d1f16db9828c 100644 --- a/apps/ledger-live-mobile/ios/ledgerlivemobile.xcodeproj/project.pbxproj +++ b/apps/ledger-live-mobile/ios/ledgerlivemobile.xcodeproj/project.pbxproj @@ -460,6 +460,7 @@ "${PODS_CONFIGURATION_BUILD_DIR}/GoogleUtilities/GoogleUtilities_Privacy.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/PromisesObjC/FBLPromises_Privacy.bundle", "${PODS_CONFIGURATION_BUILD_DIR}/RNCAsyncStorage/RNCAsyncStorage_resources.bundle", + "${PODS_CONFIGURATION_BUILD_DIR}/RNDeviceInfo/RNDeviceInfoPrivacyInfo.bundle", "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/AntDesign.ttf", "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/Entypo.ttf", "${PODS_ROOT}/../../node_modules/react-native-vector-icons/Fonts/EvilIcons.ttf", @@ -496,6 +497,7 @@ "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/GoogleUtilities_Privacy.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/FBLPromises_Privacy.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNCAsyncStorage_resources.bundle", + "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/RNDeviceInfoPrivacyInfo.bundle", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/AntDesign.ttf", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Entypo.ttf", "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/EvilIcons.ttf", diff --git a/apps/ledger-live-mobile/ios/ledgerlivemobile/Info.plist b/apps/ledger-live-mobile/ios/ledgerlivemobile/Info.plist index 84466cb13e61..b397005bbb3c 100644 --- a/apps/ledger-live-mobile/ios/ledgerlivemobile/Info.plist +++ b/apps/ledger-live-mobile/ios/ledgerlivemobile/Info.plist @@ -35,7 +35,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 3.40.1 + 3.48.0 CFBundleSignature ???? CFBundleURLTypes diff --git a/apps/ledger-live-mobile/jest.config.js b/apps/ledger-live-mobile/jest.config.js index 18281ec804c1..afa2c7e78d6c 100644 --- a/apps/ledger-live-mobile/jest.config.js +++ b/apps/ledger-live-mobile/jest.config.js @@ -18,6 +18,7 @@ const transformIncludePatterns = [ "react-native-ble-plx", "react-native-android-location-services-dialog-box", "react-native-vector-icons", + "react-native-qrcode-svg", ]; /** @type {import('ts-jest').JestConfigWithTsJest} */ diff --git a/apps/ledger-live-mobile/package.json b/apps/ledger-live-mobile/package.json index 26f54c9b7816..ca2a484dc564 100644 --- a/apps/ledger-live-mobile/package.json +++ b/apps/ledger-live-mobile/package.json @@ -1,6 +1,6 @@ { "name": "live-mobile", - "version": "3.48.1", + "version": "3.49.0", "private": true, "scripts": { "postinstall": "zx ./scripts/post.mjs", @@ -76,6 +76,7 @@ "@formatjs/intl-locale": "^3.0.0", "@formatjs/intl-pluralrules": "^5.0.0", "@formatjs/intl-relativetimeformat": "^11.1.8", + "@ledgerhq/coin-cosmos": "workspace:^", "@ledgerhq/coin-evm": "workspace:^", "@ledgerhq/coin-framework": "workspace:^", "@ledgerhq/devices": "workspace:*", @@ -84,6 +85,7 @@ "@ledgerhq/ethereum-provider": "workspace:^", "@ledgerhq/hw-transport": "workspace:^", "@ledgerhq/hw-transport-http": "workspace:^", + "@ledgerhq/hw-trustchain": "workspace:^", "@ledgerhq/icons-ui": "workspace:^", "@ledgerhq/live-common": "workspace:^", "@ledgerhq/live-config": "workspace:^", @@ -102,7 +104,6 @@ "@ledgerhq/types-cryptoassets": "workspace:^", "@ledgerhq/types-devices": "workspace:^", "@ledgerhq/types-live": "workspace:^", - "@ledgerhq/hw-trustchain": "workspace:^", "@likashefqet/react-native-image-zoom": "^1.3.0", "@react-native-async-storage/async-storage": "^1.19.2", "@react-native-clipboard/clipboard": "^1.11.2", @@ -140,13 +141,13 @@ "expo": "^50.0.3", "expo-barcode-scanner": "~12.9.2", "expo-camera": "14.1.3", + "expo-crypto": "^12.8.1", "expo-file-system": "~16.0.5", "expo-image-loader": "~4.6.0", "expo-image-manipulator": "~11.8.0", "expo-keep-awake": "~12.8.2", "expo-modules-autolinking": "^1.10.2", "expo-modules-core": "^1.11.8", - "expo-random": "^13.6.0", "fuse.js": "^6.4.6", "hoist-non-react-statics": "3.3.2", "i18next": "20.6.1", @@ -169,6 +170,7 @@ "react-native-biometrics": "^3.0.1", "react-native-ble-plx": "3.1.2", "react-native-config": "1.5.1", + "react-native-device-info": "^11.1.0", "react-native-easy-markdown": "^2.0.0", "react-native-extra-dimensions-android": "^1.2.5", "react-native-fast-crypto": "^2.2.0", diff --git a/apps/ledger-live-mobile/src/AppProviders.tsx b/apps/ledger-live-mobile/src/AppProviders.tsx index 467110480897..c0304ba4c966 100644 --- a/apps/ledger-live-mobile/src/AppProviders.tsx +++ b/apps/ledger-live-mobile/src/AppProviders.tsx @@ -13,6 +13,7 @@ import PostOnboardingProviderWrapped from "~/logic/postOnboarding/PostOnboarding import { CounterValuesStateRaw } from "@ledgerhq/live-countervalues/types"; import { CountervaluesMarketcap } from "@ledgerhq/live-countervalues-react/index"; import { WalletSyncProvider } from "LLM/features/WalletSync/components/WalletSyncContext"; +import { AppDataStorageProvider } from "~/hooks/storageProvider/useAppDataStorage"; type AppProvidersProps = { initialCountervalues?: CounterValuesStateRaw; @@ -29,18 +30,20 @@ function AppProviders({ initialCountervalues, children }: AppProvidersProps) { - - - - - - - {children} - - - - - + + + + + + + + {children} + + + + + + diff --git a/apps/ledger-live-mobile/src/actions/accounts.ts b/apps/ledger-live-mobile/src/actions/accounts.ts index 0f8182e7a5a6..37da12eabb5e 100644 --- a/apps/ledger-live-mobile/src/actions/accounts.ts +++ b/apps/ledger-live-mobile/src/actions/accounts.ts @@ -11,6 +11,7 @@ import type { import { AccountsActionTypes } from "./types"; import logger from "../logger"; import { initAccounts } from "@ledgerhq/live-wallet/store"; +import { getDefaultAccountName } from "@ledgerhq/live-wallet/accountName"; const version = 0; // FIXME this needs to come from user data @@ -26,7 +27,9 @@ export const importStore = (rawAccounts: { active: { data: AccountRaw }[] }) => } } const accounts = tuples.map(([account]) => account); - const accountsUserData = tuples.map(([, userData]) => userData); + const accountsUserData = tuples + .filter(([account, userData]) => userData.name !== getDefaultAccountName(account)) + .map(([, userData]) => userData); return initAccounts(accounts, accountsUserData); }; export const reorderAccounts = createAction( diff --git a/apps/ledger-live-mobile/src/actions/settings.ts b/apps/ledger-live-mobile/src/actions/settings.ts index 6d59a73a1536..3e3065bc28ed 100755 --- a/apps/ledger-live-mobile/src/actions/settings.ts +++ b/apps/ledger-live-mobile/src/actions/settings.ts @@ -69,6 +69,7 @@ import { SettingsClearDismissedContentCardsPayload, SettingsAddStarredMarketcoinsPayload, SettingsRemoveStarredMarketcoinsPayload, + SettingsSetFromLedgerSyncOnboardingPayload, } from "./types"; import { ImageType } from "~/components/CustomImage/types"; @@ -281,6 +282,10 @@ export const setDismissedContentCard = createAction( + SettingsActionTypes.SET_LEDGER_SYNC_ONBOARDING, +); + export const clearDismissedContentCards = createAction( SettingsActionTypes.CLEAR_DISMISSED_CONTENT_CARDS, ); diff --git a/apps/ledger-live-mobile/src/actions/types.ts b/apps/ledger-live-mobile/src/actions/types.ts index 1cfefb9e6972..a4e20fdd3dd9 100644 --- a/apps/ledger-live-mobile/src/actions/types.ts +++ b/apps/ledger-live-mobile/src/actions/types.ts @@ -36,6 +36,7 @@ import type { import type { Unpacked } from "../types/helpers"; import { HandlersPayloads } from "@ledgerhq/live-wallet/store"; import { ImportAccountsReduceInput } from "@ledgerhq/live-wallet/liveqr/importAccounts"; +import { Steps } from "LLM/features/WalletSync/types/Activation"; // === ACCOUNTS ACTIONS === @@ -281,6 +282,7 @@ export enum SettingsActionTypes { SET_HAS_SEEN_ANALYTICS_OPT_IN_PROMPT = "SET_HAS_SEEN_ANALYTICS_OPT_IN_PROMPT", SET_DISMISSED_CONTENT_CARD = "SET_DISMISSED_CONTENT_CARD", CLEAR_DISMISSED_CONTENT_CARDS = "CLEAR_DISMISSED_CONTENT_CARDS", + SET_LEDGER_SYNC_ONBOARDING = "SET_LEDGER_SYNC_ONBOARDING", ADD_STARRED_MARKET_COINS = "ADD_STARRED_MARKET_COINS", REMOVE_STARRED_MARKET_COINS = "REMOVE_STARRED_MARKET_COINS", @@ -385,6 +387,7 @@ export type SettingsSetSupportedCounterValues = SettingsState["supportedCounterV export type SettingsSetHasSeenAnalyticsOptInPrompt = SettingsState["hasSeenAnalyticsOptInPrompt"]; export type SettingsSetDismissedContentCardsPayload = SettingsState["dismissedContentCards"]; export type SettingsClearDismissedContentCardsPayload = string[]; +export type SettingsSetFromLedgerSyncOnboardingPayload = boolean; export type SettingsAddStarredMarketcoinsPayload = Unpacked; export type SettingsRemoveStarredMarketcoinsPayload = Unpacked; @@ -444,6 +447,7 @@ export type SettingsPayload = | SettingsSetHasSeenAnalyticsOptInPrompt | SettingsSetDismissedContentCardsPayload | SettingsClearDismissedContentCardsPayload + | SettingsSetFromLedgerSyncOnboardingPayload | SettingsAddStarredMarketcoinsPayload | SettingsRemoveStarredMarketcoinsPayload; @@ -526,10 +530,17 @@ export type MarketPayload = // === WALLETSYNC ACTIONS === export enum WalletSyncActionTypes { WALLET_SYNC_SET_MANAGE_KEY_DRAWER = "WALLET_SYNC_SET_MANAGE_KEY_DRAWER", + LEDGER_SYNC_SET_ACTIVATE_DRAWER = "LEDGER_SYNC_SET_ACTIVATE_DRAWER", + LEDGER_SYNC_SET_ACTIVATE_STEP = "LEDGER_SYNC_SET_ACTIVATE_STEP", } export type WalletSyncSetManageKeyDrawerPayload = boolean; -export type WalletSyncPayload = WalletSyncSetManageKeyDrawerPayload; +export type WalletSyncSetActivateDrawer = boolean; +export type WalletSyncSetActivateStep = Steps; +export type WalletSyncPayload = + | WalletSyncSetManageKeyDrawerPayload + | WalletSyncSetActivateDrawer + | WalletSyncSetActivateStep; // === PAYLOADS === diff --git a/apps/ledger-live-mobile/src/actions/walletSync.ts b/apps/ledger-live-mobile/src/actions/walletSync.ts index 8cde4b6c877e..70943a527383 100644 --- a/apps/ledger-live-mobile/src/actions/walletSync.ts +++ b/apps/ledger-live-mobile/src/actions/walletSync.ts @@ -1,7 +1,19 @@ import { createAction } from "redux-actions"; import { WalletSyncActionTypes } from "./types"; -import type { WalletSyncSetManageKeyDrawerPayload } from "./types"; +import type { + WalletSyncSetActivateDrawer, + WalletSyncSetActivateStep, + WalletSyncSetManageKeyDrawerPayload, +} from "./types"; export const setWallectSyncManageKeyDrawer = createAction( WalletSyncActionTypes.WALLET_SYNC_SET_MANAGE_KEY_DRAWER, ); + +export const setLedgerSyncActivateDrawer = createAction( + WalletSyncActionTypes.LEDGER_SYNC_SET_ACTIVATE_DRAWER, +); + +export const setLedgerSyncActivateStep = createAction( + WalletSyncActionTypes.LEDGER_SYNC_SET_ACTIVATE_STEP, +); diff --git a/apps/ledger-live-mobile/src/analytics/segment.ts b/apps/ledger-live-mobile/src/analytics/segment.ts index 1a049425acc7..bf70f149af19 100644 --- a/apps/ledger-live-mobile/src/analytics/segment.ts +++ b/apps/ledger-live-mobile/src/analytics/segment.ts @@ -97,6 +97,16 @@ runOnceWhen(() => !!analyticsFeatureFlagMethod && !!segmentClient, getFeatureFla export const updateSessionId = () => (sessionId = uuid()); +const getLedgerSyncAttributes = (state: State) => { + if (!analyticsFeatureFlagMethod) return false; + const ledgerSync = analyticsFeatureFlagMethod("llmWalletSync"); + + return { + hasLedgerSync: !!ledgerSync?.enabled, + ledgerSyncActivated: !!state.trustchain.trustchain?.rootId, + }; +}; + const getMandatoryProperties = async (store: AppStore) => { const state: State = store.getState(); const { user } = await getOrCreateUser(); @@ -175,6 +185,8 @@ const extraProperties = async (store: AppStore) => { const stakingProvidersCount = stakingProviders?.enabled && stakingProviders?.params?.listProvider.length; + const ledgerSyncAtributes = getLedgerSyncAttributes(state); + return { ...mandatoryProperties, appVersion, @@ -209,6 +221,7 @@ const extraProperties = async (store: AppStore) => { staxLockscreen: customImageType || "none", nps, stakingProvidersEnabled: stakingProvidersCount || "flag not loaded", + ...ledgerSyncAtributes, }; }; diff --git a/apps/ledger-live-mobile/src/components/MarketQuickActions/index.tsx b/apps/ledger-live-mobile/src/components/MarketQuickActions/index.tsx new file mode 100644 index 000000000000..8c839f568050 --- /dev/null +++ b/apps/ledger-live-mobile/src/components/MarketQuickActions/index.tsx @@ -0,0 +1,75 @@ +import { useNavigation, useRoute } from "@react-navigation/native"; +import { StackNavigationProp } from "@react-navigation/stack"; +import React, { useMemo } from "react"; +import { useTranslation } from "react-i18next"; +import { Flex, QuickActionButtonProps, QuickActionList } from "@ledgerhq/native-ui"; +import { track } from "~/analytics"; +import { EntryOf } from "~/types/helpers"; +import useQuickActions, { QuickActionProps } from "../../hooks/useQuickActions"; +import { BaseNavigatorStackParamList } from "../RootNavigator/types/BaseNavigator"; + +export const MarketQuickActions = (quickActionsProps: Required) => { + const { t } = useTranslation(); + const navigation = useNavigation>(); + const router = useRoute(); + const { quickActionsList } = useQuickActions(quickActionsProps); + + const quickActionsData: QuickActionButtonProps[] = useMemo( + () => + (Object.entries(QUICK_ACTIONS) as EntryOf[]).flatMap(([key, prop]) => { + const quickActionsItem = quickActionsList[key]; + if (!quickActionsItem) return []; + + return { + variant: "small", + textVariant: "small", + Icon: quickActionsItem.icon, + children: t(prop.name), + onPress: () => { + track("button_clicked", { button: prop.analytics, page: router.name }); + navigation.navigate(...quickActionsItem.route); + }, + disabled: quickActionsItem.disabled, + }; + }), + [quickActionsList, t, navigation, router.name], + ); + + return ( + + + + ); +}; + +const QUICK_ACTIONS = { + SEND: { + name: "portfolio.quickActions.send", + analytics: "quick_action_send", + }, + RECEIVE: { + name: "portfolio.quickActions.deposit", + analytics: "quick_action_receive", + }, + BUY: { + name: "portfolio.quickActions.buy", + analytics: "quick_action_buy", + }, + SELL: { + name: "portfolio.quickActions.sell", + analytics: "quick_action_sell", + }, + SWAP: { + name: "portfolio.quickActions.swap", + analytics: "quick_action_swap", + }, + STAKE: { + name: "portfolio.quickActions.stake", + analytics: "quick_action_stake", + }, +} as const; diff --git a/apps/ledger-live-mobile/src/components/QueuedDrawer.tsx b/apps/ledger-live-mobile/src/components/QueuedDrawer.tsx index fa5c2c1f7cde..ac12098f74b1 100644 --- a/apps/ledger-live-mobile/src/components/QueuedDrawer.tsx +++ b/apps/ledger-live-mobile/src/components/QueuedDrawer.tsx @@ -1,3 +1,3 @@ -import QueuedDrawer, { type Props } from "~/newArch/components/QueuedDrawer"; +import QueuedDrawer, { type Props } from "LLM/components/QueuedDrawer"; export type { Props }; export default QueuedDrawer; diff --git a/apps/ledger-live-mobile/src/components/RequiresCameraPermissions/Fallback.tsx b/apps/ledger-live-mobile/src/components/RequiresCameraPermissions/Fallback.tsx index 4c46666eda75..c0955df64c5c 100644 --- a/apps/ledger-live-mobile/src/components/RequiresCameraPermissions/Fallback.tsx +++ b/apps/ledger-live-mobile/src/components/RequiresCameraPermissions/Fallback.tsx @@ -12,21 +12,23 @@ type Props = { buttonTitle: string; onPress: () => void; event: string; + hasNoBackground?: boolean; }; -const IconSettings = () => ; - const FallbackCameraBody: React.FC = ({ title, description, buttonTitle, onPress, event, + hasNoBackground, }: Props) => { const { colors } = useTheme(); + const IconSettings = () => ; + return ( - + diff --git a/apps/ledger-live-mobile/src/components/RequiresCameraPermissions/index.tsx b/apps/ledger-live-mobile/src/components/RequiresCameraPermissions/index.tsx index 7f1a5654c83c..50be5606d126 100644 --- a/apps/ledger-live-mobile/src/components/RequiresCameraPermissions/index.tsx +++ b/apps/ledger-live-mobile/src/components/RequiresCameraPermissions/index.tsx @@ -16,6 +16,7 @@ type Props = { * context, rather than directly showing an error screen. * */ optimisticallyMountChildren?: boolean; + fallBackHasNoBackground?: boolean; }; /** @@ -38,6 +39,7 @@ type Props = { const RequiresCameraPermissions: React.FC = ({ children, optimisticallyMountChildren = false, + fallBackHasNoBackground = false, }) => { const { t } = useTranslation(); const { @@ -59,6 +61,7 @@ const RequiresCameraPermissions: React.FC = ({ = ({ , ) => { const buySellUiFlag = useFeature("buySellUi"); - const defaultPlatform = buySellUiFlag?.params?.manifestId || DEFAULT_MULTIBUY_APP_ID; + const defaultPlatform = buySellUiFlag?.params?.manifestId || BUY_SELL_UI_APP_ID; return ( , ) => { const buySellUiFlag = useFeature("buySellUi"); - const defaultPlatform = buySellUiFlag?.params?.manifestId || DEFAULT_MULTIBUY_APP_ID; + const defaultPlatform = buySellUiFlag?.params?.manifestId || BUY_SELL_UI_APP_ID; return ( (); diff --git a/apps/ledger-live-mobile/src/components/RootNavigator/SettingsNavigator.tsx b/apps/ledger-live-mobile/src/components/RootNavigator/SettingsNavigator.tsx index 12c3a307c02f..42f9e45c0b98 100644 --- a/apps/ledger-live-mobile/src/components/RootNavigator/SettingsNavigator.tsx +++ b/apps/ledger-live-mobile/src/components/RootNavigator/SettingsNavigator.tsx @@ -71,7 +71,7 @@ import { MainTestScreen, TestScreenWithDrawerForcingToBeOpened, TestScreenWithDrawerRequestingToBeOpened, -} from "~/newArch/components/QueuedDrawer/TestScreens"; +} from "LLM/components/QueuedDrawer/TestScreens"; const Stack = createStackNavigator(); diff --git a/apps/ledger-live-mobile/src/components/RootNavigator/WalletConnectLiveAppNavigator.tsx b/apps/ledger-live-mobile/src/components/RootNavigator/WalletConnectLiveAppNavigator.tsx index c026a1dc9229..cd476c7839bc 100644 --- a/apps/ledger-live-mobile/src/components/RootNavigator/WalletConnectLiveAppNavigator.tsx +++ b/apps/ledger-live-mobile/src/components/RootNavigator/WalletConnectLiveAppNavigator.tsx @@ -40,19 +40,23 @@ export default function WalletConnectLiveAppNavigator() { return ( - {_props => ( - - )} + {_props => { + return ( + + ); + }} ); diff --git a/apps/ledger-live-mobile/src/components/RootNavigator/types/AddAccountsNavigator.ts b/apps/ledger-live-mobile/src/components/RootNavigator/types/AddAccountsNavigator.ts index bda002c19d75..1e30400175a8 100644 --- a/apps/ledger-live-mobile/src/components/RootNavigator/types/AddAccountsNavigator.ts +++ b/apps/ledger-live-mobile/src/components/RootNavigator/types/AddAccountsNavigator.ts @@ -15,14 +15,14 @@ export type AddAccountsNavigatorParamList = { inline?: boolean; returnToSwap?: boolean; analyticsPropertyFlow?: string; - onSuccess?: () => void; + onSuccess?: (res: { scannedAccounts: Account[]; selected: Account[] }) => void; }; [ScreenName.AddAccountsAccounts]: { currency: CryptoOrTokenCurrency; device: Device; inline?: boolean; returnToSwap?: boolean; - onSuccess?: (_?: unknown) => void; + onSuccess?: (res: { scannedAccounts: Account[]; selected: Account[] }) => void; }; [ScreenName.AddAccountsSuccess]?: { currency: CryptoOrTokenCurrency; diff --git a/apps/ledger-live-mobile/src/components/RootNavigator/types/BaseNavigator.ts b/apps/ledger-live-mobile/src/components/RootNavigator/types/BaseNavigator.ts index fd353d091bfb..01e464ad4ecd 100644 --- a/apps/ledger-live-mobile/src/components/RootNavigator/types/BaseNavigator.ts +++ b/apps/ledger-live-mobile/src/components/RootNavigator/types/BaseNavigator.ts @@ -109,6 +109,8 @@ export type BaseNavigatorStackParamList = { defaultTicker?: string; customDappURL?: string; uri?: string; + requestId?: string; + sessionTopic?: string; }; [NavigatorName.Web3Hub]: NavigatorScreenParams; [ScreenName.Recover]: { diff --git a/apps/ledger-live-mobile/src/components/RootNavigator/types/SignTransactionNavigator.ts b/apps/ledger-live-mobile/src/components/RootNavigator/types/SignTransactionNavigator.ts index 83371f35a83c..21e1eee1b1e2 100644 --- a/apps/ledger-live-mobile/src/components/RootNavigator/types/SignTransactionNavigator.ts +++ b/apps/ledger-live-mobile/src/components/RootNavigator/types/SignTransactionNavigator.ts @@ -52,6 +52,7 @@ export type SignTransactionNavigatorParamList = { overrideAmountLabel?: string; hideTotal?: boolean; appName?: string; + dependencies?: string[]; currentNavigation: | ScreenName.SignTransactionSummary | ScreenName.SendSummary @@ -69,6 +70,7 @@ export type SignTransactionNavigatorParamList = { transaction: Transaction; status: TransactionStatus; appName?: string; + dependencies?: string[]; onSuccess: (payload: unknown) => void; onError: (_: Error) => void; analyticsPropertyFlow?: string; diff --git a/apps/ledger-live-mobile/src/components/RootNavigator/types/WalletConnectLiveAppNavigator.ts b/apps/ledger-live-mobile/src/components/RootNavigator/types/WalletConnectLiveAppNavigator.ts index efbf4f7b538a..e8382a8af9a0 100644 --- a/apps/ledger-live-mobile/src/components/RootNavigator/types/WalletConnectLiveAppNavigator.ts +++ b/apps/ledger-live-mobile/src/components/RootNavigator/types/WalletConnectLiveAppNavigator.ts @@ -3,5 +3,7 @@ import { ScreenName } from "~/const"; export type WalletConnectLiveAppNavigatorParamList = { [ScreenName.WalletConnectConnect]: { uri?: string; + requestId?: string; + sessionTopic?: string; }; }; diff --git a/apps/ledger-live-mobile/src/components/RootNavigator/types/WalletSyncNavigator.ts b/apps/ledger-live-mobile/src/components/RootNavigator/types/WalletSyncNavigator.ts index 7e823a4d5672..83fb5ecf2683 100644 --- a/apps/ledger-live-mobile/src/components/RootNavigator/types/WalletSyncNavigator.ts +++ b/apps/ledger-live-mobile/src/components/RootNavigator/types/WalletSyncNavigator.ts @@ -2,12 +2,18 @@ import { TrustchainMember } from "@ledgerhq/trustchain/types"; import { ScreenName } from "~/const"; export type WalletSyncNavigatorStackParamList = { + [ScreenName.LedgerSyncDeepLinkHandler]: undefined; + [ScreenName.WalletSyncActivationInit]: undefined; [ScreenName.WalletSyncSuccess]: { created: boolean; }; + [ScreenName.WalletSyncLoading]: { + created: boolean; + }; + [ScreenName.WalletSyncActivationProcess]: undefined; [ScreenName.WalletSyncActivated]: undefined; diff --git a/apps/ledger-live-mobile/src/components/TabBar/TransferDrawer.tsx b/apps/ledger-live-mobile/src/components/TabBar/TransferDrawer.tsx index 4468e779e75e..474842bdf4fd 100644 --- a/apps/ledger-live-mobile/src/components/TabBar/TransferDrawer.tsx +++ b/apps/ledger-live-mobile/src/components/TabBar/TransferDrawer.tsx @@ -20,6 +20,8 @@ import { useToasts } from "@ledgerhq/live-common/notifications/ToastProvider/ind import useQuickActions from "~/hooks/useQuickActions"; import { PTX_SERVICES_TOAST_ID } from "~/utils/constants"; import { useQuickAccessURI } from "@ledgerhq/live-common/hooks/recoverFeatureFlag"; +import { EntryOf } from "~/types/helpers"; +import { BaseNavigatorStackParamList } from "../RootNavigator/types/BaseNavigator"; type ButtonItem = { title: string; @@ -36,7 +38,7 @@ type ButtonItem = { }; export default function TransferDrawer({ onClose }: Omit) { - const navigation = useNavigation(); + const navigation = useNavigation>(); const { quickActionsList: { SEND, RECEIVE, BUY, SELL, SWAP, STAKE, RECOVER }, } = useQuickActions(); @@ -60,11 +62,8 @@ export default function TransferDrawer({ onClose }: Omit { - (navigation as StackNavigationProp<{ [key: string]: object | undefined }>).navigate( - name, - options, - ); + (route: EntryOf) => { + navigation.navigate(...route); onClose?.(); }, [navigation, onClose], @@ -77,7 +76,7 @@ export default function TransferDrawer({ onClose }: Omit onNavigate(...SEND.route), + onPress: () => onNavigate(SEND.route), Icon: SEND.icon, disabled: SEND.disabled, testID: "transfer-send-button", }, - { + RECEIVE && { eventProperties: { button: "transfer_receive", page, @@ -98,12 +97,12 @@ export default function TransferDrawer({ onClose }: Omit onNavigate(...RECEIVE.route), + onPress: () => onNavigate(RECEIVE.route), Icon: RECEIVE.icon, disabled: RECEIVE.disabled, testID: "transfer-receive-button", }, - { + BUY && { eventProperties: { button: "transfer_buy", page, @@ -112,7 +111,7 @@ export default function TransferDrawer({ onClose }: Omit onNavigate(...BUY.route), + onPress: () => onNavigate(BUY.route), onDisabledPress: () => { if (isPtxServiceCtaExchangeDrawerDisabled) { onClose?.(); @@ -128,7 +127,7 @@ export default function TransferDrawer({ onClose }: Omit onNavigate(...SELL.route), + onPress: () => onNavigate(SELL.route), onDisabledPress: () => { if (isPtxServiceCtaExchangeDrawerDisabled) { onClose?.(); @@ -153,25 +152,20 @@ export default function TransferDrawer({ onClose }: Omit onNavigate(...STAKE.route), - disabled: STAKE.disabled, - testID: "transfer-stake-button", - }, - ] - : []), - { + STAKE && { + eventProperties: { + button: "transfer_stake", + page, + drawer: "stake", + }, + title: t("transfer.stake.title"), + description: t("transfer.stake.description"), + Icon: STAKE.icon, + onPress: () => onNavigate(STAKE.route), + disabled: STAKE.disabled, + testID: "transfer-stake-button", + }, + SWAP && { eventProperties: { button: "transfer_swap", page, @@ -180,7 +174,7 @@ export default function TransferDrawer({ onClose }: Omit onNavigate(...SWAP.route), + onPress: () => onNavigate(SWAP.route), onDisabledPress: () => { if (isPtxServiceCtaExchangeDrawerDisabled) { onClose?.(); @@ -196,26 +190,21 @@ export default function TransferDrawer({ onClose }: Omit onNavigateRecover(), - disabled: RECOVER.disabled, - testID: "transfer-recover-button", - }, - ] - : []), - ]; + RECOVER && { + eventProperties: { + button: "transfer_recover", + page, + drawer: "trade", + }, + tag: t("transfer.recover.tag"), + title: t("transfer.recover.title"), + description: t("transfer.recover.description"), + Icon: RECOVER.icon, + onPress: () => onNavigateRecover(), + disabled: RECOVER.disabled, + testID: "transfer-recover-button", + }, + ].filter((v: T | undefined): v is T => !!v); const bannerEventProperties = useMemo( () => ({ diff --git a/apps/ledger-live-mobile/src/components/Web3AppWebview/PlatformAPIWebview.tsx b/apps/ledger-live-mobile/src/components/Web3AppWebview/PlatformAPIWebview.tsx index 62d46daf278a..4888645316c4 100644 --- a/apps/ledger-live-mobile/src/components/Web3AppWebview/PlatformAPIWebview.tsx +++ b/apps/ledger-live-mobile/src/components/Web3AppWebview/PlatformAPIWebview.tsx @@ -58,7 +58,7 @@ function renderLoading() { ); } export const PlatformAPIWebview = forwardRef( - ({ manifest, inputs = {}, onStateChange }, ref) => { + ({ manifest, inputs = {}, onStateChange, onScroll }, ref) => { const tracking = useMemo( () => trackingWrapper((eventName: string, properties?: Record | null) => @@ -120,7 +120,7 @@ export const PlatformAPIWebview = forwardRef( currencies: safeCurrencyIds, includeTokens, }); - // handle no curencies selected case + // handle no currencies selected case const cryptoCurrencyIds = safeCurrencyIds && safeCurrencyIds.length > 0 ? safeCurrencyIds @@ -527,6 +527,8 @@ export const PlatformAPIWebview = forwardRef( return ( ( customHandlers, onStateChange, allowsBackForwardNavigationGestures = true, + onScroll, }, ref, ) => { @@ -49,6 +50,8 @@ export const WalletAPIWebview = forwardRef( return ( { @@ -557,5 +558,5 @@ export function useSelectAccount({ } }, [manifest.id, currencies, navigation, setCurrentAccountHist]); - return { onSelectAccount }; + return { onSelectAccount, currentAccount }; } diff --git a/apps/ledger-live-mobile/src/components/Web3AppWebview/index.tsx b/apps/ledger-live-mobile/src/components/Web3AppWebview/index.tsx index 8773ad69ed1f..fd8ae9b930ac 100644 --- a/apps/ledger-live-mobile/src/components/Web3AppWebview/index.tsx +++ b/apps/ledger-live-mobile/src/components/Web3AppWebview/index.tsx @@ -14,6 +14,7 @@ export const Web3AppWebview = forwardRef( customHandlers, onStateChange, allowsBackForwardNavigationGestures, + onScroll, }, ref, ) => { @@ -21,6 +22,7 @@ export const Web3AppWebview = forwardRef( return ( ( return ( void; allowsBackForwardNavigationGestures?: boolean; customHandlers?: WalletAPICustomHandlers; + onScroll?: ComponentProps["onScroll"]; }; export type WebviewState = { diff --git a/apps/ledger-live-mobile/src/components/WebPTXPlayer/index.tsx b/apps/ledger-live-mobile/src/components/WebPTXPlayer/index.tsx index 658dba447aac..f919df4a785b 100644 --- a/apps/ledger-live-mobile/src/components/WebPTXPlayer/index.tsx +++ b/apps/ledger-live-mobile/src/components/WebPTXPlayer/index.tsx @@ -54,9 +54,9 @@ function BackToInternalDomain({ useEffect(() => { (async () => { const lastScreen = (await AsyncStorage.getItem("last-screen")) || ""; - setButtonText(lastScreen === "compare_providers" ? "Quote" : manifest.name); + setButtonText(lastScreen === "compare_providers" ? t("common.quote") : manifest.name); })(); - }, [manifest.id, manifest.name]); + }, [manifest.id, manifest.name, t]); const handleBackClick = async () => { const manifestId = (await AsyncStorage.getItem("manifest-id")) || ""; diff --git a/apps/ledger-live-mobile/src/components/WebPlatformPlayer/BottomBar.tsx b/apps/ledger-live-mobile/src/components/WebPlatformPlayer/BottomBar.tsx index 28b421601bf9..324b059e43e5 100644 --- a/apps/ledger-live-mobile/src/components/WebPlatformPlayer/BottomBar.tsx +++ b/apps/ledger-live-mobile/src/components/WebPlatformPlayer/BottomBar.tsx @@ -1,17 +1,12 @@ import React, { RefObject, useCallback } from "react"; import { TouchableOpacity } from "react-native"; -import { Flex, Text } from "@ledgerhq/native-ui"; +import { Flex } from "@ledgerhq/native-ui"; import { ArrowLeftMedium, ArrowRightMedium, ReverseMedium } from "@ledgerhq/native-ui/assets/icons"; import { useTheme } from "styled-components/native"; import { AppManifest } from "@ledgerhq/live-common/wallet-api/types"; -import { useDappCurrentAccount } from "@ledgerhq/live-common/wallet-api/useDappLogic"; import { safeGetRefValue, CurrentAccountHistDB } from "@ledgerhq/live-common/wallet-api/react"; import { WebviewAPI, WebviewState } from "../Web3AppWebview/types"; -import Button from "../Button"; -import { Trans } from "react-i18next"; -import CircleCurrencyIcon from "../CircleCurrencyIcon"; -import { useSelectAccount } from "../Web3AppWebview/helpers"; -import { useMaybeAccountName } from "~/reducers/wallet"; +import SelectAccountButton from "./SelectAccountButton"; type BottomBarProps = { manifest: AppManifest; @@ -48,7 +43,6 @@ export function BottomBar({ currentAccountHistDb, }: BottomBarProps) { const { colors } = useTheme(); - const { currentAccount } = useDappCurrentAccount(currentAccountHistDb); const shouldDisplaySelectAccount = !!manifest.dapp; const handleForward = useCallback(() => { @@ -69,10 +63,6 @@ export function BottomBar({ webview.reload(); }, [webviewAPIRef]); - const { onSelectAccount } = useSelectAccount({ manifest, currentAccountHistDb }); - - const currentAccountName = useMaybeAccountName(currentAccount); - return ( @@ -92,27 +82,7 @@ export function BottomBar({ {shouldDisplaySelectAccount ? ( - + ) : null} diff --git a/apps/ledger-live-mobile/src/components/WebPlatformPlayer/SelectAccountButton.tsx b/apps/ledger-live-mobile/src/components/WebPlatformPlayer/SelectAccountButton.tsx new file mode 100644 index 000000000000..5244e936605d --- /dev/null +++ b/apps/ledger-live-mobile/src/components/WebPlatformPlayer/SelectAccountButton.tsx @@ -0,0 +1,52 @@ +import React from "react"; +import { Trans } from "react-i18next"; +import { Text } from "@ledgerhq/native-ui"; +import { AppManifest } from "@ledgerhq/live-common/wallet-api/types"; +import { CurrentAccountHistDB } from "@ledgerhq/live-common/wallet-api/react"; +import Button from "~/components/Button"; +import CircleCurrencyIcon from "~/components/CircleCurrencyIcon"; +import { useSelectAccount } from "~/components/Web3AppWebview/helpers"; +import { useMaybeAccountName } from "~/reducers/wallet"; + +type SelectAccountButtonProps = { + manifest: AppManifest; + currentAccountHistDb: CurrentAccountHistDB; +}; + +export default function SelectAccountButton({ + manifest, + currentAccountHistDb, +}: SelectAccountButtonProps) { + const { onSelectAccount, currentAccount } = useSelectAccount({ manifest, currentAccountHistDb }); + + const currentAccountName = useMaybeAccountName(currentAccount); + + return ( + + ); +} diff --git a/apps/ledger-live-mobile/src/components/globalSyncRefreshControl.tsx b/apps/ledger-live-mobile/src/components/globalSyncRefreshControl.tsx index 2f8d33f5a1a9..57f451ac78eb 100644 --- a/apps/ledger-live-mobile/src/components/globalSyncRefreshControl.tsx +++ b/apps/ledger-live-mobile/src/components/globalSyncRefreshControl.tsx @@ -5,7 +5,7 @@ import { useCountervaluesPolling } from "@ledgerhq/live-countervalues-react"; import { useIsFocused, useTheme } from "@react-navigation/native"; import { SYNC_DELAY } from "~/utils/constants"; import { track } from "~/analytics"; -import { useWalletSyncUserState } from "~/newArch/features/WalletSync/components/WalletSyncContext"; +import { useWalletSyncUserState } from "LLM/features/WalletSync/components/WalletSyncContext"; type Props = { error?: Error; diff --git a/apps/ledger-live-mobile/src/const/navigation.ts b/apps/ledger-live-mobile/src/const/navigation.ts index 29aa26204fee..a621351af992 100644 --- a/apps/ledger-live-mobile/src/const/navigation.ts +++ b/apps/ledger-live-mobile/src/const/navigation.ts @@ -514,11 +514,13 @@ export enum ScreenName { WalletSyncActivationInit = "WalletSyncActivationInit", WalletSyncActivationProcess = "WalletSyncActivationProcess", WalletSyncSuccess = "WalletSyncSuccess", + WalletSyncLoading = "WalletSyncLoading", WalletSyncActivated = "WalletSyncActivated", WalletSyncManageKeyDeleteSuccess = "WalletSyncManageKeyDeleteSuccess", WalletSyncUnSynchSuccess = "WalletSyncUnSynchSuccess", WalletSyncManageInstancesProcess = "WalletSyncManageInstancesProcess", WalletSyncManageInstancesSuccess = "WalletSyncManageInstancesSuccess", + LedgerSyncDeepLinkHandler = "LedgerSyncDeepLinkHandler", MockedAddAssetButton = "MockedAddAssetButton", GenericLandingPage = "GenericLandingPage", diff --git a/apps/ledger-live-mobile/src/context/AuthPass/index.tsx b/apps/ledger-live-mobile/src/context/AuthPass/index.tsx index cd993eadefd5..5973c2bad1b0 100644 --- a/apps/ledger-live-mobile/src/context/AuthPass/index.tsx +++ b/apps/ledger-live-mobile/src/context/AuthPass/index.tsx @@ -13,7 +13,7 @@ import { SkipLockContext } from "~/components/behaviour/SkipLock"; import type { Privacy, State as GlobalState, AppState as EventState } from "~/reducers/types"; import AuthScreen from "./AuthScreen"; import RequestBiometricAuth from "~/components/RequestBiometricAuth"; -import { useQueuedDrawerContext } from "~/newArch/components/QueuedDrawer/QueuedDrawersContext"; +import { useQueuedDrawerContext } from "LLM/components/QueuedDrawer/QueuedDrawersContext"; const mapDispatchToProps = { setPrivacy, diff --git a/apps/ledger-live-mobile/src/experimental.ts b/apps/ledger-live-mobile/src/experimental.ts index 3b4fc4db8365..cf0d3b563893 100644 --- a/apps/ledger-live-mobile/src/experimental.ts +++ b/apps/ledger-live-mobile/src/experimental.ts @@ -140,6 +140,12 @@ export const developerFeatures: Feature[] = [ title: i18nKeyDeveloper("staggingUrl", "title"), description: i18nKeyDeveloper("staggingUrl", "description"), }, + { + type: "toggle", + name: "MOCK_APP_UPDATE", + title: i18nKeyDeveloper("mockAppUpdate", "title"), + description: i18nKeyDeveloper("mockAppUpdate", "description"), + }, ]; const storageKey = "experimentalFlags"; diff --git a/apps/ledger-live-mobile/src/families/cosmos/AccountBalanceSummaryFooter.tsx b/apps/ledger-live-mobile/src/families/cosmos/AccountBalanceSummaryFooter.tsx index cd0f36a73987..c0a3ecc50d20 100644 --- a/apps/ledger-live-mobile/src/families/cosmos/AccountBalanceSummaryFooter.tsx +++ b/apps/ledger-live-mobile/src/families/cosmos/AccountBalanceSummaryFooter.tsx @@ -3,10 +3,10 @@ import { ScrollView } from "react-native"; import { useTranslation } from "react-i18next"; import BigNumber from "bignumber.js"; import { getCryptoCurrencyIcon } from "@ledgerhq/live-common/reactNative"; -import { CosmosAccount } from "@ledgerhq/live-common/families/cosmos/types"; -import { CosmosAPI } from "@ledgerhq/live-common/families/cosmos/api/Cosmos"; +import { CosmosAccount } from "@ledgerhq/coin-cosmos/types/index"; +import { CosmosAPI } from "@ledgerhq/coin-cosmos/api/Cosmos"; import { Account } from "@ledgerhq/types-live"; -import cryptoFactory from "@ledgerhq/live-common/families/cosmos/chain/chain"; +import cryptoFactory from "@ledgerhq/coin-cosmos/chain/chain"; import { Unit } from "@ledgerhq/types-cryptoassets"; import invariant from "invariant"; import InfoModal from "~/modals/Info"; diff --git a/apps/ledger-live-mobile/src/families/cosmos/ClaimRewardsFlow/02-SelectMethod.tsx b/apps/ledger-live-mobile/src/families/cosmos/ClaimRewardsFlow/02-SelectMethod.tsx index 050460d709c8..4ee57fb1fad8 100644 --- a/apps/ledger-live-mobile/src/families/cosmos/ClaimRewardsFlow/02-SelectMethod.tsx +++ b/apps/ledger-live-mobile/src/families/cosmos/ClaimRewardsFlow/02-SelectMethod.tsx @@ -9,7 +9,7 @@ import { getAccountBridge } from "@ledgerhq/live-common/bridge/index"; import { getMainAccount, getAccountCurrency } from "@ledgerhq/live-common/account/index"; import useBridgeTransaction from "@ledgerhq/live-common/bridge/useBridgeTransaction"; import { useTheme } from "@react-navigation/native"; -import cosmosBase from "@ledgerhq/live-common/families/cosmos/chain/cosmosBase"; +import cosmosBase from "@ledgerhq/coin-cosmos/chain/cosmosBase"; import { accountScreenSelector } from "~/reducers/accounts"; import Button from "~/components/Button"; import LText from "~/components/LText"; diff --git a/apps/ledger-live-mobile/src/families/cosmos/DelegationFlow/01-Started.tsx b/apps/ledger-live-mobile/src/families/cosmos/DelegationFlow/01-Started.tsx index a78c62a30181..ed75a266f81c 100644 --- a/apps/ledger-live-mobile/src/families/cosmos/DelegationFlow/01-Started.tsx +++ b/apps/ledger-live-mobile/src/families/cosmos/DelegationFlow/01-Started.tsx @@ -5,7 +5,7 @@ import invariant from "invariant"; import { Trans, useTranslation } from "react-i18next"; import { useTheme } from "@react-navigation/native"; import { Alert, Button, Flex, Text } from "@ledgerhq/native-ui"; -import cryptoFactory from "@ledgerhq/live-common/families/cosmos/chain/chain"; +import cryptoFactory from "@ledgerhq/coin-cosmos/chain/chain"; import { getAccountCurrency } from "@ledgerhq/live-common/account/index"; import { getMainAccount } from "@ledgerhq/live-common/account/helpers"; import { ScreenName } from "~/const"; diff --git a/apps/ledger-live-mobile/src/families/cosmos/DelegationFlow/02-Summary.tsx b/apps/ledger-live-mobile/src/families/cosmos/DelegationFlow/02-Summary.tsx index 11cdb715ff40..2dcd50572893 100644 --- a/apps/ledger-live-mobile/src/families/cosmos/DelegationFlow/02-Summary.tsx +++ b/apps/ledger-live-mobile/src/families/cosmos/DelegationFlow/02-Summary.tsx @@ -5,7 +5,7 @@ import { formatCurrencyUnit, getCurrencyColor } from "@ledgerhq/live-common/curr import { getMaxDelegationAvailable } from "@ledgerhq/live-common/families/cosmos/logic"; import { useLedgerFirstShuffledValidatorsCosmosFamily } from "@ledgerhq/live-common/families/cosmos/react"; import { CosmosAccount, CosmosValidatorItem } from "@ledgerhq/live-common/families/cosmos/types"; -import cosmosBase from "@ledgerhq/live-common/families/cosmos/chain/cosmosBase"; +import cosmosBase from "@ledgerhq/coin-cosmos/chain/cosmosBase"; import { AccountLike } from "@ledgerhq/types-live"; import { Text } from "@ledgerhq/native-ui"; import { useTheme } from "@react-navigation/native"; diff --git a/apps/ledger-live-mobile/src/families/cosmos/Delegations/Row.tsx b/apps/ledger-live-mobile/src/families/cosmos/Delegations/Row.tsx index f32457501daa..c7ac46af1754 100644 --- a/apps/ledger-live-mobile/src/families/cosmos/Delegations/Row.tsx +++ b/apps/ledger-live-mobile/src/families/cosmos/Delegations/Row.tsx @@ -8,7 +8,7 @@ import { import { CryptoOrTokenCurrency } from "@ledgerhq/types-cryptoassets"; import { useTheme } from "@react-navigation/native"; import { Text } from "@ledgerhq/native-ui"; -import cryptoFactory from "@ledgerhq/live-common/families/cosmos/chain/chain"; +import cryptoFactory from "@ledgerhq/coin-cosmos/chain/chain"; import CounterValue from "~/components/CounterValue"; import ArrowRight from "~/icons/ArrowRight"; import LText from "~/components/LText"; diff --git a/apps/ledger-live-mobile/src/families/cosmos/Delegations/index.tsx b/apps/ledger-live-mobile/src/families/cosmos/Delegations/index.tsx index 377a59b11a8b..38d2fdab29ca 100644 --- a/apps/ledger-live-mobile/src/families/cosmos/Delegations/index.tsx +++ b/apps/ledger-live-mobile/src/families/cosmos/Delegations/index.tsx @@ -26,7 +26,7 @@ import { AccountBannerState, getAccountBannerState as getCosmosBannerState, } from "@ledgerhq/live-common/families/cosmos/banner"; -import cryptoFactory from "@ledgerhq/live-common/families/cosmos/chain/chain"; +import cryptoFactory from "@ledgerhq/coin-cosmos/chain/chain"; import useBridgeTransaction from "@ledgerhq/live-common/bridge/useBridgeTransaction"; import { getAccountBridge } from "@ledgerhq/live-common/bridge/index"; import { AccountLike } from "@ledgerhq/types-live"; diff --git a/apps/ledger-live-mobile/src/families/cosmos/TransactionConfirmFields.tsx b/apps/ledger-live-mobile/src/families/cosmos/TransactionConfirmFields.tsx index 447f31035d3c..daa4c1e5cf58 100644 --- a/apps/ledger-live-mobile/src/families/cosmos/TransactionConfirmFields.tsx +++ b/apps/ledger-live-mobile/src/families/cosmos/TransactionConfirmFields.tsx @@ -11,7 +11,7 @@ import { useTheme } from "@react-navigation/native"; import LText from "~/components/LText"; import { DataRow, TextValueField } from "~/components/ValidateOnDeviceDataRow"; import Info from "~/icons/Info"; -import cryptoFactory from "@ledgerhq/live-common/families/cosmos/chain/chain"; +import cryptoFactory from "@ledgerhq/coin-cosmos/chain/chain"; import { useAccountUnit } from "~/hooks/useAccountUnit"; type FieldProps = { diff --git a/apps/ledger-live-mobile/src/families/cosmos/operationDetails.tsx b/apps/ledger-live-mobile/src/families/cosmos/operationDetails.tsx index c756b810bff5..3e3c01f651ee 100644 --- a/apps/ledger-live-mobile/src/families/cosmos/operationDetails.tsx +++ b/apps/ledger-live-mobile/src/families/cosmos/operationDetails.tsx @@ -8,7 +8,7 @@ import { formatCurrencyUnit } from "@ledgerhq/live-common/currencies/index"; import { BigNumber } from "bignumber.js"; import type { CosmosAccount, CosmosOperation } from "@ledgerhq/live-common/families/cosmos/types"; import { useSelector } from "react-redux"; -import cryptoFactory from "@ledgerhq/live-common/families/cosmos/chain/chain"; +import cryptoFactory from "@ledgerhq/coin-cosmos/chain/chain"; import Section from "~/screens/OperationDetails/Section"; import { discreetModeSelector } from "~/reducers/settings"; import { useSettings } from "~/hooks"; diff --git a/apps/ledger-live-mobile/src/families/cosmos/shared/Item.tsx b/apps/ledger-live-mobile/src/families/cosmos/shared/Item.tsx index 6febda4fea3a..9601ebdb252b 100644 --- a/apps/ledger-live-mobile/src/families/cosmos/shared/Item.tsx +++ b/apps/ledger-live-mobile/src/families/cosmos/shared/Item.tsx @@ -9,7 +9,7 @@ import type { } from "@ledgerhq/live-common/families/cosmos/types"; import type { Unit } from "@ledgerhq/types-cryptoassets"; import { useTheme } from "@react-navigation/native"; -import cosmosBase from "@ledgerhq/live-common/families/cosmos/chain/cosmosBase"; +import cosmosBase from "@ledgerhq/coin-cosmos/chain/cosmosBase"; import LText from "~/components/LText"; import CurrencyUnitValue from "~/components/CurrencyUnitValue"; import ArrowRight from "~/icons/ArrowRight"; diff --git a/apps/ledger-live-mobile/src/families/cosmos/shared/ValidatorRow.tsx b/apps/ledger-live-mobile/src/families/cosmos/shared/ValidatorRow.tsx index 9cc3c044e77a..46177920f671 100644 --- a/apps/ledger-live-mobile/src/families/cosmos/shared/ValidatorRow.tsx +++ b/apps/ledger-live-mobile/src/families/cosmos/shared/ValidatorRow.tsx @@ -1,5 +1,5 @@ import { CosmosValidatorItem } from "@ledgerhq/live-common/families/cosmos/types"; -import cosmosBase from "@ledgerhq/live-common/families/cosmos/chain/cosmosBase"; +import cosmosBase from "@ledgerhq/coin-cosmos/chain/cosmosBase"; import { AccountLike } from "@ledgerhq/types-live"; import { Text } from "@ledgerhq/native-ui"; import React, { useCallback } from "react"; diff --git a/apps/ledger-live-mobile/src/families/evm/EvmFeesStrategy.tsx b/apps/ledger-live-mobile/src/families/evm/EvmFeesStrategy.tsx index a079a1e0275f..df7fc4e94889 100644 --- a/apps/ledger-live-mobile/src/families/evm/EvmFeesStrategy.tsx +++ b/apps/ledger-live-mobile/src/families/evm/EvmFeesStrategy.tsx @@ -52,7 +52,7 @@ export default function EvmFeesStrategy({ const bridge: AccountBridge = getAccountBridge(mainAccount); const { colors } = useTheme(); const { t } = useTranslation(); - const unit = useAccountUnit(account); + const unit = useAccountUnit(mainAccount); const [gasOptions, error, loading] = useGasOptions({ currency: mainAccount.currency, diff --git a/apps/ledger-live-mobile/src/families/filecoin/TransactionConfirmFields.tsx b/apps/ledger-live-mobile/src/families/filecoin/TransactionConfirmFields.tsx index 998e0bc1f0d1..80332e5ca486 100644 --- a/apps/ledger-live-mobile/src/families/filecoin/TransactionConfirmFields.tsx +++ b/apps/ledger-live-mobile/src/families/filecoin/TransactionConfirmFields.tsx @@ -37,6 +37,7 @@ const fieldComponents = { "filecoin.gasPremium": FilecoinField, "filecoin.gasLimit": FilecoinField, "filecoin.method": FilecoinField, + "filecoin.recipient": FilecoinField, }; export default { fieldComponents, diff --git a/apps/ledger-live-mobile/src/MobileStorageProvider.ts b/apps/ledger-live-mobile/src/hooks/storageProvider/MobileAppDataStorageProvider.ts similarity index 94% rename from apps/ledger-live-mobile/src/MobileStorageProvider.ts rename to apps/ledger-live-mobile/src/hooks/storageProvider/MobileAppDataStorageProvider.ts index 9920413f5d14..7e51091c8bac 100644 --- a/apps/ledger-live-mobile/src/MobileStorageProvider.ts +++ b/apps/ledger-live-mobile/src/hooks/storageProvider/MobileAppDataStorageProvider.ts @@ -1,5 +1,5 @@ import { - StorageProvider, + StorageProvider as AppDataStorageProvider, AppStorageType, AppStorageKey, isAppStorageType, @@ -11,7 +11,7 @@ import AsyncStorage from "@react-native-async-storage/async-storage"; * The storage provider for LLM that implements the StorageProvider interface. * This a temporary placement, it could be moved to the appropriate location if needed. */ -export class MobileStorageProvider implements StorageProvider { +export class MobileAppDataStorageProvider implements AppDataStorageProvider { /** * Retrieves the value associated with the specified key from storage. * diff --git a/apps/ledger-live-mobile/src/hooks/storageProvider/useAppDataStorage.tsx b/apps/ledger-live-mobile/src/hooks/storageProvider/useAppDataStorage.tsx new file mode 100644 index 000000000000..113fee7f62f5 --- /dev/null +++ b/apps/ledger-live-mobile/src/hooks/storageProvider/useAppDataStorage.tsx @@ -0,0 +1,17 @@ +import React from "react"; +import { MobileAppDataStorageProvider } from "./MobileAppDataStorageProvider"; + +const StorageContext = React.createContext(new MobileAppDataStorageProvider()); + +export const useAppDataStorage = () => { + return React.useContext(StorageContext); +}; + +type Props = { + children: React.ReactNode; +}; + +export function AppDataStorageProvider({ children }: Props) { + const storage = useAppDataStorage(); + return {children}; +} diff --git a/apps/ledger-live-mobile/src/hooks/useQuickActions.ts b/apps/ledger-live-mobile/src/hooks/useQuickActions.ts index c1ca09d4b986..1a57a7e99dec 100644 --- a/apps/ledger-live-mobile/src/hooks/useQuickActions.ts +++ b/apps/ledger-live-mobile/src/hooks/useQuickActions.ts @@ -2,102 +2,140 @@ import { useMemo } from "react"; import { useRoute } from "@react-navigation/native"; import { useSelector } from "react-redux"; import { IconsLegacy } from "@ledgerhq/native-ui"; -import { type ParamListBase } from "@react-navigation/native"; import { IconType } from "@ledgerhq/native-ui/components/Icon/type"; import useFeature from "@ledgerhq/live-common/featureFlags/useFeature"; +import { useRampCatalog } from "@ledgerhq/live-common/platform/providers/RampCatalogProvider/useRampCatalog"; +import { CryptoOrTokenCurrency } from "@ledgerhq/types-cryptoassets"; +import { AccountLike } from "@ledgerhq/types-live"; import { NavigatorName, ScreenName } from "~/const"; +import { BaseNavigatorStackParamList } from "~/components/RootNavigator/types/BaseNavigator"; +import { EntryOf } from "~/types/helpers"; import { accountsCountSelector, areAccountsEmptySelector } from "../reducers/accounts"; import { readOnlyModeEnabledSelector } from "../reducers/settings"; export type QuickAction = { disabled: boolean; - route: [NavigatorName, { screen: ScreenName; params?: ParamListBase }]; + route: EntryOf; icon: IconType; }; -export type QuickActionsList = { - SEND: QuickAction; - RECEIVE: QuickAction; - BUY: QuickAction; - SELL: QuickAction; - SWAP: QuickAction; - STAKE?: QuickAction; - WALLET_CONNECT?: QuickAction; - RECOVER?: QuickAction; -}; +type Actions = + | "SEND" + | "RECEIVE" + | "BUY" + | "SELL" + | "SWAP" + | "STAKE" + | "WALLET_CONNECT" + | "RECOVER"; + +export type QuickActionProps = { currency?: CryptoOrTokenCurrency; accounts?: AccountLike[] }; -function useQuickActions() { +function useQuickActions({ currency, accounts }: QuickActionProps = {}) { const route = useRoute(); + const { isCurrencyAvailable } = useRampCatalog(); + const readOnlyModeEnabled = useSelector(readOnlyModeEnabledSelector); - const accountsCount: number = useSelector(accountsCountSelector); - const areAccountsEmpty = useSelector(areAccountsEmptySelector); + const hasAnyAccounts = useSelector(accountsCountSelector) > 0; + const hasCurrencyAccounts = currency ? !!accounts?.length : hasAnyAccounts; + const hasFunds = !useSelector(areAccountsEmptySelector) && hasAnyAccounts; + const hasCurrency = currency ? !!accounts?.some(({ balance }) => balance.gt(0)) : hasFunds; const recoverEntryPoint = useFeature("protectServicesMobile"); const stakePrograms = useFeature("stakePrograms"); const ptxServiceCtaExchangeDrawer = useFeature("ptxServiceCtaExchangeDrawer"); + const isPtxServiceCtaExchangeDrawerDisabled = !(ptxServiceCtaExchangeDrawer?.enabled ?? true); - const isPtxServiceCtaExchangeDrawerDisabled = useMemo( - () => !(ptxServiceCtaExchangeDrawer?.enabled ?? true), - [ptxServiceCtaExchangeDrawer], - ); + const canBeBought = !currency || isCurrencyAvailable(currency.id, "onRamp"); + const canBeSold = !currency || currency.id === "bitcoin"; + const canBeStaked = + stakePrograms?.enabled && (!currency || stakePrograms?.params?.list.includes(currency?.id)); + const canBeRecovered = recoverEntryPoint?.enabled; const quickActionsList = useMemo(() => { - const list: QuickActionsList = { + const list: Partial> = { SEND: { - disabled: !accountsCount || readOnlyModeEnabled || areAccountsEmpty, + disabled: readOnlyModeEnabled || !hasCurrency, route: [ NavigatorName.SendFunds, { screen: ScreenName.SendCoin, + params: { selectedCurrency: currency }, }, ], icon: IconsLegacy.ArrowTopMedium, }, RECEIVE: { disabled: readOnlyModeEnabled, - route: [NavigatorName.ReceiveFunds, { screen: ScreenName.ReceiveSelectCrypto }], + route: [ + NavigatorName.ReceiveFunds, + !currency + ? { screen: ScreenName.ReceiveSelectCrypto } + : { + screen: hasCurrencyAccounts + ? ScreenName.ReceiveSelectAccount + : ScreenName.ReceiveAddAccountSelectDevice, + params: { + currency: currency.type === "TokenCurrency" ? currency.parentCurrency : currency, + }, + }, + ], icon: IconsLegacy.ArrowBottomMedium, }, - BUY: { - disabled: isPtxServiceCtaExchangeDrawerDisabled || readOnlyModeEnabled, - route: [NavigatorName.Exchange, { screen: ScreenName.ExchangeBuy }], - icon: IconsLegacy.PlusMedium, - }, - SELL: { - disabled: - isPtxServiceCtaExchangeDrawerDisabled || - !accountsCount || - readOnlyModeEnabled || - areAccountsEmpty, - route: [NavigatorName.Exchange, { screen: ScreenName.ExchangeSell }], - icon: IconsLegacy.MinusMedium, - }, SWAP: { - disabled: - isPtxServiceCtaExchangeDrawerDisabled || - !accountsCount || - readOnlyModeEnabled || - areAccountsEmpty, + disabled: isPtxServiceCtaExchangeDrawerDisabled || readOnlyModeEnabled || !hasFunds, route: [ NavigatorName.Swap, { - screen: ScreenName.SwapForm, + screen: ScreenName.SwapTab, + params: { currency }, }, ], icon: IconsLegacy.BuyCryptoMedium, }, }; - if (stakePrograms?.enabled) { + if (canBeBought) { + list.BUY = { + disabled: isPtxServiceCtaExchangeDrawerDisabled || readOnlyModeEnabled, + route: [ + NavigatorName.Exchange, + { + screen: ScreenName.ExchangeBuy, + params: { mode: "buy", defaultCurrencyId: currency?.id }, + }, + ], + icon: IconsLegacy.PlusMedium, + }; + } + + if (canBeSold) { + list.SELL = { + disabled: isPtxServiceCtaExchangeDrawerDisabled || readOnlyModeEnabled || !hasCurrency, + route: [ + NavigatorName.Exchange, + { + screen: ScreenName.ExchangeSell, + params: { mode: "sell", defaultCurrencyId: currency?.id }, + }, + ], + icon: IconsLegacy.MinusMedium, + }; + } + + if (canBeStaked) { list.STAKE = { disabled: readOnlyModeEnabled, route: [ NavigatorName.StakeFlow, { screen: ScreenName.Stake, - params: { parentRoute: route }, + params: { + currencies: currency ? [currency.id] : undefined, + parentRoute: route, + }, }, ], icon: IconsLegacy.CoinsMedium, @@ -110,18 +148,20 @@ function useQuickActions() { NavigatorName.WalletConnect, { screen: ScreenName.WalletConnectConnect, + params: {}, }, ], icon: IconsLegacy.WalletConnectMedium, }; - if (recoverEntryPoint?.enabled) { + if (canBeRecovered) { list.RECOVER = { disabled: readOnlyModeEnabled, route: [ - NavigatorName.Base, + NavigatorName.Main, { - screen: ScreenName.MyLedgerChooseDevice, + screen: NavigatorName.MyLedger, + params: { screen: ScreenName.MyLedgerChooseDevice }, }, ], icon: IconsLegacy.ShieldCheckMedium, @@ -130,13 +170,17 @@ function useQuickActions() { return list; }, [ - accountsCount, - areAccountsEmpty, + currency, + hasCurrencyAccounts, + hasCurrency, + hasFunds, isPtxServiceCtaExchangeDrawerDisabled, readOnlyModeEnabled, route, - stakePrograms?.enabled, - recoverEntryPoint?.enabled, + canBeBought, + canBeSold, + canBeStaked, + canBeRecovered, ]); return { quickActionsList }; diff --git a/apps/ledger-live-mobile/src/images/bigSquareLogo.png b/apps/ledger-live-mobile/src/images/bigSquareLogo.png new file mode 100644 index 000000000000..69b95e8872a0 Binary files /dev/null and b/apps/ledger-live-mobile/src/images/bigSquareLogo.png differ diff --git a/apps/ledger-live-mobile/src/index.tsx b/apps/ledger-live-mobile/src/index.tsx index e984929a6c39..12c6fffe5538 100644 --- a/apps/ledger-live-mobile/src/index.tsx +++ b/apps/ledger-live-mobile/src/index.tsx @@ -86,7 +86,7 @@ import { StorylyProvider } from "./components/StorylyStories/StorylyProvider"; import { useSettings } from "~/hooks"; import AppProviders from "./AppProviders"; import { useAutoDismissPostOnboardingEntryPoint } from "@ledgerhq/live-common/postOnboarding/hooks/index"; -import QueuedDrawersContextProvider from "~/newArch/components/QueuedDrawer/QueuedDrawersContextProvider"; +import QueuedDrawersContextProvider from "LLM/components/QueuedDrawer/QueuedDrawersContextProvider"; import { exportMarketSelector } from "./reducers/market"; import { trustchainStoreSelector } from "@ledgerhq/trustchain/store"; import { walletSelector } from "~/reducers/wallet"; diff --git a/apps/ledger-live-mobile/src/live-common-setup.ts b/apps/ledger-live-mobile/src/live-common-setup.ts index e6e4e721f9ad..fce1cf7b77ca 100644 --- a/apps/ledger-live-mobile/src/live-common-setup.ts +++ b/apps/ledger-live-mobile/src/live-common-setup.ts @@ -74,7 +74,6 @@ setSupportedCurrencies([ "qtum", "bitcoin_gold", "komodo", - "pivx", "zencash", "bitcoin_testnet", "ethereum_sepolia", diff --git a/apps/ledger-live-mobile/src/locales/en/common.json b/apps/ledger-live-mobile/src/locales/en/common.json index ec5eefb43c03..c5812037e772 100644 --- a/apps/ledger-live-mobile/src/locales/en/common.json +++ b/apps/ledger-live-mobile/src/locales/en/common.json @@ -98,7 +98,8 @@ "patterns": { "id": "ID {{ value }}", "times": "x{{ value }}" - } + }, + "quote": "Quote" }, "errors": { "ReplacementTransactionUnderpriced": { @@ -919,6 +920,13 @@ "InvalidMemoICP": { "title": "Memo is required to be a number" }, + "InvalidRecipientForTokenTransfer": { + "title": "Invalid recipient for token transfer, supported account types for token transfer: [f0, f4, 0x]" + }, + "FilecoinFeeEstimationFailed": { + "title": "Sorry, fee estimation failed", + "description": "Fee estimation failed on the network. Check inputs, transaction most likely to fail" + }, "FirmwareNotRecognized": { "title": "Invalid Provider", "description": "You have to change \"My Ledger provider\" setting. To change it, open Ledger Live \"Settings\", select \"Experimental features\", and then select a different provider." @@ -937,6 +945,35 @@ "title": "Sorry, try again.", "description": "The server could not handle your request. Please try again later or contact Ledger Support.", "errorCode": "Code: {{errorCode}}" + }, + "TrustchainEjected": { + "title": "Not Synced anymore" + }, + "TrustchainNotAllowed": { + "title": "You are not in sync anymore", + "description": "Please try again or contact Ledger Support." + }, + "TrustchainNotFound": { + "title": "Something went wrong while fetching your data", + "description": "Please try again or contact Ledger Support." + }, + "TonExcessFee": { + "title": "It constitutes a token transfer. You will pay 0.1 TON in fees, and any extra will be returned to you." + }, + "TonNotEnoughBalanceInParentAccount": { + "title": "Insufficient funds in main account (TON) to calculate fees. The minimum required balance is 0.1 TON." + }, + "TonMinimumRequired": { + "title": "Insufficient funds. The minimum required balance is 0.02 TON." + }, + "BackupAppDataError": { + "title": "Error during app data backup" + }, + "RestoreAppDataError": { + "title": "Error restoring app data" + }, + "DeleteAppDataError": { + "title": "Error deleting app data" } }, "crash": { @@ -2274,6 +2311,7 @@ }, "quickActions": { "buy": "Buy", + "sell": "Sell", "swap": "Swap", "send": "Send", "deposit": "Receive", @@ -2760,7 +2798,7 @@ "dateFormat": "Date format", "dateFormatDesc": "Set the date format for Ledger Live", "walletSync": "Ledger Sync", - "walletSyncDesc": "Simply secure your app data and synchronize multiple Ledger Live instances.", + "walletSyncDesc": "Securely sync your accounts across multiple Ledger Live instances", "region": "Region", "regionDesc": "Choose your region to update formats of dates, time and currencies.", "password": "App lock", @@ -2993,6 +3031,10 @@ }, "platformManifest": { "title": "Load Platform Manifest" + }, + "mockAppUpdate": { + "title": "Mock app update", + "description": "Display available app update in My Ledger, it will reinstall the same app version" } } }, @@ -6648,7 +6690,7 @@ "title": "Manage your preferences", "analytics": { "title": "Analytics", - "description": "To measure Ledger Live’s performance and improve both the app and your experience, we share usage data, including page visits and clicks." + "description": "To measure Ledger Live’s performance and improve both app and your experience, I agree to the collection of my data, including page visits and clicks" }, "personalizedExp": { "title": "Personalization", @@ -6658,7 +6700,7 @@ "notNow": "Not now", "accept": "Accept", "acceptAll": "Accept All", - "confirm": "Share" + "confirm": "Validate" }, "infoText": { "info": "You can revoke your consent any time in the app settings.", @@ -6709,7 +6751,7 @@ "title": "Sync your accounts across all platforms", "description": "Your Ledger will generate an encryption key, ensuring your data remains private and retrievable only by you.", "mainCta": "Sync your accounts", - "secondCta": "Already created a key?" + "secondCta": "Already synced a Ledger Live app?" } }, "deviceSelection": { @@ -6720,6 +6762,11 @@ "title": "Continue on your Ledger {{wording}}", "description": "Follow the instruction which appear on your Ledger’s Trusted Display." }, + "loading": { + "title": "Hang tight...", + "activation": "Your data is being end-to-end encrypted... ", + "synch": "We are updating the synched instances..." + }, "success": { "sync": "Synchronization successful!", "syncDesc": "Changes in your accounts will now automatically appear across all apps and platforms.", @@ -6731,7 +6778,7 @@ "walletSyncActivated": { "synchronize": { "title": "Synchronize", - "description": "Synchronize your app data with another Ledger Live app for a seamless experience. " + "description": "Synchronize your accounts with another Ledger Live app for a seamless experience." }, "manageKey": { "title": "Manage Key", @@ -6741,13 +6788,13 @@ "step1": { "title": "Manage your key", "titleCta": "Delete your key", - "descCta": "All your synced data will be deleted." + "descCta": "All synced accounts will be removed. This won’t affect your local accounts." }, "step2": { "delete": "Delete", "cancel": "Cancel", "title": "Do you really want to delete your encryption key?", - "desc": "By clicking delete, your devices will be unsynchronized and all synchronized data will be deleted. Rest assured that taking this action does not impact your funds. You may resync your accounts at any time." + "desc": "By clicking delete, your apps will be unsynchronized, and your backup will be deleted. Rest assured, this action does not affect your funds or your accounts in Ledger Live. You may resync your accounts at any time." } } }, @@ -6778,8 +6825,6 @@ }, "errors": { "fetching": "Something went wrong while fetching your synchronized instances.", - "trustchain": "Unexpected falsy trustchain", - "memberCredentials": "Unexpected falsy member credentials", "ledgerSyncUnavailable": "Ledger Sync is currently unavailable. This doesn’t have any impact on your assets." } }, @@ -6792,23 +6837,118 @@ "connectDevice": { "title": "Use your Ledger" } + }, + "qrCode": { + "title": "Synchronize Instances", + "show": { + "title": "Show QR", + "explanation": { + "title": "Scan and synchronize your accounts using another Ledger Live app", + "steps": { + "step1": "Open the Ledger Live app you want to sync", + "step2": "Go to <0>Settings <1>> <0>General <1>> <0>Ledger Sync <1>> <0>Synchronize", + "step3": "Scan QR code" + } + } + }, + "scan": { + "title": "Scan", + "description": "Scan QR code", + "explanation": { + "title": "Scan and synchronize your accounts using another Ledger Live app", + "steps": { + "step1": "Open the Ledger Live app you want to sync", + "step2": "Go to <0>Settings <1>> <0>General <1>> <0>Ledger Sync <1>> <0>Synchronize <1>> <0>Show QR", + "step3": "Scan QR code" + } + } + }, + "pinCode": { + "title": "Enter your code", + "desc": "Type the code displayed on the Ledger Live you want to sync with.", + "error": { + "title": "Codes do not match", + "desc": "Make sure the code you type is the one displayed on the other Ledger Live instance.", + "tryAgain": "Try again" + } + }, + "unbacked": { + "title": "You need to create your encryption key first", + "description": "Please make sure you’ve created an encryption key on one of your Ledger Live apps before continuing your synchronization.", + "cta": "Create your encryption key" + }, + "unbackedOnboarding": { + "title": "No backup detected", + "description": "Secure your other app with a Ledger then try again or continue your onboarding", + "cta": "Try again", + "cancel": "Continue without sync" + }, + "backedWithDifferentSeeds": { + "title": "These apps have different backups", + "description": "Delete your encryption key from one of the apps and try again", + "cta": "I understand" + }, + "alreadyBacked": { + "title": "These apps are already secured by a Ledger", + "cta": "I understand" + } + }, + "unbackedOnboarding": { + "title": "This Ledger doesn’t secure a backup", + "cta": "Try another Ledger", + "cancel": "Continue without sync" + }, + "alreadySecureError": { + "title": "This app is already secured by this Ledger", + "description": "If you are attempting to create a new backup, please connect the Ledger device you used to create your other encryption key.", + "cta": "I understand" + }, + "alreadySecureOtherSeedError": { + "title": "You can’t use this Ledger to sync", + "description": "If you still wish to synchronize the two apps, please delete your key and try again.", + "cta": "Delete my encryption key" } } }, "web3hub": { - "disclaimer": { - "clearSigningEnabled": "Clear signing enabled", - "checkbox": "Do not remind me again.", - "CTA": "Open {{app}}" - }, - "manifestsList": { - "title": "Explore", - "description": "Discover the best of web3 curated by Ledger" + "components": { + "disclaimer": { + "clearSigningEnabled": "Clear signing enabled", + "clearSigningDisabled": "Clear signing disabled", + "checkbox": "Do not remind me again.", + "CTA": "Open {{app}}" + }, + "manifestsList": { + "title": "Explore", + "description": "Discover the best of web3 curated by Ledger" + }, + "label": { + "clearSigning": "clear signing" + } }, "main": { + "manifestsList": { + "title": "Discover" + }, "header": { "title": "Explore web3", "placeholder": "Search or type a URL" + }, + "clearSigning": { + "title": "Clear signing" + } + }, + "app": { + "selectAccountModal": { + "networkHeader": { + "title": "Choose a network" + }, + "accountHeader": { + "title": "Choose an account" + }, + "addAccountItem": { + "name": "Add an account" + } } } } diff --git a/apps/ledger-live-mobile/src/navigation/DeeplinksProvider.tsx b/apps/ledger-live-mobile/src/navigation/DeeplinksProvider.tsx index 8f1b9163b02e..4698bb825333 100644 --- a/apps/ledger-live-mobile/src/navigation/DeeplinksProvider.tsx +++ b/apps/ledger-live-mobile/src/navigation/DeeplinksProvider.tsx @@ -13,10 +13,7 @@ import Config from "react-native-config"; import { useFlipper } from "@react-navigation/devtools"; import { useRemoteLiveAppContext } from "@ledgerhq/live-common/platform/providers/RemoteLiveAppProvider/index"; import { useFeature } from "@ledgerhq/live-common/featureFlags/index"; -import { - DEFAULT_MULTIBUY_APP_ID, - BUY_SELL_UI_APP_ID, -} from "@ledgerhq/live-common/wallet-api/constants"; +import { BUY_SELL_UI_APP_ID } from "@ledgerhq/live-common/wallet-api/constants"; import Braze from "@braze/react-native-sdk"; import { LiveAppManifest } from "@ledgerhq/live-common/platform/types"; @@ -73,8 +70,8 @@ function getProxyURL(url: string, customBuySellUiAppId?: string) { } const buySellAppIds = customBuySellUiAppId - ? [customBuySellUiAppId, DEFAULT_MULTIBUY_APP_ID, BUY_SELL_UI_APP_ID] - : [DEFAULT_MULTIBUY_APP_ID, BUY_SELL_UI_APP_ID]; + ? [customBuySellUiAppId, BUY_SELL_UI_APP_ID] + : [BUY_SELL_UI_APP_ID]; // This is to handle links set in the useFromAmountStatusMessage in LLC. // Also handles a difference in paths between LLD on LLD /platform/:app_id @@ -362,6 +359,12 @@ const linkingOptions = () => ({ [ScreenName.GenericLandingPage]: "landing-page", }, }, + + [NavigatorName.WalletSync]: { + screens: { + [ScreenName.LedgerSyncDeepLinkHandler]: "ledgersync", + }, + }, }, }, }, diff --git a/apps/ledger-live-mobile/src/newArch/components/Dummy/Drawer.tsx b/apps/ledger-live-mobile/src/newArch/components/Dummy/Drawer.tsx deleted file mode 100644 index 5809a0502d92..000000000000 --- a/apps/ledger-live-mobile/src/newArch/components/Dummy/Drawer.tsx +++ /dev/null @@ -1,18 +0,0 @@ -import React from "react"; -import QueuedDrawer from "LLM/components/QueuedDrawer"; -import { Text } from "@ledgerhq/native-ui"; - -type Props = { - isOpen: boolean; - handleClose: () => void; -}; - -const Drawer = ({ isOpen, handleClose }: Props) => { - return ( - - {"Dummy Drawer"} - - ); -}; - -export default Drawer; diff --git a/apps/ledger-live-mobile/src/newArch/components/QueuedDrawer/index.tsx b/apps/ledger-live-mobile/src/newArch/components/QueuedDrawer/index.tsx index ea9c7a153cae..bc100759a8c3 100644 --- a/apps/ledger-live-mobile/src/newArch/components/QueuedDrawer/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/components/QueuedDrawer/index.tsx @@ -63,6 +63,8 @@ const QueuedDrawer = ({ isRequestingToBeOpened = false, isForcingToBeOpened = false, onClose, + onBack, + hasBackButton, onModalHide, noCloseButton, preventBackdropClick, @@ -150,6 +152,8 @@ const QueuedDrawer = ({ preventBackdropClick={areDrawersLocked || preventBackdropClick} onClose={handleCloseUserEvent} onModalHide={handleModalHide} + onBack={onBack} + hasBackButton={hasBackButton} noCloseButton={areDrawersLocked || noCloseButton} modalStyle={style} containerStyle={containerStyle} diff --git a/apps/ledger-live-mobile/src/newArch/features/Accounts/__integrations__/addAccount.integration.test.tsx b/apps/ledger-live-mobile/src/newArch/features/Accounts/__integrations__/addAccount.integration.test.tsx index 5a304672f2a5..eae148e6b200 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Accounts/__integrations__/addAccount.integration.test.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Accounts/__integrations__/addAccount.integration.test.tsx @@ -95,6 +95,7 @@ describe("AddAccount", () => { await user.press(await screen.getByText(/import via another ledger live app/i)); }); await expect(await screen.findByText(/choose your sync method/i)).toBeVisible(); + await expect(await screen.findByText(/Scan a QR code/i)); }); /**====== Import from desktop Test =======*/ diff --git a/apps/ledger-live-mobile/src/newArch/features/Accounts/__integrations__/shared.tsx b/apps/ledger-live-mobile/src/newArch/features/Accounts/__integrations__/shared.tsx index 84154c2cd779..dfd17af52197 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Accounts/__integrations__/shared.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Accounts/__integrations__/shared.tsx @@ -7,6 +7,7 @@ import AddAccountDrawer from "LLM/features/Accounts/screens/AddAccount"; import { BaseNavigatorStackParamList } from "~/components/RootNavigator/types/BaseNavigator"; import AddAccountsNavigator from "~/components/RootNavigator/AddAccountsNavigator"; import ImportAccountsNavigator from "~/components/RootNavigator/ImportAccountsNavigator"; +import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; const MockComponent = () => { const { t } = useTranslation(); @@ -14,7 +15,6 @@ const MockComponent = () => { const openAddModal = () => setAddModalOpened(true); const closeAddModal = () => setAddModalOpened(false); - const reopenAddModal = () => setAddModalOpened(true); return ( <> @@ -30,11 +30,7 @@ const MockComponent = () => { > {t("portfolio.emptyState.buttons.import")} - + ); }; @@ -43,10 +39,12 @@ const Stack = createStackNavigator(); export function TestButtonPage() { return ( - - - - - + + + + + + + ); } diff --git a/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/components/SelectAddAccountMethod/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/components/SelectAddAccountMethod/index.tsx index e231ff3f53c4..04e96eaee1f9 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/components/SelectAddAccountMethod/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/components/SelectAddAccountMethod/index.tsx @@ -11,7 +11,7 @@ type ViewProps = { doesNotHaveAccount?: boolean; onClickAdd: () => void; onClickImport: () => void; - setWalletSyncDrawerVisible?: () => void; + onClickImportLedgerSync?: () => void; }; type AddAccountScreenProps = { @@ -26,7 +26,7 @@ function View({ isReadOnlyModeEnabled, onClickAdd, onClickImport, - setWalletSyncDrawerVisible, + onClickImportLedgerSync, doesNotHaveAccount, }: ViewProps) { const { t } = useTranslation(); @@ -45,7 +45,7 @@ function View({ rows.push({ titleKey: "addAccountsModal.drawer.walletSync.title", descriptionKey: "addAccountsModal.drawer.walletSync.description", - onPress: setWalletSyncDrawerVisible, + onPress: onClickImportLedgerSync, icon: , testID: "add-accounts-modal-wallet-sync-button", }); diff --git a/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/components/SelectAddAccountMethod/useSelectAddAccountMethodViewModel.ts b/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/components/SelectAddAccountMethod/useSelectAddAccountMethodViewModel.ts index 3c44bf7bf992..8c7c5c7b05c8 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/components/SelectAddAccountMethod/useSelectAddAccountMethodViewModel.ts +++ b/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/components/SelectAddAccountMethod/useSelectAddAccountMethodViewModel.ts @@ -11,9 +11,14 @@ import { CryptoCurrency, TokenCurrency } from "@ledgerhq/types-cryptoassets"; type AddAccountScreenProps = { currency?: CryptoCurrency | TokenCurrency | null; onClose?: () => void; + setWalletSyncDrawerVisible?: () => void; }; -const useSelectAddAccountMethodViewModel = ({ currency, onClose }: AddAccountScreenProps) => { +const useSelectAddAccountMethodViewModel = ({ + currency, + onClose, + setWalletSyncDrawerVisible, +}: AddAccountScreenProps) => { const navigation = useNavigation(); const walletSyncFeatureFlag = useFeature("llmWalletSync"); @@ -37,11 +42,16 @@ const useSelectAddAccountMethodViewModel = ({ currency, onClose }: AddAccountScr }, []); const onClickImport = useCallback(() => { - trackButtonClick("Import from Desktop"); + trackButtonClick("Import via another Ledger Live app"); onClose?.(); navigation.navigate(NavigatorName.ImportAccounts); }, [navigation, trackButtonClick, onClose]); + const onClickImportLedgerSync = useCallback(() => { + trackButtonClick("Import via another Ledger Live app"); + setWalletSyncDrawerVisible?.(); + }, [trackButtonClick, setWalletSyncDrawerVisible]); + const onClickAdd = useCallback(() => { trackButtonClick("With your Ledger"); onClose?.(); @@ -53,6 +63,7 @@ const useSelectAddAccountMethodViewModel = ({ currency, onClose }: AddAccountScr isReadOnlyModeEnabled, onClickAdd, onClickImport, + onClickImportLedgerSync, }; }; diff --git a/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/components/StepFlow.tsx b/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/components/StepFlow.tsx new file mode 100644 index 000000000000..3b6aa7cc300b --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/components/StepFlow.tsx @@ -0,0 +1,126 @@ +import React from "react"; +import SelectAddAccountMethod from "./SelectAddAccountMethod"; +import ChooseSyncMethod from "LLM/features/WalletSync/screens/Synchronize/ChooseMethod"; +import QrCodeMethod from "LLM/features/WalletSync/screens/Synchronize/QrCodeMethod"; +import { TrackScreen } from "~/analytics"; +import { CryptoCurrency, TokenCurrency } from "@ledgerhq/types-cryptoassets"; +import { AnalyticsPage } from "LLM/features/WalletSync/hooks/useLedgerSyncAnalytics"; +import { Options, Steps } from "LLM/features/WalletSync/types/Activation"; +import SyncError from "LLM/features/WalletSync/screens/Synchronize/SyncError"; +import PinCodeDisplay from "LLM/features/WalletSync/screens/Synchronize/PinCodeDisplay"; +import PinCodeInput from "LLM/features/WalletSync/screens/Synchronize/PinCodeInput"; +import { useInitMemberCredentials } from "LLM/features/WalletSync/hooks/useInitMemberCredentials"; +import { useSyncWithQrCode } from "LLM/features/WalletSync/hooks/useSyncWithQrCode"; +import { SpecificError } from "LLM/features/WalletSync/components/Error/SpecificError"; +import { ErrorReason } from "LLM/features/WalletSync/hooks/useSpecificError"; +import { useCurrentStep } from "LLM/features/WalletSync/hooks/useCurrentStep"; + +type Props = { + currency?: CryptoCurrency | TokenCurrency | null; + doesNotHaveAccount?: boolean; + setCurrentOption: (option: Options) => void; + currentOption: Options; + navigateToChooseSyncMethod: () => void; + navigateToQrCodeMethod: () => void; + onCreateKey: () => void; + onQrCodeScanned: () => void; + qrProcess: { + url: string | null; + error: Error | null; + isLoading: boolean; + pinCode: string | null; + }; +}; + +const StepFlow = ({ + doesNotHaveAccount, + currency, + setCurrentOption, + currentOption, + navigateToChooseSyncMethod, + navigateToQrCodeMethod, + onQrCodeScanned, + qrProcess, + onCreateKey, +}: Props) => { + const { currentStep, setCurrentStep } = useCurrentStep(); + const { memberCredentials } = useInitMemberCredentials(); + + const { handleStart, handleSendDigits, inputCallback, nbDigits } = useSyncWithQrCode(); + + const handleQrCodeScanned = (data: string) => { + onQrCodeScanned(); + if (memberCredentials) handleStart(data, memberCredentials); + }; + + const handlePinCodeSubmit = (input: string) => { + if (input && inputCallback && nbDigits === input.length) handleSendDigits(inputCallback, input); + }; + + const getScene = () => { + switch (currentStep) { + case Steps.AddAccountMethod: + return ( + <> + + + + ); + case Steps.ChooseSyncMethod: + return ( + <> + + + + ); + case Steps.QrCodeMethod: + return ( + + ); + + case Steps.PinDisplay: + return qrProcess.pinCode ? : null; + + case Steps.PinInput: + return nbDigits ? ( + + ) : null; + + case Steps.SyncError: + return ; + + case Steps.UnbackedError: + return ; + + case Steps.AlreadyBacked: + return ( + setCurrentStep(Steps.QrCodeMethod)} + error={ErrorReason.ALREADY_BACKED_SCAN} + /> + ); + + case Steps.BackedWithDifferentSeeds: + return ( + setCurrentStep(Steps.QrCodeMethod)} + error={ErrorReason.DIFFERENT_BACKUPS} + /> + ); + default: + return null; + } + }; + + return getScene(); +}; + +export default StepFlow; diff --git a/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/index.tsx index e3052d4e88e2..eec0ef8475a4 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/index.tsx @@ -1,60 +1,61 @@ import React from "react"; import useAddAccountViewModel from "./useAddAccountViewModel"; import QueuedDrawer from "~/components/QueuedDrawer"; -import { TrackScreen } from "~/analytics"; -import SelectAddAccountMethod from "./components/SelectAddAccountMethod"; import { CryptoCurrency, TokenCurrency } from "@ledgerhq/types-cryptoassets"; -import ChooseSyncMethod from "LLM/features/WalletSync/screens/Synchronize/ChooseMethod"; +import DrawerHeader from "LLM/features/WalletSync/components/Synchronize/DrawerHeader"; +import { Flex } from "@ledgerhq/native-ui"; +import StepFlow from "./components/StepFlow"; +import { Steps } from "LLM/features/WalletSync/types/Activation"; +import { useCurrentStep } from "LLM/features/WalletSync/hooks/useCurrentStep"; -type ViewProps = { - isAddAccountDrawerVisible: boolean; - doesNotHaveAccount?: boolean; - currency?: CryptoCurrency | TokenCurrency | null; - isWalletSyncDrawerVisible: boolean; - onCloseAddAccountDrawer: () => void; - reopenDrawer: () => void; - onRequestToOpenWalletSyncDrawer: () => void; - onCloseWalletSyncDrawer: () => void; -}; +type ViewProps = ReturnType & AddAccountProps; type AddAccountProps = { isOpened: boolean; currency?: CryptoCurrency | TokenCurrency | null; doesNotHaveAccount?: boolean; onClose: () => void; - reopenDrawer: () => void; }; function View({ isAddAccountDrawerVisible, doesNotHaveAccount, currency, - isWalletSyncDrawerVisible, onCloseAddAccountDrawer, - onRequestToOpenWalletSyncDrawer, - onCloseWalletSyncDrawer, + onGoBack, + currentOption, + setCurrentOption, + navigateToChooseSyncMethod, + navigateToQrCodeMethod, + qrProcess, + onQrCodeScanned, + onCreateKey, }: ViewProps) { + const { currentStep } = useCurrentStep(); + const CustomDrawerHeader = () => ; + return ( - <> - - - + + - - - - - + + ); } diff --git a/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/useAddAccountViewModel.ts b/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/useAddAccountViewModel.ts index c5702e01b3c8..999a2593598f 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/useAddAccountViewModel.ts +++ b/apps/ledger-live-mobile/src/newArch/features/Accounts/screens/AddAccount/useAddAccountViewModel.ts @@ -1,16 +1,51 @@ -import { useCallback, useState } from "react"; +import { useCallback, useEffect, useState } from "react"; import { track } from "~/analytics"; -import { CryptoCurrency, TokenCurrency } from "@ledgerhq/types-cryptoassets"; +import { useQRCodeHost } from "LLM/features/WalletSync/hooks/useQRCodeHost"; +import { Options, Steps } from "LLM/features/WalletSync/types/Activation"; +import { NavigatorName, ScreenName } from "~/const"; +import { useNavigation } from "@react-navigation/native"; +import { BaseComposite, StackNavigatorProps } from "~/components/RootNavigator/types/helpers"; +import { WalletSyncNavigatorStackParamList } from "~/components/RootNavigator/types/WalletSyncNavigator"; +import { useCurrentStep } from "LLM/features/WalletSync/hooks/useCurrentStep"; type AddAccountDrawerProps = { isOpened: boolean; - currency?: CryptoCurrency | TokenCurrency | null; onClose: () => void; - reopenDrawer: () => void; }; -const useAddAccountViewModel = ({ isOpened, onClose, reopenDrawer }: AddAccountDrawerProps) => { - const [isWalletSyncDrawerVisible, setWalletSyncDrawerVisible] = useState(false); +type NavigationProps = BaseComposite< + StackNavigatorProps +>; + +const startingStep = Steps.AddAccountMethod; + +const useAddAccountViewModel = ({ isOpened, onClose }: AddAccountDrawerProps) => { + const { currentStep, setCurrentStep } = useCurrentStep(); + const [currentOption, setCurrentOption] = useState(Options.SCAN); + const navigateToChooseSyncMethod = () => setCurrentStep(Steps.ChooseSyncMethod); + const navigateToQrCodeMethod = () => setCurrentStep(Steps.QrCodeMethod); + const navigation = useNavigation(); + const onGoBack = () => setCurrentStep(getPreviousStep(currentStep)); + + useEffect(() => { + setCurrentStep(startingStep); + }, [setCurrentStep]); + + const reset = () => { + setCurrentStep(startingStep); + setCurrentOption(Options.SCAN); + }; + + const getPreviousStep = useCallback((step: Steps): Steps => { + switch (step) { + case Steps.QrCodeMethod: + return Steps.ChooseSyncMethod; + case Steps.ChooseSyncMethod: + return Steps.AddAccountMethod; + default: + return startingStep; + } + }, []); const trackButtonClick = useCallback((button: string) => { track("button_clicked", { @@ -19,27 +54,40 @@ const useAddAccountViewModel = ({ isOpened, onClose, reopenDrawer }: AddAccountD }); }, []); - const onCloseAddAccountDrawer = useCallback(() => { + const onCloseAddAccountDrawer = () => { trackButtonClick("Close 'x'"); onClose(); - }, [trackButtonClick, onClose]); - - const onCloseWalletSyncDrawer = () => { - setWalletSyncDrawerVisible(false); - reopenDrawer(); + reset(); }; - const onRequestToOpenWalletSyncDrawer = () => { - onCloseAddAccountDrawer(); - setWalletSyncDrawerVisible(true); + const { url, error, isLoading, pinCode } = useQRCodeHost({ + currentOption, + }); + + const onCreateKey = () => { + navigation.navigate(NavigatorName.WalletSync, { + screen: ScreenName.WalletSyncActivationProcess, + }); }; + const onQrCodeScanned = () => setCurrentStep(Steps.PinInput); + return { isAddAccountDrawerVisible: isOpened, - isWalletSyncDrawerVisible, onCloseAddAccountDrawer, - onCloseWalletSyncDrawer, - onRequestToOpenWalletSyncDrawer, + navigateToQrCodeMethod, + navigateToChooseSyncMethod, + setCurrentOption, + currentOption, + onQrCodeScanned, + onGoBack, + qrProcess: { + url, + error, + isLoading, + pinCode, + }, + onCreateKey, }; }; diff --git a/apps/ledger-live-mobile/src/newArch/features/Market/screens/MarketDetail/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Market/screens/MarketDetail/index.tsx index 61b2f60ede2a..c85db7b8fb61 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Market/screens/MarketDetail/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Market/screens/MarketDetail/index.tsx @@ -1,5 +1,6 @@ import React, { memo, useMemo, useState } from "react"; import { useTheme } from "styled-components/native"; +import FeatureToggle from "@ledgerhq/live-common/featureFlags/FeatureToggle"; import { Flex, ScrollContainerHeader, Text } from "@ledgerhq/native-ui"; import { FlatList, Image, RefreshControl } from "react-native"; import { useTranslation } from "react-i18next"; @@ -17,6 +18,7 @@ import MarketGraph from "./components/MarketGraph"; import { ScreenName } from "~/const"; import { withDiscreetMode } from "~/context/DiscreetModeContext"; import { FabMarketActions } from "~/components/FabActions/actionsList/market"; +import { MarketQuickActions } from "~/components/MarketQuickActions"; import BackButton from "./components/BackButton"; import { Item } from "~/components/Graph/types"; import { @@ -138,13 +140,18 @@ function View({ {internalCurrency ? ( - - - + + + + } + /> ) : null} } @@ -166,6 +173,12 @@ function View({ currency={internalCurrency} /> + {internalCurrency && ( + + + + )} + {accounts?.length > 0 ? ( {t("accounts.title")} diff --git a/apps/ledger-live-mobile/src/newArch/features/Market/screens/MarketList/components/BottomSection/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Market/screens/MarketList/components/BottomSection/index.tsx index fa87897bd17b..fba48b93b920 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Market/screens/MarketList/components/BottomSection/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Market/screens/MarketList/components/BottomSection/index.tsx @@ -9,7 +9,7 @@ import { ScreenName } from "~/const"; import { MarketListRequestParams, Order } from "@ledgerhq/live-common/market/utils/types"; import TrackScreen from "~/analytics/TrackScreen"; import useBottomSectionViewModel from "./useBottomSectionViewModel"; -import { RANGES } from "~/newArch/features/Market/utils"; +import { RANGES } from "LLM/features/Market/utils"; import { LIMIT } from "~/reducers/market"; const SORT_OPTIONS = { diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/WalletSyncNavigator.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/WalletSyncNavigator.tsx index cc979921e68d..83760d451e15 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/WalletSyncNavigator.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/WalletSyncNavigator.tsx @@ -1,4 +1,4 @@ -import React, { useMemo } from "react"; +import React, { useCallback, useMemo } from "react"; import { createStackNavigator } from "@react-navigation/stack"; import { useTheme } from "styled-components/native"; import { ScreenName } from "~/const"; @@ -7,12 +7,20 @@ import { WalletSyncNavigatorStackParamList } from "../../../components/RootNavig import WalletSyncActivation from "LLM/features/WalletSync/screens/Activation"; import { ActivationProcess } from "./screens/Activation/ActivationProcess"; import { ActivationSuccess } from "./screens/Activation/ActivationSuccess"; +import { ActivationLoading } from "./screens/Activation/ActivationLoading"; import { useInitMemberCredentials } from "./hooks/useInitMemberCredentials"; import WalletSyncManage from "./screens/Manage"; import { useTranslation } from "react-i18next"; import { WalletSyncManageKeyDeletionSuccess } from "./screens/ManageKey/DeletionSuccess"; import { ManageInstancesProcess } from "./screens/ManageInstances/ManageInstancesProcess"; import { WalletSyncManageInstanceDeletionSuccess } from "./screens/ManageInstances/DeletionSuccess"; +import { LedgerSyncDeepLinkHandler } from "./screens/LedgerSyncDeepLinkHandler"; +import { NavigationHeaderCloseButton } from "~/components/NavigationHeaderCloseButton"; +import { useClose } from "./hooks/useClose"; +import { track } from "~/analytics"; +import { AnalyticsPage } from "./hooks/useLedgerSyncAnalytics"; +import { NavigationHeaderBackButton } from "~/components/NavigationHeaderBackButton"; +import { NavigationProp } from "@react-navigation/native"; const Stack = createStackNavigator(); @@ -21,6 +29,18 @@ export default function WalletSyncNavigator() { const stackNavConfig = useMemo(() => getStackNavigatorConfig(colors), [colors]); const { t } = useTranslation(); useInitMemberCredentials(); + const close = useClose(); + + const onHeaderBackButtonPress = useCallback( + (navigation: NavigationProp) => { + track("button_clicked", { + button: "Back", + page: AnalyticsPage.LedgerSyncSettings, + }); + navigation.goBack(); + }, + [], + ); return ( @@ -40,6 +60,15 @@ export default function WalletSyncNavigator() { headerRight: () => null, }} /> + null, + headerRight: () => , + }} + /> ({ title: t("walletSync.title"), headerRight: () => null, - }} + headerLeft: () => ( + onHeaderBackButtonPress(navigation)} /> + ), + })} /> null, }} /> + null, + }} + /> ); } diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/manageInstances.integration.test.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/manageInstances.integration.test.tsx index 3db0a22d70ea..04ec052ca800 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/manageInstances.integration.test.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/manageInstances.integration.test.tsx @@ -1,5 +1,5 @@ import React from "react"; -import { screen } from "@testing-library/react-native"; +import { screen, waitFor } from "@testing-library/react-native"; import { render } from "@tests/test-renderer"; import { WalletSyncSettingsNavigator } from "./shared"; import { State } from "~/reducers/types"; @@ -30,6 +30,7 @@ jest.mock("../hooks/useGetMembers", () => ({ data: INSTANCES, isError: false, error: null, + refetch: jest.fn(), }), })); @@ -120,4 +121,31 @@ describe("ManageInstances", () => { const myInstance = screen.getByTestId("walletSync-manage-instance-2"); expect(myInstance).toBeDefined(); }); + it("Should redirect to the Manage Key screen", async () => { + const { user } = render(, { + overrideInitialState: (state: State) => ({ + ...state, + settings: { + ...state.settings, + readOnlyModeEnabled: false, + overriddenFeatureFlags: { llmWalletSync: { enabled: true } }, + }, + trustchain: { + ...state.trustchain, + trustchain, + memberCredentials: { + privatekey: "privatekey", + pubkey: "currentInstance", + }, + }, + }), + }); + + await user.press(await screen.findByText(/ledger sync/i)); + await user.press(await screen.findByText(/Manage now/i)); + await user.press(screen.getAllByText("Remove")[0]); + expect(screen.getByText(/You can’t remove the current instance/i)).toBeDefined(); + await user.press(await screen.findByText(/Delete my encryption key/i)); + await waitFor(() => screen.findByText(/Manage your key/i)); + }); }); diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/scanQRCode.integration.test.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/scanQRCode.integration.test.tsx new file mode 100644 index 000000000000..9a21ca420ce4 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/scanQRCode.integration.test.tsx @@ -0,0 +1,17 @@ +import React from "react"; +import { render, screen } from "@tests/test-renderer"; + +import { INITIAL_TEST, WalletSyncSettingsNavigator } from "./shared"; + +describe("scanQRCode", () => { + it("Should open the QR code scene when 'scan a qr code' toggle is pressed", async () => { + const { user } = render(, { + overrideInitialState: INITIAL_TEST, + }); + await user.press(await screen.findByText(/ledger sync/i)); + await user.press(await screen.findByText(/Already synced a Ledger Live app?/i)); + await user.press(await screen.findByText(/scan a qr code/i)); + await expect(screen.queryAllByText(/show qr/i)).toHaveLength(2); + await expect(screen.getByTestId("ws-scan-camera")).toBeVisible(); + }); +}); diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/shared.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/shared.tsx index a601c6e486c1..30ea734f2c5f 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/shared.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/shared.tsx @@ -3,11 +3,14 @@ import { createStackNavigator } from "@react-navigation/stack"; import { NavigatorName, ScreenName } from "~/const"; import GeneralSettings from "~/screens/Settings/General"; import { SettingsNavigatorStackParamList } from "~/components/RootNavigator/types/SettingsNavigator"; - +import { getSdk } from "@ledgerhq/trustchain/index"; import { WalletSyncNavigatorStackParamList } from "~/components/RootNavigator/types/WalletSyncNavigator"; import WalletSyncNavigator from "../WalletSyncNavigator"; import { BaseNavigatorStackParamList } from "~/components/RootNavigator/types/BaseNavigator"; import { QueryClientProvider, QueryClient } from "@tanstack/react-query"; +import { State } from "~/reducers/types"; +import getWalletSyncEnvironmentParams from "@ledgerhq/live-common/walletSync/getEnvironmentParams"; +import { EMPTY } from "rxjs"; const Stack = createStackNavigator< BaseNavigatorStackParamList & SettingsNavigatorStackParamList & WalletSyncNavigatorStackParamList @@ -41,3 +44,38 @@ export function WalletSyncSharedNavigator() { ); } + +export const simpleTrustChain = { + rootId: "rootId", + deviceId: "deviceId", + applicationPath: "applicationPath", + trustchainId: "trustchainId", + walletSyncEncryptionKey: "walletSyncEncryptionKey", +}; + +export const INITIAL_TEST = (state: State) => ({ + ...state, + settings: { + ...state.settings, + readOnlyModeEnabled: false, + overriddenFeatureFlags: { + llmWalletSync: { + enabled: true, + params: { + environment: "STAGING", + watchConfig: {}, + }, + }, + }, + }, +}); + +export const mockedSdk = getSdk( + true, + { + applicationId: 12, + name: "LLD Integration", + apiBaseUrl: getWalletSyncEnvironmentParams("STAGING").trustchainApiBaseUrl, + }, + () => () => EMPTY, +); diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/synchronizeWithQrCode.integration.test.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/synchronizeWithQrCode.integration.test.tsx new file mode 100644 index 000000000000..c2eb0e0fe71d --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/synchronizeWithQrCode.integration.test.tsx @@ -0,0 +1,54 @@ +import React from "react"; +import { render, screen, waitFor } from "@tests/test-renderer"; + +import { INITIAL_TEST, WalletSyncSettingsNavigator } from "./shared"; +import getWalletSyncEnvironmentParams from "@ledgerhq/live-common/walletSync/getEnvironmentParams"; + +jest.mock("../hooks/useQRCodeHost", () => ({ + useQRCodeHost: () => ({ + currentOption: jest.fn(), + url: "ledger.com", + }), +})); + +jest.mock("@ledgerhq/trustchain/qrcode/index", () => ({ + createQRCodeHostInstance: () => + Promise.resolve({ + trustchainApiBaseUrl: getWalletSyncEnvironmentParams("STAGING").trustchainApiBaseUrl, + onDisplayQRCode: jest.fn().mockImplementation(url => url), + onDisplayDigits: jest.fn().mockImplementation(digits => digits), + addMember: jest.fn(), + }), +})); + +describe("SynchronizeWithQrCode", () => { + it("Should display the QR code when 'show qr' toggle is pressed and add a new member through the flow", async () => { + const { user } = render(, { + overrideInitialState: INITIAL_TEST, + }); + await user.press(await screen.findByText(/ledger sync/i)); + await user.press(await screen.findByText(/Already synced a Ledger Live app?/i)); + await user.press(await screen.findByText(/scan a qr code/i)); + await user.press(await screen.queryAllByText(/show qr/i)[0]); + expect(await screen.getByTestId("ws-qr-code-displayed")).toBeVisible(); + + //PinCode Page after scanning QRCode + // Need to wait 3 seconds to simulate the time taken to scan the QR code + setTimeout(async () => { + await waitFor(() => { + expect(screen.getByText("Enter the code")).toBeDefined(); + }); + }, 3000); + + //Succes Page after PinCode + setTimeout(async () => { + await waitFor(() => { + expect( + screen.getByText( + "Changes in your accounts will now automatically appear across all apps and platforms.", + ), + ).toBeDefined(); + }); + }, 3000); + }); +}); diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/useWatchWalletSync.test.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/useWatchWalletSync.test.ts new file mode 100644 index 000000000000..9a1d1ce9c74d --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/useWatchWalletSync.test.ts @@ -0,0 +1,58 @@ +import { renderHook } from "@tests/test-renderer"; +import { mockedSdk, simpleTrustChain } from "./shared"; +import { useWatchWalletSync } from "../hooks/useWatchWalletSync"; +import { State } from "~/reducers/types"; + +const INITIAL_STATE = (state: State) => ({ + ...state, + trustchain: { + trustchain: simpleTrustChain, + memberCredentials: { + pubkey: "currentInstance", + privatekey: "privatekey", + }, + }, + settings: { + ...state.settings, + readOnlyModeEnabled: false, + overriddenFeatureFlags: { + llmWalletSync: { + enabled: true, + params: { + environment: "STAGING", + watchConfig: {}, + }, + }, + }, + }, +}); + +jest.mock("../hooks/useTrustchainSdk", () => ({ + useTrustchainSdk: () => ({ + getMembers: (mockedSdk.getMembers = jest.fn()), + removeMember: (mockedSdk.removeMember = jest.fn()), + initMemberCredentials: (mockedSdk.initMemberCredentials = jest.fn()), + }), +})); + +describe("useWatchWalletSync", () => { + it("should not run ledger sync watch loop when ff is disabled", async () => { + const { result, store } = renderHook(() => useWatchWalletSync(), {}); + + expect(store.getState().settings.overriddenFeatureFlags.llmWalletSync).not.toBeDefined(); + expect(result.current.visualPending).toBe(false); + expect(result.current.walletSyncError).toBe(null); + expect(result.current.onUserRefresh).toBeInstanceOf(Function); + expect(result.current.onUserRefresh).not.toThrow(); + }); + + it("should run ledger sync watch loop when ff is enabled", async () => { + const { result, store } = renderHook(() => useWatchWalletSync(), { + overrideInitialState: INITIAL_STATE, + }); + + expect(store?.getState()?.settings.overriddenFeatureFlags.llmWalletSync?.enabled).toBe(true); + expect(result.current.visualPending).toBe(true); + expect(result.current.walletSyncError).toBe(null); + }); +}); diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/walletSyncSettings.integration.test.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/walletSyncSettings.integration.test.tsx index 16b6d080ee28..e188d015c903 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/walletSyncSettings.integration.test.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/walletSyncSettings.integration.test.tsx @@ -1,44 +1,29 @@ import React from "react"; import { screen } from "@testing-library/react-native"; import { render } from "@tests/test-renderer"; -import { WalletSyncSettingsNavigator } from "./shared"; -import { State } from "~/reducers/types"; +import { INITIAL_TEST, WalletSyncSettingsNavigator } from "./shared"; describe("WalletSyncSettings", () => { - it("Should open wallet sync activation flow page from settings", async () => { - const { user } = render(, { - overrideInitialState: (state: State) => ({ - ...state, - settings: { - ...state.settings, - readOnlyModeEnabled: false, - overriddenFeatureFlags: { - llmWalletSync: { - enabled: true, - params: { - environment: "STAGING", - watchConfig: {}, - }, - }, - }, - }, - }), - }); - - // Check if the ledger sync row is visible + it("Should display the ledger sync row", async () => { + render(, { overrideInitialState: INITIAL_TEST }); await expect(await screen.findByText(/ledger sync/i)).toBeVisible(); + }); - // On Press the ledger sync row + it("Should open the activation drawer when ledger sync row is pressed", async () => { + const { user } = render(, { + overrideInitialState: INITIAL_TEST, + }); await user.press(await screen.findByText(/ledger sync/i)); - - // Check if the activation screen is visible await expect(await screen.findByText(/sync your accounts across all platforms/i)).toBeVisible(); - await expect(await screen.findByText(/already created a key?/i)).toBeVisible(); - - // On Press the already created a key link - await user.press(await screen.findByText(/already created a key?/i)); + await expect(await screen.findByText(/Already synced a Ledger Live app?/i)).toBeVisible(); + }); - // Check if the drawer is visible - await expect(await screen.findByText(/Choose your sync method/i)).toBeVisible(); + it("Should open the drawer when 'already created a key' button is pressed", async () => { + const { user } = render(, { + overrideInitialState: INITIAL_TEST, + }); + await user.press(await screen.findByText(/ledger sync/i)); + await user.press(await screen.findByText(/Already synced a Ledger Live app?/i)); + await expect(await screen.findByText(/choose your sync method/i)).toBeVisible(); }); }); diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/walletSyncStatus.integration.test.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/walletSyncStatus.integration.test.tsx new file mode 100644 index 000000000000..d6f803417a64 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/__integrations__/walletSyncStatus.integration.test.tsx @@ -0,0 +1,56 @@ +import React from "react"; +import { screen } from "@testing-library/react-native"; +import { render } from "@tests/test-renderer"; +import { WalletSyncSettingsNavigator } from "./shared"; +import { State } from "~/reducers/types"; + +jest.mock("../hooks/useLedgerSyncStatus", () => ({ + useLedgerSyncStatus: () => ({ + error: new Error(), + isError: true, + }), +})); + +describe("WalletSyncStatus", () => { + it("Should display warning banner when LedgerSync is down", async () => { + const { user } = render(, { + overrideInitialState: (state: State) => ({ + ...state, + settings: { + ...state.settings, + readOnlyModeEnabled: false, + overriddenFeatureFlags: { + llmWalletSync: { + enabled: true, + params: { + environment: "STAGING", + watchConfig: { + pollingInterval: 10000, + initialTimeout: 5000, + userIntentDebounce: 1000, + }, + }, + }, + }, + }, + trustchain: { + ...state.trustchain, + trustchain: { + rootId: "rootId", + applicationPath: "applicationPath", + walletSyncEncryptionKey: "walletSyncEncryptionKey", + }, + }, + }), + }); + + // Check if the ledger sync row is visible + await expect(await screen.findByText(/ledger sync/i)).toBeVisible(); + + // On Press the ledger sync row + await user.press(await screen.findByText(/ledger sync/i)); + + // Check if the activation screen is visible + expect(await screen.findByText(/Ledger Sync is currently unavailable./i)).toBeVisible(); + }); +}); diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Activation/Actions.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Activation/Actions.tsx index aaa2773b9122..6f0717f501fc 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Activation/Actions.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Activation/Actions.tsx @@ -2,11 +2,10 @@ import React from "react"; import { Flex, Button, Link } from "@ledgerhq/native-ui"; import { useTranslation } from "react-i18next"; import { - useWalletSyncAnalytics, + useLedgerSyncAnalytics, AnalyticsButton, AnalyticsPage, - AnalyticsFlow, -} from "LLM/features/WalletSync/hooks/useWalletSyncAnalytics"; +} from "LLM/features/WalletSync/hooks/useLedgerSyncAnalytics"; type Props = { onPressSyncAccounts: () => void; @@ -15,13 +14,13 @@ type Props = { const Actions = ({ onPressSyncAccounts, onPressHasAlreadyCreatedAKey }: Props) => { const { t } = useTranslation(); - const { onClickTrack } = useWalletSyncAnalytics(); + const { onClickTrack } = useLedgerSyncAnalytics(); const onPressSync = () => { onClickTrack({ button: AnalyticsButton.SyncYourAccounts, - page: AnalyticsPage.ActivateWalletSync, - flow: AnalyticsFlow.WalletSync, + page: AnalyticsPage.ActivateLedgerSync, + hasFlow: true, }); onPressSyncAccounts(); }; @@ -29,8 +28,8 @@ const Actions = ({ onPressSyncAccounts, onPressHasAlreadyCreatedAKey }: Props) = const onPressHasAlreadyAKey = () => { onClickTrack({ button: AnalyticsButton.AlreadyCreatedKey, - page: AnalyticsPage.ActivateWalletSync, - flow: AnalyticsFlow.WalletSync, + page: AnalyticsPage.ActivateLedgerSync, + hasFlow: true, }); onPressHasAlreadyCreatedAKey(); }; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Activation/ActivationFlow.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Activation/ActivationFlow.tsx new file mode 100644 index 000000000000..32a1ff056042 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Activation/ActivationFlow.tsx @@ -0,0 +1,148 @@ +import { useNavigation } from "@react-navigation/native"; +import React from "react"; +import { useSelector } from "react-redux"; +import Activation from "."; +import { TrackScreen } from "~/analytics"; +import { + RootNavigationComposite, + StackNavigatorNavigation, +} from "~/components/RootNavigator/types/helpers"; +import { BaseNavigatorStackParamList } from "~/components/RootNavigator/types/BaseNavigator"; +import { NavigatorName, ScreenName } from "~/const"; +import { hasCompletedOnboardingSelector } from "~/reducers/settings"; +import ChooseSyncMethod from "../../screens/Synchronize/ChooseMethod"; +import QrCodeMethod from "../../screens/Synchronize/QrCodeMethod"; +import { Options, Steps } from "../../types/Activation"; +import { AnalyticsPage } from "../../hooks/useLedgerSyncAnalytics"; +import PinCodeDisplay from "../../screens/Synchronize/PinCodeDisplay"; +import PinCodeInput from "../../screens/Synchronize/PinCodeInput"; +import SyncError from "../../screens/Synchronize/SyncError"; +import { useInitMemberCredentials } from "../../hooks/useInitMemberCredentials"; +import { useSyncWithQrCode } from "../../hooks/useSyncWithQrCode"; +import { SpecificError } from "../Error/SpecificError"; +import { ErrorReason } from "../../hooks/useSpecificError"; +import { useCurrentStep } from "../../hooks/useCurrentStep"; + +type Props = { + navigateToChooseSyncMethod: () => void; + navigateToQrCodeMethod: () => void; + qrProcess: { + url: string | null; + error: Error | null; + isLoading: boolean; + pinCode: string | null; + }; + onQrCodeScanned: () => void; + currentOption: Options; + setOption: (option: Options) => void; + onCreateKey: () => void; +}; + +const ActivationFlow = ({ + navigateToChooseSyncMethod, + navigateToQrCodeMethod, + qrProcess, + currentOption, + setOption, + onQrCodeScanned, + onCreateKey, +}: Props) => { + const { currentStep, setCurrentStep } = useCurrentStep(); + const { memberCredentials } = useInitMemberCredentials(); + + const { handleStart, handleSendDigits, inputCallback, nbDigits } = useSyncWithQrCode(); + + const handleQrCodeScanned = (data: string) => { + onQrCodeScanned(); + if (memberCredentials) handleStart(data, memberCredentials); + }; + + const handlePinCodeSubmit = (input: string) => { + if (input && inputCallback && nbDigits === input.length) handleSendDigits(inputCallback, input); + }; + + const hasCompletedOnboarding = useSelector(hasCompletedOnboardingSelector); + const { navigate } = + useNavigation>>(); + + const getScene = () => { + switch (currentStep) { + case Steps.Activation: + return ( + <> + + + + ); + case Steps.ChooseSyncMethod: + return ( + <> + + + + ); + case Steps.QrCodeMethod: + return ( + + ); + + case Steps.PinDisplay: + return qrProcess.pinCode ? : null; + + case Steps.PinInput: + return nbDigits ? ( + + ) : null; + + case Steps.SyncError: + return ; + + case Steps.UnbackedError: + if (!hasCompletedOnboarding) { + return ( + { + navigate(NavigatorName.BaseOnboarding, { + screen: NavigatorName.Onboarding, + params: { + screen: ScreenName.OnboardingPostWelcomeSelection, + params: { userHasDevice: true }, + }, + }); + }} + error={ErrorReason.NO_BACKUP_ONBOARDING_QRCODE} + /> + ); + } + return ; + + case Steps.AlreadyBacked: + return ( + setCurrentStep(Steps.QrCodeMethod)} + error={ErrorReason.ALREADY_BACKED_SCAN} + /> + ); + + case Steps.BackedWithDifferentSeeds: + return ( + setCurrentStep(Steps.QrCodeMethod)} + error={ErrorReason.DIFFERENT_BACKUPS} + /> + ); + default: + return null; + } + }; + + return getScene(); +}; + +export default ActivationFlow; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Activation/index.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Activation/index.tsx index 626acbb014ba..11b1d8641329 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Activation/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Activation/index.tsx @@ -4,36 +4,22 @@ import IconsHeader from "./IconsHeader"; import { Flex, Text } from "@ledgerhq/native-ui"; import { useTranslation } from "react-i18next"; import { useTheme } from "styled-components/native"; -import { TrackScreen } from "~/analytics"; import { useInitMemberCredentials } from "../../hooks/useInitMemberCredentials"; -import QueuedDrawer from "~/components/QueuedDrawer"; -import ChooseSyncMethod from "../../screens/Synchronize/ChooseMethod"; -type Props = T extends true - ? { isInsideDrawer: T; openSyncMethodDrawer: () => void } - : { isInsideDrawer?: T; openSyncMethodDrawer?: undefined }; +type Props = { onSyncMethodPress: () => void }; -const Activation: React.FC> = ({ isInsideDrawer, openSyncMethodDrawer }) => { +const Activation: React.FC = ({ onSyncMethodPress }) => { const { colors } = useTheme(); const { t } = useTranslation(); - useInitMemberCredentials(); - const [isChooseMethodDrawerOpen, setIsChooseMethodDrawerOpen] = React.useState(false); - const onPressSyncAccounts = () => { - isInsideDrawer ? openSyncMethodDrawer() : setIsChooseMethodDrawerOpen(true); - }; + useInitMemberCredentials(); - const onPressHasAlreadyCreatedAKey = () => { - isInsideDrawer ? openSyncMethodDrawer() : setIsChooseMethodDrawerOpen(true); - }; + const onPressSyncAccounts = () => onSyncMethodPress(); - const onPressCloseDrawer = () => { - setIsChooseMethodDrawerOpen(false); - }; + const onPressHasAlreadyCreatedAKey = () => onSyncMethodPress(); return ( - @@ -54,14 +40,6 @@ const Activation: React.FC> = ({ isInsideDrawer, openSyncMethodDr onPressHasAlreadyCreatedAKey={onPressHasAlreadyCreatedAKey} onPressSyncAccounts={onPressSyncAccounts} /> - {!isInsideDrawer && ( - - - - )} ); }; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/AlertLedgerSyncDown.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/AlertLedgerSyncDown.tsx new file mode 100644 index 000000000000..dc0e0779464f --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/AlertLedgerSyncDown.tsx @@ -0,0 +1,13 @@ +import React from "react"; +import { useTranslation } from "react-i18next"; +import { Alert } from "@ledgerhq/native-ui"; + +export function AlertLedgerSyncDown() { + const { t } = useTranslation(); + return ( + + ); +} diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Error/Detailed.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Error/Detailed.tsx new file mode 100644 index 000000000000..ccca7cb91ac2 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Error/Detailed.tsx @@ -0,0 +1,81 @@ +import React from "react"; +import { Flex, Text, Button, Link, Box } from "@ledgerhq/native-ui"; +import { AnalyticsPage } from "../../hooks/useLedgerSyncAnalytics"; +import TrackScreen from "~/analytics/TrackScreen"; +import { ButtonProps } from "@ledgerhq/native-ui/components/cta/Button"; +import styled from "styled-components/native"; + +interface Props { + icon: React.ReactNode; + title: string; + description?: string; + info?: string; + cta: string; + ctaSecondary?: string; + primaryAction: () => void; + secondaryAction?: () => void; + analyticsPage: AnalyticsPage; + buttonType: ButtonProps["type"]; + outline?: boolean; +} +export function DetailedError(props: Props) { + const { + icon, + title, + description, + info, + cta, + ctaSecondary, + primaryAction, + secondaryAction, + analyticsPage, + buttonType, + outline, + } = props; + + return ( + + + {icon} + + {title} + + + + {description && ( + + {description} + + )} + {info && ( + + {info} + + )} + + + + + {ctaSecondary && secondaryAction && ( + + + {ctaSecondary} + + + )} + + + ); +} + +const Container = styled(Box)` + background-color: ${p => p.theme.colors.opacityDefault.c05}; + border-radius: 100px; + height: 72px; + width: 72px; + display: flex; + align-items: center; + justify-content: center; +`; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Error/Simple.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Error/Simple.tsx new file mode 100644 index 000000000000..44088110ed7e --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Error/Simple.tsx @@ -0,0 +1,51 @@ +import { Box, Button, Flex, Icons, Text } from "@ledgerhq/native-ui"; +import React from "react"; +import styled, { useTheme } from "styled-components/native"; +import { TrackScreen } from "~/analytics"; +type Props = { + title: string; + desc?: string; + mainButton: { + label: string; + onPress: () => void; + outline: boolean; + }; + analyticsPage: string; +}; + +export function ErrorComponent({ title, desc, mainButton, analyticsPage }: Props) { + const { colors } = useTheme(); + return ( + + + + + + + + {title} + + {desc && ( + + {desc} + + )} + + + + + + ); +} + +const Container = styled(Box)` + background-color: ${p => p.theme.colors.opacityDefault.c05}; + + height: 72px; + width: 72px; + display: flex; + align-items: center; + justify-content: center; +`; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Error/SpecificError.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Error/SpecificError.tsx new file mode 100644 index 000000000000..a9c8f6cb4c90 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Error/SpecificError.tsx @@ -0,0 +1,16 @@ +import React from "react"; +import { ErrorReason, SpecificProps, useSpecificError } from "../../hooks/useSpecificError"; +import { DetailedError } from "./Detailed"; + +export const SpecificError = ({ + error, + primaryAction, + secondaryAction, +}: SpecificProps & { + error: ErrorReason; +}) => { + const { getErrorConfig } = useSpecificError({ primaryAction, secondaryAction }); + const config = getErrorConfig(error); + + return ; +}; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/FollowInstructions/index.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/FollowInstructions/index.tsx index 9b5ad2b2e882..1aed6115bc90 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/FollowInstructions/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/FollowInstructions/index.tsx @@ -39,7 +39,7 @@ const FollowInstructions: React.FC = ({ device }) => { - {t("walletSync.deviceAction.title", { wording: getProductName(DeviceModelId.stax) })} + {t("walletSync.deviceAction.title", { wording: getProductName(device.modelId) })} {t("walletSync.deviceAction.description")} diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/ManageInstances/DeletionError.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/ManageInstances/DeletionError.tsx index cbba027bd789..86d31193acc0 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/ManageInstances/DeletionError.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/ManageInstances/DeletionError.tsx @@ -1,130 +1,11 @@ import React from "react"; -import { Box, Icons, Flex, Text, Button, Link } from "@ledgerhq/native-ui"; -import { useTranslation } from "react-i18next"; -import { - useWalletSyncAnalytics, - AnalyticsButton, - AnalyticsPage, -} from "../../hooks/useWalletSyncAnalytics"; -import styled, { useTheme } from "styled-components/native"; -import TrackScreen from "~/analytics/TrackScreen"; +import { ErrorReason, SpecificProps } from "../../hooks/useSpecificError"; +import { SpecificError } from "../Error/SpecificError"; -const Container = styled(Box)` - background-color: ${p => p.theme.colors.opacityDefault.c05}; - border-radius: 100px; - height: 72px; - width: 72px; - display: flex; - align-items: center; - justify-content: center; -`; - -export enum ErrorReason { - UNSECURED = "unsecured", - AUTO_REMOVE = "auto-remove", -} - -type Props = { +type Props = SpecificProps & { error: ErrorReason; - tryAgain?: () => void; - understood?: () => void; - goToDelete?: () => void; }; -export const DeletionError = ({ error, tryAgain, goToDelete, understood }: Props) => { - const { onClickTrack } = useWalletSyncAnalytics(); - - const onTryAgain = () => { - tryAgain?.(); - onClickTrack({ button: AnalyticsButton.UseAnother, page: errorConfig[error].analyticsPage }); - }; - const onGoToDelete = () => { - goToDelete?.(); - onClickTrack({ button: AnalyticsButton.DeleteKey, page: errorConfig[error].analyticsPage }); - }; - - const onUnderstood = () => { - understood?.(); - onClickTrack({ button: AnalyticsButton.Understand, page: errorConfig[error].analyticsPage }); - }; - const { t } = useTranslation(); - const { colors } = useTheme(); - - const errorConfig = { - [ErrorReason.UNSECURED]: { - icon: , - title: t("walletSync.walletSyncActivated.synchronizedInstances.unsecuredError.title"), - description: t( - "walletSync.walletSyncActivated.synchronizedInstances.unsecuredError.description", - ), - info: t("walletSync.walletSyncActivated.synchronizedInstances.unsecuredError.info"), - cta: t("walletSync.walletSyncActivated.synchronizedInstances.unsecuredError.cta"), - ctaSecondary: t( - "walletSync.walletSyncActivated.synchronizedInstances.unsecuredError.ctaDelete", - ), - primaryAction: onTryAgain, - secondaryAction: onGoToDelete, - analyticsPage: AnalyticsPage.RemoveInstanceWrongDevice, - }, - [ErrorReason.AUTO_REMOVE]: { - icon: , - title: t("walletSync.walletSyncActivated.synchronizedInstances.autoRemoveError.title"), - description: t( - "walletSync.walletSyncActivated.synchronizedInstances.autoRemoveError.description", - ), - info: t("walletSync.walletSyncActivated.synchronizedInstances.autoRemoveError.info"), - cta: t("walletSync.walletSyncActivated.synchronizedInstances.autoRemoveError.cta"), - ctaSecondary: t( - "walletSync.walletSyncActivated.synchronizedInstances.autoRemoveError.ctaDelete", - ), - primaryAction: onUnderstood, - secondaryAction: onGoToDelete, - analyticsPage: AnalyticsPage.AutoRemove, - }, - }; - - const getErrorConfig = (error: ErrorReason) => errorConfig[error]; - - const { - icon, - title, - description, - info, - cta, - ctaSecondary, - primaryAction, - secondaryAction, - analyticsPage, - } = getErrorConfig(error); - - return ( - - - {icon} - - {title} - - - - - {description} - - - {info} - - - - - - - - - {ctaSecondary} - - - - - ); +export const DeletionError = (props: Props) => { + return ; }; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/ManageInstances/ListInstances.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/ManageInstances/ListInstances.tsx index 45e47ea311aa..09773db612a9 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/ManageInstances/ListInstances.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/ManageInstances/ListInstances.tsx @@ -6,6 +6,8 @@ import { useTranslation } from "react-i18next"; import { TrustchainMember } from "@ledgerhq/trustchain/types"; import { TinyCard } from "../TinyCard"; import { Scene } from "../../screens/ManageInstances/useManageInstanceDrawer"; +import { TrackScreen } from "~/analytics"; +import { AnalyticsPage } from "../../hooks/useLedgerSyncAnalytics"; type Props = { onClickInstance: (member: TrustchainMember) => void; @@ -19,11 +21,7 @@ export function ListInstances({ onClickInstance, changeScene, members, currentIn const handleAutoRemove = () => changeScene(Scene.AutoRemove); - const handleGoDeleteInstance = (instance: TrustchainMember) => { - // eslint-disable-next-line no-console - console.log("delete instance IMPLEMENTED IN NEXT PR", instance); - onClickInstance(instance); - }; + const handleGoDeleteInstance = (instance: TrustchainMember) => onClickInstance(instance); const renderItem = ({ item }: ListRenderItemInfo) => { const instance = item; @@ -45,6 +43,7 @@ export function ListInstances({ onClickInstance, changeScene, members, currentIn return ( + {t("walletSync.walletSyncActivated.manageInstances.title")} @@ -54,7 +53,7 @@ export function ListInstances({ onClickInstance, changeScene, members, currentIn renderItem={renderItem} keyExtractor={s => s.id} contentContainerStyle={{ - paddingBottom: 10, + paddingBottom: 20, }} ItemSeparatorComponent={() => } /> diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/ManageKey/Confirm.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/ManageKey/Confirm.tsx index d064f0422d76..f1fc36517a79 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/ManageKey/Confirm.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/ManageKey/Confirm.tsx @@ -22,13 +22,13 @@ export function ConfirmManageKey({ onClickConfirm, onCancel }: Props) { - - diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/ManageKey/ManageKey.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/ManageKey/ManageKey.tsx index 258f7b103020..1b8ddfac5fcf 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/ManageKey/ManageKey.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/ManageKey/ManageKey.tsx @@ -4,6 +4,8 @@ import { Flex, Icons, rgba, Text } from "@ledgerhq/native-ui"; import { TouchableOpacity } from "react-native"; import styled, { useTheme } from "styled-components/native"; import { useTranslation } from "react-i18next"; +import { TrackScreen } from "~/analytics"; +import { AnalyticsPage } from "../../hooks/useLedgerSyncAnalytics"; type Props = { onClickDelete: () => void; @@ -14,6 +16,7 @@ export function ManageKey({ onClickDelete }: Props) { const { colors } = useTheme(); return ( + {t("walletSync.walletSyncActivated.manageKey.drawer.step1.title")} @@ -35,7 +38,7 @@ export function ManageKey({ onClickDelete }: Props) { > - + {t("walletSync.walletSyncActivated.manageKey.drawer.step1.titleCta")} diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Success/index.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Success/index.tsx index 90e68185ee17..c027fdb6f939 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Success/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Success/index.tsx @@ -1,6 +1,8 @@ import { Box, Button, Flex, Icons, Text } from "@ledgerhq/native-ui"; import React from "react"; import styled, { useTheme } from "styled-components/native"; +import { TrackScreen } from "~/analytics"; +import PreventNativeBack from "~/components/PreventNativeBack"; import SafeAreaView from "~/components/SafeAreaView"; type Props = { title: string; @@ -14,12 +16,15 @@ type Props = { label: string; onPress: () => void; }; + analyticsPage: string; }; -export function Success({ title, desc, mainButton, secondaryButton }: Props) { +export function Success({ title, desc, mainButton, secondaryButton, analyticsPage }: Props) { const { colors } = useTheme(); return ( + + diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/BottomContainer.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/BottomContainer.tsx new file mode 100644 index 000000000000..fe8c35ccad55 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/BottomContainer.tsx @@ -0,0 +1,61 @@ +import React from "react"; +import { ScrollContainer, Text, Flex } from "@ledgerhq/native-ui"; +import { useTranslation } from "react-i18next"; +import styled, { useTheme } from "styled-components/native"; + +type Props = { + steps: { + description: React.JSX.Element; + }[]; +}; + +const BulletPoint = styled(Flex)` + width: 16px; + height: 16px; + justify-content: center; + align-items: center; + background-color: ${({ theme }) => theme.colors.primary.c80}; + border-radius: 100px; +`; + +const FlexContainer = styled(Flex)` + margin-bottom: 16px; + display: flex; + flex-direction: row; + align-items: flex-start; + gap: 12px; +`; + +const BottomContainer = ({ steps }: Props) => { + const { colors } = useTheme(); + const { t } = useTranslation(); + + return ( + + + {t("walletSync.synchronize.qrCode.scan.explanation.title")} + + + {steps.map((step, index) => ( + + + + {index + 1} + + + {step.description} + + ))} + + + ); +}; + +export default BottomContainer; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/DrawerHeader.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/DrawerHeader.tsx new file mode 100644 index 000000000000..d94a3e7790f7 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/DrawerHeader.tsx @@ -0,0 +1,46 @@ +import React from "react"; +import { Flex, Icons, Text } from "@ledgerhq/native-ui"; +import { useTheme } from "styled-components/native"; +import { useTranslation } from "react-i18next"; +import { TouchableOpacity } from "react-native"; + +type Props = { + onClose: () => void; +}; + +const DrawerHeader: React.FC = ({ onClose }) => { + const { colors } = useTheme(); + const { t } = useTranslation(); + + return ( + + + + {t("walletSync.synchronize.qrCode.title")} + + + + + + + + + + ); +}; + +export default DrawerHeader; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/QrCode.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/QrCode.tsx new file mode 100644 index 000000000000..2c8fcc7bd687 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/QrCode.tsx @@ -0,0 +1,98 @@ +import React from "react"; +import { Flex, InfiniteLoader, Text } from "@ledgerhq/native-ui"; +import styled, { useTheme } from "styled-components/native"; +import QRCode from "react-native-qrcode-svg"; +import getWindowDimensions from "~/logic/getWindowDimensions"; +import { Trans, useTranslation } from "react-i18next"; +import BottomContainer from "./BottomContainer"; + +const Italic = styled(Text)` + font-style: italic; +`; +// Won't work since we don't have inter italic font + +type Props = { + qrCodeValue?: string | null; +}; + +const QrCode = ({ qrCodeValue }: Props) => { + const { colors } = useTheme(); + const { width } = getWindowDimensions(); + const { t } = useTranslation(); + + const backgroundBorderRadius = 23; + const backgroundPadding = 15.36; + const backgroundSize = 280; + const distanceBetweenQRCodeAndScreenBorder = 48; + + const QRSize = Math.round(width - distanceBetweenQRCodeAndScreenBorder); + const maxQRCodeSize = backgroundSize - backgroundPadding * 2; + const QRCodeSize = Math.min(QRSize - backgroundPadding, maxQRCodeSize); + + const steps = [ + { + description: ( + + {t("walletSync.synchronize.qrCode.show.explanation.steps.step1")} + + ), + }, + { + description: ( + + , + , + ]} + /> + + ), + }, + { + description: ( + + {t("walletSync.synchronize.qrCode.show.explanation.steps.step3")} + + ), + }, + ]; + + return ( + + + {qrCodeValue ? ( + + ) : ( + + )} + + + + ); +}; + +export default QrCode; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/ScanQrCode.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/ScanQrCode.tsx new file mode 100644 index 000000000000..be65994f50db --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/ScanQrCode.tsx @@ -0,0 +1,102 @@ +import React from "react"; +import { Flex, Icons, Text } from "@ledgerhq/native-ui"; +import { Trans, useTranslation } from "react-i18next"; +import styled, { useTheme } from "styled-components/native"; +import BottomContainer from "./BottomContainer"; +import { BarCodeScanningResult, Camera, CameraType } from "expo-camera"; +import { BarCodeScanner } from "expo-barcode-scanner"; +import ScanTargetSvg from "./ScanTargetSvg"; +import RequiresCameraPermissions from "~/components/RequiresCameraPermissions"; + +type Props = { + onQrCodeScanned: (data: string) => void; +}; + +const Italic = styled(Text)` + font-style: italic; +`; +// Won't work since we don't have inter italic font + +const ScanQrCode = ({ onQrCodeScanned }: Props) => { + const { t } = useTranslation(); + const { colors } = useTheme(); + + const onBarCodeScanned = ({ data }: BarCodeScanningResult) => { + onQrCodeScanned(data); + }; + + const steps = [ + { + description: ( + + {t("walletSync.synchronize.qrCode.scan.explanation.steps.step1")} + + ), + }, + { + description: ( + + , + , + ]} + /> + + ), + }, + { + description: ( + + {t("walletSync.synchronize.qrCode.scan.explanation.steps.step3")} + + ), + }, + ]; + + return ( + + + + + + + + + {t("walletSync.synchronize.qrCode.scan.description")} + + + + + + + ); +}; + +export default ScanQrCode; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/ScanTargetSvg.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/ScanTargetSvg.tsx new file mode 100644 index 000000000000..d06aed24101d --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/components/Synchronize/ScanTargetSvg.tsx @@ -0,0 +1,14 @@ +import * as React from "react"; +import Svg, { SvgProps, Path } from "react-native-svg"; +const ScanTargetSvg = (props: SvgProps) => ( + + + +); +export default ScanTargetSvg; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/type.hooks.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/type.hooks.ts index 90f47ff861d1..50aa8de14098 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/type.hooks.ts +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/type.hooks.ts @@ -1,6 +1,9 @@ export enum QueryKey { getMembers = "useGetMembers", destroyTrustchain = "useDestroyTrustchain", + fetchTrustchainStatus = "useFetchTrustchainStatus", + fetchCloudSyncStatus = "useFetchCloudSyncStatus", + restoreTrustchain = "useRestoreTrustchain", } export enum ErrorType { diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useAddMember.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useAddMember.ts index b122e4e75e11..d2f8dcd5cace 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useAddMember.ts +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useAddMember.ts @@ -1,66 +1,85 @@ -import { memberCredentialsSelector, setTrustchain } from "@ledgerhq/trustchain/store"; +import { + memberCredentialsSelector, + setTrustchain, + trustchainSelector, +} from "@ledgerhq/trustchain/store"; import { useDispatch, useSelector } from "react-redux"; -import { useTrustchainSdk, runWithDevice } from "./useTrustchainSdk"; +import { useTrustchainSdk } from "./useTrustchainSdk"; import { - MemberCredentials, - TrustchainResult, - TrustchainResultType, -} from "@ledgerhq/trustchain/types"; -import { useCallback, useEffect, useRef, useState } from "react"; + NoTrustchainInitialized, + TrustchainAlreadyInitialized, + TrustchainAlreadyInitializedWithOtherSeed, + TrustchainNotAllowed, +} from "@ledgerhq/trustchain/errors"; +import { TrustchainResult, TrustchainResultType } from "@ledgerhq/trustchain/types"; +import { useCallback, useRef } from "react"; import { Device } from "@ledgerhq/live-common/hw/actions/types"; import { useNavigation } from "@react-navigation/native"; import { WalletSyncNavigatorStackParamList } from "~/components/RootNavigator/types/WalletSyncNavigator"; import { StackNavigatorNavigation } from "~/components/RootNavigator/types/helpers"; import { ScreenName } from "~/const"; +import { hasCompletedOnboardingSelector } from "~/reducers/settings"; +import { DrawerProps, SceneKind, useFollowInstructionDrawer } from "./useFollowInstructionDrawer"; -export function useAddMember({ device }: { device: Device | null }) { +export function useAddMember({ device }: { device: Device | null }): DrawerProps { + const trustchain = useSelector(trustchainSelector); const dispatch = useDispatch(); const sdk = useTrustchainSdk(); const memberCredentials = useSelector(memberCredentialsSelector); - const [error, setError] = useState(null); - - const navigation = useNavigation>(); - - const [userDeviceInteraction, setUserDeviceInteraction] = useState(false); - const memberCredentialsRef = useRef(memberCredentials); + const trustchainRef = useRef(trustchain); + const navigation = useNavigation>(); + const hasCompletedOnboarding = useSelector(hasCompletedOnboardingSelector); const transitionToNextScreen = useCallback( (trustchainResult: TrustchainResult) => { dispatch(setTrustchain(trustchainResult.trustchain)); - navigation.navigate(ScreenName.WalletSyncSuccess, { + navigation.navigate(ScreenName.WalletSyncLoading, { created: trustchainResult.type === TrustchainResultType.created, }); }, [dispatch, navigation], ); - const onRetry = () => {}; - - useEffect(() => { - const addMember = async () => { + return useFollowInstructionDrawer( + async setScene => { try { - await runWithDevice(device?.deviceId || "", async transport => { - const trustchainResult = await sdk.getOrCreateTrustchain( - transport, - memberCredentialsRef.current as MemberCredentials, - { - onStartRequestUserInteraction: () => setUserDeviceInteraction(true), - onEndRequestUserInteraction: () => setUserDeviceInteraction(false), + if (!device) return; + if (!memberCredentialsRef.current) { + throw new Error("memberCredentials is not set"); + } + const trustchainResult = await sdk.getOrCreateTrustchain( + device.deviceId, + memberCredentialsRef.current, + { + onInitialResponse: trustchains => { + if (hasCompletedOnboarding || Object.keys(trustchains).length > 0) return; + else throw new NoTrustchainInitialized(); }, - ); - if (trustchainResult) { - transitionToNextScreen(trustchainResult); - } - }); + onStartRequestUserInteraction: () => + setScene({ kind: SceneKind.DeviceInstructions, device }), + onEndRequestUserInteraction: () => setScene({ kind: SceneKind.Loader }), + }, + undefined, + trustchainRef?.current?.rootId, + ); + if (trustchainResult) { + transitionToNextScreen(trustchainResult); + } } catch (error) { - setError(error as Error); + if (error instanceof TrustchainNotAllowed) { + setScene({ kind: SceneKind.KeyError }); + } else if (error instanceof TrustchainAlreadyInitialized) { + setScene({ kind: SceneKind.AlreadySecuredSameSeed }); + } else if (error instanceof TrustchainAlreadyInitializedWithOtherSeed) { + setScene({ kind: SceneKind.AlreadySecuredOtherSeed }); + } else if (error instanceof NoTrustchainInitialized) { + setScene({ kind: SceneKind.UnbackedError }); + } else if (error instanceof Error) { + setScene({ kind: SceneKind.GenericError, error }); + } } - }; - if (device && device.deviceId) { - addMember(); - } - }, [device, dispatch, sdk, transitionToNextScreen]); - - return { error, userDeviceInteraction, onRetry }; + }, + [device, sdk, transitionToNextScreen, hasCompletedOnboarding], + ); } diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useClose.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useClose.ts new file mode 100644 index 000000000000..b391b6c28558 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useClose.ts @@ -0,0 +1,28 @@ +import { useNavigation } from "@react-navigation/native"; +import { useDispatch, useSelector } from "react-redux"; +import { setFromLedgerSyncOnboarding } from "~/actions/settings"; +import { BaseNavigatorStackParamList } from "~/components/RootNavigator/types/BaseNavigator"; +import { + RootNavigationComposite, + StackNavigatorNavigation, +} from "~/components/RootNavigator/types/helpers"; +import { NavigatorName } from "~/const"; +import { isFromLedgerSyncOnboardingSelector } from "~/reducers/settings"; + +export function useClose() { + const navigationOnbarding = + useNavigation>>(); + const isFromLedgerSyncOnboarding = useSelector(isFromLedgerSyncOnboardingSelector); + const dispatch = useDispatch(); + + const close = () => { + if (isFromLedgerSyncOnboarding) { + dispatch(setFromLedgerSyncOnboarding(false)); + } + navigationOnbarding.replace(NavigatorName.Base, { + screen: NavigatorName.Main, + }); + }; + + return close; +} diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useCurrentStep.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useCurrentStep.ts new file mode 100644 index 000000000000..f06b9bd28015 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useCurrentStep.ts @@ -0,0 +1,21 @@ +import { useDispatch, useSelector } from "react-redux"; +import { activateDrawerStepSelector } from "~/reducers/walletSync"; +import { Steps } from "../types/Activation"; +import { setLedgerSyncActivateStep } from "~/actions/walletSync"; +import { useCallback } from "react"; + +export function useCurrentStep() { + const dispatch = useDispatch(); + const currentStep = useSelector(activateDrawerStepSelector); + const setCurrentStep = useCallback( + (step: Steps) => { + dispatch(setLedgerSyncActivateStep(step)); + }, + [dispatch], + ); + + return { + currentStep, + setCurrentStep, + }; +} diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useDestroyTrustchain.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useDestroyTrustchain.ts index 70eaa5ff12e0..869aa5940ab0 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useDestroyTrustchain.ts +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useDestroyTrustchain.ts @@ -9,6 +9,8 @@ import { useMutation } from "@tanstack/react-query"; import { QueryKey } from "./type.hooks"; import { useCloudSyncSDK } from "./useWatchWalletSync"; import { walletSyncUpdate } from "@ledgerhq/live-wallet/store"; +import { useCurrentStep } from "./useCurrentStep"; +import { Steps } from "../types/Activation"; export function useDestroyTrustchain() { const dispatch = useDispatch(); @@ -16,6 +18,7 @@ export function useDestroyTrustchain() { const sdk = useTrustchainSdk(); const trustchain = useSelector(trustchainSelector); const memberCredentials = useSelector(memberCredentialsSelector); + const { setCurrentStep } = useCurrentStep(); const deleteMutation = useMutation({ mutationFn: async () => { @@ -29,6 +32,7 @@ export function useDestroyTrustchain() { onSuccess: () => { dispatch(resetTrustchainStore()); dispatch(walletSyncUpdate(null, 0)); + setCurrentStep(Steps.Activation); }, }); diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useFollowInstructionDrawer.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useFollowInstructionDrawer.ts new file mode 100644 index 000000000000..a6939569554b --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useFollowInstructionDrawer.ts @@ -0,0 +1,69 @@ +import { useNavigation } from "@react-navigation/native"; +import { DependencyList, useCallback, useEffect, useState } from "react"; +import { Device } from "@ledgerhq/live-common/hw/actions/types"; +import { StackNavigatorNavigation } from "~/components/RootNavigator/types/helpers"; +import { WalletSyncNavigatorStackParamList } from "~/components/RootNavigator/types/WalletSyncNavigator"; +import { ScreenName } from "~/const"; +import { useDestroyTrustchain } from "./useDestroyTrustchain"; + +export enum SceneKind { + DeviceInstructions, + Loader, + ConfirmDeleteWrongSeedError, + KeyError, + UnbackedError, + GenericError, + AlreadySecuredSameSeed, + AlreadySecuredOtherSeed, +} +type Scene = + | { kind: SceneKind.DeviceInstructions; device: Device } + | { kind: SceneKind.Loader } + | { kind: SceneKind.ConfirmDeleteWrongSeedError } + | { kind: SceneKind.KeyError } + | { kind: SceneKind.AlreadySecuredSameSeed } + | { kind: SceneKind.AlreadySecuredOtherSeed } + | { kind: SceneKind.UnbackedError } + | { kind: SceneKind.GenericError; error: Error }; + +export type DrawerProps = { + scene: Scene; + retry: () => void; + goToDelete: () => void; + backToWrongSeedError: () => void; + confirmDeleteKey: () => void; +}; + +export function useFollowInstructionDrawer( + run: (setScene: (scene: Scene) => void) => Promise, + deps: DependencyList = [], +): DrawerProps { + const navigation = useNavigation>(); + const { deleteMutation } = useDestroyTrustchain(); + + const [scene, setScene] = useState({ kind: SceneKind.Loader }); + + const retry = useCallback(async () => { + setScene({ kind: SceneKind.Loader }); + await run(setScene); + }, []); // eslint-disable-line react-hooks/exhaustive-deps + + const goToDelete = useCallback(() => { + setScene({ kind: SceneKind.ConfirmDeleteWrongSeedError }); + }, []); + + const backToWrongSeedError = useCallback(() => { + setScene({ kind: SceneKind.AlreadySecuredOtherSeed }); + }, []); + + const confirmDeleteKey = useCallback(async () => { + await deleteMutation.mutateAsync(); + navigation.navigate(ScreenName.WalletSyncManageKeyDeleteSuccess); + }, [deleteMutation, navigation]); + + useEffect(() => { + run(setScene); + }, deps); // eslint-disable-line react-hooks/exhaustive-deps + + return { scene, retry, goToDelete, backToWrongSeedError, confirmDeleteKey }; +} diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useGetMembers.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useGetMembers.ts index ac429cbfe9b9..290313a421cc 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useGetMembers.ts +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useGetMembers.ts @@ -3,21 +3,16 @@ import { useSelector } from "react-redux"; import { useTrustchainSdk } from "./useTrustchainSdk"; import { useQuery } from "@tanstack/react-query"; import { QueryKey } from "./type.hooks"; -import { useTranslation } from "react-i18next"; -import { createCustomErrorClass } from "@ledgerhq/errors"; import { useLifeCycle } from "./walletSync.hooks"; import { useEffect } from "react"; - -export const TrustchainNotFound = createCustomErrorClass("TrustchainNotFound"); -export const MemberCredentialsNotFound = createCustomErrorClass("MemberCredentialsNotFound"); +import { TrustchainNotFound } from "@ledgerhq/trustchain/errors"; export function useGetMembers() { const sdk = useTrustchainSdk(); const trustchain = useSelector(trustchainSelector); const memberCredentials = useSelector(memberCredentialsSelector); - const { t } = useTranslation(); - const errorHandler = useLifeCycle(); + const { handleError } = useLifeCycle(); function getMembers() { if (!memberCredentials) { @@ -25,7 +20,7 @@ export function useGetMembers() { } if (!trustchain) { - throw new TrustchainNotFound(t("walletSync.walletSyncActivated.errors.trustchain")); + throw new TrustchainNotFound(); } try { @@ -42,13 +37,14 @@ export function useGetMembers() { refetchOnReconnect: true, refetchOnWindowFocus: true, retry: false, + enabled: !!trustchain && !!memberCredentials, }); useEffect(() => { if (memberHook.isError) { - errorHandler.handleError(memberHook.error); + handleError(memberHook.error); } - }, [errorHandler, memberHook.error, memberHook.isError]); + }, [handleError, memberHook.error, memberHook.isError]); return memberHook; } diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useInstanceName.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useInstanceName.ts new file mode 100644 index 000000000000..381d1425dddc --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useInstanceName.ts @@ -0,0 +1,17 @@ +import { getDeviceNameSync } from "react-native-device-info"; +import { getEnv } from "@ledgerhq/live-env"; +import { Platform } from "react-native"; + +const platformMap: Record = { + ios: "iPhone iOS", + android: "Android", +}; + +let deviceName: string; + +export function useInstanceName(): string { + const hash = getEnv("USER_ID").slice(0, 5); + const os = platformMap[Platform.OS] ?? Platform.OS; + if (!deviceName) deviceName = getDeviceNameSync() ?? `${os} ${Platform.Version}`; + return `${deviceName} ${hash ? " " + hash : ""}`; +} diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useLedgerSyncAnalytics.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useLedgerSyncAnalytics.ts new file mode 100644 index 000000000000..1d9dff133e0a --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useLedgerSyncAnalytics.ts @@ -0,0 +1,75 @@ +import { track } from "~/analytics"; + +export enum AnalyticsPage { + ActivateLedgerSync = "Activate Ledger Sync", + ChooseSyncMethod = "Choose sync method", + BackupCreationSuccess = "Backup creation success", + SyncSuccess = "Sync success", + ScanQRCode = "Scan QR code", + ShowQRCode = "Show QR code", + SyncWithQrCode = "Sync with QR code", + PinCode = "Pin code", + PinCodesDoNotMatch = "Pin codes don't match", + Loading = "Loading", + SettingsGeneral = "Settings General", + LedgerSyncSettings = "Ledger Sync Settings", + ManageSyncInstances = "Manage synchronized instances", + RemoveInstanceWrongDevice = "Remove instance wrong device connected", + RemoveInstanceSuccess = "Instance removal success", + ManageBackup = "Manage key", + ConfirmDeleteBackup = "Confirm delete key", + DeleteBackupSuccess = "Delete key success", + SyncWithNoKey = "Sync with no key", + LedgerSyncActivated = "Ledger Sync activated", + AutoRemove = "Can’t remove current instance", + OtherSeed = "You can’t use this Ledger to Sync", + SameSeed = "App already secured with this Ledger", + ScanAttemptWithSameBackup = "Scan attempt with same backup", + ScanAttemptWithDifferentBackups = "Scan attempt with different backups", + OnBoardingQRCodeNoBackup = "Onboarding no backup detected", + OnBoardingDeviceNoBackup = "Onboarding this Ledger does not secure a backup", + OnboardingAccessExistingWallet = "Onboarding access existing wallet", +} + +export enum AnalyticsFlow { + LedgerSync = "Ledger Sync", +} + +export enum AnalyticsButton { + SyncYourAccounts = "Sync your accounts", + AlreadyCreatedKey = "Already synced a Ledger Live app", + Close = "Close", + UseYourLedger = "Use your Ledger", + ScanQRCode = "Scan a QR code", + SyncWithAnotherLedgerLive = "Sync with another Ledger Live app", + ShowQRCode = "Show QR", + TryAgain = "Try again", + Synchronize = "Synchronize", + ManageKey = "Manage key", + ManageInstances = "Manage instances", + RemoveInstance = "Remove instance", + ConnectAnotherLedger = "Connect another Ledger", + DeleteKey = "Delete key", + Delete = "Delete", + Cancel = "Cancel", + CreateYourKey = "Create your key", + LedgerSync = "Ledger Sync", + UseAnother = "Connect another ledger", + Understand = "I understand", + TryAnotherLedger = "Try another Ledger", + ContinueWihtoutSync = "Continue without sync", +} + +type OnClickTrack = { + button: (typeof AnalyticsButton)[keyof typeof AnalyticsButton]; + page: (typeof AnalyticsPage)[keyof typeof AnalyticsPage]; + hasFlow?: boolean; +}; + +export function useLedgerSyncAnalytics() { + const onClickTrack = ({ button, page, hasFlow = false }: OnClickTrack) => { + track("button_clicked", { button, page, flow: hasFlow ? AnalyticsFlow.LedgerSync : undefined }); + }; + + return { onClickTrack }; +} diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useLedgerSyncStatus.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useLedgerSyncStatus.ts new file mode 100644 index 000000000000..36f69b03e807 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useLedgerSyncStatus.ts @@ -0,0 +1,38 @@ +import { useQueries, UseQueryResult } from "@tanstack/react-query"; +import { QueryKey } from "./type.hooks"; +import getTrustchainApi, { StatusAPIResponse as TrustchainStatus } from "@ledgerhq/trustchain/api"; +import getCloudSyncApi, { + StatusAPIResponse as CloudSyncStatus, +} from "@ledgerhq/live-wallet/cloudsync/api"; +import { useFeature } from "@ledgerhq/live-common/featureFlags/index"; +import getWalletSyncEnvironmentParams from "@ledgerhq/live-common/walletSync/getEnvironmentParams"; + +export function useLedgerSyncStatus() { + const featureWalletSync = useFeature("llmWalletSync"); + const { trustchainApiBaseUrl, cloudSyncApiBaseUrl } = getWalletSyncEnvironmentParams( + featureWalletSync?.params?.environment, + ); + const QUERIES = [ + { + queryKey: [QueryKey.fetchTrustchainStatus], + queryFn: () => getTrustchainApi(trustchainApiBaseUrl).fetchStatus(), + }, + { + queryKey: [QueryKey.fetchCloudSyncStatus], + queryFn: () => getCloudSyncApi(cloudSyncApiBaseUrl).fetchStatus(), + }, + ]; + + return useQueries({ + queries: QUERIES, + combine: combineData, + }); +} + +function combineData(results: UseQueryResult[]) { + return { + error: results.find(result => result.isError)?.error || null, + isLoading: results.some(result => result.isLoading), + isError: results.some(result => result.isError), + }; +} diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useLoadingStep.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useLoadingStep.ts new file mode 100644 index 000000000000..db5811dc387a --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useLoadingStep.ts @@ -0,0 +1,38 @@ +import { useEffect, useState } from "react"; +import { useWalletSyncUserState } from "../components/WalletSyncContext"; +import { useFeature } from "@ledgerhq/live-common/featureFlags/index"; +import { NavigatorName, ScreenName } from "~/const"; +import { useNavigation } from "@react-navigation/core"; + +export function useLoadingStep(created: boolean) { + const [waitedWatchLoop, setWaitedWatchLoop] = useState(false); + const { visualPending } = useWalletSyncUserState(); + const featureWalletSync = useFeature("llmWalletSync"); + const initialTimeout = featureWalletSync?.params?.watchConfig?.initialTimeout || 1000; + const visualPendingTimeout = 1000; + const navigation = useNavigation(); + + useEffect(() => { + const timeout = setTimeout( + () => { + setWaitedWatchLoop(true); + }, + initialTimeout + visualPendingTimeout + 500, + ); + + return () => { + clearTimeout(timeout); + }; + }, [initialTimeout]); + + useEffect(() => { + if (waitedWatchLoop && !visualPending) { + navigation.navigate(NavigatorName.WalletSync, { + screen: ScreenName.WalletSyncSuccess, + params: { + created, + }, + }); + } + }, [waitedWatchLoop, visualPending, navigation, created]); +} diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useQRCodeHost.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useQRCodeHost.ts new file mode 100644 index 000000000000..5f0cff1a9f9e --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useQRCodeHost.ts @@ -0,0 +1,122 @@ +import { useCallback, useEffect, useState } from "react"; +import { createQRCodeHostInstance } from "@ledgerhq/trustchain/qrcode/index"; +import { + InvalidDigitsError, + NoTrustchainInitialized, + QRCodeWSClosed, +} from "@ledgerhq/trustchain/errors"; +import { MemberCredentials } from "@ledgerhq/trustchain/types"; +import { useDispatch, useSelector } from "react-redux"; +import { + trustchainSelector, + memberCredentialsSelector, + setTrustchain, +} from "@ledgerhq/trustchain/store"; +import { useTrustchainSdk } from "./useTrustchainSdk"; +import { Options, Steps } from "../types/Activation"; +import { useNavigation } from "@react-navigation/native"; +import { NavigatorName, ScreenName } from "~/const"; +import { useFeature } from "@ledgerhq/live-common/featureFlags/index"; +import getWalletSyncEnvironmentParams from "@ledgerhq/live-common/walletSync/getEnvironmentParams"; +import { useMutation, useQueryClient } from "@tanstack/react-query"; +import { QueryKey } from "./type.hooks"; +import { useInstanceName } from "./useInstanceName"; +import { useCurrentStep } from "./useCurrentStep"; + +const MIN_TIME_TO_REFRESH = 30_000; + +interface Props { + currentOption: Options; +} + +export function useQRCodeHost({ currentOption }: Props) { + const { currentStep, setCurrentStep } = useCurrentStep(); + const queryClient = useQueryClient(); + const trustchain = useSelector(trustchainSelector); + const memberCredentials = useSelector(memberCredentialsSelector); + const sdk = useTrustchainSdk(); + const dispatch = useDispatch(); + + const featureWalletSync = useFeature("llmWalletSync"); + const { trustchainApiBaseUrl } = getWalletSyncEnvironmentParams( + featureWalletSync?.params?.environment, + ); + const memberName = useInstanceName(); + + const [url, setUrl] = useState(null); + const [pinCode, setPinCode] = useState(null); + + const navigation = useNavigation(); + + const { mutate, isPending, error } = useMutation({ + mutationFn: (memberCredentials: MemberCredentials) => + createQRCodeHostInstance({ + trustchainApiBaseUrl, + onDisplayQRCode: url => { + setUrl(url); + }, + onDisplayDigits: digits => { + setPinCode(digits); + setCurrentStep(Steps.PinDisplay); + }, + addMember: async member => { + if (trustchain) { + await sdk.addMember(trustchain, memberCredentials, member); + return trustchain; + } + throw new NoTrustchainInitialized(); + }, + memberCredentials, + memberName, + initialTrustchainId: trustchain?.rootId, + }), + + onSuccess: newTrustchain => { + if (newTrustchain) { + dispatch(setTrustchain(newTrustchain)); + } + queryClient.invalidateQueries({ queryKey: [QueryKey.getMembers] }); + navigation.navigate(NavigatorName.WalletSync, { + screen: ScreenName.WalletSyncLoading, + params: { + created: false, + }, + }); + + setUrl(null); + setPinCode(null); + }, + + // Don't use retry here because it always uses a delay despite setting it to 0 + onError: e => { + if (e instanceof QRCodeWSClosed) { + const { time } = e as unknown as { time: number }; + if (time >= MIN_TIME_TO_REFRESH) startQRCodeProcessing(); + } + if (e instanceof InvalidDigitsError) { + setCurrentStep(Steps.SyncError); + } + if (e instanceof NoTrustchainInitialized) { + setCurrentStep(Steps.UnbackedError); + } + }, + }); + + const startQRCodeProcessing = useCallback(() => { + if (memberCredentials) mutate(memberCredentials); + }, [mutate, memberCredentials]); + + useEffect(() => { + if (currentStep === Steps.QrCodeMethod && currentOption === Options.SHOW_QR) { + startQRCodeProcessing(); + } + }, [currentOption, currentStep, startQRCodeProcessing]); + + return { + url, + error, + isLoading: isPending, + startQRCodeProcessing, + pinCode, + }; +} diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useRemoveMember.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useRemoveMember.ts index a3fbcd12f265..106fcd1d32b2 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useRemoveMember.ts +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useRemoveMember.ts @@ -4,42 +4,28 @@ import { trustchainSelector, } from "@ledgerhq/trustchain/store"; import { useDispatch, useSelector } from "react-redux"; -import { useTrustchainSdk, runWithDevice } from "./useTrustchainSdk"; +import { useTrustchainSdk } from "./useTrustchainSdk"; +import { TrustchainNotAllowed } from "@ledgerhq/trustchain/errors"; import { TrustchainMember, Trustchain } from "@ledgerhq/trustchain/types"; -import { useCallback, useEffect, useState } from "react"; +import { useCallback } from "react"; import { Device } from "@ledgerhq/live-common/hw/actions/types"; import { useNavigation } from "@react-navigation/native"; import { ScreenName } from "~/const"; import { StackNavigatorNavigation } from "~/components/RootNavigator/types/helpers"; import { WalletSyncNavigatorStackParamList } from "~/components/RootNavigator/types/WalletSyncNavigator"; +import { DrawerProps, SceneKind, useFollowInstructionDrawer } from "./useFollowInstructionDrawer"; type Props = { device: Device | null; member: TrustchainMember | null; }; -export function useRemoveMember({ device, member }: Props) { +export function useRemoveMember({ device, member }: Props): DrawerProps { const dispatch = useDispatch(); const sdk = useTrustchainSdk(); const trustchain = useSelector(trustchainSelector); const memberCredentials = useSelector(memberCredentialsSelector); - const [error, setError] = useState(null); - const navigation = useNavigation>(); - const [userDeviceInteraction, setUserDeviceInteraction] = useState(false); - - // eslint-disable-next-line no-console - const onRetry = useCallback(() => console.log("onRetry"), []); - // () => dispatch(setFlow({ flow: Flow.ManageInstances, step: Step.DeviceActionInstance })), - - const goToDelete = useCallback( - () => navigation.navigate(ScreenName.WalletSyncActivated), - [navigation], - ); - - // eslint-disable-next-line no-console - const onResetFlow = useCallback(() => console.log("onResetFlow"), []); - // () => dispatch(setFlow({ flow: Flow.ManageInstances, step: Step.SynchronizedInstances })), const transitionToNextScreen = useCallback( (trustchainResult: Trustchain) => { @@ -52,48 +38,35 @@ export function useRemoveMember({ device, member }: Props) { [dispatch, member, navigation], ); - const removeMember = useCallback( - async (member: TrustchainMember) => { - if (!device) return; - if (!trustchain || !memberCredentials) { - throw new Error("trustchain or memberCredentials is not set"); - } + return useFollowInstructionDrawer( + async setScene => { try { - await runWithDevice(device.deviceId, async transport => { - const newTrustchain = await sdk.removeMember( - transport, - trustchain, - memberCredentials, - member, - { - onStartRequestUserInteraction: () => setUserDeviceInteraction(true), - onEndRequestUserInteraction: () => setUserDeviceInteraction(false), - }, - ); + if (!member) return; + if (!device) return; + if (!trustchain || !memberCredentials) { + throw new Error("trustchain or memberCredentials is not set"); + } + const newTrustchain = await sdk.removeMember( + device.deviceId, + trustchain, + memberCredentials, + member, + { + onStartRequestUserInteraction: () => + setScene({ kind: SceneKind.DeviceInstructions, device }), + onEndRequestUserInteraction: () => setScene({ kind: SceneKind.Loader }), + }, + ); - transitionToNextScreen(newTrustchain); - }); + transitionToNextScreen(newTrustchain); } catch (error) { - if (error instanceof Error) setError(error); + if (error instanceof TrustchainNotAllowed) { + setScene({ kind: SceneKind.KeyError }); + } else if (error instanceof Error) { + setScene({ kind: SceneKind.GenericError, error }); + } } }, - [device, memberCredentials, sdk, transitionToNextScreen, trustchain], + [device, member, memberCredentials, sdk, transitionToNextScreen, !trustchain], ); - - useEffect(() => { - if (device && device.deviceId) { - if (!member) { - onResetFlow(); - } else { - removeMember(member); - } - } - }, [device, member, onResetFlow, onRetry, removeMember]); - - return { - error, - onRetry, - userDeviceInteraction, - goToDelete, - }; } diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useRestoreTrustchain.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useRestoreTrustchain.ts new file mode 100644 index 000000000000..bcce8916144f --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useRestoreTrustchain.ts @@ -0,0 +1,37 @@ +import { + memberCredentialsSelector, + trustchainSelector, + setTrustchain, +} from "@ledgerhq/trustchain/store"; +import { Trustchain, MemberCredentials } from "@ledgerhq/trustchain/types"; +import { useQuery } from "@tanstack/react-query"; +import { useDispatch, useSelector } from "react-redux"; +import { QueryKey } from "./type.hooks"; +import { useTrustchainSdk } from "./useTrustchainSdk"; + +export const useRestoreTrustchain = () => { + const dispatch = useDispatch(); + const sdk = useTrustchainSdk(); + const memberCredentials = useSelector(memberCredentialsSelector); + + const trustchain = useSelector(trustchainSelector); + + async function restoreTrustchain() { + const newTrustchain = await sdk.restoreTrustchain( + trustchain as Trustchain, + memberCredentials as MemberCredentials, + ); + + dispatch(setTrustchain(newTrustchain)); + + return newTrustchain; + } + + const restore = useQuery({ + enabled: false, + queryKey: [QueryKey.restoreTrustchain], + queryFn: restoreTrustchain, + }); + + return restore; +}; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useSpecificError.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useSpecificError.tsx new file mode 100644 index 000000000000..6fc563ebea6f --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useSpecificError.tsx @@ -0,0 +1,237 @@ +import React from "react"; +import { Icons } from "@ledgerhq/native-ui"; +import { useTranslation } from "react-i18next"; +import { useTheme } from "styled-components/native"; +import { AnalyticsButton, AnalyticsPage, useLedgerSyncAnalytics } from "./useLedgerSyncAnalytics"; + +import { ButtonProps } from "@ledgerhq/native-ui/components/cta/Button"; + +export enum ErrorReason { + UNSECURED = "unsecured", + AUTO_REMOVE = "auto-remove", + SAME_SEED = "same", + OTHER_SEED = "other", + ALREADY_BACKED_SCAN = "already-backed", + DIFFERENT_BACKUPS = "different-backups", + NO_BACKUP = "no-backup", + NO_BACKUP_ONBOARDING_DEVICE = "no-backup-onboarding-device", + NO_BACKUP_ONBOARDING_QRCODE = "no-backup-onboarding-qrcode", +} + +export interface ErrorConfig { + icon: React.ReactNode; + title: string; + description?: string; + info?: string; + cta: string; + ctaSecondary?: string; + analyticsPage: AnalyticsPage; + buttonType: ButtonProps["type"]; + outline?: boolean; + primaryAction: () => void; + secondaryAction?: () => void; +} + +export type SpecificProps = { + primaryAction: () => void; + secondaryAction?: () => void; +}; + +type AnalyticsProps = { + page: AnalyticsPage; + hasFlow: boolean; + button?: AnalyticsButton; +}; +export function useSpecificError({ primaryAction, secondaryAction }: SpecificProps) { + const { onClickTrack } = useLedgerSyncAnalytics(); + const { t } = useTranslation(); + const { colors } = useTheme(); + + const onTryAgain = (props: AnalyticsProps) => { + onClickTrack({ button: props.button ?? AnalyticsButton.UseAnother, ...props }); + }; + + const onTryAnotherLedger = (props: AnalyticsProps) => { + onClickTrack({ button: AnalyticsButton.TryAnotherLedger, ...props }); + }; + + const onGoToDelete = (props: AnalyticsProps) => { + onClickTrack({ button: AnalyticsButton.DeleteKey, ...props }); + }; + + const onUnderstood = (props: AnalyticsProps) => { + onClickTrack({ button: AnalyticsButton.Understand, ...props }); + }; + + const onCancel = (props: AnalyticsProps) => { + onClickTrack({ button: AnalyticsButton.Cancel, ...props }); + }; + + const onCreate = (props: AnalyticsProps) => { + onClickTrack({ button: AnalyticsButton.CreateYourKey, ...props }); + }; + + const ContinueWihtoutSync = (props: AnalyticsProps) => { + onClickTrack({ button: AnalyticsButton.ContinueWihtoutSync, ...props }); + }; + + const errorConfig: Record = { + [ErrorReason.UNSECURED]: { + icon: , + title: t("walletSync.walletSyncActivated.synchronizedInstances.unsecuredError.title"), + description: t( + "walletSync.walletSyncActivated.synchronizedInstances.unsecuredError.description", + ), + info: t("walletSync.walletSyncActivated.synchronizedInstances.unsecuredError.info"), + cta: t("walletSync.walletSyncActivated.synchronizedInstances.unsecuredError.cta"), + ctaSecondary: t( + "walletSync.walletSyncActivated.synchronizedInstances.unsecuredError.ctaDelete", + ), + analyticsPage: AnalyticsPage.RemoveInstanceWrongDevice, + buttonType: "main" as ButtonProps["type"], + primaryAction: () => { + primaryAction(); + onTryAgain({ page: AnalyticsPage.RemoveInstanceWrongDevice, hasFlow: false }); + }, + secondaryAction: () => { + secondaryAction?.(); + onGoToDelete({ page: AnalyticsPage.RemoveInstanceWrongDevice, hasFlow: false }); + }, + }, + [ErrorReason.AUTO_REMOVE]: { + icon: , + title: t("walletSync.walletSyncActivated.synchronizedInstances.autoRemoveError.title"), + description: t( + "walletSync.walletSyncActivated.synchronizedInstances.autoRemoveError.description", + ), + info: t("walletSync.walletSyncActivated.synchronizedInstances.autoRemoveError.info"), + cta: t("walletSync.walletSyncActivated.synchronizedInstances.autoRemoveError.cta"), + ctaSecondary: t( + "walletSync.walletSyncActivated.synchronizedInstances.autoRemoveError.ctaDelete", + ), + analyticsPage: AnalyticsPage.AutoRemove, + buttonType: "main" as ButtonProps["type"], + primaryAction: () => { + primaryAction(); + onUnderstood({ page: AnalyticsPage.AutoRemove, hasFlow: false }); + }, + secondaryAction: () => { + secondaryAction?.(); + onGoToDelete({ page: AnalyticsPage.AutoRemove, hasFlow: false }); + }, + }, + [ErrorReason.SAME_SEED]: { + icon: , + title: t("walletSync.synchronize.alreadySecureError.title"), + description: t("walletSync.synchronize.alreadySecureError.description"), + cta: t("walletSync.synchronize.alreadySecureError.cta"), + + analyticsPage: AnalyticsPage.SameSeed, + buttonType: "main" as ButtonProps["type"], + primaryAction: () => { + primaryAction(); + onUnderstood({ page: AnalyticsPage.SameSeed, hasFlow: false }); + }, + }, + [ErrorReason.OTHER_SEED]: { + icon: , + title: t("walletSync.synchronize.alreadySecureOtherSeedError.title"), + description: t("walletSync.synchronize.alreadySecureOtherSeedError.description"), + cta: t("walletSync.synchronize.alreadySecureOtherSeedError.cta"), + ctaSecondary: t("common.cancel"), + analyticsPage: AnalyticsPage.OtherSeed, + buttonType: "main" as ButtonProps["type"], + outline: true, + primaryAction: () => { + primaryAction(); + onGoToDelete({ page: AnalyticsPage.OtherSeed, hasFlow: false }); + }, + secondaryAction: () => { + secondaryAction?.(); + onCancel({ page: AnalyticsPage.OtherSeed, hasFlow: false }); + }, + }, + [ErrorReason.ALREADY_BACKED_SCAN]: { + icon: , + title: t("walletSync.synchronize.qrCode.alreadyBacked.title"), + cta: t("walletSync.synchronize.qrCode.alreadyBacked.cta"), + analyticsPage: AnalyticsPage.ScanAttemptWithSameBackup, + buttonType: "main" as ButtonProps["type"], + primaryAction: () => { + primaryAction(); + onUnderstood({ page: AnalyticsPage.ScanAttemptWithSameBackup, hasFlow: false }); + }, + }, + [ErrorReason.DIFFERENT_BACKUPS]: { + icon: , + title: t("walletSync.synchronize.qrCode.backedWithDifferentSeeds.title"), + description: t("walletSync.synchronize.qrCode.backedWithDifferentSeeds.description"), + cta: t("walletSync.synchronize.qrCode.backedWithDifferentSeeds.cta"), + analyticsPage: AnalyticsPage.ScanAttemptWithDifferentBackups, + buttonType: "main" as ButtonProps["type"], + primaryAction: () => { + primaryAction(); + onUnderstood({ page: AnalyticsPage.ScanAttemptWithDifferentBackups, hasFlow: false }); + }, + }, + [ErrorReason.NO_BACKUP]: { + icon: , + title: t("walletSync.synchronize.qrCode.unbacked.title"), + description: t("walletSync.synchronize.qrCode.unbacked.description"), + cta: t("walletSync.synchronize.qrCode.unbacked.cta"), + analyticsPage: AnalyticsPage.SyncWithNoKey, + buttonType: "main" as ButtonProps["type"], + primaryAction: () => { + primaryAction(); + onCreate({ page: AnalyticsPage.SyncWithNoKey, hasFlow: false }); + }, + }, + [ErrorReason.NO_BACKUP_ONBOARDING_QRCODE]: { + icon: , + title: t("walletSync.synchronize.qrCode.unbackedOnboarding.title"), + description: t("walletSync.synchronize.qrCode.unbackedOnboarding.description"), + cta: t("walletSync.synchronize.qrCode.unbackedOnboarding.cta"), + ctaSecondary: t("walletSync.synchronize.qrCode.unbackedOnboarding.cancel"), + analyticsPage: AnalyticsPage.OnBoardingQRCodeNoBackup, + buttonType: "main" as ButtonProps["type"], + primaryAction: () => { + primaryAction(); + onTryAgain({ + page: AnalyticsPage.OnBoardingQRCodeNoBackup, + hasFlow: false, + button: AnalyticsButton.TryAgain, + }); + }, + secondaryAction: () => { + secondaryAction?.(); + ContinueWihtoutSync({ page: AnalyticsPage.OnBoardingQRCodeNoBackup, hasFlow: false }); + }, + }, + [ErrorReason.NO_BACKUP_ONBOARDING_DEVICE]: { + icon: , + title: t("walletSync.synchronize.unbackedOnboarding.title"), + cta: t("walletSync.synchronize.unbackedOnboarding.cta"), + ctaSecondary: t("walletSync.synchronize.unbackedOnboarding.cancel"), + analyticsPage: AnalyticsPage.OnBoardingDeviceNoBackup, + buttonType: "main" as ButtonProps["type"], + primaryAction: () => { + primaryAction(); + onTryAnotherLedger({ page: AnalyticsPage.OnBoardingDeviceNoBackup, hasFlow: false }); + }, + secondaryAction: () => { + secondaryAction?.(); + ContinueWihtoutSync({ page: AnalyticsPage.OnBoardingDeviceNoBackup, hasFlow: false }); + }, + }, + }; + + const getErrorConfig = (error: ErrorReason) => errorConfig[error]; + + return { + getErrorConfig, + onCancel, + onGoToDelete, + onTryAgain, + onUnderstood, + }; +} diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useSyncWithQrCode.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useSyncWithQrCode.ts new file mode 100644 index 000000000000..08ed51acac13 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useSyncWithQrCode.ts @@ -0,0 +1,104 @@ +import { useCallback, useState } from "react"; +import { MemberCredentials, TrustchainMember } from "@ledgerhq/trustchain/types"; +import { createQRCodeCandidateInstance } from "@ledgerhq/trustchain/qrcode/index"; +import { + InvalidDigitsError, + NoTrustchainInitialized, + TrustchainAlreadyInitialized, + TrustchainAlreadyInitializedWithOtherSeed, +} from "@ledgerhq/trustchain/errors"; +import { setTrustchain, trustchainSelector } from "@ledgerhq/trustchain/store"; +import { useDispatch, useSelector } from "react-redux"; +import { useNavigation } from "@react-navigation/native"; +import { Steps } from "../types/Activation"; +import { NavigatorName, ScreenName } from "~/const"; +import { useInstanceName } from "./useInstanceName"; +import { useTrustchainSdk } from "./useTrustchainSdk"; +import { useCurrentStep } from "./useCurrentStep"; + +export const useSyncWithQrCode = () => { + const { setCurrentStep } = useCurrentStep(); + const [nbDigits, setDigits] = useState(null); + const [input, setInput] = useState(null); + const instanceName = useInstanceName(); + const trustchain = useSelector(trustchainSelector); + const sdk = useTrustchainSdk(); + + const navigation = useNavigation(); + + const [inputCallback, setInputCallback] = useState<((input: string) => void) | null>(null); + const dispatch = useDispatch(); + + const onRequestQRCodeInput = useCallback( + (config: { digits: number }, callback: (input: string) => void) => { + setDigits(config.digits); + setInputCallback(() => callback); + }, + [], + ); + + const onSyncFinished = useCallback(() => { + setDigits(null); + setInput(null); + setInputCallback(null); + navigation.navigate(NavigatorName.WalletSync, { + screen: ScreenName.WalletSyncLoading, + params: { + created: false, + }, + }); + }, [navigation]); + + const handleStart = useCallback( + async (url: string, memberCredentials: MemberCredentials) => { + try { + const newTrustchain = await createQRCodeCandidateInstance({ + memberCredentials, + scannedUrl: url, + memberName: instanceName, + onRequestQRCodeInput, + addMember: async (member: TrustchainMember) => { + if (trustchain) { + await sdk.addMember(trustchain, memberCredentials, member); + return trustchain; + } + throw new NoTrustchainInitialized(); + }, + initialTrustchainId: trustchain?.rootId, + }); + if (newTrustchain) { + dispatch(setTrustchain(newTrustchain)); + } + onSyncFinished(); + return true; + } catch (e) { + if (e instanceof InvalidDigitsError) { + setCurrentStep(Steps.SyncError); + return; + } else if (e instanceof NoTrustchainInitialized) { + setCurrentStep(Steps.UnbackedError); + return; + } else if (e instanceof TrustchainAlreadyInitialized) { + if (e.message === trustchain?.rootId) { + setCurrentStep(Steps.AlreadyBacked); + } else { + setCurrentStep(Steps.BackedWithDifferentSeeds); + } + return; + } else if (e instanceof TrustchainAlreadyInitializedWithOtherSeed) { + setCurrentStep(Steps.BackedWithDifferentSeeds); + return; + } + throw e; + } + }, + [instanceName, onRequestQRCodeInput, trustchain, onSyncFinished, sdk, dispatch, setCurrentStep], + ); + + const handleSendDigits = useCallback( + (inputCallback: (_: string) => void, input: string) => (inputCallback(input), true), + [], + ); + + return { nbDigits, input, handleStart, handleSendDigits, setInput, inputCallback }; +}; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useTrustchainSdk.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useTrustchainSdk.ts index f11ccde42074..5bbfa3f859c3 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useTrustchainSdk.ts +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useTrustchainSdk.ts @@ -1,25 +1,11 @@ -import { firstValueFrom, from } from "rxjs"; import { useMemo } from "react"; import { getEnv } from "@ledgerhq/live-env"; import { getSdk } from "@ledgerhq/trustchain/index"; -import Transport from "@ledgerhq/hw-transport"; -import { Platform } from "react-native"; import { withDevice } from "@ledgerhq/live-common/hw/deviceAccess"; import { TrustchainSDK } from "@ledgerhq/trustchain/types"; import { useFeature } from "@ledgerhq/live-common/featureFlags/index"; import getWalletSyncEnvironmentParams from "@ledgerhq/live-common/walletSync/getEnvironmentParams"; - -export function runWithDevice( - deviceId: string, - fn: (transport: Transport) => Promise, -): Promise { - return firstValueFrom(withDevice(deviceId)(transport => from(fn(transport)))); -} - -const platformMap: Record = { - ios: "iOS", - android: "Android", -}; +import { useInstanceName } from "./useInstanceName"; let sdkInstance: TrustchainSDK | null = null; @@ -28,17 +14,17 @@ export function useTrustchainSdk() { const environment = featureWalletSync?.params?.environment; const { trustchainApiBaseUrl } = getWalletSyncEnvironmentParams(environment); const isMockEnv = !!getEnv("MOCK"); + const instanceName = useInstanceName(); const defaultContext = useMemo(() => { const applicationId = 16; - const hash = getEnv("USER_ID").slice(0, 5); - const name = `${platformMap[Platform.OS] ?? Platform.OS} ${Platform.Version} ${hash ? " " + hash : ""}`; + const name = instanceName; return { applicationId, name, apiBaseUrl: trustchainApiBaseUrl }; - }, [trustchainApiBaseUrl]); + }, [trustchainApiBaseUrl, instanceName]); if (sdkInstance === null) { - sdkInstance = getSdk(isMockEnv, defaultContext); + sdkInstance = getSdk(isMockEnv, defaultContext, withDevice); } return sdkInstance; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useWalletSyncAnalytics.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useWalletSyncAnalytics.ts deleted file mode 100644 index 61a1f719a0ca..000000000000 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useWalletSyncAnalytics.ts +++ /dev/null @@ -1,61 +0,0 @@ -import { track } from "~/analytics"; - -export enum AnalyticsPage { - ActivateWalletSync = "Activate Wallet Sync", - ChooseSyncMethod = "Choose sync method", - BackupCreationSuccess = "Backup creation success", - ScanQRCode = "Scan QR code", - SyncWithQrCode = "Sync with QR code", - PinCode = "Pin code", - PinCodesDoNotMatch = "Pin codes don't match", - SettingsGeneral = "Settings General", - LedgerSyncSettings = "Ledger Sync Settings", - ManageSyncInstances = "Manage synchronized instances", - RemoveInstanceWrongDevice = "Remove instance wrong device connected", - ManageBackup = "Manage backup", - ConfirmDeleteBackup = "Confirm delete backup", - SyncWithNoKey = "Sync with no key", - WalletSyncActivated = "Wallet Sync activated", - AutoRemove = "Remove current instance", -} - -export enum AnalyticsFlow { - WalletSync = "Wallet Sync", -} - -export enum AnalyticsButton { - SyncYourAccounts = "Sync your accounts", - AlreadyCreatedKey = "Already created key", - Close = "Close", - UseYourLedger = "Use your Ledger", - ScanQRCode = "Scan a QR code", - SyncWithAnotherLedgerLive = "Sync with another Ledger Live", - ShowQRCode = "Show QR", - TryAgain = "Try again", - Synchronize = "Synchronize", - ManageKey = "Manage key", - ManageSynchronizations = "Manage Synchronizations", - RemoveInstance = "Remove instance", - ConnectAnotherLedger = "Connect another Ledger", - DeleteKey = "Delete key", - Delete = "Delete", - Cancel = "Cancel", - CreateYourKey = "Create your key", - LedgerSync = "Ledger Sync", - UseAnother = "Connect new ledger", - Understand = "I understand", -} - -type OnClickTrack = { - button: (typeof AnalyticsButton)[keyof typeof AnalyticsButton]; - page: (typeof AnalyticsPage)[keyof typeof AnalyticsPage]; - flow?: (typeof AnalyticsFlow)[keyof typeof AnalyticsFlow]; -}; - -export function useWalletSyncAnalytics() { - const onClickTrack = ({ button, page, flow }: OnClickTrack) => { - track("button_clicked", { button, page, flow }); - }; - - return { onClickTrack }; -} diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useWatchWalletSync.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useWatchWalletSync.ts index aed49c8c5240..a46e703c954b 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useWatchWalletSync.ts +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/useWatchWalletSync.ts @@ -1,4 +1,4 @@ -import { useCallback, useEffect, useMemo, useState } from "react"; +import { useCallback, useEffect, useMemo, useRef, useState } from "react"; import { useDispatch, useSelector, useStore } from "react-redux"; import noop from "lodash/noop"; import { CloudSyncSDK } from "@ledgerhq/live-wallet/cloudsync/index"; @@ -120,16 +120,18 @@ export function useWatchWalletSync(): WalletSyncUserState { const [visualPending, setVisualPending] = useState(true); const [walletSyncError, setWalletSyncError] = useState(null); - const [onUserRefresh, setOnUserRefresh] = useState<() => void>(() => noop); + const onUserRefreshRef = useRef<() => void>(noop); const state = useMemo( - () => ({ visualPending, walletSyncError, onUserRefresh }), - [visualPending, walletSyncError, onUserRefresh], + () => ({ visualPending, walletSyncError, onUserRefresh: onUserRefreshRef.current }), + [visualPending, walletSyncError], ); // pull and push wallet sync loop useEffect(() => { - if (!trustchain || !memberCredentials) { - setOnUserRefresh(() => noop); + const canNotRunWatchLoop = !featureWalletSync?.enabled || !trustchain || !memberCredentials; + + if (canNotRunWatchLoop) { + onUserRefreshRef.current = noop; setVisualPending(false); setWalletSyncError(null); return; @@ -158,11 +160,11 @@ export function useWatchWalletSync(): WalletSyncUserState { onTrustchainRefreshNeeded, }); - setOnUserRefresh(() => onUserRefreshIntent); + onUserRefreshRef.current = onUserRefreshIntent; return unsubscribe; }, [ - featureWalletSync?.params?.watchConfig, + featureWalletSync, getState, trustchainSdk, walletSyncSdk, diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/walletSync.hooks.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/walletSync.hooks.ts index 9560ea7f9b7f..080c3b56f145 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/walletSync.hooks.ts +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/hooks/walletSync.hooks.ts @@ -1,20 +1,28 @@ import { resetTrustchainStore } from "@ledgerhq/trustchain/store"; import { useDispatch } from "react-redux"; -import { TrustchainEjected, TrustchainNotAllowed } from "@ledgerhq/trustchain/errors"; +import { + TrustchainEjected, + TrustchainNotAllowed, + TrustchainOutdated, +} from "@ledgerhq/trustchain/errors"; import { ErrorType } from "./type.hooks"; -import { useNavigation } from "@react-navigation/native"; -import { StackNavigatorNavigation } from "~/components/RootNavigator/types/helpers"; -import { WalletSyncNavigatorStackParamList } from "~/components/RootNavigator/types/WalletSyncNavigator"; -import { ScreenName } from "~/const"; +import { StackActions, useNavigation } from "@react-navigation/native"; +import { useTrustchainSdk } from "./useTrustchainSdk"; +import { useRestoreTrustchain } from "./useRestoreTrustchain"; +import { NavigatorName, ScreenName } from "~/const"; export const useLifeCycle = () => { const dispatch = useDispatch(); - - const navigation = useNavigation>(); + const sdk = useTrustchainSdk(); + const { refetch: restoreTrustchain } = useRestoreTrustchain(); + const navigation = useNavigation(); function reset() { dispatch(resetTrustchainStore()); - navigation.navigate(ScreenName.WalletSyncActivationInit); + const routeName = NavigatorName.WalletSync; + const screen = ScreenName.WalletSyncActivationInit; + navigation.dispatch(StackActions.replace(routeName, { screen })); + sdk.invalidateJwt(); } const includesErrorActions: { [key: string]: () => void } = { @@ -27,6 +35,8 @@ export const useLifeCycle = () => { if (error instanceof TrustchainEjected) reset(); if (error instanceof TrustchainNotAllowed) reset(); + if (error instanceof TrustchainOutdated) restoreTrustchain(); + const errorToHandle = Object.entries(includesErrorActions).find(([err, _action]) => error.message.includes(err), ); diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/ActivationDrawer.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/ActivationDrawer.tsx index b779777e00eb..a25e175433f3 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/ActivationDrawer.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/ActivationDrawer.tsx @@ -1,40 +1,65 @@ import React from "react"; import QueuedDrawer from "LLM/components/QueuedDrawer"; -import Activation from "../../components/Activation"; import { TrackScreen } from "~/analytics"; -import ChooseSyncMethod from "../Synchronize/ChooseMethod"; +import { Flex } from "@ledgerhq/native-ui"; +import ActivationFlow from "../../components/Activation/ActivationFlow"; +import { Steps } from "../../types/Activation"; +import DrawerHeader from "../../components/Synchronize/DrawerHeader"; +import useActivationDrawerModel from "./useActivationDrawerModel"; + +type ViewProps = ReturnType; type Props = { isOpen: boolean; - reopenDrawer: () => void; + startingStep: Steps; handleClose: () => void; }; -const ActivationDrawer = ({ isOpen, handleClose, reopenDrawer }: Props) => { - const [isSyncMethodDrawerOpen, setIsSyncMethodDrawerOpen] = React.useState(false); - - const onPressCloseDrawer = () => { - setIsSyncMethodDrawerOpen(false); - reopenDrawer(); - }; - - const openSyncMethodDrawer = () => { - setIsSyncMethodDrawerOpen(true); - handleClose(); - }; +function View({ + isOpen, + hasCustomHeader, + canGoBack, + navigateToChooseSyncMethod, + navigateToQrCodeMethod, + onCreateKey, + onQrCodeScanned, + goBackToPreviousStep, + handleClose, + onCloseDrawer, + qrProcess, + currentOption, + setCurrentOption, +}: ViewProps) { + const CustomDrawerHeader = () => ; return ( <> - - - - - - + + + + ); +} + +const ActivationDrawer = (props: Props) => { + return ; }; export default ActivationDrawer; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/ActivationInstructionDrawer.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/ActivationInstructionDrawer.tsx index 3562eb13a2da..eb153b2811b4 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/ActivationInstructionDrawer.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/ActivationInstructionDrawer.tsx @@ -11,15 +11,11 @@ type Props = { }; const FollowInstructionsDrawer = ({ isOpen, handleClose, device }: Props) => { - const { error, userDeviceInteraction } = useAddMember({ device }); - return ( ); }; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/ActivationLoading.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/ActivationLoading.tsx new file mode 100644 index 000000000000..ea78ef6bc97c --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/ActivationLoading.tsx @@ -0,0 +1,51 @@ +import React from "react"; +import { WalletSyncNavigatorStackParamList } from "~/components/RootNavigator/types/WalletSyncNavigator"; +import { ScreenName } from "~/const"; +import { BaseComposite, StackNavigatorProps } from "~/components/RootNavigator/types/helpers"; +import { useLoadingStep } from "../../hooks/useLoadingStep"; +import { TrackScreen } from "~/analytics"; +import { AnalyticsPage } from "../../hooks/useLedgerSyncAnalytics"; +import GradientContainer from "~/components/GradientContainer"; +import Animation from "~/components/Animation"; +import { Flex, Text } from "@ledgerhq/native-ui"; +import lottie from "~/screens/ReceiveFunds/assets/lottie.json"; +import { useTheme } from "styled-components/native"; +import { useTranslation } from "react-i18next"; + +type Props = BaseComposite< + StackNavigatorProps +>; + +export function ActivationLoading({ route }: Props) { + const { created } = route.params; + const { colors } = useTheme(); + const { t } = useTranslation(); + const title = "walletSync.loading.title"; + const subtitle = created ? "walletSync.loading.activation" : "walletSync.loading.synch"; + useLoadingStep(created); + + return ( + <> + + + + + + + + {t(title)} + + + {t(subtitle)} + + + + + ); +} diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/ActivationSuccess.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/ActivationSuccess.tsx index 074c5d7de864..21302d6552c9 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/ActivationSuccess.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/ActivationSuccess.tsx @@ -5,6 +5,15 @@ import { BaseComposite, StackNavigatorProps } from "~/components/RootNavigator/t import { WalletSyncNavigatorStackParamList } from "~/components/RootNavigator/types/WalletSyncNavigator"; import { NavigatorName, ScreenName } from "~/const"; +import { useDispatch, useSelector } from "react-redux"; +import { isFromLedgerSyncOnboardingSelector } from "~/reducers/settings"; +import { setFromLedgerSyncOnboarding } from "~/actions/settings"; +import { AnalyticsButton, AnalyticsFlow, AnalyticsPage } from "../../hooks/useLedgerSyncAnalytics"; +import { track } from "~/analytics"; +import { setLedgerSyncActivateDrawer } from "~/actions/walletSync"; +import { Steps } from "../../types/Activation"; +import { useCurrentStep } from "../../hooks/useCurrentStep"; +import { useClose } from "../../hooks/useClose"; type Props = BaseComposite< StackNavigatorProps @@ -12,19 +21,39 @@ type Props = BaseComposite< export function ActivationSuccess({ navigation, route }: Props) { const { t } = useTranslation(); - + const isFromLedgerSyncOnboarding = useSelector(isFromLedgerSyncOnboardingSelector); const { created } = route.params; const title = created ? "walletSync.success.activation" : "walletSync.success.sync"; const desc = created ? "walletSync.success.activationDesc" : "walletSync.success.syncDesc"; + const page = created ? AnalyticsPage.BackupCreationSuccess : AnalyticsPage.SyncSuccess; + const dispatch = useDispatch(); + const { setCurrentStep } = useCurrentStep(); - function syncAnother(): void { - navigation.navigate(ScreenName.WalletSyncActivationProcess); - } + const close = useClose(); - function close(): void { + function onSyncAnother(): void { + track("button_clicked", { + button: AnalyticsButton.SyncWithAnotherLedgerLive, + page, + flow: AnalyticsFlow.LedgerSync, + }); + if (isFromLedgerSyncOnboarding) { + dispatch(setFromLedgerSyncOnboarding(false)); + } + setCurrentStep(Steps.QrCodeMethod); navigation.navigate(NavigatorName.Settings, { screen: ScreenName.GeneralSettings, }); + dispatch(setLedgerSyncActivateDrawer(true)); + } + + function onClose(): void { + track("button_clicked", { + button: AnalyticsButton.Close, + page, + flow: AnalyticsFlow.LedgerSync, + }); + close(); } return ( @@ -33,12 +62,13 @@ export function ActivationSuccess({ navigation, route }: Props) { desc={t(desc)} mainButton={{ label: t("walletSync.success.syncAnother"), - onPress: syncAnother, + onPress: onSyncAnother, }} secondaryButton={{ label: t("walletSync.success.close"), - onPress: close, + onPress: onClose, }} + analyticsPage={page} /> ); } diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/index.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/index.tsx index 9ba0dc1ce683..76fcd55b4933 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/index.tsx @@ -1,8 +1,15 @@ import React from "react"; import SafeAreaView from "~/components/SafeAreaView"; import Activation from "../../components/Activation"; +import ActivationDrawer from "./ActivationDrawer"; +import { Steps } from "../../types/Activation"; function View() { + const [showDrawer, setShowDrawer] = React.useState(false); + + const onOpenDrawer = () => setShowDrawer(true); + const onCloseDrawer = () => setShowDrawer(false); + return ( - + + + ); } diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/useActivationDrawerModel.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/useActivationDrawerModel.ts new file mode 100644 index 000000000000..4ae33187ffd4 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Activation/useActivationDrawerModel.ts @@ -0,0 +1,104 @@ +import { useCallback, useEffect, useMemo, useState } from "react"; +import { Steps } from "../../types/Activation"; +import { + AnalyticsButton, + AnalyticsPage, + useLedgerSyncAnalytics, +} from "../../hooks/useLedgerSyncAnalytics"; +import { useQRCodeHost } from "../../hooks/useQRCodeHost"; +import { Options } from "LLM/features/WalletSync/types/Activation"; +import { NavigatorName, ScreenName } from "~/const"; +import { useNavigation } from "@react-navigation/native"; +import { BaseComposite, StackNavigatorProps } from "~/components/RootNavigator/types/helpers"; +import { WalletSyncNavigatorStackParamList } from "~/components/RootNavigator/types/WalletSyncNavigator"; +import { useCurrentStep } from "../../hooks/useCurrentStep"; + +type Props = { + isOpen: boolean; + startingStep: Steps; + handleClose: () => void; +}; + +type NavigationProps = BaseComposite< + StackNavigatorProps +>; + +const useActivationDrawerModel = ({ isOpen, startingStep, handleClose }: Props) => { + const { onClickTrack } = useLedgerSyncAnalytics(); + const { currentStep, setCurrentStep } = useCurrentStep(); + + useEffect(() => { + setCurrentStep(startingStep); + }, [startingStep, setCurrentStep]); + const [currentOption, setCurrentOption] = useState(Options.SCAN); + const navigation = useNavigation(); + const hasCustomHeader = useMemo(() => currentStep === Steps.QrCodeMethod, [currentStep]); + const canGoBack = useMemo( + () => currentStep === Steps.ChooseSyncMethod && startingStep === Steps.Activation, + [currentStep, startingStep], + ); + + const getPreviousStep = useCallback( + (step: Steps): Steps => { + switch (step) { + case Steps.ChooseSyncMethod: + return Steps.Activation; + case Steps.QrCodeMethod: + return Steps.ChooseSyncMethod; + default: + return startingStep; + } + }, + [startingStep], + ); + + const navigateToChooseSyncMethod = () => setCurrentStep(Steps.ChooseSyncMethod); + + const navigateToQrCodeMethod = () => { + onClickTrack({ + button: AnalyticsButton.ScanQRCode, + page: AnalyticsPage.ChooseSyncMethod, + }); + setCurrentStep(Steps.QrCodeMethod); + }; + + const onQrCodeScanned = () => setCurrentStep(Steps.PinInput); + + const resetStep = () => setCurrentStep(startingStep); + const resetOption = () => setCurrentOption(Options.SCAN); + const goBackToPreviousStep = () => setCurrentStep(getPreviousStep(currentStep)); + + const onCloseDrawer = () => { + resetStep(); + resetOption(); + handleClose(); + }; + + const onCreateKey = () => { + navigation.navigate(NavigatorName.WalletSync, { + screen: ScreenName.WalletSyncActivationProcess, + }); + }; + + const { url, error, isLoading, pinCode } = useQRCodeHost({ + currentOption, + }); + + return { + isOpen, + hasCustomHeader, + canGoBack, + navigateToChooseSyncMethod, + navigateToQrCodeMethod, + onQrCodeScanned, + onCloseDrawer, + handleClose, + goBackToPreviousStep, + qrProcess: { url, error, isLoading, pinCode }, + currentOption, + setCurrentOption, + onCreateKey, + }; +}; + +export default useActivationDrawerModel; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/DeviceSelection/index.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/DeviceSelection/index.tsx index cb7a7a8b674b..40f4c457532d 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/DeviceSelection/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/DeviceSelection/index.tsx @@ -17,6 +17,7 @@ import { useAppDeviceAction } from "~/hooks/deviceActions"; import { AppResult } from "@ledgerhq/live-common/hw/actions/app"; import { WalletSyncNavigatorStackParamList } from "~/components/RootNavigator/types/WalletSyncNavigator"; import { TRUSTCHAIN_APP_NAME } from "@ledgerhq/hw-trustchain"; +import { SafeAreaView } from "react-native-safe-area-context"; type NavigationProps = BaseComposite< StackNavigatorProps< @@ -100,7 +101,7 @@ const WalletSyncActivationDeviceSelection: React.FC = ({ if (!isFocused) return null; return ( - <> + {!isHeaderOverridden ? ( @@ -128,7 +129,7 @@ const WalletSyncActivationDeviceSelection: React.FC = ({ request={request} onError={onError} /> - + ); }; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/FollowInstructions/index.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/FollowInstructions/index.tsx index 0f109634fa9b..ab99c31b7f67 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/FollowInstructions/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/FollowInstructions/index.tsx @@ -1,52 +1,105 @@ +import { useNavigation } from "@react-navigation/native"; import React from "react"; import QueuedDrawer from "LLM/components/QueuedDrawer"; import { TrackScreen } from "~/analytics"; +import { + RootNavigationComposite, + StackNavigatorNavigation, +} from "~/components/RootNavigator/types/helpers"; +import { BaseNavigatorStackParamList } from "~/components/RootNavigator/types/BaseNavigator"; +import { NavigatorName, ScreenName } from "~/const"; import FollowInstructions from "../../components/FollowInstructions"; -import { Device } from "@ledgerhq/live-common/hw/actions/types"; import GenericErrorView from "~/components/GenericErrorView"; import { Flex, InfiniteLoader } from "@ledgerhq/native-ui"; -import { TrustchainNotAllowed } from "@ledgerhq/trustchain/errors"; -import { DeletionError, ErrorReason } from "../../components/ManageInstances/DeletionError"; +import { ConfirmManageKey } from "../../components/ManageKey/Confirm"; +import { DeletionError } from "../../components/ManageInstances/DeletionError"; +import { DrawerProps, SceneKind } from "../../hooks/useFollowInstructionDrawer"; +import { SpecificError } from "../../components/Error/SpecificError"; +import { ErrorReason } from "../../hooks/useSpecificError"; -type Props = { +type Props = DrawerProps & { isOpen: boolean; handleClose: () => void; - device: Device | null; - userDeviceInteraction: boolean; - error: Error | null; - goToDelete?: () => void; }; const GenericFollowInstructionsDrawer = ({ isOpen, handleClose, - device, - error, - userDeviceInteraction, + scene, goToDelete, + backToWrongSeedError, + confirmDeleteKey, + retry, }: Props) => { + const { navigate } = + useNavigation>>(); + + const getScene = () => { + switch (scene.kind) { + case SceneKind.DeviceInstructions: + return ; + + case SceneKind.Loader: + return ( + + + + ); + + case SceneKind.ConfirmDeleteWrongSeedError: + return ( + + ); + + case SceneKind.KeyError: + return ( + + ); + + case SceneKind.AlreadySecuredSameSeed: + return ; + + case SceneKind.AlreadySecuredOtherSeed: + return ( + + ); + + case SceneKind.GenericError: + return ; + + case SceneKind.UnbackedError: + return ( + { + navigate(NavigatorName.BaseOnboarding, { + screen: NavigatorName.Onboarding, + params: { + screen: ScreenName.OnboardingPostWelcomeSelection, + params: { userHasDevice: true }, + }, + }); + }} + /> + ); + } + }; + return ( <> - {error ? ( - error instanceof TrustchainNotAllowed ? ( - - ) : ( - - ) - ) : userDeviceInteraction && device ? ( - - ) : ( - - - - )} + {getScene()} ); diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/FollowInstructions/useFollowInstructions.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/FollowInstructions/useFollowInstructions.ts index a88a86930057..bf831c28f72a 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/FollowInstructions/useFollowInstructions.ts +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/FollowInstructions/useFollowInstructions.ts @@ -1,6 +1,6 @@ import { Device } from "@ledgerhq/live-common/hw/actions/types"; import { useState, useCallback } from "react"; -import { logDrawer } from "~/newArch/components/QueuedDrawer/utils/logDrawer"; +import { logDrawer } from "LLM/components/QueuedDrawer/utils/logDrawer"; const messageLog = "Follow Steps on device"; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/LedgerSyncDeepLinkHandler.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/LedgerSyncDeepLinkHandler.tsx new file mode 100644 index 000000000000..95f118a04497 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/LedgerSyncDeepLinkHandler.tsx @@ -0,0 +1,27 @@ +import { StackActions, useNavigation } from "@react-navigation/native"; +import { useEffect } from "react"; +import { useDispatch, useSelector } from "react-redux"; +import { trustchainSelector } from "@ledgerhq/trustchain/store"; +import { setLedgerSyncActivateDrawer } from "~/actions/walletSync"; +import { NavigatorName, ScreenName } from "~/const"; + +export function LedgerSyncDeepLinkHandler() { + const hasTrustchain = !!useSelector(trustchainSelector)?.rootId; + const navigation = useNavigation(); + const dispatch = useDispatch(); + + useEffect(() => { + if (hasTrustchain) { + const routeName = NavigatorName.WalletSync; + const screen = ScreenName.WalletSyncActivated; + navigation.dispatch(StackActions.replace(routeName, { screen })); + } else { + const routeName = NavigatorName.Settings; + const screen = ScreenName.GeneralSettings; + navigation.dispatch(StackActions.replace(routeName, { screen })); + dispatch(setLedgerSyncActivateDrawer(true)); + } + }, [hasTrustchain, navigation, dispatch]); + + return null; +} diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Manage/index.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Manage/index.tsx index 5ab335723745..461467e05f0e 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Manage/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Manage/index.tsx @@ -1,20 +1,25 @@ import { Box, Flex, Text, Icons, InfiniteLoader, Alert } from "@ledgerhq/native-ui"; -import React, { useCallback } from "react"; +import React, { useMemo, useState } from "react"; import { useTranslation } from "react-i18next"; import { Option, OptionProps } from "./Option"; import styled from "styled-components"; import { AnalyticsButton, AnalyticsPage, - useWalletSyncAnalytics, -} from "../../hooks/useWalletSyncAnalytics"; + useLedgerSyncAnalytics, +} from "../../hooks/useLedgerSyncAnalytics"; import { Separator } from "../../components/Separator"; import { TouchableOpacity } from "react-native"; -import { TrustchainNotFound } from "../../hooks/useGetMembers"; import ManageKeyDrawer from "../ManageKey/ManageKeyDrawer"; import { useManageKeyDrawer } from "../ManageKey/useManageKeyDrawer"; import ManageInstanceDrawer from "../ManageInstances/ManageInstancesDrawer"; import { useManageInstancesDrawer } from "../ManageInstances/useManageInstanceDrawer"; +import ActivationDrawer from "../Activation/ActivationDrawer"; +import { Steps } from "../../types/Activation"; +import { TrackScreen } from "~/analytics"; +import { AlertLedgerSyncDown } from "../../components/AlertLedgerSyncDown"; +import { useLedgerSyncStatus } from "../../hooks/useLedgerSyncStatus"; +import { TrustchainNotFound } from "@ledgerhq/trustchain/errors"; const WalletSyncManage = () => { const { t } = useTranslation(); @@ -22,26 +27,38 @@ const WalletSyncManage = () => { const manageKeyHook = useManageKeyDrawer(); const manageInstancesHook = useManageInstancesDrawer(); - const { data, isLoading, isError, error } = manageInstancesHook.memberHook; + const { error: ledgerSyncError, isError: isLedgerSyncError } = useLedgerSyncStatus(); - const { onClickTrack } = useWalletSyncAnalytics(); + const { data, isLoading, isError, error: manageInstancesError } = manageInstancesHook.memberHook; - const goToManageBackup = useCallback(() => { - manageKeyHook.openDrawer(); - onClickTrack({ button: AnalyticsButton.ManageKey, page: AnalyticsPage.WalletSyncActivated }); - }, [manageKeyHook, onClickTrack]); + const { onClickTrack } = useLedgerSyncAnalytics(); + + const [isSyncDrawerOpen, setIsSyncDrawerOpen] = useState(false); const goToSync = () => { - //dispatch(setFlow({ flow: Flow.Synchronize, step: Step.SynchronizeMode })); + manageInstancesHook.checkInstances(); + setIsSyncDrawerOpen(true); + onClickTrack({ button: AnalyticsButton.Synchronize, page: AnalyticsPage.LedgerSyncSettings }); + }; - onClickTrack({ button: AnalyticsButton.Synchronize, page: AnalyticsPage.WalletSyncActivated }); + const closeSyncDrawer = () => setIsSyncDrawerOpen(false); + + const goToManageBackup = () => { + manageKeyHook.openDrawer(); + onClickTrack({ + button: AnalyticsButton.ManageKey, + page: AnalyticsPage.LedgerSyncSettings, + hasFlow: false, + }); }; const goToManageInstances = () => { + manageInstancesHook.checkInstances(); manageInstancesHook.openDrawer(); onClickTrack({ - button: AnalyticsButton.ManageSynchronizations, - page: AnalyticsPage.WalletSyncActivated, + button: AnalyticsButton.ManageInstances, + page: AnalyticsPage.LedgerSyncSettings, + hasFlow: false, }); }; @@ -62,17 +79,29 @@ const WalletSyncManage = () => { }, ]; - function getError(error: Error) { - // if (error instanceof UnavailableServerError) { DO SOMETHING} + const error = useMemo( + () => ledgerSyncError || manageInstancesError, + [ledgerSyncError, manageInstancesError], + ); - return ; - } + const getTopContent = () => { + if (error) { + if (isLedgerSyncError) { + return ; + } + return ; + } else { + return ; + } + }; + + const hasError = isLedgerSyncError || isError; return ( - {/* */} + - {isError ? getError(error) : } + {getTopContent()} {Options.map((props, index) => ( diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageInstances/DeletionInstructionDrawer.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageInstances/DeletionInstructionDrawer.tsx index e64ffe7f3d5b..8dd1bbf6e486 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageInstances/DeletionInstructionDrawer.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageInstances/DeletionInstructionDrawer.tsx @@ -13,16 +13,11 @@ type Props = { }; const DeletionFollowInstructionsDrawer = ({ isOpen, handleClose, device, member }: Props) => { - const { error, userDeviceInteraction, goToDelete } = useRemoveMember({ device, member }); - return ( ); }; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageInstances/DeletionSuccess.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageInstances/DeletionSuccess.tsx index 65c918cc22ad..24c7b1ff217f 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageInstances/DeletionSuccess.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageInstances/DeletionSuccess.tsx @@ -5,6 +5,8 @@ import { BaseComposite, StackNavigatorProps } from "~/components/RootNavigator/t import { WalletSyncNavigatorStackParamList } from "~/components/RootNavigator/types/WalletSyncNavigator"; import { NavigatorName, ScreenName } from "~/const"; +import { AnalyticsButton, AnalyticsPage } from "../../hooks/useLedgerSyncAnalytics"; +import { track } from "~/analytics"; type Props = BaseComposite< StackNavigatorProps< @@ -17,6 +19,10 @@ export function WalletSyncManageInstanceDeletionSuccess({ navigation, route }: P const { t } = useTranslation(); const member = route.params?.member.name; function close(): void { + track("button_clicked", { + button: AnalyticsButton.Close, + page: AnalyticsPage.RemoveInstanceSuccess, + }); navigation.navigate(NavigatorName.Settings, { screen: ScreenName.GeneralSettings, }); @@ -31,6 +37,7 @@ export function WalletSyncManageInstanceDeletionSuccess({ navigation, route }: P label: t("walletSync.success.close"), onPress: close, }} + analyticsPage={AnalyticsPage.RemoveInstanceSuccess} /> ); } diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageInstances/ManageInstancesDrawer.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageInstances/ManageInstancesDrawer.tsx index cfd8b8004be1..952a6efa15e8 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageInstances/ManageInstancesDrawer.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageInstances/ManageInstancesDrawer.tsx @@ -1,13 +1,14 @@ -import React from "react"; +import React, { useCallback } from "react"; import QueuedDrawer from "LLM/components/QueuedDrawer"; -import { TrackScreen } from "~/analytics"; import GenericErrorView from "~/components/GenericErrorView"; import { Flex, InfiniteLoader } from "@ledgerhq/native-ui"; import { ListInstances } from "../../components/ManageInstances/ListInstances"; -import { DeletionError, ErrorReason } from "../../components/ManageInstances/DeletionError"; +import { DeletionError } from "../../components/ManageInstances/DeletionError"; import { HookResult, Scene } from "./useManageInstanceDrawer"; +import { useManageKeyDrawer } from "../ManageKey/useManageKeyDrawer"; +import { ErrorReason } from "../../hooks/useSpecificError"; const ManageInstancesDrawer = ({ isDrawerVisible, @@ -19,6 +20,12 @@ const ManageInstancesDrawer = ({ onClickInstance, }: HookResult) => { const { error, isError, isLoading, data } = memberHook; + const manageKeyHook = useManageKeyDrawer(); + + const goToManageBackup = useCallback(() => { + handleClose(); + manageKeyHook.openDrawer(); + }, [manageKeyHook, handleClose]); const getScene = () => { if (isError) { @@ -47,21 +54,17 @@ const ManageInstancesDrawer = ({ return ( console.log("gotoDelete")} - understood={() => changeScene(Scene.List)} + primaryAction={() => changeScene(Scene.List)} + secondaryAction={goToManageBackup} /> ); } }; return ( - <> - - - {getScene()} - - + + {getScene()} + ); }; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageInstances/useManageInstanceDrawer.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageInstances/useManageInstanceDrawer.ts index 1d269c163afe..738fd1e8bc27 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageInstances/useManageInstanceDrawer.ts +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageInstances/useManageInstanceDrawer.ts @@ -1,5 +1,5 @@ import { useState, useCallback } from "react"; -import { logDrawer } from "~/newArch/components/QueuedDrawer/utils/logDrawer"; +import { logDrawer } from "LLM/components/QueuedDrawer/utils/logDrawer"; import { useGetMembers } from "../../hooks/useGetMembers"; import { UseQueryResult } from "@tanstack/react-query"; import { MemberCredentials, TrustchainMember } from "@ledgerhq/trustchain/types"; @@ -9,6 +9,8 @@ import { useNavigation } from "@react-navigation/native"; import { StackNavigatorNavigation } from "~/components/RootNavigator/types/helpers"; import { WalletSyncNavigatorStackParamList } from "~/components/RootNavigator/types/WalletSyncNavigator"; import { ScreenName } from "~/const"; +import { track } from "~/analytics"; +import { AnalyticsButton, AnalyticsPage } from "../../hooks/useLedgerSyncAnalytics"; const messageLog = "Follow Steps on device"; @@ -28,6 +30,7 @@ export type HookResult = { onClickInstance: (instance: TrustchainMember) => void; scene: Scene; memberCredentials: MemberCredentials | null; + checkInstances: () => void; }; export const useManageInstancesDrawer = (): HookResult => { @@ -42,16 +45,24 @@ export const useManageInstancesDrawer = (): HookResult => { const openDrawer = useCallback(() => { setIsDrawerInstructionsVisible(true); - logDrawer(messageLog, "open"); }, []); const closeDrawer = useCallback(() => { setIsDrawerInstructionsVisible(false); logDrawer(messageLog, "close"); - }, []); + + track("button_clicked", { + button: AnalyticsButton.Close, + page: scene === Scene.List ? AnalyticsPage.ManageSyncInstances : AnalyticsPage.AutoRemove, + }); + }, [scene]); const onClickInstance = (instance: TrustchainMember) => { + track("button_clicked", { + button: AnalyticsButton.RemoveInstance, + page: AnalyticsPage.ManageSyncInstances, + }); navigation.navigate(ScreenName.WalletSyncManageInstancesProcess, { member: instance, }); @@ -64,6 +75,8 @@ export const useManageInstancesDrawer = (): HookResult => { const changeScene = (scene: Scene) => setScene(scene); + const checkInstances = () => memberHook.refetch(); + return { isDrawerVisible, changeScene, @@ -75,5 +88,6 @@ export const useManageInstancesDrawer = (): HookResult => { onClickDelete, scene, memberCredentials, + checkInstances, }; }; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageKey/DeletionSuccess.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageKey/DeletionSuccess.tsx index 2e6c36c955b7..a7a8d8cfce44 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageKey/DeletionSuccess.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageKey/DeletionSuccess.tsx @@ -5,6 +5,7 @@ import { BaseComposite, StackNavigatorProps } from "~/components/RootNavigator/t import { WalletSyncNavigatorStackParamList } from "~/components/RootNavigator/types/WalletSyncNavigator"; import { NavigatorName, ScreenName } from "~/const"; +import { AnalyticsPage } from "../../hooks/useLedgerSyncAnalytics"; type Props = BaseComposite< StackNavigatorProps< @@ -29,6 +30,7 @@ export function WalletSyncManageKeyDeletionSuccess({ navigation }: Props) { label: t("walletSync.success.close"), onPress: close, }} + analyticsPage={AnalyticsPage.DeleteBackupSuccess} /> ); } diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageKey/ManageKeyDrawer.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageKey/ManageKeyDrawer.tsx index 582d5181289f..295f235086f4 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageKey/ManageKeyDrawer.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageKey/ManageKeyDrawer.tsx @@ -1,6 +1,5 @@ import React from "react"; import QueuedDrawer from "LLM/components/QueuedDrawer"; -import { TrackScreen } from "~/analytics"; import GenericErrorView from "~/components/GenericErrorView"; import { Flex, InfiniteLoader } from "@ledgerhq/native-ui"; @@ -16,6 +15,7 @@ const ManageKeyDrawer = ({ scene, onClickDelete, onClickConfirm, + handleCancel, }: HookResult) => { const getScene = () => { if (deleteMutation.error) { @@ -40,17 +40,14 @@ const ManageKeyDrawer = ({ return ; } if (scene === Scene.Confirm) { - return ; + return ; } }; return ( - <> - - - {getScene()} - - + + {getScene()} + ); }; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageKey/useManageKeyDrawer.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageKey/useManageKeyDrawer.ts index ee3a6ab2e77b..a82e22a20424 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageKey/useManageKeyDrawer.ts +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/ManageKey/useManageKeyDrawer.ts @@ -3,12 +3,14 @@ import { useState, useCallback } from "react"; import { StackNavigatorNavigation } from "~/components/RootNavigator/types/helpers"; import { WalletSyncNavigatorStackParamList } from "~/components/RootNavigator/types/WalletSyncNavigator"; import { ScreenName } from "~/const"; -import { logDrawer } from "~/newArch/components/QueuedDrawer/utils/logDrawer"; +import { logDrawer } from "LLM/components/QueuedDrawer/utils/logDrawer"; import { useDestroyTrustchain } from "../../hooks/useDestroyTrustchain"; import { UseMutationResult } from "@tanstack/react-query"; import { useDispatch, useSelector } from "react-redux"; import { setWallectSyncManageKeyDrawer } from "~/actions/walletSync"; import { manageKeyDrawerSelector } from "~/reducers/walletSync"; +import { track } from "~/analytics"; +import { AnalyticsButton, AnalyticsPage } from "../../hooks/useLedgerSyncAnalytics"; const messageLog = "Follow Steps on device"; @@ -26,6 +28,7 @@ export type HookResult = { scene: Scene; onClickConfirm: () => Promise; deleteMutation: UseMutationResult; + handleCancel: () => void; }; export const useManageKeyDrawer = () => { @@ -37,7 +40,13 @@ export const useManageKeyDrawer = () => { const [scene, setScene] = useState(Scene.Manage); - const onClickDelete = () => setScene(Scene.Confirm); + const onClickDelete = () => { + track("button_clicked", { + button: AnalyticsButton.DeleteKey, + page: AnalyticsPage.ManageBackup, + }); + setScene(Scene.Confirm); + }; const openDrawer = useCallback(() => { dispatch(setWallectSyncManageKeyDrawer(true)); @@ -46,6 +55,7 @@ export const useManageKeyDrawer = () => { }, [dispatch]); const closeDrawer = useCallback(() => { + setScene(Scene.Manage); dispatch(setWallectSyncManageKeyDrawer(false)); logDrawer(messageLog, "close"); }, [dispatch]); @@ -54,10 +64,27 @@ export const useManageKeyDrawer = () => { const handleClose = () => { closeDrawer(); - setScene(Scene.Manage); + + track("button_clicked", { + button: AnalyticsButton.Close, + page: AnalyticsPage.ManageBackup, + }); + }; + + const handleCancel = () => { + closeDrawer(); + track("button_clicked", { + button: AnalyticsButton.Cancel, + page: AnalyticsPage.ConfirmDeleteBackup, + }); }; const onClickConfirm = async () => { + track("button_clicked", { + button: AnalyticsButton.Delete, + page: AnalyticsPage.ConfirmDeleteBackup, + }); + await deleteMutation.mutateAsync(); closeDrawer(); navigation.navigate(ScreenName.WalletSyncManageKeyDeleteSuccess); @@ -72,5 +99,6 @@ export const useManageKeyDrawer = () => { scene, onClickConfirm, deleteMutation, + handleCancel, }; }; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Synchronize/ChooseMethod.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Synchronize/ChooseMethod.tsx index 94651bbbd808..0c91472036f9 100644 --- a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Synchronize/ChooseMethod.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Synchronize/ChooseMethod.tsx @@ -6,21 +6,31 @@ import { useNavigation } from "@react-navigation/native"; import { NavigatorName, ScreenName } from "~/const"; import { BaseComposite, StackNavigatorProps } from "~/components/RootNavigator/types/helpers"; import { WalletSyncNavigatorStackParamList } from "~/components/RootNavigator/types/WalletSyncNavigator"; +import { + useLedgerSyncAnalytics, + AnalyticsButton, + AnalyticsPage, +} from "../../hooks/useLedgerSyncAnalytics"; type NavigationProps = BaseComposite< StackNavigatorProps >; -const ChooseSyncMethod = () => { +type Props = { + onScanMethodPress: () => void; +}; + +const ChooseSyncMethod = ({ onScanMethodPress }: Props) => { const { t } = useTranslation(); const navigation = useNavigation(); + const { onClickTrack } = useLedgerSyncAnalytics(); const onConnectDeviceMethodPress = () => { + onClickTrack({ button: AnalyticsButton.UseYourLedger, page: AnalyticsPage.ChooseSyncMethod }); navigation.navigate(NavigatorName.WalletSync, { screen: ScreenName.WalletSyncActivationProcess, }); }; - const onScanMethodPress = () => {}; return ( diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Synchronize/PinCodeDisplay.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Synchronize/PinCodeDisplay.tsx new file mode 100644 index 000000000000..5cf1bb0f86f7 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Synchronize/PinCodeDisplay.tsx @@ -0,0 +1,49 @@ +import React from "react"; +import { useTranslation } from "react-i18next"; +import { Flex, Text } from "@ledgerhq/native-ui"; +import styled, { useTheme } from "styled-components/native"; +import { AnalyticsPage } from "../../hooks/useLedgerSyncAnalytics"; +import TrackScreen from "~/analytics/TrackScreen"; + +type Props = { + pinCode: string; +}; + +export default function PinCodeDisplay({ pinCode }: Props) { + const { t } = useTranslation(); + const { colors } = useTheme(); + + return ( + + + + {t("walletSync.synchronize.qrCode.pinCode.title")} + + + + {t("walletSync.synchronize.qrCode.pinCode.desc")} + + + + {pinCode?.split("").map((digit, index) => ( + + + {digit} + + + ))} + + + ); +} + +const NumberContainer = styled(Flex)` + border-radius: 8px; + height: 50px; + width: 50px; +`; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Synchronize/PinCodeInput.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Synchronize/PinCodeInput.tsx new file mode 100644 index 000000000000..01daf9740bfc --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Synchronize/PinCodeInput.tsx @@ -0,0 +1,117 @@ +import React, { forwardRef, useEffect, useImperativeHandle, useRef, useState } from "react"; +import { useTranslation } from "react-i18next"; +import { Flex, Text } from "@ledgerhq/native-ui"; +import styled from "styled-components/native"; +import { AnalyticsPage } from "../../hooks/useLedgerSyncAnalytics"; +import TrackScreen from "~/analytics/TrackScreen"; +import { NativeSyntheticEvent, TextInput, TextInputKeyPressEventData } from "react-native"; + +type Props = { + handleSendDigits: (input: string) => void; + nbDigits: number; +}; + +export default function PinCodeInput({ nbDigits, handleSendDigits }: Props) { + const { t } = useTranslation(); + + // Dynamically create refs based on the number of digits + const inputRefs = useRef<(TextInput | null)[]>(Array(nbDigits).fill(null)); + const [digits, setDigits] = useState(Array(nbDigits).fill("")); + + useEffect(() => { + if (digits.every(digit => digit)) { + handleSendDigits(digits.join("")); + } + }, [digits, handleSendDigits]); + + const handleChange = (value: string, index: number) => { + const newDigits = [...digits]; + newDigits[index] = value; + setDigits(newDigits); + if (value && index < nbDigits - 1) { + inputRefs.current[index + 1]?.focus(); + } + }; + + const handleKeyPress = (e: NativeSyntheticEvent, index: number) => { + if (e.nativeEvent.key === "Backspace") { + if (!digits[index] && index > 0) { + inputRefs.current[index - 1]?.focus(); + } else { + const newDigits = [...digits]; + newDigits[index] = ""; + setDigits(newDigits); + } + } + }; + + return ( + + + + {t("walletSync.synchronize.qrCode.pinCode.title")} + + + {t("walletSync.synchronize.qrCode.pinCode.desc")} + + + {digits.map((digit, index) => ( + handleChange(value, index)} + onKeyPress={e => handleKeyPress(e, index)} + index={index} + ref={el => (inputRefs.current[index] = el)} + /> + ))} + + + ); +} + +interface DigitInputProps { + value: string; + onChange: (value: string) => void; + onKeyPress: (e: NativeSyntheticEvent, index: number) => void; + index: number; +} + +const DigitInput = forwardRef( + ({ value, onChange, onKeyPress, index }, forwardedRef) => { + const [isFocused, setIsFocused] = useState(false); + const inputRef = useRef(null); + + useImperativeHandle(forwardedRef, () => inputRef.current as TextInput); + + const handleChange = (text: string) => { + if (text.length <= 1 && /^\d*$/.test(text)) { + onChange(text); + } + }; + + return ( + setIsFocused(true)} + onBlur={() => setIsFocused(false)} + isFocused={isFocused} + onKeyPress={e => onKeyPress(e, index)} + textAlign="center" + /> + ); + }, +); + +const NumberContainer = styled(TextInput)<{ isFocused: boolean }>` + border-radius: 8px; + height: 50px; + width: 50px; + border: 1px solid + ${({ theme, isFocused }) => (isFocused ? theme.colors.primary.c80 : theme.colors.neutral.c40)}; + color: ${({ theme }) => theme.colors.neutral.c100}; +`; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Synchronize/QrCodeMethod.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Synchronize/QrCodeMethod.tsx new file mode 100644 index 000000000000..9af94affd711 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Synchronize/QrCodeMethod.tsx @@ -0,0 +1,76 @@ +import React from "react"; +import { Flex, TabSelector } from "@ledgerhq/native-ui"; +import QrCode from "LLM/features/WalletSync/components/Synchronize/QrCode"; +import ScanQrCode from "../../components/Synchronize/ScanQrCode"; +import { Options, OptionsType } from "LLM/features/WalletSync/types/Activation"; +import { useTranslation } from "react-i18next"; +import { + useLedgerSyncAnalytics, + AnalyticsPage, + AnalyticsButton, +} from "../../hooks/useLedgerSyncAnalytics"; +import { TrackScreen } from "~/analytics"; + +interface Props { + setSelectedOption: (option: OptionsType) => void; + onQrCodeScanned: (data: string) => void; + currentOption: Options; + qrCodeValue?: string | null; +} + +const QrCodeMethod = ({ + setSelectedOption, + onQrCodeScanned, + currentOption, + qrCodeValue, +}: Props) => { + const { onClickTrack } = useLedgerSyncAnalytics(); + const { t } = useTranslation(); + + const handleSelectOption = (option: OptionsType) => { + setSelectedOption(option); + const button = + option === Options.SCAN ? AnalyticsButton.ScanQRCode : AnalyticsButton.ShowQRCode; + const page = option === Options.SCAN ? AnalyticsPage.ShowQRCode : AnalyticsPage.ScanQRCode; + onClickTrack({ + button, + page, + }); + }; + + const renderSwitch = () => { + switch (currentOption) { + case Options.SCAN: + return ( + <> + + + + ); + case Options.SHOW_QR: + return ( + <> + + + + ); + } + }; + + return ( + + + {renderSwitch()} + + ); +}; + +export default QrCodeMethod; diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Synchronize/SyncError.tsx b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Synchronize/SyncError.tsx new file mode 100644 index 000000000000..1d1946c0bf00 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/screens/Synchronize/SyncError.tsx @@ -0,0 +1,34 @@ +import React from "react"; +import { useTranslation } from "react-i18next"; +import { ErrorComponent } from "../../components/Error/Simple"; +import { AnalyticsButton, AnalyticsPage } from "../../hooks/useLedgerSyncAnalytics"; +import { track } from "~/analytics"; + +interface Props { + tryAgain: () => void; +} + +export default function SyncError({ tryAgain }: Props) { + const { t } = useTranslation(); + + const onTryAgain = () => { + tryAgain(); + track("button_clicked", { + button: AnalyticsButton.TryAgain, + page: AnalyticsPage.PinCodesDoNotMatch, + }); + }; + + return ( + + ); +} diff --git a/apps/ledger-live-mobile/src/newArch/features/WalletSync/types/Activation.ts b/apps/ledger-live-mobile/src/newArch/features/WalletSync/types/Activation.ts new file mode 100644 index 000000000000..1e09b07d4929 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/WalletSync/types/Activation.ts @@ -0,0 +1,20 @@ +export enum Options { + SCAN = "scan", + SHOW_QR = "showQR", +} + +export type OptionsType = Options.SCAN | Options.SHOW_QR; + +export enum Steps { + AddAccountMethod = "AddAccountMethod", + + Activation = "Activation", + ChooseSyncMethod = "ChooseSyncMethod", + QrCodeMethod = "QrCodeMethod", + PinDisplay = "PinDisplay", + PinInput = "PinInput", + SyncError = "SyncError", + UnbackedError = "UnbackedError", + AlreadyBacked = "AlreadyBacked", + BackedWithDifferentSeeds = "BackedWithDifferentSeeds", +} diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/HeaderContext.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/HeaderContext.tsx deleted file mode 100644 index 7056b352d371..000000000000 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/HeaderContext.tsx +++ /dev/null @@ -1,9 +0,0 @@ -import { createContext } from "react"; -import { SharedValue } from "react-native-reanimated"; - -export type HeaderContextType = { - layoutY?: SharedValue; - search?: string; -}; - -export const HeaderContext = createContext({}); diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/Navigator.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/Navigator.tsx index 9d062a3981ec..29f72462c736 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/Navigator.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/Navigator.tsx @@ -1,73 +1,29 @@ -import React, { useState } from "react"; -import { createNativeStackNavigator } from "@react-navigation/native-stack"; -import { useSharedValue } from "react-native-reanimated"; +import React from "react"; +import { + createNativeStackNavigator, + NativeStackNavigationOptions, +} from "@react-navigation/native-stack"; import { ScreenName } from "~/const"; -import { HeaderContext } from "./HeaderContext"; import Web3HubSearch from "./screens/Web3HubSearch"; -import Web3HubSearchHeader from "./screens/Web3HubSearch/components/Header"; import Web3HubTabs from "./screens/Web3HubTabs"; -import Web3HubTabsHeader from "./screens/Web3HubTabs/components/Header"; import Web3HubApp from "./screens/Web3HubApp"; -import Web3HubAppHeader from "./screens/Web3HubApp/components/Header"; -import type { AppProps, SearchProps, TabsProps, Web3HubStackParamList } from "./types"; +import type { Web3HubStackParamList } from "./types"; // Uncomment to use mocks (you need to reload the app) // process.env.MOCK_WEB3HUB = "1"; const Stack = createNativeStackNavigator(); -export default function Navigator() { - const layoutY = useSharedValue(0); - const [search, setSearch] = useState(""); +const screenOptions: NativeStackNavigationOptions = { + headerShown: false, +}; +export default function Navigator() { return ( - - - ( - - ), - }} - /> - ( - - ), - }} - /> - ( - - ), - }} - /> - - + + + + + ); } diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/TabNavigator.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/TabNavigator.tsx index 4b064a2fbb25..cfca591849ce 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/TabNavigator.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/TabNavigator.tsx @@ -1,44 +1,22 @@ import React from "react"; -import { useTranslation } from "react-i18next"; -import { createNativeStackNavigator } from "@react-navigation/native-stack"; -import { useSharedValue } from "react-native-reanimated"; +import { + createNativeStackNavigator, + NativeStackNavigationOptions, +} from "@react-navigation/native-stack"; import { ScreenName } from "~/const"; -import { HeaderContext } from "./HeaderContext"; import Web3HubMain from "./screens/Web3HubMain"; -import Web3HubMainHeader from "./screens/Web3HubMain/components/Header"; -import { MainProps, Web3HubTabStackParamList } from "./types"; +import { Web3HubTabStackParamList } from "./types"; const Stack = createNativeStackNavigator(); -export default function TabNavigator() { - const { t } = useTranslation(); - const layoutY = useSharedValue(0); +const screenOptions: NativeStackNavigationOptions = { + headerShown: false, +}; +export default function TabNavigator() { return ( - - - ( - - ), - animation: "none", - }} - /> - - + + + ); } diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/__integrations__/web3hub.integration.test.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/__integrations__/web3hub.integration.test.tsx index f134c6466322..394b6fcb3e0a 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/__integrations__/web3hub.integration.test.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/__integrations__/web3hub.integration.test.tsx @@ -245,6 +245,32 @@ describe("Web3Hub integration test", () => { expect(screen.getByRole("searchbox")).toBeDisabled(); }); + it("Should be able to see Clear Signing section and label on disclaimer", async () => { + const { user } = render(); + expect(await screen.findByText("Explore web3")).toBeOnTheScreen(); + await waitForLoader(); + + expect((await screen.findAllByText("Clear signing"))[0]).toBeOnTheScreen(); + expect((await screen.findAllByRole("banner", { name: /clear signing/i }))[0]).toBeOnTheScreen(); + + expect((await screen.findAllByText("Clear-signing"))[0]).toBeOnTheScreen(); + await user.press(screen.getAllByText("Clear-signing")[0]); + expect(await screen.findByText("Clear signing enabled")).toBeOnTheScreen(); + + expect(await screen.findByText("Open Clear-signing")).toBeOnTheScreen(); + await user.press(screen.getByText("Open Clear-signing")); + expect(await screen.findByText("clear-signing-0")).toBeOnTheScreen(); + expect(await screen.findByText("Clear-signing")).toBeOnTheScreen(); + + expect(await screen.findByRole("button", { name: /back/i })).toBeOnTheScreen(); + await user.press(screen.getByRole("button", { name: /back/i })); + expect(await screen.findByText("Explore web3")).toBeOnTheScreen(); + + expect((await screen.findAllByText("Dummy Wallet App"))[0]).toBeOnTheScreen(); + await user.press(screen.getAllByText("Dummy Wallet App")[0]); + expect(await screen.findByText("Clear signing disabled")).toBeOnTheScreen(); + }); + it("Should only show the confirmation bottom modal if not dismissed previously", async () => { const { user } = render(); diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/AnimatedBar/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/AnimatedBar/index.tsx new file mode 100644 index 000000000000..4cd0e1204283 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/AnimatedBar/index.tsx @@ -0,0 +1,86 @@ +import React, { PropsWithChildren } from "react"; +import { ColorValue, StyleProp, ViewStyle } from "react-native"; +import Animated, { + useAnimatedStyle, + interpolate, + Extrapolation, + SharedValue, + AnimatedStyle, +} from "react-native-reanimated"; + +type Props = PropsWithChildren<{ + pt?: number; + style?: StyleProp>>; + layoutY: SharedValue; + totalHeight: number; + opacityHeight: number; + animationHeight: number; + backgroundColor?: ColorValue; + opacityChildren?: React.ReactNode; +}>; + +export default function AnimatedBar({ + pt = 0, + style, + layoutY, + backgroundColor, + totalHeight, + opacityHeight, + animationHeight, + opacityChildren, + children, +}: Props) { + const heightStyle = useAnimatedStyle(() => { + if (!layoutY) return {}; + + const headerHeight = interpolate( + layoutY.value, + [0, animationHeight], + [totalHeight, totalHeight - animationHeight], + Extrapolation.CLAMP, + ); + + return { + backgroundColor: backgroundColor, + paddingTop: pt, + height: headerHeight + pt, + }; + }); + + const transformStyle = useAnimatedStyle(() => { + if (!layoutY) return {}; + + return { + // Height necessary for proper transform + height: totalHeight, + transform: [ + { + translateY: interpolate( + layoutY.value, + [0, animationHeight], + [0, -animationHeight], + Extrapolation.CLAMP, + ), + }, + ], + }; + }); + + const opacityStyle = useAnimatedStyle(() => { + if (!layoutY) return {}; + + return { + height: opacityHeight, + opacity: interpolate(layoutY.value, [0, animationHeight], [1, 0], Extrapolation.CLAMP), + }; + }); + + return ( + + + {opacityChildren} + {children} + + + ); +} diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/Disclaimer/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/Disclaimer/index.tsx index 762c6520134e..36aea632c4d3 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/Disclaimer/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/Disclaimer/index.tsx @@ -25,6 +25,10 @@ export default function Disclaimer({ : undefined; }, [locale, manifest?.content.description]); + const clearSigningEnabled = useMemo(() => { + return manifest?.categories.includes("clear signing"); + }, [manifest?.categories]); + return ( {manifest ? ( @@ -35,7 +39,7 @@ export default function Disclaimer({ {description ? ( - + {description} @@ -43,18 +47,29 @@ export default function Disclaimer({ - - - - - - {t("web3hub.disclaimer.clearSigningEnabled")} - - + {clearSigningEnabled ? ( + + + + + + {t("web3hub.components.disclaimer.clearSigningEnabled")} + + + ) : ( + + + + + + {t("web3hub.components.disclaimer.clearSigningDisabled")} + + + )} @@ -62,7 +77,7 @@ export default function Disclaimer({ diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestRow/CurrencyIconList/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestRow/CurrencyIconList/index.tsx index 7d0e1ae07a4d..f65aa6c5741a 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestRow/CurrencyIconList/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestRow/CurrencyIconList/index.tsx @@ -54,7 +54,7 @@ export default function CurrencyIconList({ currencies }: Props) { justifyContent={"center"} marginLeft={-3} backgroundColor={colors.card} - borderColor={colors.border} + borderColor={colors.background} borderStyle={"solid"} borderWidth={1} borderRadius={50} @@ -75,7 +75,7 @@ export default function CurrencyIconList({ currencies }: Props) { } return list; - }, [colors.background, colors.border, colors.card, currencies]); + }, [colors.background, colors.card, currencies]); return {icons}; } diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestRow/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestRow/index.tsx index c250ca49df97..2117e96384c6 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestRow/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestRow/index.tsx @@ -1,23 +1,43 @@ -import React from "react"; +import React, { useMemo } from "react"; +import { useTranslation } from "react-i18next"; import { Flex, Text } from "@ledgerhq/native-ui"; +import { useTheme } from "@react-navigation/native"; import { AppManifest } from "@ledgerhq/live-common/wallet-api/types"; import AppIcon from "LLM/features/Web3Hub/components/AppIcon"; +import Label from "LLM/features/Web3Hub/components/ManifestsList/ManifestItem/Label"; import CurrencyIconList from "./CurrencyIconList"; export default function ManifestRow({ manifest }: { manifest: AppManifest }) { + const { colors } = useTheme(); + const { t } = useTranslation(); const isDisabled = manifest.branch === "soon"; + const clearSigningEnabled = useMemo(() => { + return manifest?.categories.includes("clear signing"); + }, [manifest?.categories]); + return ( <> - + - + {manifest.name} + + {clearSigningEnabled && ( + - {/* TODO add badges on certain categories */} ); diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/CategoriesList/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/CategoriesList/index.tsx index 95ef43f8aade..4814cc413d94 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/CategoriesList/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/CategoriesList/index.tsx @@ -2,12 +2,13 @@ import React from "react"; import { StyleSheet } from "react-native"; import { FlashList } from "@shopify/flash-list"; import { Box } from "@ledgerhq/native-ui"; +import { Category } from "LLM/features/Web3Hub/utils/api/categories"; import useCategoriesListViewModel, { type useCategoriesListViewModelProps, } from "./useCategoriesListViewModel"; import Badge from "./Badge"; -const identityFn = (item: string) => item; +const identityFn = (item: Category) => item.id; type Props = useCategoriesListViewModelProps; @@ -15,14 +16,14 @@ const renderItem = ({ item, extraData, }: { - item: string; + item: Category; extraData?: useCategoriesListViewModelProps; }) => { return ( extraData?.selectCategory(item)} - label={item} - selected={extraData?.selectedCategory === item} + onPress={() => extraData?.selectCategory(item.id)} + label={item.name} + selected={extraData?.selectedCategory === item.id} /> ); }; diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/LoadingIndicator/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/LoadingIndicator/index.tsx index 38218078bbdf..44ba438b0657 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/LoadingIndicator/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/LoadingIndicator/index.tsx @@ -3,7 +3,7 @@ import { Box, InfiniteLoader } from "@ledgerhq/native-ui"; export default function LoadingIndicator() { return ( - + ); diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/ManifestItem/Label/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/ManifestItem/Label/index.tsx new file mode 100644 index 000000000000..b54d4a09edf4 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/ManifestItem/Label/index.tsx @@ -0,0 +1,38 @@ +import React, { ComponentProps } from "react"; +import { Text } from "@ledgerhq/native-ui"; + +type Props = { + text: string; + style: Pick< + ComponentProps, + "color" | "borderColor" | "backgroundColor" | "borderWidth" + >; +}; + +const Label: React.FC = ({ text, style }) => { + const { color, borderColor, backgroundColor, borderWidth = 1 } = style; + return ( + + {text} + + ); +}; + +export default Label; diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/ManifestItem/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/ManifestItem/index.tsx index ce088d17b73f..bc4f74b8c4ed 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/ManifestItem/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/ManifestItem/index.tsx @@ -7,6 +7,7 @@ import { AppBranch, AppManifest } from "@ledgerhq/live-common/wallet-api/types"; import type { MainProps, SearchProps } from "LLM/features/Web3Hub/types"; import AppIcon from "LLM/features/Web3Hub/components/AppIcon"; import { Theme } from "~/colors"; +import Label from "./Label"; export type NavigationProp = MainProps["navigation"] | SearchProps["navigation"]; @@ -45,7 +46,6 @@ function getBranchStyle(branch: AppBranch, colors: Theme["colors"]) { }; } } - export default function ManifestItem({ manifest, onPress, @@ -70,48 +70,54 @@ export default function ManifestItem({ ); const url = useMemo(() => { + if (manifest.params && "dappUrl" in manifest.params) { + return new URL(manifest.params.dappUrl).origin; + } + return new URL(manifest.url).origin; - }, [manifest.url]); + }, [manifest.params, manifest.url]); const icon = useMemo(() => { // RN tries to load file locally if there is a space in front of the file url return manifest.icon?.trim(); }, [manifest.icon]); + const clearSigningEnabled = useMemo(() => { + return manifest?.categories.includes("clear signing"); + }, [manifest?.categories]); + return ( - - - + + + {manifest.name} - {manifest.branch !== "stable" && ( - - {t(`platform.catalog.branch.${manifest.branch}`, { - defaultValue: manifest.branch, - })} - - )} + + {manifest.branch !== "stable" && ( + + {url} diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/index.tsx index a563fdd56c76..7d9a58dbc50c 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/index.tsx @@ -1,8 +1,7 @@ -import React, { useCallback, useState } from "react"; +import React, { ComponentProps, useCallback, useState } from "react"; import { View } from "react-native"; import Animated from "react-native-reanimated"; import { useTranslation } from "react-i18next"; -import { useSafeAreaInsets } from "react-native-safe-area-context"; import { FlashList, FlashListProps } from "@shopify/flash-list"; import { Box, Text } from "@ledgerhq/native-ui"; import { AppManifest } from "@ledgerhq/live-common/wallet-api/types"; @@ -18,8 +17,10 @@ type NavigationProp = MainProps["navigation"] | SearchProps["navigation"]; type Props = { navigation: NavigationProp; - onScroll?: FlashListProps["onScroll"]; + onScroll?: ComponentProps["onScroll"]; + pt?: number; pb?: number; + headerComponent?: React.ReactNode; }; const AnimatedFlashList = Animated.createAnimatedComponent>(FlashList); @@ -38,9 +39,14 @@ const renderItem = ({ return ; }; -export default function ManifestsList({ navigation, onScroll, pb = 0 }: Props) { +export default function ManifestsList({ + navigation, + onScroll, + pt = 0, + pb = 0, + headerComponent, +}: Props) { const { t } = useTranslation(); - const insets = useSafeAreaInsets(); const [selectedCategory, selectCategory] = useState("all"); const { data, isLoading, onEndReached } = useManifestsListViewModel(selectedCategory); @@ -63,17 +69,12 @@ export default function ManifestsList({ navigation, onScroll, pb = 0 }: Props) { - - {t("web3hub.manifestsList.title")} - - - {t("web3hub.manifestsList.description")} - - + {headerComponent} diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/useManifestsListViewModel.ts b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/useManifestsListViewModel.ts index 80e306507ddb..d54690e256f2 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/useManifestsListViewModel.ts +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/components/ManifestsList/useManifestsListViewModel.ts @@ -1,20 +1,39 @@ import { useInfiniteQuery } from "@tanstack/react-query"; +import useEnv from "@ledgerhq/live-common/hooks/useEnv"; import { fetchManifests, selectManifests, getNextPageParam, fetchManifestsMock, } from "LLM/features/Web3Hub/utils/api/manifests"; +import { useLocale } from "~/context/Locale"; -export const queryKey = (selectedCategory: string) => ["web3hub/manifests", selectedCategory]; +export const queryKey = ( + selectedCategory: string, + isExperimentalAppEnabled: boolean, + isDebugAppEnabled: boolean, + locale: string, +) => [ + "web3hub/manifests", + selectedCategory, + isExperimentalAppEnabled ? "exp-on" : "exp-off", + isDebugAppEnabled ? "debug-on" : "debug-off", + locale, +]; const isInTest = process.env.NODE_ENV === "test" || !!process.env.MOCK_WEB3HUB; const queryFn = isInTest ? fetchManifestsMock : fetchManifests; export default function useManifestListViewModel(selectedCategory: string) { + const isExperimentalAppEnabled = useEnv<"PLATFORM_EXPERIMENTAL_APPS">( + "PLATFORM_EXPERIMENTAL_APPS", + ) as boolean; + const isDebugAppEnabled = useEnv<"PLATFORM_DEBUG">("PLATFORM_DEBUG") as boolean; + const { locale } = useLocale(); + const manifestsQuery = useInfiniteQuery({ - queryKey: queryKey(selectedCategory), - queryFn: queryFn(selectedCategory, ""), + queryKey: queryKey(selectedCategory, isExperimentalAppEnabled, isDebugAppEnabled, locale), + queryFn: queryFn(selectedCategory, "", isExperimentalAppEnabled, isDebugAppEnabled, locale), initialPageParam: 1, getNextPageParam, select: selectManifests, diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/hooks/useScrollHandler.ts b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/hooks/useScrollHandler.ts new file mode 100644 index 000000000000..0ec8f245120d --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/hooks/useScrollHandler.ts @@ -0,0 +1,76 @@ +import { useCallback, useRef } from "react"; +import { useSharedValue, useAnimatedScrollHandler } from "react-native-reanimated"; +import { WebviewProps } from "~/components/Web3AppWebview/types"; + +const clamp = (value: number, lowerBound: number, upperBound: number) => { + "worklet"; + return Math.min(Math.max(lowerBound, value), upperBound); +}; + +export default function useScrollHandler(clampUpperBound: number) { + const layoutY = useSharedValue(0); + + const scrollHandler = useAnimatedScrollHandler<{ prevY: number; prevLayoutY: number }>({ + onScroll: (event, ctx) => { + if (!layoutY || ctx.prevLayoutY === undefined || ctx.prevY === undefined) return; + + const diff = event.contentOffset.y - ctx.prevY; + + layoutY.value = clamp(ctx.prevLayoutY + diff, 0, clampUpperBound); + }, + onBeginDrag: (event, ctx) => { + if (layoutY) { + ctx.prevLayoutY = layoutY.value; + } + // Avoid negative values to start with + // if you beginDrag after a bounce drag + ctx.prevY = Math.max(event.contentOffset.y, 0); + }, + }); + + return { + layoutY, + scrollHandler, + }; +} + +type NoOptionals = { + [K in keyof T]-?: T[K]; +}; + +const initialTimeoutRef = { + prevY: 0, + prevLayoutY: 0, +}; + +export function useWebviewScrollHandler(clampUpperBound: number) { + const layoutY = useSharedValue(0); + + // Trick until we can properly use reanimated with the webview + const timeoutRef = useRef<{ timeout?: NodeJS.Timeout; prevY: number; prevLayoutY: number }>( + initialTimeoutRef, + ); + + const onScroll = useCallback( + (event: Parameters["onScroll"]>[0]) => { + if (!layoutY) return; + clearTimeout(timeoutRef.current.timeout); + + const currentY = event.nativeEvent.contentOffset.y; + + const diff = currentY - timeoutRef.current.prevY; + layoutY.value = clamp(timeoutRef.current.prevLayoutY + diff, 0, clampUpperBound); + + timeoutRef.current.timeout = setTimeout(() => { + timeoutRef.current.prevY = Math.max(currentY, 0); + timeoutRef.current.prevLayoutY = layoutY.value; + }, 100); + }, + [clampUpperBound, layoutY], + ); + + return { + layoutY, + onScroll, + }; +} diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Header/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Header/index.tsx index e09d1e86259d..199ca82fbc4d 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Header/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Header/index.tsx @@ -1,41 +1,68 @@ import React from "react"; -import { useSafeAreaInsets } from "react-native-safe-area-context"; import { useTheme } from "@react-navigation/native"; -import { Box, Flex } from "@ledgerhq/native-ui"; +import { SharedValue } from "react-native-reanimated"; +import { Flex, Icons, Text } from "@ledgerhq/native-ui"; +import AnimatedBar from "LLM/features/Web3Hub/components/AnimatedBar"; import BackButton from "LLM/features/Web3Hub/components/BackButton"; import TabButton from "LLM/features/Web3Hub/components/TabButton"; import { AppProps } from "LLM/features/Web3Hub/types"; -import TextInput from "~/components/TextInput"; -const SEARCH_HEIGHT = 60; +const BAR_HEIGHT = 60; +export const TOTAL_HEADER_HEIGHT = BAR_HEIGHT; +const ANIMATION_HEIGHT = TOTAL_HEADER_HEIGHT; type Props = { navigation: AppProps["navigation"]; + layoutY: SharedValue; + initialLoad: boolean; + secure: boolean; + baseUrl: string; }; -export default function Web3HubAppHeader({ navigation }: Props) { - const insets = useSafeAreaInsets(); +export default function Web3HubAppHeader({ + navigation, + layoutY, + initialLoad, + secure, + baseUrl, +}: Props) { const { colors } = useTheme(); return ( - - - - - + animationHeight={ANIMATION_HEIGHT} + opacityHeight={TOTAL_HEADER_HEIGHT} + totalHeight={TOTAL_HEADER_HEIGHT} + opacityChildren={ + + + + {initialLoad ? null : ( + <> + {secure ? ( + + ) : ( + + )} + + {baseUrl} + + + )} + + - - - + } + /> ); } diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/BottomBar.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/BottomBar.tsx index 59c19ac48fc5..f0acc4e4b855 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/BottomBar.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/BottomBar.tsx @@ -1,23 +1,30 @@ import React, { RefObject, useCallback } from "react"; import { TouchableOpacity } from "react-native"; -import { useTheme } from "styled-components/native"; -import { Trans } from "react-i18next"; -import { Flex, Text } from "@ledgerhq/native-ui"; +import { useTheme } from "@react-navigation/native"; +import Animated, { + useAnimatedStyle, + interpolate, + Extrapolation, + SharedValue, +} from "react-native-reanimated"; +import { Flex } from "@ledgerhq/native-ui"; import { AppManifest } from "@ledgerhq/live-common/wallet-api/types"; import { ArrowLeftMedium, ArrowRightMedium, ReverseMedium } from "@ledgerhq/native-ui/assets/icons"; import { safeGetRefValue, CurrentAccountHistDB } from "@ledgerhq/live-common/wallet-api/react"; -import { useDappCurrentAccount } from "@ledgerhq/live-common/wallet-api/useDappLogic"; import { WebviewAPI, WebviewState } from "~/components/Web3AppWebview/types"; -import Button from "~/components/Button"; -import CircleCurrencyIcon from "~/components/CircleCurrencyIcon"; -import { useSelectAccount } from "~/components/Web3AppWebview/helpers"; -import { useMaybeAccountName } from "~/reducers/wallet"; +import SelectAccountButton from "./SelectAccountButton"; +import { TOTAL_HEADER_HEIGHT } from "../Header"; + +const BAR_HEIGHT = 64; +const ANIMATION_HEIGHT = TOTAL_HEADER_HEIGHT; +const LAYOUT_RANGE = [0, ANIMATION_HEIGHT]; type BottomBarProps = { manifest: AppManifest; webviewAPIRef: RefObject; webviewState: WebviewState; currentAccountHistDb: CurrentAccountHistDB; + layoutY: SharedValue; }; function IconButton({ @@ -46,9 +53,9 @@ export function BottomBar({ webviewAPIRef, webviewState, currentAccountHistDb, + layoutY, }: BottomBarProps) { const { colors } = useTheme(); - const { currentAccount } = useDappCurrentAccount(currentAccountHistDb); const shouldDisplaySelectAccount = !!manifest.dapp; const handleForward = useCallback(() => { @@ -69,55 +76,67 @@ export function BottomBar({ webview.reload(); }, [webviewAPIRef]); - const { onSelectAccount } = useSelectAccount({ manifest, currentAccountHistDb }); + const heightStyle = useAnimatedStyle(() => { + if (!layoutY) return {}; + + const headerHeight = interpolate( + layoutY.value, + LAYOUT_RANGE, + [BAR_HEIGHT, BAR_HEIGHT - ANIMATION_HEIGHT], + Extrapolation.CLAMP, + ); + + return { + backgroundColor: colors.background, + height: headerHeight, + }; + }); - const currentAccountName = useMaybeAccountName(currentAccount); + const opacityStyle = useAnimatedStyle(() => { + if (!layoutY) return {}; + + return { + height: BAR_HEIGHT, + opacity: interpolate(layoutY.value, LAYOUT_RANGE, [1, 0], Extrapolation.CLAMP), + }; + }); return ( - - - - - - - - - - + + + + + + + - {shouldDisplaySelectAccount ? ( - - ) : null} - - - - + + + + + + ); } diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/RightHeader.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/RightHeader.tsx deleted file mode 100644 index 3cb922d10b14..000000000000 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/RightHeader.tsx +++ /dev/null @@ -1,40 +0,0 @@ -import React, { RefObject } from "react"; -import { View, TouchableOpacity, StyleSheet } from "react-native"; -import { useNavigation } from "@react-navigation/native"; -import { Flex, Icon } from "@ledgerhq/native-ui"; -import { WebviewAPI, WebviewState } from "~/components/Web3AppWebview/types"; - -type RightHeaderProps = { - webviewAPIRef: RefObject; - webviewState: WebviewState; - handlePressInfo?: () => void; -}; - -export function RightHeader({ handlePressInfo }: RightHeaderProps) { - const navigation = useNavigation(); - - return ( - - {handlePressInfo ? ( - - - - - - ) : null} - - - - - - - ); -} - -const styles = StyleSheet.create({ - headerRight: { - display: "flex", - flexDirection: "row", - paddingRight: 8, - }, -}); diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountButton.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountButton.tsx new file mode 100644 index 000000000000..5bf98a64269e --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountButton.tsx @@ -0,0 +1,72 @@ +import React, { useCallback, useState } from "react"; +import { Trans } from "react-i18next"; +import { Text } from "@ledgerhq/native-ui"; +import { AppManifest } from "@ledgerhq/live-common/wallet-api/types"; +import { CurrentAccountHistDB } from "@ledgerhq/live-common/wallet-api/react"; +import { useDappCurrentAccount } from "@ledgerhq/live-common/wallet-api/useDappLogic"; +import Button from "~/components/Button"; +import CircleCurrencyIcon from "~/components/CircleCurrencyIcon"; +import { useMaybeAccountName } from "~/reducers/wallet"; +import SelectAccountModal from "./SelectAccountModal"; + +type SelectAccountButtonProps = { + manifest: AppManifest; + currentAccountHistDb: CurrentAccountHistDB; +}; + +export default function SelectAccountButton({ + manifest, + currentAccountHistDb, +}: SelectAccountButtonProps) { + const { currentAccount } = useDappCurrentAccount(currentAccountHistDb); + + const currentAccountName = useMaybeAccountName(currentAccount); + + const [modalOpened, setModalOpened] = useState(false); + + const onSelectAccount = useCallback(() => { + setModalOpened(true); + }, []); + + const onClose = useCallback(() => { + setModalOpened(false); + }, []); + + return ( + <> + + + + ); +} diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/AccountHeader/BackButton/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/AccountHeader/BackButton/index.tsx new file mode 100644 index 000000000000..6a4e89b2dd22 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/AccountHeader/BackButton/index.tsx @@ -0,0 +1,20 @@ +import React from "react"; +import { BorderlessButton } from "react-native-gesture-handler"; +import { Box, Icons } from "@ledgerhq/native-ui"; + +export default function BackButton({ onPress }: { onPress: () => void }) { + return ( + + + + + + ); +} diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/AccountHeader/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/AccountHeader/index.tsx new file mode 100644 index 000000000000..a19d34ad3687 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/AccountHeader/index.tsx @@ -0,0 +1,23 @@ +import React, { PropsWithChildren } from "react"; +import { useTranslation } from "react-i18next"; +import { Box, Flex, Text } from "@ledgerhq/native-ui"; +import BackButton from "./BackButton"; + +export default function AccountHeaderWrapper(onBackPress: () => void) { + return function AccountHeader({ children }: PropsWithChildren) { + const { t } = useTranslation(); + + return ( + <> + + + + {t("web3hub.app.selectAccountModal.accountHeader.title")} + + {children} + + + + ); + }; +} diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/AccountsList/AddAccountItem/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/AccountsList/AddAccountItem/index.tsx new file mode 100644 index 000000000000..93f5555c8b76 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/AccountsList/AddAccountItem/index.tsx @@ -0,0 +1,33 @@ +import React from "react"; +import { TouchableOpacity } from "react-native"; +import { useTheme } from "@react-navigation/native"; +import { useTranslation } from "react-i18next"; +import { Flex, Text, Icons } from "@ledgerhq/native-ui"; + +export default function AddAccountItem({ onPress }: { onPress: () => void }) { + const { t } = useTranslation(); + const { colors } = useTheme(); + + return ( + <> + + + + + + + + {t("web3hub.app.selectAccountModal.addAccountItem.name")} + + + + + ); +} diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/AccountsList/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/AccountsList/index.tsx new file mode 100644 index 000000000000..e2cd98285d99 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/AccountsList/index.tsx @@ -0,0 +1,78 @@ +import React from "react"; +import { StyleSheet } from "react-native"; +import { useSelector } from "react-redux"; +import { CryptoCurrency } from "@ledgerhq/types-cryptoassets"; +import { AccountLike, SubAccount } from "@ledgerhq/types-live"; +import { isAccount } from "@ledgerhq/live-common/account/index"; +import { FlashList } from "@shopify/flash-list"; +import { accountsByCryptoCurrencyScreenSelector } from "~/reducers/accounts"; +import AccountCard from "~/components/AccountCard"; +import AddAccountItem from "./AddAccountItem"; + +type AccountTuple = { + account: AccountLike; + subAccount: SubAccount | null; + name: string; +}; + +const accountKeyExtractor = (item: AccountTuple) => item.subAccount?.id || item.account.id; + +const noop = () => {}; + +const renderAccountItem = ({ + item, + extraData = noop, +}: { + item: AccountTuple; + extraData?: (account: AccountLike) => void; +}) => { + const account = item.subAccount || item.account; + const parentAccount = item.subAccount && isAccount(item.account) ? item.account : undefined; + + return ( + { + extraData(account); + }} + /> + ); +}; + +export default function AccountsList({ + currency, + onPressItem, + onAddAccount, +}: { + currency: CryptoCurrency; + onPressItem: (account: AccountLike) => void; + onAddAccount: () => void; +}) { + const accounts = useSelector(accountsByCryptoCurrencyScreenSelector(currency)); + + return ( + } + keyExtractor={accountKeyExtractor} + renderItem={renderAccountItem} + estimatedItemSize={60} + data={accounts} + extraData={onPressItem} + /> + ); +} + +const styles = StyleSheet.create({ + accountCard: { + paddingHorizontal: 16, + }, + list: { + paddingBottom: 16, + }, +}); diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/NetworkHeader/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/NetworkHeader/index.tsx new file mode 100644 index 000000000000..23ebb54f471c --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/NetworkHeader/index.tsx @@ -0,0 +1,19 @@ +import React, { PropsWithChildren } from "react"; +import { useTranslation } from "react-i18next"; +import { Box, Flex, Text } from "@ledgerhq/native-ui"; + +export default function NetworkHeader({ children }: PropsWithChildren) { + const { t } = useTranslation(); + + return ( + <> + + + {t("web3hub.app.selectAccountModal.networkHeader.title")} + + {children} + + + + ); +} diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/NetworkItem/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/NetworkItem/index.tsx new file mode 100644 index 000000000000..d3254eeb9145 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/NetworkItem/index.tsx @@ -0,0 +1,28 @@ +import React, { useCallback } from "react"; +import { TouchableOpacity } from "react-native"; +import { Flex, Text } from "@ledgerhq/native-ui"; +import { CryptoCurrency } from "@ledgerhq/types-cryptoassets"; +import CircleCurrencyIcon from "~/components/CircleCurrencyIcon"; + +type Props = { + currency: CryptoCurrency; + onPress: (currency: CryptoCurrency) => void; +}; + +export default function NetworkItem({ currency, onPress }: Props) { + const handlePress = useCallback(() => { + onPress(currency); + }, [currency, onPress]); + + return ( + + + + + + {currency.name} + + + + ); +} diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/index.tsx new file mode 100644 index 000000000000..a631d6b4f51c --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/index.tsx @@ -0,0 +1,84 @@ +import React from "react"; +import { Dimensions, StyleSheet } from "react-native"; +import { Flex } from "@ledgerhq/native-ui"; +import { CryptoCurrency } from "@ledgerhq/types-cryptoassets"; +import { FlashList } from "@shopify/flash-list"; +import QueuedDrawer from "~/components/QueuedDrawer"; +import AccountsList from "./AccountsList"; +import NetworkHeader from "./NetworkHeader"; +import AccountHeader from "./AccountHeader"; +import NetworkItem from "./NetworkItem"; +import useSelectAccountModalViewModel, { Params } from "./useSelectAccountModalViewModel"; + +type Props = { + isOpened: boolean; +} & Params; + +const currencyKeyExtractor = (item: CryptoCurrency) => item.id; + +const noop = () => {}; + +const renderCurrencyItem = ({ + item, + extraData = noop, +}: { + item: CryptoCurrency; + extraData?: (currency: CryptoCurrency) => void; +}) => { + return ; +}; + +const MODAL_HEIGHT = Dimensions.get("screen").height * 0.5; + +export default function SelectAccountModal({ isOpened, ...params }: Props) { + const { + selectedCurrency, + sortedCurrencies, + resetSelectedCurrency, + onPressCurrencyItem, + handleClose, + setSelectedAccount, + onAddAccount, + } = useSelectAccountModalViewModel(params); + + return ( + + + {selectedCurrency ? ( + + ) : ( + + )} + + + ); +} + +const styles = StyleSheet.create({ + drawerContainer: { + paddingLeft: 0, + paddingRight: 0, + paddingTop: 0, + paddingBottom: 0, + }, + list: { + paddingBottom: 16, + }, +}); diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/useSelectAccountModalViewModel.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/useSelectAccountModalViewModel.tsx new file mode 100644 index 000000000000..df3f2794df1c --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/SelectAccountModal/useSelectAccountModalViewModel.tsx @@ -0,0 +1,90 @@ +import { useCallback, useState } from "react"; +import { useNavigation } from "@react-navigation/native"; +import { AppManifest } from "@ledgerhq/live-common/wallet-api/types"; +import { + CurrentAccountHistDB, + useManifestCurrencies, +} from "@ledgerhq/live-common/wallet-api/react"; +import { useDappCurrentAccount } from "@ledgerhq/live-common/wallet-api/useDappLogic"; +import { useCurrenciesByMarketcap } from "@ledgerhq/live-common/currencies/hooks"; +import { CryptoCurrency } from "@ledgerhq/types-cryptoassets"; +import { AccountLike } from "@ledgerhq/types-live"; +import { AppProps } from "LLM/features/Web3Hub/types"; +import { NavigatorName, ScreenName } from "~/const"; + +export type Params = { + manifest: AppManifest; + currentAccountHistDb: CurrentAccountHistDB; + onSelectAccount: () => void; + onClose: () => void; +}; + +export default function useSelectAccountModalViewModel({ + manifest, + currentAccountHistDb, + onSelectAccount, + onClose, +}: Params) { + const [selectedCurrency, setSelectedCurrency] = useState(); + + const currencies = useManifestCurrencies(manifest); + const sortedCurrencies = useCurrenciesByMarketcap(currencies); + + const { setCurrentAccountHist } = useDappCurrentAccount(currentAccountHistDb); + + const onPressCurrencyItem = useCallback((currency: CryptoCurrency) => { + setSelectedCurrency(currency); + }, []); + + const resetSelectedCurrency = useCallback(() => { + setSelectedCurrency(undefined); + }, []); + + const handleClose = useCallback(() => { + onClose(); + resetSelectedCurrency(); + }, [onClose, resetSelectedCurrency]); + + const setSelectedAccount = useCallback( + (account: AccountLike) => { + setCurrentAccountHist(manifest.id, account); + onClose(); + }, + [manifest.id, onClose, setCurrentAccountHist], + ); + + const navigation = useNavigation(); + const onAddAccount = useCallback(() => { + navigation.navigate(NavigatorName.RequestAccount, { + screen: NavigatorName.RequestAccountsAddAccounts, + params: { + screen: ScreenName.AddAccountsSelectDevice, + params: { + currency: selectedCurrency, + onSuccess: ({ selected }) => { + navigation.goBack(); + const account = selected[0]; + if (account) { + if (selected.length === 1) { + setSelectedAccount(account); + } else { + setSelectedCurrency(account.currency); + onSelectAccount(); + } + } + }, + }, + }, + }); + }, [navigation, onSelectAccount, selectedCurrency, setSelectedAccount]); + + return { + selectedCurrency, + sortedCurrencies, + resetSelectedCurrency, + onPressCurrencyItem, + handleClose, + setSelectedAccount, + onAddAccount, + }; +} diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/index.tsx index 51eb7ff6ed66..b920dcfdf4e6 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/components/Web3Player/index.tsx @@ -1,38 +1,36 @@ -import React, { useCallback, useEffect, useMemo, useRef, useState } from "react"; -import { StyleSheet, SafeAreaView, BackHandler, Platform } from "react-native"; -import { useNavigation } from "@react-navigation/native"; -import { Flex } from "@ledgerhq/native-ui"; +import React, { ComponentProps, useCallback, useEffect, useMemo, useRef, useState } from "react"; +import { StyleSheet, View, BackHandler, Platform } from "react-native"; +import { SharedValue } from "react-native-reanimated"; import { CurrentAccountHistDB, safeGetRefValue } from "@ledgerhq/live-common/wallet-api/react"; import { handlers as loggerHandlers } from "@ledgerhq/live-common/wallet-api/CustomLogger/server"; import { AppManifest, WalletAPICustomHandlers } from "@ledgerhq/live-common/wallet-api/types"; import { WebviewAPI, WebviewState } from "~/components/Web3AppWebview/types"; import { Web3AppWebview } from "~/components/Web3AppWebview"; -import { - RootNavigationComposite, - StackNavigatorNavigation, -} from "~/components/RootNavigator/types/helpers"; -import { BaseNavigatorStackParamList } from "~/components/RootNavigator/types/BaseNavigator"; -import HeaderTitle from "~/components/HeaderTitle"; -import { initialWebviewState } from "~/components/Web3AppWebview/helpers"; import { usePTXCustomHandlers } from "~/components/WebPTXPlayer/CustomHandlers"; import { useCurrentAccountHistDB } from "~/screens/Platform/v2/hooks"; -import { RightHeader } from "./RightHeader"; import { BottomBar } from "./BottomBar"; import { InfoPanel } from "./InfoPanel"; type Props = { manifest: AppManifest; inputs?: Record; + onScroll?: ComponentProps["onScroll"]; + layoutY: SharedValue; + webviewState: WebviewState; + setWebviewState: React.Dispatch>; }; -const WebPlatformPlayer = ({ manifest, inputs }: Props) => { +const WebPlatformPlayer = ({ + manifest, + inputs, + onScroll, + layoutY, + webviewState, + setWebviewState, +}: Props) => { const webviewAPIRef = useRef(null); - const [webviewState, setWebviewState] = useState(initialWebviewState); const [isInfoPanelOpened, setIsInfoPanelOpened] = useState(false); - const navigation = - useNavigation>>(); - const currentAccountHistDb: CurrentAccountHistDB = useCurrentAccountHistDB(); const handleHardwareBackPress = useCallback(() => { @@ -57,27 +55,6 @@ const WebPlatformPlayer = ({ manifest, inputs }: Props) => { } }, [handleHardwareBackPress]); - useEffect(() => { - navigation.setOptions({ - headerTitleAlign: "left", - headerLeft: () => null, - headerTitleContainerStyle: { marginHorizontal: 0 }, - headerTitle: () => ( - - {manifest.homepageUrl} - - ), - headerRight: () => ( - setIsInfoPanelOpened(true)} - /> - ), - headerShown: true, - }); - }, [manifest, navigation, webviewState]); - const customPTXHandlers = usePTXCustomHandlers(manifest); const customHandlers = useMemo(() => { @@ -88,9 +65,10 @@ const WebPlatformPlayer = ({ manifest, inputs }: Props) => { }, [customPTXHandlers]); return ( - + { currentAccountHistDb={currentAccountHistDb} webviewAPIRef={webviewAPIRef} webviewState={webviewState} + layoutY={layoutY} /> { isOpened={isInfoPanelOpened} setIsOpened={setIsInfoPanelOpened} /> - + ); }; diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/index.tsx index ca7663c38efe..fc0ed4af7517 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/index.tsx @@ -1,35 +1,58 @@ -import React, { useMemo } from "react"; -import { useTheme } from "styled-components/native"; +import React from "react"; +import { SafeAreaView } from "react-native-safe-area-context"; import { Flex, InfiniteLoader } from "@ledgerhq/native-ui"; import type { AppProps } from "LLM/features/Web3Hub/types"; +import { useWebviewScrollHandler } from "LLM/features/Web3Hub/hooks/useScrollHandler"; import WebPlatformPlayer from "./components/Web3Player"; import GenericErrorView from "~/components/GenericErrorView"; -import { useLocale } from "~/context/Locale"; import useWeb3HubAppViewModel from "./useWeb3HubAppViewModel"; +import Header, { TOTAL_HEADER_HEIGHT } from "./components/Header"; +import { TrackScreen } from "~/analytics"; const appManifestNotFoundError = new Error("App not found"); +const edges = ["top", "bottom", "left", "right"] as const; + // TODO local manifests ? -export default function Web3HubApp({ route }: AppProps) { - const { manifestId, queryParams } = route.params; - const { theme } = useTheme(); - const { locale } = useLocale(); +export default function Web3HubApp({ navigation, route }: AppProps) { + const { layoutY, onScroll } = useWebviewScrollHandler(TOTAL_HEADER_HEIGHT); - const { manifest, isLoading } = useWeb3HubAppViewModel(manifestId); + const { + manifest, + isLoading, + inputs, + webviewState, + setWebviewState, + baseUrl, + secure, + initialLoad, + } = useWeb3HubAppViewModel(route.params); - const inputs = useMemo(() => { - return { - theme, - lang: locale, - ...queryParams, - }; - }, [locale, queryParams, theme]); + return ( + + +
- return manifest ? ( - - ) : ( - - {isLoading ? : } - + {manifest ? ( + + ) : ( + + {isLoading ? : } + + )} + ); } diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/useWeb3HubAppViewModel.ts b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/useWeb3HubAppViewModel.ts index f28685da5575..7c5c9bb5f25f 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/useWeb3HubAppViewModel.ts +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubApp/useWeb3HubAppViewModel.ts @@ -1,19 +1,67 @@ +import { useMemo, useState } from "react"; import { useQuery } from "@tanstack/react-query"; +import { useTheme } from "styled-components/native"; import { fetchManifestById, fetchManifestByIdMock } from "LLM/features/Web3Hub/utils/api/manifests"; +import type { AppProps } from "LLM/features/Web3Hub/types"; +import { WebviewState } from "~/components/Web3AppWebview/types"; +import { initialWebviewState } from "~/components/Web3AppWebview/helpers"; +import { useLocale } from "~/context/Locale"; -export const queryKey = (manifestId: string) => ["web3hub/manifest", manifestId]; +export const queryKey = (manifestId: string, locale: string) => [ + "web3hub/manifest", + manifestId, + locale, +]; const isInTest = process.env.NODE_ENV === "test" || !!process.env.MOCK_WEB3HUB; const queryFn = isInTest ? fetchManifestByIdMock : fetchManifestById; -export default function useWeb3HubAppViewModel(manifestId: string) { - const manifestQuery = useQuery({ - queryKey: queryKey(manifestId), - queryFn: queryFn(manifestId), +export default function useWeb3HubAppViewModel(routeParams: AppProps["route"]["params"]) { + const { manifestId, queryParams } = routeParams; + const { theme } = useTheme(); + const { locale } = useLocale(); + + const { data: manifest, isLoading } = useQuery({ + queryKey: queryKey(manifestId, locale), + queryFn: queryFn(manifestId, locale), }); + const inputs = useMemo(() => { + return { + theme, + lang: locale, + ...queryParams, + }; + }, [locale, queryParams, theme]); + + const [webviewState, setWebviewState] = useState(initialWebviewState); + + const [baseUrl, secure, initialLoad] = useMemo(() => { + if (manifest?.params && "dappUrl" in manifest.params) { + const url = new URL(manifest.params.dappUrl); + return [url.hostname, url.protocol === "https:", false]; + } + + if (!webviewState.url) { + if (webviewState.loading && manifest?.url) { + const url = new URL(webviewState.url); + return [url.hostname, url.protocol === "https:", false]; + } + + return ["", false, true]; + } + const url = new URL(webviewState.url); + return [url.hostname, url.protocol === "https:", false]; + }, [manifest?.params, manifest?.url, webviewState.loading, webviewState.url]); + return { - manifest: manifestQuery.data, - isLoading: manifestQuery.isLoading, + manifest, + isLoading, + inputs, + webviewState, + setWebviewState, + baseUrl, + secure, + initialLoad, }; } diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubMain/components/Header/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubMain/components/Header/index.tsx index 132914011b0b..196b904304e9 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubMain/components/Header/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubMain/components/Header/index.tsx @@ -1,79 +1,31 @@ import { useTranslation } from "react-i18next"; -import React, { useCallback, useContext } from "react"; +import React, { useCallback } from "react"; import { TouchableOpacity, View, StyleSheet } from "react-native"; import { useSafeAreaInsets } from "react-native-safe-area-context"; import { useTheme } from "@react-navigation/native"; -import Animated, { useAnimatedStyle, interpolate, Extrapolation } from "react-native-reanimated"; +import { SharedValue } from "react-native-reanimated"; import { Flex, Text } from "@ledgerhq/native-ui"; -import { useQueryClient } from "@tanstack/react-query"; import type { MainProps } from "LLM/features/Web3Hub/types"; -import TextInput from "~/components/TextInput"; -import { HeaderContext } from "LLM/features/Web3Hub/HeaderContext"; -import { queryKey } from "LLM/features/Web3Hub/components/ManifestsList/useManifestsListViewModel"; +import AnimatedBar from "LLM/features/Web3Hub/components/AnimatedBar"; import TabButton from "LLM/features/Web3Hub/components/TabButton"; +import TextInput from "~/components/TextInput"; import { NavigatorName, ScreenName } from "~/const"; const TITLE_HEIGHT = 50; const SEARCH_HEIGHT = 60; -const TOTAL_HEADER_HEIGHT = TITLE_HEIGHT + SEARCH_HEIGHT; - -const ANIMATION_HEIGHT = TITLE_HEIGHT - 5; -const LAYOUT_RANGE = [0, 35]; +export const TOTAL_HEADER_HEIGHT = TITLE_HEIGHT + SEARCH_HEIGHT; +export const ANIMATION_HEIGHT = TITLE_HEIGHT - 5; type Props = { title?: string; navigation: MainProps["navigation"]; + layoutY: SharedValue; }; -export default function Web3HubMainHeader({ title, navigation }: Props) { +export default function Web3HubMainHeader({ title, navigation, layoutY }: Props) { + const { colors } = useTheme(); const { t } = useTranslation(); - const { layoutY } = useContext(HeaderContext); const insets = useSafeAreaInsets(); - const { colors } = useTheme(); - - const heightStyle = useAnimatedStyle(() => { - if (!layoutY) return {}; - - return { - backgroundColor: colors.background, - paddingTop: insets.top, - height: - interpolate( - layoutY.value, - LAYOUT_RANGE, - [TOTAL_HEADER_HEIGHT, TOTAL_HEADER_HEIGHT - ANIMATION_HEIGHT], - Extrapolation.CLAMP, - ) + insets.top, - }; - }); - - const transformStyle = useAnimatedStyle(() => { - if (!layoutY) return {}; - - return { - // Height necessary for proper transform - height: TOTAL_HEADER_HEIGHT, - transform: [ - { - translateY: interpolate( - layoutY.value, - LAYOUT_RANGE, - [0, -ANIMATION_HEIGHT], - Extrapolation.CLAMP, - ), - }, - ], - }; - }); - - const opacityStyle = useAnimatedStyle(() => { - if (!layoutY) return {}; - - return { - height: TITLE_HEIGHT, - opacity: interpolate(layoutY.value, [0, 35], [1, 0], Extrapolation.CLAMP), - }; - }); const goToSearch = useCallback(() => { navigation.push(NavigatorName.Web3Hub, { @@ -81,44 +33,46 @@ export default function Web3HubMainHeader({ title, navigation }: Props) { }); }, [navigation]); - // TODO remove later - // Useful for testing the infinite loading and onEndReach working correctly - const queryClient = useQueryClient(); - const clearCache = useCallback(() => { - queryClient.resetQueries({ queryKey: queryKey("all") }); - }, [queryClient]); - return ( - - - - - - {title} - - - - - - - - - - - - - + + {title} + + } + > + + + + + + + + + ); } const styles = StyleSheet.create({ + bar: { + zIndex: 1, + position: "absolute", + width: "100%", + }, inputContainer: { display: "flex", flex: 1, diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubMain/components/HorizontalList/MinimalAppCard/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubMain/components/HorizontalList/MinimalAppCard/index.tsx new file mode 100644 index 000000000000..8bffe698628d --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubMain/components/HorizontalList/MinimalAppCard/index.tsx @@ -0,0 +1,29 @@ +import React, { useCallback, useMemo } from "react"; +import { TouchableOpacity } from "react-native"; +import { Flex, Text } from "@ledgerhq/native-ui"; +import AppIcon from "LLM/features/Web3Hub/components/AppIcon"; +import { AppManifest } from "@ledgerhq/live-common/wallet-api/types"; + +export default function MinimalAppCard({ + item, + onPress, +}: { + item: AppManifest; + onPress: (manifest: AppManifest) => void; +}) { + const disabled = useMemo(() => item.branch === "soon", [item]); + const handlePress = useCallback(() => { + if (!disabled) { + onPress(item); + } + }, [disabled, item, onPress]); + + return ( + + + + {item.name} + + + ); +} diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubMain/components/HorizontalList/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubMain/components/HorizontalList/index.tsx new file mode 100644 index 000000000000..a20abb621ff0 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubMain/components/HorizontalList/index.tsx @@ -0,0 +1,70 @@ +import React from "react"; +import { StyleSheet } from "react-native"; +import { FlashList } from "@shopify/flash-list"; +import { Box, Flex, InfiniteLoader, Text } from "@ledgerhq/native-ui"; +import { AppManifest } from "@ledgerhq/live-common/wallet-api/types"; +import MinimalAppCard from "./MinimalAppCard"; + +type Props = { + title: string; + isLoading: boolean; + data: AppManifest[]; + onEndReached?: () => void; + onPressItem: (manifest: AppManifest) => void; + testID?: string; +}; + +type PropRenderItem = { + item: AppManifest; + extraData?: (manifest: AppManifest) => void; +}; + +const identityFn = (item: AppManifest) => item.id; + +const renderItem = ({ item, extraData: onPressItem = () => {} }: PropRenderItem) => ( + +); + +export default function HorizontalList({ + title, + isLoading, + data, + onEndReached, + onPressItem, + testID, +}: Props) { + return ( + <> + + {title} + + + + + + ) : null + } + estimatedItemSize={70} + data={data} + showsHorizontalScrollIndicator={false} + extraData={onPressItem} + onEndReached={onEndReached} + /> + + + ); +} + +const styles = StyleSheet.create({ + container: { + paddingHorizontal: 5, + }, +}); diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubMain/components/ManifestsCategoryList/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubMain/components/ManifestsCategoryList/index.tsx new file mode 100644 index 000000000000..e6109ddc5af9 --- /dev/null +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubMain/components/ManifestsCategoryList/index.tsx @@ -0,0 +1,47 @@ +import React, { useCallback } from "react"; +import { NavigatorName, ScreenName } from "~/const"; +import useManifestsListViewModel from "LLM/features/Web3Hub/components/ManifestsList/useManifestsListViewModel"; +import Disclaimer, { useDisclaimerViewModel } from "LLM/features/Web3Hub/components/Disclaimer"; +import { MainProps } from "LLM/features/Web3Hub/types"; +import HorizontalList from "../HorizontalList"; + +type Props = { + title: string; + categoryId: string; + navigation: MainProps["navigation"]; + testID?: string; +}; + +const ManifestsCategoryList = ({ title, categoryId, navigation, testID }: Props) => { + const { data, isLoading, onEndReached } = useManifestsListViewModel(categoryId); + + const goToApp = useCallback( + (manifestId: string) => { + navigation.push(NavigatorName.Web3Hub, { + screen: ScreenName.Web3HubApp, + params: { + manifestId: manifestId, + }, + }); + }, + [navigation], + ); + + const disclaimer = useDisclaimerViewModel(goToApp); + + return data && data.length > 0 ? ( + <> + + + + ) : null; +}; + +export default ManifestsCategoryList; diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubMain/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubMain/index.tsx index 922c14d89ba1..5482fd42aea7 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubMain/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubMain/index.tsx @@ -1,33 +1,65 @@ -import React, { useContext } from "react"; +import React from "react"; +import { useTranslation } from "react-i18next"; import { View } from "react-native"; -import { useAnimatedScrollHandler } from "react-native-reanimated"; +import { SafeAreaView } from "react-native-safe-area-context"; import type { MainProps } from "LLM/features/Web3Hub/types"; -import { HeaderContext } from "LLM/features/Web3Hub/HeaderContext"; +import useScrollHandler from "LLM/features/Web3Hub/hooks/useScrollHandler"; import ManifestsList from "LLM/features/Web3Hub/components/ManifestsList"; import { MAIN_BUTTON_BOTTOM, MAIN_BUTTON_SIZE } from "~/components/TabBar/shared"; +import Header, { ANIMATION_HEIGHT, TOTAL_HEADER_HEIGHT } from "./components/Header"; +import ManifestsCategoryList from "./components/ManifestsCategoryList"; +import { Text } from "@ledgerhq/native-ui"; +import { TrackScreen } from "~/analytics"; const PADDING_BOTTOM = MAIN_BUTTON_SIZE + MAIN_BUTTON_BOTTOM; -export default function Web3HubMain({ navigation }: MainProps) { - const { layoutY } = useContext(HeaderContext); +const edges = ["top", "bottom", "left", "right"] as const; - const scrollHandler = useAnimatedScrollHandler(event => { - if (!layoutY) return; - layoutY.value = event.contentOffset.y; - }); +export default function Web3HubMain({ navigation }: MainProps) { + const { t } = useTranslation(); + const { layoutY, scrollHandler } = useScrollHandler(ANIMATION_HEIGHT); return ( - - - + + + +
+ + + + + + {t("web3hub.main.manifestsList.title")} + + + {t("web3hub.components.manifestsList.description")} + + + } + /> + + ); } diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/components/Header/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/components/Header/index.tsx index 1845a02745e1..36c8b098c7ef 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/components/Header/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/components/Header/index.tsx @@ -1,22 +1,28 @@ import React, { useEffect, useState } from "react"; import { useTranslation } from "react-i18next"; +import { StyleSheet } from "react-native"; import { useSafeAreaInsets } from "react-native-safe-area-context"; import { useTheme } from "@react-navigation/native"; -import { Box, Flex } from "@ledgerhq/native-ui"; +import { SharedValue } from "react-native-reanimated"; +import { Flex } from "@ledgerhq/native-ui"; import { useDebounce } from "@ledgerhq/live-common/hooks/useDebounce"; +import AnimatedBar from "LLM/features/Web3Hub/components/AnimatedBar"; import BackButton from "LLM/features/Web3Hub/components/BackButton"; import TabButton from "LLM/features/Web3Hub/components/TabButton"; import { SearchProps } from "LLM/features/Web3Hub/types"; import TextInput from "~/components/TextInput"; const SEARCH_HEIGHT = 60; +export const TOTAL_HEADER_HEIGHT = SEARCH_HEIGHT; +const ANIMATION_HEIGHT = TOTAL_HEADER_HEIGHT; type Props = { navigation: SearchProps["navigation"]; onSearch: (search: string) => void; + layoutY: SharedValue; }; -export default function Web3HubSearchHeader({ navigation, onSearch }: Props) { +export default function Web3HubSearchHeader({ navigation, onSearch, layoutY }: Props) { const { colors } = useTheme(); const { t } = useTranslation(); const insets = useSafeAreaInsets(); @@ -28,27 +34,39 @@ export default function Web3HubSearchHeader({ navigation, onSearch }: Props) { }, [debouncedSearch, onSearch]); return ( - - - - - console.log("onSubmitEditing: ", text)} - /> + animationHeight={ANIMATION_HEIGHT} + opacityHeight={TOTAL_HEADER_HEIGHT} + totalHeight={TOTAL_HEADER_HEIGHT} + opacityChildren={ + + + + + + - - - + } + /> ); } + +const styles = StyleSheet.create({ + bar: { + zIndex: 1, + position: "absolute", + width: "100%", + }, +}); diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/components/SearchList/SearchItem/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/components/SearchList/SearchItem/index.tsx index cca7c939ffad..555e58721059 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/components/SearchList/SearchItem/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/components/SearchList/SearchItem/index.tsx @@ -1,16 +1,18 @@ import React, { useCallback } from "react"; import { TouchableOpacity } from "react-native"; +import { useTheme } from "@react-navigation/native"; import { Flex } from "@ledgerhq/native-ui"; import { AppManifest } from "@ledgerhq/live-common/wallet-api/types"; import ManifestRow from "LLM/features/Web3Hub/components/ManifestRow"; -export default function SearchItem({ - manifest, - onPress, -}: { +type Props = { + isFirst: boolean; manifest: AppManifest; onPress: (manifest: AppManifest) => void; -}) { +}; + +export default function SearchItem({ isFirst, manifest, onPress }: Props) { + const { colors } = useTheme(); const isDisabled = manifest.branch === "soon"; const handlePress = useCallback(() => { @@ -22,7 +24,15 @@ export default function SearchItem({ return ( - + diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/components/SearchList/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/components/SearchList/index.tsx index a24b2d5530c1..a0a179bab84a 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/components/SearchList/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/components/SearchList/index.tsx @@ -1,8 +1,8 @@ import React, { useCallback } from "react"; +import Animated from "react-native-reanimated"; import { useTranslation } from "react-i18next"; -import { FlashList } from "@shopify/flash-list"; +import { FlashList, FlashListProps } from "@shopify/flash-list"; import { Box, Text } from "@ledgerhq/native-ui"; -import { useSafeAreaInsets } from "react-native-safe-area-context"; import { AppManifest } from "@ledgerhq/live-common/wallet-api/types"; import LoadingIndicator from "LLM/features/Web3Hub/components/ManifestsList/LoadingIndicator"; import Disclaimer, { useDisclaimerViewModel } from "LLM/features/Web3Hub/components/Disclaimer"; @@ -13,29 +13,33 @@ import SearchItem from "./SearchItem"; type NavigationProp = SearchProps["navigation"]; +type Props = { + navigation: NavigationProp; + search: string; + onScroll?: FlashListProps["onScroll"]; + pt?: number; +}; + +const AnimatedFlashList = Animated.createAnimatedComponent>(FlashList); + const keyExtractor = (item: AppManifest) => item.id; const noop = () => {}; const renderItem = ({ item, + index, extraData = noop, }: { + index: number; item: AppManifest; extraData?: (manifest: AppManifest) => void; }) => { - return ; + return ; }; -export default function SearchList({ - navigation, - search, -}: { - navigation: NavigationProp; - search: string; -}) { +export default function SearchList({ navigation, search, onScroll, pt = 0 }: Props) { const { t } = useTranslation(); - const insets = useSafeAreaInsets(); const { data, isLoading, onEndReached } = useSearchListViewModel(search); const goToApp = useCallback( @@ -52,9 +56,9 @@ export default function SearchList({ return ( <> - ); diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/components/SearchList/useSearchListViewModel.ts b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/components/SearchList/useSearchListViewModel.ts index 84d0691e9a9c..34392e1a0bd6 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/components/SearchList/useSearchListViewModel.ts +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/components/SearchList/useSearchListViewModel.ts @@ -1,20 +1,44 @@ +import { useMemo } from "react"; import { useInfiniteQuery } from "@tanstack/react-query"; +import useEnv from "@ledgerhq/live-common/hooks/useEnv"; import { fetchManifests, selectManifests, getNextPageParam, fetchManifestsMock, } from "LLM/features/Web3Hub/utils/api/manifests"; +import { useLocale } from "~/context/Locale"; -export const queryKey = (search: string) => ["web3hub/manifests/search", search]; +export const queryKey = ( + search: string, + isExperimentalAppEnabled: boolean, + isDebugAppEnabled: boolean, + locale: string, +) => [ + "web3hub/manifests/search", + search, + isExperimentalAppEnabled ? "exp-on" : "exp-off", + isDebugAppEnabled ? "debug-on" : "debug-off", + locale, +]; const isInTest = process.env.NODE_ENV === "test" || !!process.env.MOCK_WEB3HUB; const queryFn = isInTest ? fetchManifestsMock : fetchManifests; export default function useSearchListViewModel(search: string) { + const trimmedSearch = useMemo(() => { + return search.trim(); + }, [search]); + + const isExperimentalAppEnabled = useEnv<"PLATFORM_EXPERIMENTAL_APPS">( + "PLATFORM_EXPERIMENTAL_APPS", + ) as boolean; + const isDebugAppEnabled = useEnv<"PLATFORM_DEBUG">("PLATFORM_DEBUG") as boolean; + const { locale } = useLocale(); + const manifestsQuery = useInfiniteQuery({ - queryKey: queryKey(search), - queryFn: queryFn("", search), + queryKey: queryKey(trimmedSearch, isExperimentalAppEnabled, isDebugAppEnabled, locale), + queryFn: queryFn("", trimmedSearch, isExperimentalAppEnabled, isDebugAppEnabled, locale), initialPageParam: 1, getNextPageParam, select: selectManifests, diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/index.tsx index 2355fb3c8ab2..ccf3eea8ac52 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubSearch/index.tsx @@ -1,24 +1,56 @@ -import React, { useContext } from "react"; +import React, { useEffect, useState } from "react"; import { View } from "react-native"; +import { useTranslation } from "react-i18next"; +import { SafeAreaView } from "react-native-safe-area-context"; import type { SearchProps } from "LLM/features/Web3Hub/types"; -import { HeaderContext } from "LLM/features/Web3Hub/HeaderContext"; +import useScrollHandler from "LLM/features/Web3Hub/hooks/useScrollHandler"; import ManifestsList from "LLM/features/Web3Hub/components/ManifestsList"; import SearchList from "./components/SearchList"; +import Header, { TOTAL_HEADER_HEIGHT } from "./components/Header"; +import { Text } from "@ledgerhq/native-ui"; +import { TrackScreen } from "~/analytics"; + +const edges = ["top", "bottom", "left", "right"] as const; export default function Web3HubSearch({ navigation }: SearchProps) { - const { search } = useContext(HeaderContext); + const { t } = useTranslation(); + const [search, setSearch] = useState(""); + const { layoutY, scrollHandler } = useScrollHandler(TOTAL_HEADER_HEIGHT); + + // Reset the layoutY value when search changes + useEffect(() => { + layoutY.value = 0; + }, [layoutY, search]); return ( - - {search ? ( - - ) : ( - - )} - + + +
+ + {search ? ( + + ) : ( + + {t("web3hub.components.manifestsList.title")} + + } + /> + )} + + ); } diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubTabs/components/Header/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubTabs/components/Header/index.tsx index dbc09dfaca25..718084583dd3 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubTabs/components/Header/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubTabs/components/Header/index.tsx @@ -1,7 +1,6 @@ import React from "react"; -import { useSafeAreaInsets } from "react-native-safe-area-context"; import { useTheme } from "@react-navigation/native"; -import { Box, Text } from "@ledgerhq/native-ui"; +import { Flex, Text } from "@ledgerhq/native-ui"; import type { TabsProps } from "LLM/features/Web3Hub/types"; import BackButton from "LLM/features/Web3Hub/components/BackButton"; @@ -13,19 +12,26 @@ type Props = { }; export default function Web3HubTabsHeader({ title, navigation }: Props) { - const insets = useSafeAreaInsets(); const { colors } = useTheme(); return ( - - + {title} - + ); } diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubTabs/index.tsx b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubTabs/index.tsx index 108d83b3595c..22fc985a0e40 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubTabs/index.tsx +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/screens/Web3HubTabs/index.tsx @@ -1,17 +1,28 @@ import React from "react"; import { View } from "react-native"; import { Text } from "@ledgerhq/native-ui"; +import { SafeAreaView } from "react-native-safe-area-context"; import type { TabsProps } from "LLM/features/Web3Hub/types"; import { ScreenName } from "~/const"; +import Header from "./components/Header"; -export default function Web3HubTabs(_: TabsProps) { +const edges = ["top", "bottom", "left", "right"] as const; + +export default function Web3HubTabs({ navigation }: TabsProps) { return ( - - {ScreenName.Web3HubTabs} - + +
+ + + {ScreenName.Web3HubTabs} + + ); } diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/utils/api/categories.ts b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/utils/api/categories.ts index 1fcd847191e5..255f4b4e925c 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/utils/api/categories.ts +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/utils/api/categories.ts @@ -9,15 +9,20 @@ export const fetchCategoriesMock = async () => { return mocks; }; +export type Category = { + id: string; + name: string; +}; + export const fetchCategories = async () => { const url = new URL(`${URL_ORIGIN}/api/v2/categories`); - const res = await network<{ categories: string[] }>({ + const res = await network({ url: url.toString(), }); - return res.data.categories; + return res.data; }; -export const selectCategories = (data: string[]) => { - return ["all", ...data]; +export const selectCategories = (data: Category[]) => { + return [{ id: "all", name: "all" }, ...data]; }; diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/utils/api/manifests.ts b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/utils/api/manifests.ts index dc27055fd26e..5e2a3b39da80 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/utils/api/manifests.ts +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/utils/api/manifests.ts @@ -1,3 +1,5 @@ +import { Platform } from "react-native"; +import VersionNumber from "react-native-version-number"; import network from "@ledgerhq/live-network/network"; import { GetNextPageParamFunction, InfiniteData, QueryFunction } from "@tanstack/react-query"; import { LiveAppManifest } from "@ledgerhq/live-common/platform/types"; @@ -31,28 +33,65 @@ export const fetchManifestsMock: ( return list.slice((pageParam - 1) * PAGE_SIZE, pageParam * PAGE_SIZE); }; -export const fetchManifests: ( +const PLATFORM = Platform.OS === "ios" ? "ios" : "android"; +const LLVersion = VersionNumber.appVersion; + +const apiVersions = ["1.0.0", "2.0.0"]; + +const defaultBranches = ["stable", "soon"]; + +type FetchManifests = ( category: string, search: string, -) => QueryFunction = - (category, search) => - async ({ pageParam }) => { - const url = new URL(`${URL_ORIGIN}/api/v2/apps`); - url.searchParams.set("resultsPerPage", `${PAGE_SIZE}`); - url.searchParams.set("page", `${pageParam}`); - if (category !== "all") { - url.searchParams.set("categories", category); - } - // TODO: make sure to trim search - if (search) { - url.searchParams.set("search", search); + allowExperimentalApps: boolean, + allowDebugApps: boolean, + lang: string, +) => QueryFunction; + +export const fetchManifests: FetchManifests = ( + category, + search, + allowExperimentalApps, + allowDebugApps, + lang, +) => { + const url = new URL(`${URL_ORIGIN}/api/v2/apps`); + url.searchParams.set("llVersion", LLVersion); + url.searchParams.set("platform", PLATFORM); + url.searchParams.set("private", "false"); + url.searchParams.set("lang", lang ? lang : "en"); + apiVersions.forEach(apiVersion => { + url.searchParams.append("apiVersion", apiVersion); + }); + const branches = [ + ...defaultBranches, + allowExperimentalApps && "experimental", + allowDebugApps && "debug", + ]; + branches.forEach(branch => { + if (branch) { + url.searchParams.append("branches", branch); } + }); + + url.searchParams.set("resultsPerPage", `${PAGE_SIZE}`); + if (category !== "all") { + url.searchParams.set("categories", category); + } + // TODO: make sure to trim search + if (search) { + url.searchParams.set("search", search); + } + + return async ({ pageParam }) => { + url.searchParams.set("page", `${pageParam}`); const res = await network({ url: url.toString(), }); return res.data; }; +}; export const selectManifests = (data: InfiniteData) => { return data.pages.flat(1); @@ -78,11 +117,16 @@ export const fetchManifestByIdMock = (manifestId: string) => async () => { return manifests.find(mock => mock.id === manifestId); }; -export const fetchManifestById = (manifestId: string) => async () => { +export const fetchManifestById = (manifestId: string, lang: string) => { const url = new URL(`${URL_ORIGIN}/api/v2/apps/${manifestId}`); + url.searchParams.set("llVersion", LLVersion); + url.searchParams.set("platform", PLATFORM); + url.searchParams.set("lang", lang ? lang : "en"); - const res = await network({ - url: url.toString(), - }); - return res.data; + return async () => { + const res = await network({ + url: url.toString(), + }); + return res.data; + }; }; diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/utils/api/mocks/categories.ts b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/utils/api/mocks/categories.ts index 67ec109a44fc..884a8f5b3bba 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/utils/api/mocks/categories.ts +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/utils/api/mocks/categories.ts @@ -1,11 +1,42 @@ export const mocks = [ - "games", - "defi", - "collectibles", - "marketplaces", - "high-risk", - "gambling", - "exchanges", - "social", - "other", + { + id: "games", + name: "games", + }, + { + id: "defi", + name: "defi", + }, + { + id: "collectibles", + name: "collectibles", + }, + { + id: "marketplaces", + name: "marketplaces", + }, + { + id: "high-risk", + name: "high-risk", + }, + { + id: "gambling", + name: "gambling", + }, + { + id: "exchanges", + name: "exchanges", + }, + { + id: "social", + name: "social", + }, + { + id: "other", + name: "other", + }, + { + id: "clear signing", + name: "clear signing", + }, ]; diff --git a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/utils/api/mocks/manifests.ts b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/utils/api/mocks/manifests.ts index 4d5356930336..a3eb87cf2554 100644 --- a/apps/ledger-live-mobile/src/newArch/features/Web3Hub/utils/api/mocks/manifests.ts +++ b/apps/ledger-live-mobile/src/newArch/features/Web3Hub/utils/api/mocks/manifests.ts @@ -90,7 +90,6 @@ export const mocks: AppManifest[] = [ "qtum", "bitcoin_gold", "komodo", - "pivx", "zencash", "vertcoin", "peercoin", @@ -215,6 +214,37 @@ export const mocks: AppManifest[] = [ domains: ["https://"], visibility: "complete", }, + { + id: "clear-signing", + name: "Clear-signing", + private: false, + url: "https://www.staderlabs.com/eth/stake/", + homepageUrl: "https://www.staderlabs.com/eth/", + icon: "https://cdn.live.ledger.com/icons/platform/stader-bnb.png", + platforms: ["android", "ios", "desktop"], + apiVersion: "^2.0.0 || ^1.0.0", + manifestVersion: "2", + branch: "stable", + categories: ["defi", "clear signing"], + currencies: ["ethereum", "ethereum/erc20/bnb", "bsc"], + content: { + shortDescription: { + en: "Our liquid staking solution allows users to stake ETH and get a fungible liquid token(ETHx) back that shows their claim to the underlying staked assets. We work with the ecosystem projects to ensure wide usability of these tokens on DEXs, lending/borrowing protocols, yield aggregators and more.", + }, + description: { + en: "About Stader - Stader is a non-custodial, smart contract-based staking platform that helps retail and institutions conveniently discover and access staking solutions. In addition to its own platform, Stader’s modular smart contracts and staking middleware infrastructure for Proof-of-Stake (PoS) networks can be leveraged for retail crypto users, exchanges, custodians, and mainstream FinTech players Our Project - Stader Liquid staking helps us build a future where community members will no longer have to choose between securing the network through staking or participating in the thriving DeFi, NFT and gaming protocols on Polygon. Instead, users can access both staking and DeFi rewards using the liquid token across liquidity pools, yield farming, lending and borrowing. Stader provides a convenient way for the community to stake with multiple validators at once, helping them reduce risk & costs while increasing returns. Our liquid staking solution allows users to stake Matic and get a fungible liquid token MaticX that shows their claim to the underlying staked assets. The MaticX token can be leveraged on the multiple Defi opportunities.", + }, + }, + permissions: [ + "account.list", + "account.request", + "currency.list", + "message.sign", + "transaction.signAndBroadcast", + ], + domains: ["https://"], + visibility: "complete", + }, ]; function getManifests() { diff --git a/apps/ledger-live-mobile/src/reducers/accounts.ts b/apps/ledger-live-mobile/src/reducers/accounts.ts index 55280e8512d8..dbe2665f30e7 100644 --- a/apps/ledger-live-mobile/src/reducers/accounts.ts +++ b/apps/ledger-live-mobile/src/reducers/accounts.ts @@ -248,13 +248,16 @@ export const flattenAccountsByCryptoCurrencySelector = createSelector( : accounts; }, ); -const emptyArray: AccountLike[] = []; + +const emptyTuples: ReturnType = []; export const accountsByCryptoCurrencyScreenSelector = (currency: CryptoOrTokenCurrency, accountIds?: Map) => (state: State) => { - if (!currency) return emptyArray; + // TODO look if we can remove this check as the types should already protect here + if (!currency) return emptyTuples; return accountsTuplesByCurrencySelector(state, currency, accountIds); }; +const emptyArray: AccountLike[] = []; export const flattenAccountsByCryptoCurrencyScreenSelector = (currency?: CryptoCurrency | TokenCurrency) => (state: State) => { if (!currency) return emptyArray; diff --git a/apps/ledger-live-mobile/src/reducers/settings.ts b/apps/ledger-live-mobile/src/reducers/settings.ts index b6598724be9f..b48a119e8a55 100644 --- a/apps/ledger-live-mobile/src/reducers/settings.ts +++ b/apps/ledger-live-mobile/src/reducers/settings.ts @@ -79,6 +79,7 @@ import type { SettingsClearDismissedContentCardsPayload, SettingsAddStarredMarketcoinsPayload, SettingsRemoveStarredMarketcoinsPayload, + SettingsSetFromLedgerSyncOnboardingPayload, } from "../actions/types"; import { SettingsActionTypes, @@ -174,6 +175,7 @@ export const INITIAL_STATE: SettingsState = { hasSeenAnalyticsOptInPrompt: false, dismissedContentCards: {}, starredMarketCoins: [], + fromLedgerSyncOnboarding: false, }; const pairHash = (from: { ticker: string }, to: { ticker: string }) => @@ -638,6 +640,12 @@ const handlers: ReducerMap = { }; }, + [SettingsActionTypes.SET_LEDGER_SYNC_ONBOARDING]: (state, action) => ({ + ...state, + fromLedgerSyncOnboarding: (action as Action) + .payload, + }), + [SettingsActionTypes.ADD_STARRED_MARKET_COINS]: (state, action) => ({ ...state, starredMarketCoins: [ @@ -874,5 +882,7 @@ export const supportedCounterValuesSelector = (state: State) => export const hasSeenAnalyticsOptInPromptSelector = (state: State) => state.settings.hasSeenAnalyticsOptInPrompt; export const dismissedContentCardsSelector = (state: State) => state.settings.dismissedContentCards; +export const isFromLedgerSyncOnboardingSelector = (state: State) => + state.settings.fromLedgerSyncOnboarding; export const starredMarketCoinsSelector = (state: State) => state.settings.starredMarketCoins; diff --git a/apps/ledger-live-mobile/src/reducers/types.ts b/apps/ledger-live-mobile/src/reducers/types.ts index 47e7ebc80396..9df02fefbac0 100644 --- a/apps/ledger-live-mobile/src/reducers/types.ts +++ b/apps/ledger-live-mobile/src/reducers/types.ts @@ -29,6 +29,7 @@ import { ImageType } from "../components/CustomImage/types"; import { CLSSupportedDeviceModelId } from "@ledgerhq/live-common/device/use-cases/isCustomLockScreenSupported"; import { WalletState } from "@ledgerhq/live-wallet/store"; import { TrustchainStore } from "@ledgerhq/trustchain/store"; +import { Steps } from "LLM/features/WalletSync/types/Activation"; // === ACCOUNT STATE === @@ -263,6 +264,7 @@ export type SettingsState = { hasSeenAnalyticsOptInPrompt: boolean; dismissedContentCards: { [id: string]: number }; starredMarketCoins: string[]; + fromLedgerSyncOnboarding: boolean; }; export type NotificationsSettings = { @@ -345,6 +347,8 @@ export type MarketState = { export type WalletSyncState = { isManageKeyDrawerOpen: boolean; + isActivateDrawerOpen: boolean; + activateDrawerStep: Steps; }; // === ROOT STATE === diff --git a/apps/ledger-live-mobile/src/reducers/walletSync.ts b/apps/ledger-live-mobile/src/reducers/walletSync.ts index 7a137c19c4b2..8092bac10986 100644 --- a/apps/ledger-live-mobile/src/reducers/walletSync.ts +++ b/apps/ledger-live-mobile/src/reducers/walletSync.ts @@ -1,21 +1,42 @@ import { handleActions } from "redux-actions"; import type { Action, ReducerMap } from "redux-actions"; import type { State, WalletSyncState } from "./types"; -import { WalletSyncPayload, WalletSyncSetManageKeyDrawerPayload } from "../actions/types"; +import { + WalletSyncActionTypes, + WalletSyncPayload, + WalletSyncSetActivateDrawer, + WalletSyncSetActivateStep, + WalletSyncSetManageKeyDrawerPayload, +} from "../actions/types"; +import { Steps } from "LLM/features/WalletSync/types/Activation"; export const INITIAL_STATE: WalletSyncState = { isManageKeyDrawerOpen: false, + isActivateDrawerOpen: false, + activateDrawerStep: Steps.Activation, }; const handlers: ReducerMap = { - WALLET_SYNC_SET_MANAGE_KEY_DRAWER: (state, action) => ({ + [WalletSyncActionTypes.WALLET_SYNC_SET_MANAGE_KEY_DRAWER]: (state, action) => ({ ...state, isManageKeyDrawerOpen: (action as Action).payload, }), + [WalletSyncActionTypes.LEDGER_SYNC_SET_ACTIVATE_DRAWER]: (state, action) => ({ + ...state, + isActivateDrawerOpen: (action as Action).payload, + }), + [WalletSyncActionTypes.LEDGER_SYNC_SET_ACTIVATE_STEP]: (state, action) => ({ + ...state, + activateDrawerStep: (action as Action).payload, + }), }; export const storeSelector = (state: State): WalletSyncState => state.walletSync; export const manageKeyDrawerSelector = (state: State): boolean => state.walletSync.isManageKeyDrawerOpen; +export const activateDrawerSelector = (state: State): boolean => + state.walletSync.isActivateDrawerOpen; +export const activateDrawerStepSelector = (state: State): Steps => + state.walletSync.activateDrawerStep; export default handleActions(handlers, INITIAL_STATE); diff --git a/apps/ledger-live-mobile/src/screens/Accounts/AddAccount.tsx b/apps/ledger-live-mobile/src/screens/Accounts/AddAccount.tsx index a863673789e4..f088ef7105a6 100644 --- a/apps/ledger-live-mobile/src/screens/Accounts/AddAccount.tsx +++ b/apps/ledger-live-mobile/src/screens/Accounts/AddAccount.tsx @@ -23,10 +23,6 @@ function AddAccount({ currencyId }: { currencyId?: string }) { setIsAddModalOpened(false); } - function reopenAddModal() { - setIsAddModalOpened(true); - } - return ( <> @@ -42,12 +38,7 @@ function AddAccount({ currencyId }: { currencyId?: string }) { - + ); } diff --git a/apps/ledger-live-mobile/src/screens/AnalyticsOptInPrompt/variantA/Main.tsx b/apps/ledger-live-mobile/src/screens/AnalyticsOptInPrompt/variantA/Main.tsx index 89e3d8b325cc..47c52f5ac71a 100644 --- a/apps/ledger-live-mobile/src/screens/AnalyticsOptInPrompt/variantA/Main.tsx +++ b/apps/ledger-live-mobile/src/screens/AnalyticsOptInPrompt/variantA/Main.tsx @@ -117,9 +117,10 @@ function Main({ route, navigation }: Props) {