Skip to content

Commit

Permalink
Bugfix/coin tester setup (#7140)
Browse files Browse the repository at this point in the history
* Add documentation on coin tester

* SPECULOS_API_PORT

* coin-polkadot support websocket provider

* rpc.polkadot.io endpoint in chopsticks
  • Loading branch information
lvndry committed Jun 20, 2024
1 parent 0a97cb7 commit 02f6ec0
Show file tree
Hide file tree
Showing 16 changed files with 76 additions and 34 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ tsconfig.tsbuildinfo
rce
.env
coverage
db.sqlite*
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
SEED=chronic find success crew board merit elder life achieve scout gravity soul brief pen job
# has to be a token classic
GH_TOKEN=gh_token
API_PORT=4040
SPECULOS_API_PORT=4040
# Only needed if you are on a apple chip
SPECULOS_IMAGE=speculos
1 change: 0 additions & 1 deletion libs/coin-modules/coin-polkadot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
"test": "jest",
"typecheck": "tsc --noEmit",
"unimported": "unimported",
"coin-tester:build": "make build -f src/test/coin-tester/Makefile",
"coin-tester": "DOTENV_CONFIG_PATH=src/test/coin-tester/.env pnpm jest --runTestsByPath src/test/coin-tester/*.test.ts --forceExit"
},
"dependencies": {
Expand Down
18 changes: 16 additions & 2 deletions libs/coin-modules/coin-polkadot/src/network/node/apiPromise.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import { ApiPromise, HttpProvider } from "@polkadot/api";
import { ApiPromise, HttpProvider, WsProvider } from "@polkadot/api";
import { getCoinConfig, PolkadotCoinConfig } from "../../config";

let coinConfig: PolkadotCoinConfig | undefined;
let api: ApiPromise | undefined;

export default async function () {
const config = getCoinConfig();
// Need to constantly check if a new config is setted
Expand All @@ -11,8 +12,21 @@ export default async function () {
const headers = coinConfig.node.credentials
? { Authorization: "Basic " + coinConfig.node.credentials }
: undefined;

const nodeURL = coinConfig.node.url;

let provider: HttpProvider | WsProvider;

if (nodeURL.startsWith("ws://") || nodeURL.startsWith("wss://")) {
provider = new WsProvider(nodeURL);
} else if (nodeURL.startsWith("http://") || nodeURL.startsWith("https://")) {
provider = new HttpProvider(nodeURL, headers);
} else {
throw new Error("[Polkadot] Invalid node URL");
}

api = await ApiPromise.create({
provider: new HttpProvider(coinConfig.node.url, headers),
provider,
noInitWarn: true, //to avoid undesired warning (ex: "API/INIT: polkadot/1002000: Not decorating unknown runtime apis")
});
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# development seed only. generated with https://iancoleman.io/bip39
SEED=chronic find success crew board merit elder life achieve scout gravity soul brief pen job
GH_TOKEN=gh_token
API_PORT=4040
SPECULOS_API_PORT=4040
SPECULOS_IMAGE=speculos
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
IMAGE_NAME = coin-tester-chopsticks
CONTAINER_NAME = chopsticks
CURRENT_DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST))))

build:
docker build -f $(CURRENT_DIR)/chopsticks.Dockerfile -t $(IMAGE_NAME)\:latest .
docker build -f chopsticks.Dockerfile -t $(IMAGE_NAME)\:latest .

run:
docker run --rm -d -p "8000:8000" --name $(CONTAINER_NAME) $(IMAGE_NAME)\:latest
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export async function spawnChopsticksAndSidecar() {
ensureEnv();
console.log("Starting chopsticks and sidecar...");

// await compose.buildOne("chopsticks", { cwd });
await compose.upAll({
cwd,
log: true,
Expand Down Expand Up @@ -48,7 +47,7 @@ export async function spawnChopsticksAndSidecar() {
}

export const killChopsticksAndSidecar = async (): Promise<void> => {
console.log("Stopping anvil...");
console.log("Stopping chopsticks...");
await compose.down({
cwd,
log: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ RUN npm install -g @acala-network/chopsticks@latest

EXPOSE 8000

CMD ["chopsticks", "--endpoint", "wss://rpc.polkadot.io", "--config", "coin-tester-chopsticks.yml"]
CMD ["chopsticks", "--config", "coin-tester-chopsticks.yml"]
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Configuration file for chopsticks
# https://github.com/AcalaNetwork/chopsticks?tab=readme-ov-file
# Inspired by https://github.com/AcalaNetwork/chopsticks/blob/master/configs/polkadot.yml
# Documentation: https://github.com/AcalaNetwork/chopsticks?tab=readme-ov-file
endpoint:
- wss://rpc.polkadot.io
- wss://rpc.ibp.network/polkadot
- wss://polkadot-rpc.dwellir.com
mock-signature-host: true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: chopsticks-sidecar
services:
chopsticks:
# TODO: Deploy the image in in ghr.io/ledgerhq
image: coin-tester-chopsticks:latest
container_name: chopsticks
build:
Expand All @@ -17,8 +18,8 @@ services:
retries: 12
sidecar-api:
image: ghcr.io/ledgerhq/polkadot-sidecar:19.0.0-ledger-live
platform: linux/x86_64
container_name: sidecar-api
platform: linux/x86_64
depends_on:
chopsticks:
condition: service_healthy
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,16 @@ jest.setTimeout(300_000);

export const defaultNanoApp = { firmware: "2.3.0" as const, version: "25.10100.0" as const };

export const LOCAL_TESTNODE_URL = "ws://127.0.0.1:8000";
export const SIDECAR_BASE_URL = "http://127.0.0.1:8080";

describe("Polkadot Deterministic Tester", () => {
it("Basic scenario", async () => {
await executeScenario(basicScenario);
try {
await executeScenario(basicScenario);
} catch (e) {
if (e != "done") {
await Promise.all([killSpeculos(), killChopsticksAndSidecar()]);
throw e;
}
}
});
});

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
} from "../../../types/bridge";
import { createBridges } from "../../../bridge";
import { makeAccount } from "../../fixtures";
import { defaultNanoApp, LOCAL_TESTNODE_URL, SIDECAR_BASE_URL } from "../scenarios.test";
import { defaultNanoApp } from "../scenarios.test";
import { PolkadotCoinConfig } from "../../../config";
import { killChopsticksAndSidecar, spawnChopsticksAndSidecar } from "../chopsticks-sidecar";
import { polkadot } from "./utils";
Expand Down Expand Up @@ -214,7 +214,10 @@ function getTransactions() {
];
}

const wsProvider = new WsProvider(LOCAL_TESTNODE_URL, false);
const LOCAL_TESTNODE_WS_URL = "ws://127.0.0.1:8000";
const SIDECAR_BASE_URL = "http://127.0.0.1:8080";

const wsProvider = new WsProvider(LOCAL_TESTNODE_WS_URL, false);
let api: ApiPromise;
let unsubscribeNewBlockListener: () => void;

Expand All @@ -223,7 +226,7 @@ const coinConfig: PolkadotCoinConfig = {
type: "active",
},
node: {
url: LOCAL_TESTNODE_URL,
url: LOCAL_TESTNODE_WS_URL,
},
sidecar: {
url: SIDECAR_BASE_URL,
Expand All @@ -248,6 +251,7 @@ export const basicScenario: Scenario<PolkadotTransaction, PolkadotAccount> = {
]);

const onSignerConfirmation = getOnSpeculosConfirmation("APPROVE");

await cryptoWaitReady();
await wsProvider.connect();
api = await ApiPromise.create({ provider: wsProvider });
Expand Down Expand Up @@ -291,12 +295,21 @@ export const basicScenario: Scenario<PolkadotTransaction, PolkadotAccount> = {

subscriptions.push(unsubGetBasicScenarioBalance);

await api.tx.balances
const unsub = await api.tx.balances
.transferAllowDeath(
basicScenarioAccountPair.address,
parseCurrencyUnit(polkadot.units[0], "500000").toNumber(),
)
.signAndSend(alice);
.signAndSend(alice, result => {
console.log(`Current status is ${result.status}`);

if (result.status.isInBlock) {
console.log(`Transaction included at blockHash ${result.status.asInBlock}`);
} else if (result.status.isFinalized) {
console.log(`Transaction finalized at blockHash ${result.status.asFinalized}`);
unsub();
}
});

const account = makeAccount(basicScenarioAccountPair.address, polkadot);

Expand Down
18 changes: 14 additions & 4 deletions libs/coin-tester/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ pnpm build:libs
You only have to build speculos locally if you are on a Mac M1. Otherwise you can uncomment the image provided in the docker-compose.yml

1. Clone speculos: `git clone [email protected]:LedgerHQ/speculos.git`

2. Patch Dockerfile:

```Dockerfile
Expand All @@ -33,6 +34,7 @@ FROM speculos-builder:latest AS builder
```

3. Build image

```sh
cd speculos
docker build -f build.Dockerfile -t speculos-builder:latest .
Expand All @@ -41,7 +43,7 @@ docker build -f Dockerfile -t speculos:latest .

### Environment variables

- Generate a [Github token classic](https://github.com/settings/tokens) and make sure to authorize Ledger SSO
- Generate a [Github token classic](https://github.com/settings/tokens) and give it full "repo" and "project" rights. Make sure to authorize Ledger SSO.

- Go in the coin-module you want to test and create a `.env` in the folder where your test resides.
For exemple for `coin-evm` create the file should be located in: `src/__test__/coin-tester/.env`.
Expand Down Expand Up @@ -70,15 +72,23 @@ If you want you can generate a new seed using [this tool](https://iancoleman.io/
To coin Polkadot Coin tester we will need to build the local test node Docker image.

```sh
pnpm coin:polkadot coin-tester:build
cd libs/coin-modules/coin-polkadot/src/test/coin-tester
make build
```

## Run tests for a coin module {#runtests}

```sh
pnpm coin:<coin-module-name> coin-tester

# e.g
# pnpm coin:ethereum coin-tester
# pnpm coin:evm coin-tester
# pnpm coin:polkadot coin-tester
```

## Troubleshooting

### EVM Coin tester

> The \"RPC\" variable is not set. Defaulting to a blank string.
This error can safely be ignored. The RPC is passed as a variable env at runtime. Check [here](https://github.com/LedgerHQ/ledger-live/blob/develop/libs/coin-modules/coin-evm/src/__tests__/coin-tester/anvil.ts#L28) and [here](https://github.com/LedgerHQ/ledger-live/blob/develop/libs/coin-modules/coin-evm/src/__tests__/coin-tester/scenarios/ethereum.ts#L144)
4 changes: 2 additions & 2 deletions libs/coin-tester/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
volumes:
- ./lib/signers/tmp:/speculos/apps
ports:
- "${API_PORT}:${API_PORT}"
- "${SPECULOS_API_PORT}:${SPECULOS_API_PORT}"
build:
context: /speculos
command: --model nanox ./apps/app.elf --seed="${SEED}" --display headless --api-port ${API_PORT}
command: --model nanox ./apps/app.elf --seed="${SEED}" --display headless --api-port ${SPECULOS_API_PORT}
12 changes: 6 additions & 6 deletions libs/coin-tester/src/signers/speculos.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import { ENV } from "../types";
import chalk from "chalk";
import { SignOperationEvent } from "@ledgerhq/types-live";

const { API_PORT } = process.env as ENV;
const { SPECULOS_API_PORT } = process.env as ENV;
const cwd = path.join(__dirname);

const delay = (timing: number) => new Promise(resolve => setTimeout(resolve, timing));

function ensureEnv() {
const mandatory_env_variables = ["SEED", "API_PORT", "GH_TOKEN"];
const mandatory_env_variables = ["SEED", "SPECULOS_API_PORT", "GH_TOKEN"];
const optional_env_variables = ["SPECULOS_IMAGE"];

if (!mandatory_env_variables.every(variable => !!process.env[variable])) {
Expand Down Expand Up @@ -70,7 +70,7 @@ export async function spawnSpeculos(nanoAppEndpoint: `/${string}`): Promise<{
if (out.includes("Running on all addresses (0.0.0.0)")) {
console.log(chalk.bgYellowBright.black(" - SPECULOS READY ✅ - "));
return SpeculosTransportHttp.open({
apiPort: API_PORT,
apiPort: SPECULOS_API_PORT,
});
}

Expand All @@ -82,17 +82,17 @@ export async function spawnSpeculos(nanoAppEndpoint: `/${string}`): Promise<{
async function onSpeculosConfirmation(e?: SignOperationEvent): Promise<void> {
if (e?.type === "device-signature-requested") {
const { data } = await axios.get(
`http://localhost:${process.env.API_PORT}/events?currentscreenonly=true`,
`http://localhost:${SPECULOS_API_PORT}/events?currentscreenonly=true`,
);

if (data.events[0].text !== approvalText) {
await axios.post(`http://localhost:${process.env.API_PORT}/button/right`, {
await axios.post(`http://localhost:${SPECULOS_API_PORT}/button/right`, {
action: "press-and-release",
});

onSpeculosConfirmation(e);
} else {
await axios.post(`http://localhost:${process.env.API_PORT}/button/both`, {
await axios.post(`http://localhost:${SPECULOS_API_PORT}/button/both`, {
action: "press-and-release",
});
}
Expand Down
2 changes: 1 addition & 1 deletion libs/coin-tester/src/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export type ENV = {
GH_TOKEN: string;
SEED: string;
API_PORT: string;
SPECULOS_API_PORT: string;
};

1 comment on commit 02f6ec0

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[Bot] Daily non-reg on develop with 'Nitrogen' ✅ 157 txs ❌ 15 txs 💰 15 miss funds ($1,090.08) ⏲ 53min 10s

✅ 42 specs are successful: Celo, osmosis, desmos, umee, persistence, quicksilver, onomy, stargaze, coreum, Elrond, Hedera, InternetComputer, Stellar, Bitcoin Cash, Bitcoin Gold, Dash, Digibyte, DogeCoin, Komodo, Litecoin, PivX, Vertcoin, Viacoin, Polygon, Ethereum Sepolia, Ethereum Holesky, Arbitrum, Arbitrum Sepolia, Songbird, Moonbeam, Bittorent Chain, Energy Web, Astar, Metis, Moonriver, Velas EVM, Base Sepolia, Klaytn, Neon EVM, Lukso, Linea, XRP
❌ 10 specs have problems: Casper, Crypto org, Stacks, VeChain VTHO, Algorand, Viacoin, Horizen, Syscoin, NEAR, Tezos
💰 15 specs may miss funds: dydx, sei_network, VeChain VET, Bitcoin Testnet, ZCash, Ethereum Classic, Flare, RSK, OP Mainnet, OP Sepolia, Linea Sepolia, Blast, Blast Sepolia, Scroll, Scroll Sepolia

What is the bot and how does it work? Everything is documented here!

4 critical spec errors

Spec injective failed!

Error: timeout of 60000ms exceeded

Spec Peercoin failed!

LedgerAPI5xx: API HTTP 503 https://explorers.api.live.ledger.com/blockchain/v4/ppc/block/current

Spec Polygon zkEVM Testnet failed!

Error: could not detect network (event="noNetwork", code=NETWORK_ERROR, version=providers/5.7.2)

Spec Solana failed!

NetworkError: request to https://solana.coin.ledger.com/ failed, reason: Socket timeout
❌ 15 mutation errors
necessary accounts resynced in 0.14ms
▬ Casper 2.6.3 on nanoSP 1.1.1
→ FROM undefined: 3,124.98 CSPR (59ops) (0203B56bC181780F8fb173BaFd8d483d6911282EC46d72692d0a5bbbb29ea242ed76 on 44'/506'/0'/0/2) casper_wallet#2 js:2:casper:0203B56bC181780F8fb173BaFd8d483d6911282EC46d72692d0a5bbbb29ea242ed76:casper_wallet
max spendable ~3,124.88
★ using mutation 'Send ~50%'
→ TO undefined: 0 CSPR (77ops) (02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c on 44'/506'/0'/0/0) casper_wallet#0 js:2:casper:02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c:casper_wallet
✔️ transaction 
SEND  1,562.440969522 CSPR
TO 02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c
STATUS (8ms)
  amount: 1,562.440969522 CSPR
  estimated fees: 0.1 CSPR
  total spent: 1,562.540969522 CSPR
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Target'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Target": "C0794bc80eDfa58D3427Cb4E2861630900b3bf30390447B6b0A1614f2bff9234",
+   "Target": "02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c",
  }
(totally spent 3.9s – ends at 2024-06-20T17:26:54.306Z)
necessary accounts resynced in 0.12ms
▬ Casper 2.6.3 on nanoSP 1.1.1
→ FROM undefined: 3,122.33 CSPR (75ops) (0203d14Bf1367769813E9c7233dB26DC2208cA211532a0C2B1189992dC01d4bc098E on 44'/506'/0'/0/3) casper_wallet#3 js:2:casper:0203d14Bf1367769813E9c7233dB26DC2208cA211532a0C2B1189992dC01d4bc098E:casper_wallet
max spendable ~3,122.23
★ using mutation 'Transfer Max'
→ TO undefined: 0 CSPR (60ops) (02039ae761a635A37868CF35e6de9799Cba9fC4cDB9A3aFbbA6AB5c83291F13bbec8 on 44'/506'/0'/0/4) casper_wallet#4 js:2:casper:02039ae761a635A37868CF35e6de9799Cba9fC4cDB9A3aFbbA6AB5c83291F13bbec8:casper_wallet
✔️ transaction 
SEND MAX
TO 02039ae761a635A37868CF35e6de9799Cba9fC4cDB9A3aFbbA6AB5c83291F13bbec8
STATUS (2.17ms)
  amount: 3,122.2375 CSPR
  estimated fees: 0.1 CSPR
  total spent: 3,122.3375 CSPR
errors: 
warnings: amount MayBlockAccount
⚠️ TEST deviceAction confirm step 'Target'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Target": "86761345Beaa1D6e8004Cf39f5A78173642E00eDe3bd316435ACBA0dfbf2F3F7",
+   "Target": "02039ae761a635A37868CF35e6de9799Cba9fC4cDB9A3aFbbA6AB5c83291F13bbec8",
  }
(totally spent 3.9s – ends at 2024-06-20T17:26:54.353Z)
necessary accounts resynced in 0.11ms
▬ Crypto.orgChain 2.17.1 on nanoS 2.1.0
→ FROM undefined: 17.3755 CRO (44ops) (cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra on 44'/394'/0'/0/0) #0 js:2:crypto_org:cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra: (! sum of ops 17.37656309 CRO)
max spendable ~17.3755
★ using mutation 'move 50%'
→ TO undefined: 0 CRO (35ops) (cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl on 44'/394'/1'/0/0) #1 js:2:crypto_org:cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl:
✔️ transaction 
SEND  8.68778155 CRO
TO cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl
STATUS (1.57ms)
  amount: 8.68778155 CRO
  estimated fees: 0.00005 CRO
  total spent: 8.68783155 CRO
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"review","x":47,"y":10,"w":81,"h":11}
{"text":"Please","x":48,"y":-1,"w":80,"h":11}
{"text":"review","x":47,"y":10,"w":81,"h":11}
{"text":"Please","x":48,"y":-1,"w":80,"h":11}
{"text":"review","x":47,"y":10,"w":81,"h":11}
(totally spent 60s – ends at 2024-06-20T17:26:54.355Z)
necessary accounts resynced in 0.13ms
▬ Crypto.orgChain 2.17.1 on nanoS 2.1.0
→ FROM undefined: 17.3755 CRO (30ops) (cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd on 44'/394'/3'/0/0) #3 js:2:crypto_org:cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd: (! sum of ops 17.37636309 CRO)
max spendable ~17.3754
★ using mutation 'send max'
→ TO undefined: 0 CRO (31ops) (cro1zfhcf2htapdkjlw4ffqzce7yfe6mhscd2su05p on 44'/394'/5'/0/0) #5 js:2:crypto_org:cro1zfhcf2htapdkjlw4ffqzce7yfe6mhscd2su05p:
✔️ transaction 
SEND MAX
TO cro1zfhcf2htapdkjlw4ffqzce7yfe6mhscd2su05p
STATUS (1.59ms)
  amount: 17.37546309 CRO
  estimated fees: 0.00005 CRO
  total spent: 17.37551309 CRO
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"review","x":47,"y":10,"w":81,"h":11}
{"text":"Please","x":48,"y":-1,"w":80,"h":11}
{"text":"review","x":47,"y":10,"w":81,"h":11}
{"text":"Please","x":48,"y":-1,"w":80,"h":11}
{"text":"review","x":47,"y":10,"w":81,"h":11}
(totally spent 60s – ends at 2024-06-20T17:26:54.358Z)
necessary accounts resynced in 4.99ms
▬ Stacks 0.23.3 on nanoSP 1.1.1
→ FROM undefined: 13.8276 STX (182ops) (SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2 on 44'/5757'/0'/0/0) #0 js:2:stacks:02d8ff937901982551807aace226a5b1eae3d8c5c89d1eae39ccab9cd1d27a9739:
max spendable ~13.8272
★ using mutation 'Transfer Max'
→ TO undefined: 13.8276 STX (182ops) (SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2 on 44'/5757'/0'/0/0) #0 js:2:stacks:02d8ff937901982551807aace226a5b1eae3d8c5c89d1eae39ccab9cd1d27a9739:
✔️ transaction 
SEND MAX
TO SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2
STATUS (1924ms)
  amount: 13.827273 STX
  estimated fees: 0.000362 STX
  total spent: 13.827635 STX
errors: recipient InvalidAddressBecauseDestinationIsAlsoSource
warnings: 
⚠️ TEST mutation must not have tx status errors
InvalidAddressBecauseDestinationIsAlsoSource: InvalidAddressBecauseDestinationIsAlsoSource
(totally spent 1938ms – ends at 2024-06-20T17:26:54.360Z)
necessary accounts resynced in 0.28ms
▬ Stacks 0.23.3 on nanoSP 1.1.1
→ FROM undefined: 9.06861 STX (186ops) (SP3WE1A84RCG3GWKRXYMXNRVQJ8PG3VDRKE7CMPM4 on 44'/5757'/1'/0/0) #1 js:2:stacks:03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229:
max spendable ~9.06825
★ using mutation 'Transfer Max'
→ TO undefined: 13.8276 STX (182ops) (SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2 on 44'/5757'/0'/0/0) #0 js:2:stacks:02d8ff937901982551807aace226a5b1eae3d8c5c89d1eae39ccab9cd1d27a9739:
✔️ transaction 
SEND MAX
TO SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2
STATUS (1777ms)
  amount: 9.068254 STX
  estimated fees: 0.000362 STX
  total spent: 9.068616 STX
errors: 
warnings: 
✔️ has been signed! (5.5s) 
✔️ broadcasted! (599ms) optimistic operation: 
  -9.068616 STX      OUT        0x73e10a5a3a423196358675634da03b027b4e5170f175425d1eaef4ae564f3fdc 2024-06-20T16:36
(in 25min 3s)
⚠️ TEST account balance is 0
Error: expect(received).toBe(expected) // Object.is equality

Expected: "0"
Received: "9068616"
(totally spent 25min 11s – ends at 2024-06-20T17:26:54.362Z)
necessary accounts resynced in 3.4s
▬ Stacks 0.23.3 on nanoSP 1.1.1
→ FROM undefined: 9.46356 STX (146ops) (SPJ68NSCQSTQ1AQRY1NJ5D4WWBEPDQ6X24R56J8A on 44'/5757'/2'/0/0) #2 js:2:stacks:02319a870c0e3d22b9c0169df3bae3029a9e5593f8dabbc7e4b6a1e356edafed77:
max spendable ~9.46287
★ using mutation 'Send 50%~'
→ TO undefined: 9.06861 STX (187ops) (SP3WE1A84RCG3GWKRXYMXNRVQJ8PG3VDRKE7CMPM4 on 44'/5757'/1'/0/0) #1 js:2:stacks:03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229:
✔️ transaction 
SEND  4.695426 STX
TO SP3WE1A84RCG3GWKRXYMXNRVQJ8PG3VDRKE7CMPM4
STATUS (1617ms)
  amount: 4.695426 STX
  estimated fees: 0.000681 STX
  total spent: 4.696107 STX
errors: 
warnings: 
✔️ has been signed! (2562ms) 
✔️ broadcasted! (291ms) optimistic operation: 
  -4.696107 STX      OUT        0xd38f3c16452f6b841be0d757b88f0d6b3a0c30a32ab6d66b69239f263aed8605 2024-06-20T17:01
(in 25min 3s)
⚠️ TEST account balance decreased with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "4767453"
Received: "9463560"
(totally spent 25min 7s – ends at 2024-06-20T17:26:54.365Z)
necessary accounts resynced in 0.18ms
▬ VeChain 1.1.1 on nanoSP 1.1.1
→ FROM undefined: 0.625 VET (7ops) (0xc4B17901FECf86932c3bb296BB00E7c6816Fd416 on 44'/818'/0'/0/0) vechain#0 js:2:vechain:0xc4B17901FECf86932c3bb296BB00E7c6816Fd416:vechain  TokenAccount Vethor: 53.965268 VTHO (2 ops) (! sum of ops 55 VTHO)
max spendable ~0.625
★ using mutation 'move ~50% VTHO'
→ TO undefined: 3.125 VET (5ops) (0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD on 44'/818'/0'/0/1) vechain#1 js:2:vechain:0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD:vechain
✔️ transaction SEND  26.982634 VET TO 0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD
STATUS (1116ms)
  amount: 26.982634 VTHO
  estimated fees: 0.51646 VET
  total spent: 27.499094 VTHO
errors: 
warnings: 
⚠️ VechainAppPleaseEnableContractDataAndMultiClause: Please enable contract data in Vechain app settings
(totally spent 1153ms – ends at 2024-06-20T17:26:54.368Z)
necessary accounts resynced in 0.22ms
▬ Algorand 2.1.11 on nanoS 2.1.0
→ FROM undefined: 9.12896 ALGO (484ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA: 6.528965 ALGO spendable. 
  TokenAccount Asia Reserve Currency Coin: 0 ARCC (0 ops)
  TokenAccount MESE USD Exchange Token: 0 USD-MESE (0 ops)
  TokenAccount MESE Index Fund: 0 MESX (0 ops)
  TokenAccount Micro-Microsoft: 0 M-MSFT (0 ops)
  TokenAccount Micro-Amazon: 0 M-AMZN (0 ops)
  TokenAccount Micro-Twitter: 0 M-TWTR (0 ops)
  TokenAccount Micro-Netflix: 0 M-NFLX (0 ops)
  TokenAccount Micro-Google: 0 M-GOOGL (0 ops)
  TokenAccount Micro-Apple: 0 M-AAPL (0 ops)
  TokenAccount Micro-Tesla: 0 M-TSLA (0 ops)
  TokenAccount Realio Token: 0 RIO (0 ops)
  TokenAccount realioUSD: 0 RUSD (0 ops)
  TokenAccount Liquid Mining Fund I: 0 RHO 1 (0 ops)
  TokenAccount Credit Opportunities Fund I: 0 VAL 1 (0 ops)
  TokenAccount Meld Gold: 0 MCAU (0 ops)
  TokenAccount Meld Silver: 0 MCAG (0 ops)
  TokenAccount PLANET: 0 PLANETS (0 ops)
  TokenAccount USDC: 0 USDC (0 ops)
  TokenAccount HEADLINE: 0 HDL (0 ops)
  TokenAccount AlgoGems: 0 GEMS (0 ops)
  TokenAccount Choice Coin: 0 CHOICE (0 ops)
  TokenAccount Smile Coin: 0 SMILE (0 ops)
  TokenAccount goBTC: 0 goBTC (0 ops)
  TokenAccount Nimble: 0 NIMBLE (0 ops)
  TokenAccount CollecteursX: 0 CLTR (0 ops)
max spendable ~6.52796
★ using mutation 'opt-In ASA available'
→ TO undefined: 9.12896 ALGO (484ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA:
✔️ transaction 
    OPT_IN 0 ALGO
    TO WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA
    with fees=0.001 ALGO
STATUS (339ms)
  amount: 0 ALGO
  estimated fees: 0.001 ALGO
  total spent: 0.001 ALGO
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Amount'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Amount": "USDT 0.0",
+   "Amount": "USDt 0.0",
  }
(totally spent 3.6s – ends at 2024-06-20T17:26:54.379Z)
necessary accounts resynced in 0.17ms
▬ Viacoin 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [legacy]: 3.03434 VIA (542ops) (VernKr7PjS8iyT2wSz7ZPdHdZtwsnnUnd7 on 44'/14'/0'/0/277) #0 js:2:viacoin:xpub6BqwJGyyRny96T4yirVKJ3iqL3dznXfrtohfLE5AgKButrt9PHen5v2yACKPuMZg53z5vmYkFh7NQeXotr714kgNUuuBD7HHpuZcfQpqtVB:
4 UTXOs
1.60639      VobFUx4NSErWDHBjheKHq9HxcUpwHRd435 b2d9d09ea5940425b6d4d7fd39320188f0b092bfb0f541815bd36f596696e0b7 @0 (0)
0.95333      Vkr7oPREZj2TUFai4vwjnohu2DSsGg2u3N (change) 2643cb23d18c3e2fa225b665c0f395d3c2f220c6ec2d4fed8071688e383218e8 @1 (0)
0.473629     Vov4H1jhVkD1sJYk68f9ba8qFXA4y1sqmu (change) 2830c3c52d13e82eef1a592d22efe4a22e5c2cc104e3de42bb47ea4aaaba9cf9 @1 (3579)
0.001        VbgFxX8AVtGQszTVAJExCZQAhxQPZ4q2VU 6fea1064c06d501b4f5a8e93cbe0b9a23e404b52a8ee5fa5b1891d7a874cc2e7 @0 (10765)

max spendable ~1.42307
★ using mutation 'optimize-size'
→ TO undefined [legacy]: 0 VIA (576ops) (VcAWZA338GiVTtatrQM9fav2THzo198uxW on 44'/14'/1'/0/304) #1 js:2:viacoin:xpub6BqwJGyyRny99DmxkTjWUNWFd5foEt2aUddfdaEamdB8gLsfK225ttKKiM24gZvVmUWm1tC2zJheYZ7FfJkTgCvyAz8AxVRa8TPWbmsnWMb:
✔️ transaction 
SEND 1.13913714 VIA
TO VcAWZA338GiVTtatrQM9fav2THzo198uxW
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
OPTIMIZE_SIZE pick-unconfirmed
STATUS (336ms)
TX INPUTS (1):
1.60639      VobFUx4NSErWDHBjheKHq9HxcUpwHRd435 b2d9d09ea5940425b6d4d7fd39320188f0b092bfb0f541815bd36f596696e0b7@0
TX OUTPUTS (2):
1.13913      VcAWZA338GiVTtatrQM9fav2THzo198uxW @0 (0)
0.46499      Vs1diCWsAdAcua5HioGz4smMsYTQPoiiV7 (change) @1 (0)
  amount: 1.13913714 VIA
  estimated fees: 0.00226226 VIA
  total spent: 1.1413994 VIA
errors: 
warnings: 
✔️ has been signed! (5.8s) 
✔️ broadcasted! (77ms) optimistic operation: 
  -1.1413994 VIA     OUT        f8cc730fc9dff80f9c5261a15dd5d614dbf8dc2bd5f4fc6da19db64a3836767c 2024-06-20T16:40
✔️ operation confirmed (12.2s): 
  -1.60639018 VIA    OUT        f8cc730fc9dff80f9c5261a15dd5d614dbf8dc2bd5f4fc6da19db64a3836767c 2024-06-20T16:40
✔️ undefined [legacy]: 1.42795 VIA (543ops) (VernKr7PjS8iyT2wSz7ZPdHdZtwsnnUnd7 on 44'/14'/0'/0/277) #0 js:2:viacoin:xpub6BqwJGyyRny96T4yirVKJ3iqL3dznXfrtohfLE5AgKButrt9PHen5v2yACKPuMZg53z5vmYkFh7NQeXotr714kgNUuuBD7HHpuZcfQpqtVB:
3 UTXOs
0.95333      Vkr7oPREZj2TUFai4vwjnohu2DSsGg2u3N (change) 2643cb23d18c3e2fa225b665c0f395d3c2f220c6ec2d4fed8071688e383218e8 @1 (0)
0.473629     Vov4H1jhVkD1sJYk68f9ba8qFXA4y1sqmu (change) 2830c3c52d13e82eef1a592d22efe4a22e5c2cc104e3de42bb47ea4aaaba9cf9 @1 (3589)
0.001        VbgFxX8AVtGQszTVAJExCZQAhxQPZ4q2VU 6fea1064c06d501b4f5a8e93cbe0b9a23e404b52a8ee5fa5b1891d7a874cc2e7 @0 (10775)
(in 12.2s)
(in 4min 52s)
⚠️ TEST destination > account balance increased with transaction amount
Error: expect(received).toBe(expected) // Object.is equality

Expected: "160412792"
Received: "113913714"
(totally spent 5min 11s – ends at 2024-06-20T17:26:54.389Z)
necessary accounts resynced in 0.22ms
▬ Horizen 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 0.319582 ZEN (487ops) (znmq5coa5611Vets6FaAhjaN5HDp3FZzRff on 44'/121'/3'/0/257) #3 js:2:zencash:xpub6C68jAb8xasfwaE1WeCTh2JhK4KMh64oUaNn2MJCpVdjBmV7cdLhW8xqAfrb8eerM3wtiwMg9sMZkjA62QMH1rMDNbr97uLKNZohEX7c1cq:
4 UTXOs
0.211816     znWt3DPQ92HVNyByaXadkz5mEiByoByL3Vt c302f96e987d39cbad014fb55f8c755325d7fe361d313428c3b113c7811ab3c0 @0 (565)
0.0803105    zne8yxUsDDKcU9WwFvMNn7MLGgzbnJU4jdW 04cebd31b344977dcf6918686ff08643eb7a6e6c57071d5d677758b8d613f916 @0 (565)
0.0195202    znfuznprnxUDEMVaw4yhxMDqRMKZFgivJmS (change) eb77aab916fe13346127d1e1c11a1883cc68c81a85aadefa34c53f311eb30b4f @1 (564)
0.00793515   zndy3d2GJMeBi7kDkMMeW9up4C7BZKVHc9y 975726adbd05e31c25d535804b59d7acf34e5c409a8af1e7d551ec49516b8176 @0 (1709)

max spendable ~0.31957
★ using mutation 'send OP_RETURN transaction'
→ TO undefined: 0 ZEN (495ops) (znc25Kqjvpy65kYRCTzeun4jpFpomQ6EBGw on 44'/121'/0'/0/232) #0 js:2:zencash:xpub6C68jAb8xasfmbmg37N3W5TsYWdTb6xLCtjwz5oSVAdi6Jxzx6FeBQcQazySrCXnsGZKaT9MXB9i4Lny4AoFAVZtSy6kVExyheF7X5Msvu3:
✔️ transaction 
SEND 0.01 ZEN
TO znc25Kqjvpy65kYRCTzeun4jpFpomQ6EBGw
with feePerByte=2 (network fees: 0=3, 1=2, 2=1)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (120ms)
TX INPUTS (2):
0.00793515   zndy3d2GJMeBi7kDkMMeW9up4C7BZKVHc9y 975726adbd05e31c25d535804b59d7acf34e5c409a8af1e7d551ec49516b8176@0
0.211816     znWt3DPQ92HVNyByaXadkz5mEiByoByL3Vt c302f96e987d39cbad014fb55f8c755325d7fe361d313428c3b113c7811ab3c0@0
TX OUTPUTS (3):
0.01         znc25Kqjvpy65kYRCTzeun4jpFpomQ6EBGw @0 (0)
0            @1 (0)
0.209742     zngmHni63UM2k2ddEXrZqYhvsRnZEAwjrQe (change) @2 (0)
  amount: 0.01 ZEN
  estimated fees: 0.0000096 ZEN
  total spent: 0.0100096 ZEN
errors: 
warnings: 
✔️ has been signed! (7.7s) {"operation":{"id":"js:2:zencash:xpub6C68jAb8xasfwaE1WeCTh2JhK4KMh64oUaNn2MJCpVdjBmV7cdLhW8xqAfrb8eerM3wtiwMg9sMZkjA62QMH1rMDNbr97uLKNZohEX7c1cq:--OUT","hash":"","type":"OUT","senders":["zndy3d2GJMeBi7kDkMMeW9up4C7BZKVHc9y","znWt3DPQ92HVNyByaXadkz5mEiByoByL3Vt"],"recipients":["znc25Kqjvpy65kYRCTzeun4jpFpomQ6EBGw"],"accountId":"js:2:zencash:xpub6C68jAb8xasfwaE1WeCTh2JhK4KMh64oUaNn2MJCpVdjBmV7cdLhW8xqAfrb8eerM3wtiwMg9sMZkjA62QMH1rMDNbr97uLKNZohEX7c1cq:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-06-20T16:40:30.226Z","value":"1000960","fee":"960"},"signature":"010000000276816b5149ec51d5e7f18a9a405c4ef3acd7594b8035d5251ce305bdad265797000000006b483045022100855690094d30a8eb39b44d7ffcd8477c6156fbaa38b568fcd58f9e7406a9b53902200116f77667b24f90f0f090a0644719066aba44f5a5ea7e913a1e301cf49a21d00121030a4f2b2379c43f7a627a9fd021adf523f965579bb82dd208927f8c227911530bffffffffc0b31a81c713b1c32834311d36fed72553758c5fb54f01adcb397d986ef902c3000000006a4730440220204c7b75f23d53010253b3bd3f89213c29f4e3e98bde41999813876e3cc4279a02207a656892d85f80f93a93ee869d58e32699ae047777c86a2984322c658e19cd7e0121023983eeaa69d7ab5980d6af1f740a0d8d362a3524698b92391788ab0aeb4e0e7cffffffff0340420f00000000003f76a91477ef8314a46c9088b251a6d742b3df9e62c8bfbb88ac209ec9845acb02fab24e1c0368b3b517c1a4488fba97f0e3459ac053ea0100000003c01f02b40000000000000000156a13636861726c6579206c6f766573206865696469aa0a4001000000003f76a914abfc4e2937e9b771e0418fd46710e8b0b0ba63b488ac209ec9845acb02fab24e1c0368b3b517c1a4488fba97f0e3459ac053ea0100000003c01f02b400000000"}
⚠️ TEST during broadcast
LedgerAPI4xx: An exception occurred during transaction send: 68: op-checkblockatheight-needed
(totally spent 8s – ends at 2024-06-20T17:26:54.394Z)
necessary accounts resynced in 0.27ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 29.0718 SYS (420ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:syscoin:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
max spendable ~29.0717
★ using mutation 'move 50%'
→ TO undefined: 23.9449 SYS (146ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:syscoin:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
✔️ transaction 
SEND  14.53587820907125536 SYS
TO 0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9
STATUS (282ms)
  amount: 14.53587820907125536 SYS
  estimated fees: 0.000056698740798 SYS
  total spent: 14.53593490781205336 SYS
errors: 
warnings: 
✔️ has been signed! (3s) 
✔️ broadcasted! (99ms) optimistic operation: 
  -14.53593490781205336 SYS OUT        0xb041e69b9eb0ae8247d08ff984a6c222717fb829ad626d56048fc8a6836a1b18 2024-06-20T16:55
⚠️ TEST waiting operation id to appear after broadcast
Error: could not find optimisticOperation js:2:syscoin:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:-0xb041e69b9eb0ae8247d08ff984a6c222717fb829ad626d56048fc8a6836a1b18-OUT
(totally spent 10min 4s – ends at 2024-06-20T17:26:54.398Z)
necessary accounts resynced in 0.22ms
▬ NEAR 2.0.0 on nanoS 2.1.0
→ FROM undefined: 0.444537 NEAR (66ops) (0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf on 44'/397'/0'/0'/0') nearbip44h#0 js:2:near:0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf:nearbip44h (! sum of ops 0.98067982518354365104 NEAR)
max spendable ~0.391593
★ using mutation 'Stake'
✔️ transaction 
STAKE  0.00003649939430963274 NEAR
TO ledgerbyfigment.poolv1.near
STATUS (407ms)
  amount: 0.00003649939430963274 NEAR
  estimated fees: 0.0015 NEAR
  total spent: 0.00153649939430963274 NEAR
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Near app","x":41,"y":6,"w":48,"h":11}
{"text":"is ready","x":41,"y":17,"w":48,"h":11}
{"text":"Receiving","x":36,"y":3,"w":92,"h":11}
{"text":"Transaction...","x":26,"y":15,"w":102,"h":11}
{"text":"View header","x":29,"y":19,"w":99,"h":11}
(totally spent 60.4s – ends at 2024-06-20T17:26:54.401Z)
necessary accounts resynced in 0.16ms
▬ NEAR 2.0.0 on nanoS 2.1.0
→ FROM undefined: 0.445089 NEAR (9ops) (e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2 on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2:nearbip44h (! sum of ops 0.53976724470021827 NEAR)
max spendable ~0.392221
★ using mutation 'Unstake'
✔️ transaction 
UNSTAKE  0.00010063793819753238 NEAR
TO ledgerbyfigment.poolv1.near
STATUS (382ms)
  amount: 0.00010063793819753238 NEAR
  estimated fees: 0.0015 NEAR
  total spent: 0.0015 NEAR
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Near app","x":41,"y":6,"w":48,"h":11}
{"text":"is ready","x":41,"y":17,"w":48,"h":11}
{"text":"Receiving","x":36,"y":3,"w":92,"h":11}
{"text":"Transaction...","x":26,"y":15,"w":102,"h":11}
{"text":"View header","x":29,"y":19,"w":99,"h":11}
(totally spent 60.4s – ends at 2024-06-20T17:26:54.451Z)
necessary accounts resynced in 0.10ms
▬ TezosWallet 3.0.3 on nanoS 2.1.0
→ FROM undefined: 5.28869 XTZ (152ops) (tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF on 44'/1729'/0'/0') tezbox#0 js:2:tezos:0240051fc51799e60dcc8870415b87fc4fd948e71b23fdc0d9b8ac7438cf7d4708:tezbox
max spendable ~5.28803
★ using mutation 'send max (non delegating)'
→ TO undefined: 0 XTZ (4ops) (tz1he4fPXP3c9fFrztYT3k7KyYuLb28arFNn on 44'/1729'/1'/0') tezbox#1 js:2:tezos:02fe3d777af5380ef0a431c4985772c9669743050cee5feff717c3c3272d7a2810:tezbox
✔️ transaction 
SEND MAX
TO tz1he4fPXP3c9fFrztYT3k7KyYuLb28arFNn
with fees=0.000291
with gasLimit=601
with storageLimit=277
(estimatedFees 0.000665)
STATUS (973ms)
  amount: 5.218784 XTZ
  estimated fees: 0.000665 XTZ
  total spent: 5.219449 XTZ
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review operation","x":13,"y":17,"w":107,"h":11}
{"text":"Operation (0)","x":26,"y":-1,"w":94,"h":11}
{"text":"Reveal","x":47,"y":10,"w":81,"h":11}
(totally spent 62.2s – ends at 2024-06-20T17:26:54.454Z)
⚠️ 39 spec hints
  • Spec Celo:
    • mutations should define a test(): Celo: Move 50% to another account, Celo: Send max to another account, Celo: Register Account, Celo: Unlock, Celo: Lock, Celo: Vote, Celo: Activate Vote, Celo: RevokeVote, Celo: Withdraw
    • mutations should define a testDestination(): Celo: Move 50% to another account, Celo: Send max to another account
    • mutation Celo: Send max to another account: unexpected status.warnings.amount = CeloAllFundsWarning: CeloAllFundsWarning – Please implement expectStatusWarnings on the mutation if expected
  • Spec dydx:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec umee:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
    • mutation claim rewards: unexpected status.warnings.claimReward = ClaimRewardsFeesWarning: ClaimRewardsFeesWarning – Please implement expectStatusWarnings on the mutation if expected
  • Spec persistence:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
  • Spec quicksilver:
    • mutation claim rewards: unexpected status.warnings.claimReward = ClaimRewardsFeesWarning: ClaimRewardsFeesWarning – Please implement expectStatusWarnings on the mutation if expected
  • Spec sei_network:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Crypto org:
    • mutations should define a test(): move 50%, send max
    • mutations should define a testDestination(): move 50%, send max
  • Spec Stacks:
    • mutations should define a testDestination(): Transfer Max, Send 50%~
  • Spec Stellar:
    • mutations should define a testDestination(): Send max XLM, move ~50% XLM
  • Spec VeChain VTHO:
    • mutations should define a testDestination(): move ~50% VTHO
  • Spec VeChain VET:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Algorand:
    • mutations should define a testDestination(): opt-In ASA available
  • Spec Bitcoin Testnet:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Komodo:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
  • Spec PivX:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Vertcoin:
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec ZCash:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Horizen:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
  • Spec Ethereum Classic:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Arbitrum:
    • mutation move 50%: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
    • mutation send max: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Flare:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec RSK:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec OP Mainnet:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec OP Sepolia:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Base:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Linea Sepolia:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Blast:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Blast Sepolia:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Scroll:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Scroll Sepolia:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Tezos:
    • mutations should define a test(): send unrevealed, send revealed, send max (non delegating), delegate unrevealed, delegate revealed, undelegate unrevealed, undelegate revealed
    • There are not enough accounts (3) to cover all mutations (7).
      Please increase the account target to at least 8 accounts
Portfolio ($1,090.08) – Details of the 71 currencies
Spec (accounts) State Remaining Runs (est) funds?
Casper (8) 421 ops , 24,979 CSPR ($527.14) 💪 999+ 02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c
Celo (12) 1574 ops (+8), 17.128 CELO ($10.23) 💪 516 0x246FFDB387F1F8c48072E1C13443540017bC71b7
osmosis (18) 26 ops (+8), 20.311 OSMO ($11.64) 👍 388 osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l
desmos (18) 112 ops , 139.246 DSM ($0.38) 💪 999+ desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454
dydx (18) 0 ops , 0.0108299 dydx ($0.02) dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6
umee (18) 19 ops , 729.611 UMEE ($1.33) 💪 999+ umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l
persistence (18) 947 ops , 28.6495 XPRT ($6.01) 💪 686 persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf
quicksilver (18) 66 ops , 20.7915 QCK ($0.43) 💪 999+ quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l
onomy (18) 635 ops , 1.8059 NOM ($0.20) 💪 999+ onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg
sei_network (16) 0 ops , 0.077475 SEI ($0.00) sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v
stargaze (18) 113 ops , 885.316 STARS ($13.08) 💪 725 stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu
coreum (18) 1512 ops , 41.7367 CORE ($4.57) 👍 239 core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk
injective (0) 0 ops , 🤷‍♂️ ``
Crypto org (7) 209 ops , 34.751 CRO ($3.28) 💪 999+ cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra
Elrond (8) 2378 ops (+2), 0.944683 EGLD ($27.48) 💪 999+ erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp
Hedera (5) 1720 ops (+10), 57.3135 HBAR ($4.68) 💪 999+ 0.0.3663977
InternetComputer (8) 616 ops (+4), 1.01517 ICP ($8.40) 💪 999+ f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209
Stacks (7) 1030 ops (+2), 64.7196 STX ($106.14) 💪 876 SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2
Stellar (6) 2719 ops (+6), 58.9804 XLM ($6.23) 💪 999+ GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC
VeChain VTHO (4) 13 ops , 5 VET ($0.26) ⚠️ 12 0xc4B17901FECf86932c3bb296BB00E7c6816Fd416
VeChain VET (4) 13 ops , 5 VET ($0.26) ⚠️ 12 0xc4B17901FECf86932c3bb296BB00E7c6816Fd416
Algorand (6) 2193 ops (+4), 9.59961 ALGO ($3.21) 💪 999+ TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4
Bitcoin Testnet (13) 1423 ops , 0.00193076 𝚝BTC ($0.00) ⚠️ 3 tb1qqsk6rter25qfxful9dhzrtunyyaga2pvvv89vl
Bitcoin Cash (7) 3451 ops (+10), 0.0472341 BCH ($18.41) 💪 752 qqgq6klv8h8a592a8vtmdsafvzu3l639fsjv0y0lsw
Bitcoin Gold (6) 2649 ops (+6), 0.389998 BTG ($9.67) 💪 999+ AYikw3VbrCivc3KZUSBriFf2yfkWMbfcZ8
Dash (7) 2838 ops (+10), 0.107732 DASH ($2.54) 💪 999+ XinTss7uEgMEo6sbReTAZKburNSehxA5wG
Digibyte (9) 3666 ops (+10), 443.934 DGB ($3.54) 💪 999+ dgb1q3tr3n52yqg4z8v2pxxykfhwpx22xfy3h53k5jp
DogeCoin (7) 1878 ops (+8), 27.7857 DOGE ($3.40) ⚠️ 49 DErywhANM2NfctPACWXX6rcemYF6L9gfAm
Komodo (5) 1961 ops (+8), 17.5093 KMD ($6.03) 💪 999+ RDkzJayYAfwwEuh9Efz44ds3w3giNzqbaa
Litecoin (9) 3617 ops (+10), 0.342441 LTC ($25.30) 💪 999+ ltc1qk8c3e2tpyd2fj50jm03gzdhkklrvlsyav2klg6
Peercoin (0) 0 ops , 🤷‍♂️ ``
PivX (5) 2551 ops (+6), 46.6259 PIVX ($12.77) 💪 999+ DFfaBrPgNicDbdBqgxZ4f5mK8V8sC1XDpN
Vertcoin (6) 2390 ops (+6), 29.1611 VTC ($1.77) 💪 999+ 3PRX3xnmMDyJh2SsQPF3mJWCDhM7R2ctfw
Viacoin (6) 2295 ops (+6), 40.6689 VIA ($1.10) 💪 999+ Ed8hE3CZPp2JTTkVtNhYZqtngXdPqvZXPr
ZCash (5) 1502 ops , 0.00368057 ZEC ($0.07) ⚠️ 2 t1SDpcaNZmbCH5TCCb5vNAh5bXs3isDtA5h
Horizen (5) 1948 ops (+2), 0.420917 ZEN ($2.77) 💪 999+ znc25Kqjvpy65kYRCTzeun4jpFpomQ6EBGw
Ethereum Classic (6) 685 ops , 0.232476 ETC ($5.61) 💪 999+ 0x7584df0780C5eB83b26aE55abBc265014f8bf897
Polygon (10) 2447 ops (+6), 18.876 MATIC ($10.87) ⚠️ 21 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Sepolia (6) 747 ops (+6), 0.00819455 𝚝ETH ($0.00) ⚠️ 3 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Holesky (6) 721 ops (+6), 0.234366 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum (6) 260 ops (+4), 0.00562976 ETH ($19.35) 💪 662 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum Sepolia (6) 501 ops (+6), 0.990975 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Flare (6) 2158 ops , 4.00005 FLR ($0.10) 👍 295 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Songbird (6) 2494 ops (+6), 937.27 SGB ($8.72) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonbeam (6) 2301 ops (+6), 59.6807 GLMR ($13.01) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
RSK (5) 794 ops , 0.00030914 RBTC ($20.09) 👍 56 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Bittorent Chain (6) 2116 ops (+6), 1,491,374 BTT ($1.31) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Mainnet (5) 121 ops , 0.00286711 ETH ($29.65) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Energy Web (6) 1870 ops (+4), 7.52846 EWT ($17.24) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Astar (6) 2042 ops (+6), 328.13 ASTR ($22.87) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Metis (6) 1968 ops (+6), 0.150392 METIS ($7.63) 👍 124 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonriver (6) 1942 ops (+6), 2.23655 MOVR ($25.52) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Velas EVM (6) 506 ops (+6), 912.016 VLX ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Syscoin (6) 1986 ops (+4), 57.0764 SYS ($7.22) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Polygon zkEVM Testnet (0) 0 ops , 🤷‍♂️ ``
Base (5) 249 ops , 0.00269293 ETH ($9.46) 👍 76 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Base Sepolia (6) 493 ops (+6), 0.990079 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Klaytn (6) 207 ops (+6), 8.82569 KLAY ($1.41) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Neon EVM (6) 1002 ops (+6), 16.1517 NEON ($10.33) 👍 283 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Lukso (6) 893 ops (+6), 0.490961 LYX ($1.03) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea (6) 605 ops (+6), 0.00685558 ETH ($24.04) 👍 72 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Blast (1) 0 ops , 0 ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Blast Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Scroll (1) 0 ops , 0 ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Scroll Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
NEAR (11) 226 ops , 0.785485 NEAR ($6.53) 👍 175 0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf
Solana (0) 0 ops , 🤷‍♂️ ``
Tezos (3) 156 ops , 5.28869 XTZ ($4.14) 👍 182 tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF
XRP (4) 604 ops (+4), 14.005 XRP ($21.61) 💪 999+ r9etPtq3oboweMPju5gdYufmvwhH2euz8z
undefined: 0 CSPR (77ops) (02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c on 44'/506'/0'/0/0) casper_wallet#0 js:2:casper:02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c:casper_wallet
undefined: 0 CSPR (76ops) (02034A7c5519d553BC282F768Dca044e18746B7Be9B711f2F310c190f33B3cBC4A4F on 44'/506'/0'/0/1) casper_wallet#1 js:2:casper:02034A7c5519d553BC282F768Dca044e18746B7Be9B711f2F310c190f33B3cBC4A4F:casper_wallet
undefined: 3,124.98 CSPR (59ops) (0203B56bC181780F8fb173BaFd8d483d6911282EC46d72692d0a5bbbb29ea242ed76 on 44'/506'/0'/0/2) casper_wallet#2 js:2:casper:0203B56bC181780F8fb173BaFd8d483d6911282EC46d72692d0a5bbbb29ea242ed76:casper_wallet
undefined: 3,122.33 CSPR (75ops) (0203d14Bf1367769813E9c7233dB26DC2208cA211532a0C2B1189992dC01d4bc098E on 44'/506'/0'/0/3) casper_wallet#3 js:2:casper:0203d14Bf1367769813E9c7233dB26DC2208cA211532a0C2B1189992dC01d4bc098E:casper_wallet
undefined: 0 CSPR (60ops) (02039ae761a635A37868CF35e6de9799Cba9fC4cDB9A3aFbbA6AB5c83291F13bbec8 on 44'/506'/0'/0/4) casper_wallet#4 js:2:casper:02039ae761a635A37868CF35e6de9799Cba9fC4cDB9A3aFbbA6AB5c83291F13bbec8:casper_wallet
undefined: 0 CSPR (35ops) (02033CEac656c99270C432fd59a60102B4E807977F67C429298eA3436F2cE41A1B1b on 44'/506'/0'/0/5) casper_wallet#5 js:2:casper:02033CEac656c99270C432fd59a60102B4E807977F67C429298eA3436F2cE41A1B1b:casper_wallet
undefined: 18,731.6 CSPR (39ops) (02035aDdb3EF3863b0B44054e638F7C61F74319D5dA70B8E98FEf9ea984f7DB6EDac on 44'/506'/0'/0/6) casper_wallet#6 js:2:casper:02035aDdb3EF3863b0B44054e638F7C61F74319D5dA70B8E98FEf9ea984f7DB6EDac:casper_wallet
undefined: 0 CSPR (0ops) (0202b75FD56f06B03E675b33B0A136B6C87810C5a0435281DFe567c79596E0876Fa4 on 44'/506'/0'/0/7) casper_wallet#7 js:2:casper:0202b75FD56f06B03E675b33B0A136B6C87810C5a0435281DFe567c79596E0876Fa4:casper_wallet
undefined: 0.410726 CELO (214ops) (0x246FFDB387F1F8c48072E1C13443540017bC71b7 on 44'/52752'/0'/0/0) #0 js:2:celo:0x246FFDB387F1F8c48072E1C13443540017bC71b7:
undefined: 1.17099 CELO (171ops) (0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8 on 44'/52752'/1'/0/0) #1 js:2:celo:0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8:
undefined: 10.9056 CELO (175ops) (0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0 on 44'/52752'/2'/0/0) #2 js:2:celo:0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0:
undefined: 0.423456 CELO (128ops) (0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2 on 44'/52752'/3'/0/0) #3 js:2:celo:0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2:
undefined: 0.00802497 CELO (147ops) (0xA6EB5541E3527d07CaD4dD14E5454820DB858160 on 44'/52752'/4'/0/0) #4 js:2:celo:0xA6EB5541E3527d07CaD4dD14E5454820DB858160:
undefined: 0.014359 CELO (142ops) (0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE on 44'/52752'/5'/0/0) #5 js:2:celo:0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE:
undefined: 0.00507531 CELO (130ops) (0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc on 44'/52752'/6'/0/0) #6 js:2:celo:0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc:
undefined: 1.98023 CELO (141ops) (0xc054A142A0e8793bC860A34971C3eb549064A54a on 44'/52752'/7'/0/0) #7 js:2:celo:0xc054A142A0e8793bC860A34971C3eb549064A54a:
undefined: 0.00962583 CELO (134ops) (0x78AB368133f5Bf101849475dD4a5747E6d1A897a on 44'/52752'/8'/0/0) #8 js:2:celo:0x78AB368133f5Bf101849475dD4a5747E6d1A897a:
undefined: 2.27668 CELO (99ops) (0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8 on 44'/52752'/9'/0/0) #9 js:2:celo:0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8:
undefined: 0.00190114 CELO (93ops) (0x3f6AB52EDA4a9d38b3cf208E3fB4c3f87C53002D on 44'/52752'/10'/0/0) #10 js:2:celo:0x3f6AB52EDA4a9d38b3cf208E3fB4c3f87C53002D:
undefined: 0 CELO (0ops) (0xA07f9fb2bd5A8799081d5519897dB27B257D036D on 44'/52752'/11'/0/0) #11 js:2:celo:0xA07f9fb2bd5A8799081d5519897dB27B257D036D:
undefined: 0.152924 OSMO (1ops) (osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l on 44'/118'/0'/0/0) #0 js:2:osmo:osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l:
undefined: 0.00312 OSMO (3ops) (osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf on 44'/118'/1'/0/0) #1 js:2:osmo:osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf:
undefined: 0 OSMO (3ops) (osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv on 44'/118'/2'/0/0) #2 js:2:osmo:osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv:
undefined: 0.002544 OSMO (0ops) (osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k on 44'/118'/3'/0/0) #3 js:2:osmo:osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k:
undefined: 0 OSMO (1ops) (osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0 on 44'/118'/4'/0/0) #4 js:2:osmo:osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0:
undefined: 0.21765 OSMO (4ops) (osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw on 44'/118'/5'/0/0) #5 js:2:osmo:osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw:
undefined: 0.003137 OSMO (4ops) (osmo1n6vccpa77x7xyhnk98jy6gg3rmgjkazxuyk2ng on 44'/118'/6'/0/0) #6 js:2:osmo:osmo1n6vccpa77x7xyhnk98jy6gg3rmgjkazxuyk2ng:
undefined: 0.142702 OSMO (0ops) (osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp on 44'/118'/7'/0/0) #7 js:2:osmo:osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp:
undefined: 0.08864 OSMO (2ops) (osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d on 44'/118'/8'/0/0) #8 js:2:osmo:osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d:
undefined: 2.29246 OSMO (3ops) (osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5 on 44'/118'/9'/0/0) #9 js:2:osmo:osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5:
undefined: 0.449684 OSMO (1ops) (osmo1733g3dfzj6tulcqtvz628ypuqj0hvlrzruntc8 on 44'/118'/10'/0/0) #10 js:2:osmo:osmo1733g3dfzj6tulcqtvz628ypuqj0hvlrzruntc8:
undefined: 0.30044 OSMO (1ops) (osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg on 44'/118'/11'/0/0) #11 js:2:osmo:osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg:
undefined: 0.426649 OSMO (0ops) (osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m on 44'/118'/12'/0/0) #12 js:2:osmo:osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m:
undefined: 0.44953 OSMO (0ops) (osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9 on 44'/118'/13'/0/0) #13 js:2:osmo:osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9:
undefined: 1.39223 OSMO (2ops) (osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd on 44'/118'/14'/0/0) #14 js:2:osmo:osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd:
undefined: 13.3578 OSMO (1ops) (osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau on 44'/118'/15'/0/0) #15 js:2:osmo:osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau:
undefined: 1.36541 OSMO (0ops) (osmo1xr8krhp99mp9ncrz6dfgre542nv0rc8lrryjvr on 44'/118'/16'/0/0) #16 js:2:osmo:osmo1xr8krhp99mp9ncrz6dfgre542nv0rc8lrryjvr:
undefined: 0 OSMO (0ops) (osmo102w826rmvswfhs4zsv2ujhylmd92c28p6lglqe on 44'/118'/17'/0/0) #17 js:2:osmo:osmo102w826rmvswfhs4zsv2ujhylmd92c28p6lglqe:
undefined: 0.000696 DSM (0ops) (desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454 on 44'/118'/0'/0/0) #0 js:2:desmos:desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454:
undefined: 0 DSM (7ops) (desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur on 44'/118'/1'/0/0) #1 js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:
undefined: 0 DSM (5ops) (desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx on 44'/118'/2'/0/0) #2 js:2:desmos:desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx:
undefined: 0.001937 DSM (8ops) (desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu on 44'/118'/3'/0/0) #3 js:2:desmos:desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu:
undefined: 0 DSM (11ops) (desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9 on 44'/118'/4'/0/0) #4 js:2:desmos:desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9:
undefined: 0.001202 DSM (14ops) (desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y on 44'/118'/5'/0/0) #5 js:2:desmos:desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y:
undefined: 0.000704 DSM (4ops) (desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz on 44'/118'/6'/0/0) #6 js:2:desmos:desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz:
undefined: 0.00598 DSM (4ops) (desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt on 44'/118'/7'/0/0) #7 js:2:desmos:desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt:
undefined: 0.000534 DSM (6ops) (desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8 on 44'/118'/8'/0/0) #8 js:2:desmos:desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8:
undefined: 0.03736 DSM (7ops) (desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7 on 44'/118'/9'/0/0) #9 js:2:desmos:desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7:
undefined: 0.017274 DSM (6ops) (desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted on 44'/118'/10'/0/0) #10 js:2:desmos:desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted:
undefined: 0 DSM (1ops) (desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z on 44'/118'/11'/0/0) #11 js:2:desmos:desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z:
undefined: 0.087107 DSM (5ops) (desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243 on 44'/118'/12'/0/0) #12 js:2:desmos:desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243:
undefined: 76.0648 DSM (16ops) (desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0 on 44'/118'/13'/0/0) #13 js:2:desmos:desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0:
undefined: 16.1542 DSM (3ops) (desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8 on 44'/118'/14'/0/0) #14 js:2:desmos:desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8:
undefined: 22.9354 DSM (13ops) (desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk on 44'/118'/15'/0/0) #15 js:2:desmos:desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk:
undefined: 29.6404 DSM (2ops) (desmos1xr8krhp99mp9ncrz6dfgre542nv0rc8llq6jdf on 44'/118'/16'/0/0) #16 js:2:desmos:desmos1xr8krhp99mp9ncrz6dfgre542nv0rc8llq6jdf:
undefined: 0 DSM (0ops) (desmos102w826rmvswfhs4zsv2ujhylmd92c28pxuklpn on 44'/118'/17'/0/0) #17 js:2:desmos:desmos102w826rmvswfhs4zsv2ujhylmd92c28pxuklpn:
undefined: 0.00028612 dydx (0ops) (dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6 on 44'/118'/0'/0/0) #0 js:2:dydx:dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6:
undefined: 0.00062743 dydx (0ops) (dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv on 44'/118'/1'/0/0) #1 js:2:dydx:dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv:
undefined: 0.00081036 dydx (0ops) (dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf on 44'/118'/2'/0/0) #2 js:2:dydx:dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf:
undefined: 0.00103948 dydx (0ops) (dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en on 44'/118'/3'/0/0) #3 js:2:dydx:dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en:
undefined: 0 dydx (0ops) (dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2 on 44'/118'/4'/0/0) #4 js:2:dydx:dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2:
undefined: 0.00090041 dydx (0ops) (dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt on 44'/118'/5'/0/0) #5 js:2:dydx:dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt:
undefined: 0.00123005 dydx (0ops) (dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d on 44'/118'/6'/0/0) #6 js:2:dydx:dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d:
undefined: 0.0005327 dydx (0ops) (dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky on 44'/118'/7'/0/0) #7 js:2:dydx:dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky:
undefined: 0.00108568 dydx (0ops) (dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug on 44'/118'/8'/0/0) #8 js:2:dydx:dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug:
undefined: 0.00163178 dydx (0ops) (dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73 on 44'/118'/9'/0/0) #9 js:2:dydx:dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73:
undefined: 0.00032301 dydx (0ops) (dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz on 44'/118'/10'/0/0) #10 js:2:dydx:dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz:
undefined: 0.00079267 dydx (0ops) (dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd on 44'/118'/11'/0/0) #11 js:2:dydx:dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd:
undefined: 0.00117506 dydx (0ops) (dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7 on 44'/118'/12'/0/0) #12 js:2:dydx:dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7:
undefined: 0.0133491 dydx (0ops) (dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq on 44'/118'/13'/0/0) #13 js:2:dydx:dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq:
undefined: 0.00070996 dydx (0ops) (dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg on 44'/118'/14'/0/0) #14 js:2:dydx:dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg:
undefined: 0.00090914 dydx (0ops) (dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te on 44'/118'/15'/0/0) #15 js:2:dydx:dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te:
undefined: 0 dydx (0ops) (dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x on 44'/118'/16'/0/0) #16 js:2:dydx:dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x:
undefined: 0 dydx (0ops) (dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku on 44'/118'/17'/0/0) #17 js:2:dydx:dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku:
undefined: 0 UMEE (0ops) (umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l on 44'/118'/0'/0/0) #0 js:2:umee:umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l:
undefined: 0.068005 UMEE (1ops) (umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f on 44'/118'/1'/0/0) #1 js:2:umee:umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f:
undefined: 0.023772 UMEE (0ops) (umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv on 44'/118'/2'/0/0) #2 js:2:umee:umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv:
undefined: 1.17955 UMEE (0ops) (umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak on 44'/118'/3'/0/0) #3 js:2:umee:umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak:
undefined: 0 UMEE (0ops) (umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0 on 44'/118'/4'/0/0) #4 js:2:umee:umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0:
undefined: 1.10961 UMEE (1ops) (umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw on 44'/118'/5'/0/0) #5 js:2:umee:umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw:
undefined: 0.043064 UMEE (2ops) (umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg on 44'/118'/6'/0/0) #6 js:2:umee:umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg:
undefined: 1.30822 UMEE (3ops) (umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp on 44'/118'/7'/0/0) #7 js:2:umee:umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp:
undefined: 0 UMEE (2ops) (umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd on 44'/118'/8'/0/0) #8 js:2:umee:umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd:
undefined: 26.5684 UMEE (2ops) (umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65 on 44'/118'/9'/0/0) #9 js:2:umee:umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65:
undefined: 0 UMEE (0ops) (umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28 on 44'/118'/10'/0/0) #10 js:2:umee:umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28:
undefined: 4.07516 UMEE (2ops) (umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg on 44'/118'/11'/0/0) #11 js:2:umee:umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg:
undefined: 0.206042 UMEE (0ops) (umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm on 44'/118'/12'/0/0) #12 js:2:umee:umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm:
undefined: 78.1272 UMEE (3ops) (umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29 on 44'/118'/13'/0/0) #13 js:2:umee:umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29:
undefined: 38.8135 UMEE (0ops) (umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd on 44'/118'/14'/0/0) #14 js:2:umee:umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd:
undefined: 405.933 UMEE (1ops) (umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u on 44'/118'/15'/0/0) #15 js:2:umee:umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u:
undefined: 184.623 UMEE (2ops) (umee1xr8krhp99mp9ncrz6dfgre542nv0rc8lew2a7r on 44'/118'/16'/0/0) #16 js:2:umee:umee1xr8krhp99mp9ncrz6dfgre542nv0rc8lew2a7r:
undefined: 0 UMEE (0ops) (umee102w826rmvswfhs4zsv2ujhylmd92c28pqjxsje on 44'/118'/17'/0/0) #17 js:2:umee:umee102w826rmvswfhs4zsv2ujhylmd92c28pqjxsje:
undefined: 0 XPRT (41ops) (persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf on 44'/118'/0'/0/0) #0 js:2:persistence:persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf:
undefined: 0.000693 XPRT (75ops) (persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l on 44'/118'/1'/0/0) #1 js:2:persistence:persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l:
undefined: 0 XPRT (40ops) (persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6 on 44'/118'/2'/0/0) #2 js:2:persistence:persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6:
undefined: 0.0263 XPRT (56ops) (persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq on 44'/118'/3'/0/0) #3 js:2:persistence:persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq:
undefined: 0 XPRT (41ops) (persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e on 44'/118'/4'/0/0) #4 js:2:persistence:persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e:
undefined: 0.005676 XPRT (72ops) (persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc on 44'/118'/5'/0/0) #5 js:2:persistence:persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc:
undefined: 0.147697 XPRT (32ops) (persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7 on 44'/118'/6'/0/0) #6 js:2:persistence:persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7:
undefined: 0.471973 XPRT (98ops) (persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch on 44'/118'/7'/0/0) #7 js:2:persistence:persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch:
undefined: 0 XPRT (60ops) (persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm on 44'/118'/8'/0/0) #8 js:2:persistence:persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm:
undefined: 0.105711 XPRT (50ops) (persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz on 44'/118'/9'/0/0) #9 js:2:persistence:persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz:
undefined: 0.108314 XPRT (54ops) (persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3 on 44'/118'/10'/0/0) #10 js:2:persistence:persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3:
undefined: 0.669374 XPRT (72ops) (persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7 on 44'/118'/11'/0/0) #11 js:2:persistence:persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7:
undefined: 1.19879 XPRT (44ops) (persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd on 44'/118'/12'/0/0) #12 js:2:persistence:persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd:
undefined: 5.75145 XPRT (108ops) (persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn on 44'/118'/13'/0/0) #13 js:2:persistence:persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn:
undefined: 10.4311 XPRT (35ops) (persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m on 44'/118'/14'/0/0) #14 js:2:persistence:persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m:
undefined: 8.02486 XPRT (54ops) (persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92 on 44'/118'/15'/0/0) #15 js:2:persistence:persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92:
undefined: 2.24702 XPRT (15ops) (persistence1xr8krhp99mp9ncrz6dfgre542nv0rc8l953354 on 44'/118'/16'/0/0) #16 js:2:persistence:persistence1xr8krhp99mp9ncrz6dfgre542nv0rc8l953354:
undefined: 0 XPRT (0ops) (persistence102w826rmvswfhs4zsv2ujhylmd92c28pugauc0 on 44'/118'/17'/0/0) #17 js:2:persistence:persistence102w826rmvswfhs4zsv2ujhylmd92c28pugauc0:
undefined: 0 QCK (1ops) (quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l on 44'/118'/0'/0/0) #0 js:2:quicksilver:quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l:
undefined: 0.002023 QCK (9ops) (quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf on 44'/118'/1'/0/0) #1 js:2:quicksilver:quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf:
undefined: 0 QCK (17ops) (quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev on 44'/118'/2'/0/0) #2 js:2:quicksilver:quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev:
undefined: 0.000654 QCK (0ops) (quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk on 44'/118'/3'/0/0) #3 js:2:quicksilver:quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk:
undefined: 0 QCK (3ops) (quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0 on 44'/118'/4'/0/0) #4 js:2:quicksilver:quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0:
undefined: 0.268585 QCK (0ops) (quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw on 44'/118'/5'/0/0) #5 js:2:quicksilver:quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw:
undefined: 0.002204 QCK (0ops) (quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug on 44'/118'/6'/0/0) #6 js:2:quicksilver:quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug:
undefined: 0 QCK (14ops) (quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p on 44'/118'/7'/0/0) #7 js:2:quicksilver:quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p:
undefined: 0.015693 QCK (6ops) (quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d on 44'/118'/8'/0/0) #8 js:2:quicksilver:quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d:
undefined: 0.174954 QCK (6ops) (quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585 on 44'/118'/9'/0/0) #9 js:2:quicksilver:quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585:
undefined: 0.014032 QCK (0ops) (quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8 on 44'/118'/10'/0/0) #10 js:2:quicksilver:quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8:
undefined: 0.60768 QCK (0ops) (quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg on 44'/118'/11'/0/0) #11 js:2:quicksilver:quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg:
undefined: 0.097119 QCK (6ops) (quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm on 44'/118'/12'/0/0) #12 js:2:quicksilver:quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm:
undefined: 7.61533 QCK (0ops) (quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9 on 44'/118'/13'/0/0) #13 js:2:quicksilver:quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9:
undefined: 0 QCK (4ops) (quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad on 44'/118'/14'/0/0) #14 js:2:quicksilver:quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad:
undefined: 3.62086 QCK (0ops) (quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju on 44'/118'/15'/0/0) #15 js:2:quicksilver:quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju:
undefined: 10.8204 QCK (0ops) (quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr on 44'/118'/16'/0/0) #16 js:2:quicksilver:quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr:
undefined: 0 QCK (0ops) (quick102w826rmvswfhs4zsv2ujhylmd92c28peqta0e on 44'/118'/17'/0/0) #17 js:2:quicksilver:quick102w826rmvswfhs4zsv2ujhylmd92c28peqta0e:
undefined: 0 NOM (19ops) (onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg on 44'/118'/0'/0/0) #0 js:2:onomy:onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg:
undefined: 0.00001615 NOM (51ops) (onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67 on 44'/118'/1'/0/0) #1 js:2:onomy:onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67:
undefined: 0 NOM (36ops) (onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m on 44'/118'/2'/0/0) #2 js:2:onomy:onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m:
undefined: 0.00000173 NOM (76ops) (onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp on 44'/118'/3'/0/0) #3 js:2:onomy:onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp:
undefined: 0 NOM (43ops) (onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c on 44'/118'/4'/0/0) #4 js:2:onomy:onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c:
undefined: 0.00000069 NOM (70ops) (onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he on 44'/118'/5'/0/0) #5 js:2:onomy:onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he:
undefined: 0.00000001 NOM (43ops) (onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l on 44'/118'/6'/0/0) #6 js:2:onomy:onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l:
undefined: 0.00002887 NOM (59ops) (onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k on 44'/118'/7'/0/0) #7 js:2:onomy:onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k:
undefined: 0.00000042 NOM (32ops) (onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6 on 44'/118'/8'/0/0) #8 js:2:onomy:onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6:
undefined: 0.00003347 NOM (66ops) (onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r on 44'/118'/9'/0/0) #9 js:2:onomy:onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r:
undefined: 0.00000694 NOM (16ops) (onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls on 44'/118'/10'/0/0) #10 js:2:onomy:onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls:
undefined: 0.00314149 NOM (55ops) (onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl on 44'/118'/11'/0/0) #11 js:2:onomy:onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl:
undefined: 0.0009464 NOM (15ops) (onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv on 44'/118'/12'/0/0) #12 js:2:onomy:onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv:
undefined: 0.214326 NOM (13ops) (onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj on 44'/118'/13'/0/0) #13 js:2:onomy:onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj:
undefined: 0.399647 NOM (18ops) (onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46 on 44'/118'/14'/0/0) #14 js:2:onomy:onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46:
undefined: 0.0528671 NOM (9ops) (onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t on 44'/118'/15'/0/0) #15 js:2:onomy:onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t:
undefined: 1.13529 NOM (14ops) (onomy1xr8krhp99mp9ncrz6dfgre542nv0rc8l3er5t5 on 44'/118'/16'/0/0) #16 js:2:onomy:onomy1xr8krhp99mp9ncrz6dfgre542nv0rc8l3er5t5:
undefined: 0 NOM (0ops) (onomy102w826rmvswfhs4zsv2ujhylmd92c28pg90e8w on 44'/118'/17'/0/0) #17 js:2:onomy:onomy102w826rmvswfhs4zsv2ujhylmd92c28pg90e8w:
undefined: 0.005246 SEI (0ops) (sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v on 44'/118'/0'/0/0) #0 js:2:sei_network:sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v:
undefined: 0.010124 SEI (0ops) (sei1qvtnzptp30maznnhdg30xl2jtdq2shpn2s5qd6 on 44'/118'/1'/0/0) #1 js:2:sei_network:sei1qvtnzptp30maznnhdg30xl2jtdq2shpn2s5qd6:
undefined: 0 SEI (0ops) (sei1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw4vusxl on 44'/118'/2'/0/0) #2 js:2:sei_network:sei1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw4vusxl:
undefined: 0.027521 SEI (0ops) (sei1hgyf054qztvmty3cayuw9nedftlhejv5xd54l9 on 44'/118'/3'/0/0) #3 js:2:sei_network:sei1hgyf054qztvmty3cayuw9nedftlhejv5xd54l9:
undefined: 0 SEI (0ops) (sei1vc7s929uh2yxyhau4wsg5th9jzedvkurwspxau on 44'/118'/4'/0/0) #4 js:2:sei_network:sei1vc7s929uh2yxyhau4wsg5th9jzedvkurwspxau:
undefined: 0 SEI (0ops) (sei1qgrd8srhvald995uvpeyncvwg7afgkmrzsj8qa on 44'/118'/5'/0/0) #5 js:2:sei_network:sei1qgrd8srhvald995uvpeyncvwg7afgkmrzsj8qa:
undefined: 0.013449 SEI (0ops) (sei1n6vccpa77x7xyhnk98jy6gg3rmgjkazxen5vrm on 44'/118'/6'/0/0) #6 js:2:sei_network:sei1n6vccpa77x7xyhnk98jy6gg3rmgjkazxen5vrm:
undefined: 0.004018 SEI (0ops) (sei1v283e7h2plllyjwgqrexv2ge5e4z252u0d2fsj on 44'/118'/7'/0/0) #7 js:2:sei_network:sei1v283e7h2plllyjwgqrexv2ge5e4z252u0d2fsj:
undefined: 0 SEI (0ops) (sei1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ww5667 on 44'/118'/8'/0/0) #8 js:2:sei_network:sei1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ww5667:
undefined: 0.014582 SEI (0ops) (sei1jgk668h53gd9wn09mndq7uzgk80nr5d80upsc8 on 44'/118'/9'/0/0) #9 js:2:sei_network:sei1jgk668h53gd9wn09mndq7uzgk80nr5d80upsc8:
undefined: 0.01225 SEI (0ops) (sei1733g3dfzj6tulcqtvz628ypuqj0hvlrzxt3dg5 on 44'/118'/10'/0/0) #10 js:2:sei_network:sei1733g3dfzj6tulcqtvz628ypuqj0hvlrzxt3dg5:
undefined: 0 SEI (0ops) (sei1q09970dekm5hdku5tta7p9w6kldyyf25r76f5m on 44'/118'/11'/0/0) #11 js:2:sei_network:sei1q09970dekm5hdku5tta7p9w6kldyyf25r76f5m:
undefined: 0.005197 SEI (0ops) (sei1yhlye27fl05kg4nhmeu5d579m8ups9ewmzhvyg on 44'/118'/12'/0/0) #12 js:2:sei_network:sei1yhlye27fl05kg4nhmeu5d579m8ups9ewmzhvyg:
undefined: 0.00525 SEI (0ops) (sei1890w5jltm6wmq2jr9f9e8x4vhs5fx30qack6gk on 44'/118'/13'/0/0) #13 js:2:sei_network:sei1890w5jltm6wmq2jr9f9e8x4vhs5fx30qack6gk:
undefined: 0.014868 SEI (0ops) (sei1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap4jcxz7 on 44'/118'/14'/0/0) #14 js:2:sei_network:sei1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap4jcxz7:
undefined: 0 SEI (0ops) (sei10wwjgt3uluxt4zq4qxnkcv96nyz4cata6zw8d0 on 44'/118'/15'/0/0) #15 js:2:sei_network:sei10wwjgt3uluxt4zq4qxnkcv96nyz4cata6zw8d0:
undefined: 2.39429 STARS (9ops) (stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu on 44'/118'/0'/0/0) #0 js:2:stargaze:stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu:
undefined: 67.7038 STARS (16ops) (stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2 on 44'/118'/1'/0/0) #1 js:2:stargaze:stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2:
undefined: 1.23598 STARS (7ops) (stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0 on 44'/118'/2'/0/0) #2 js:2:stargaze:stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0:
undefined: 2.76965 STARS (11ops) (stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4 on 44'/118'/3'/0/0) #3 js:2:stargaze:stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4:
undefined: 0.16107 STARS (11ops) (stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv on 44'/118'/4'/0/0) #4 js:2:stargaze:stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv:
undefined: 0.055895 STARS (6ops) (stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd on 44'/118'/5'/0/0) #5 js:2:stargaze:stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd:
undefined: 0.204773 STARS (2ops) (stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt on 44'/118'/6'/0/0) #6 js:2:stargaze:stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt:
undefined: 0.618642 STARS (7ops) (stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz on 44'/118'/7'/0/0) #7 js:2:stargaze:stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz:
undefined: 1.32567 STARS (4ops) (stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw on 44'/118'/8'/0/0) #8 js:2:stargaze:stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw:
undefined: 0.154727 STARS (7ops) (stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h on 44'/118'/9'/0/0) #9 js:2:stargaze:stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h:
undefined: 3.05292 STARS (10ops) (stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y on 44'/118'/10'/0/0) #10 js:2:stargaze:stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y:
undefined: 6.89037 STARS (7ops) (stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet on 44'/118'/11'/0/0) #11 js:2:stargaze:stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet:
undefined: 2.20381 STARS (4ops) (stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc on 44'/118'/12'/0/0) #12 js:2:stargaze:stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc:
undefined: 0.683077 STARS (5ops) (stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x on 44'/118'/13'/0/0) #13 js:2:stargaze:stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x:
undefined: 31.5735 STARS (2ops) (stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w on 44'/118'/14'/0/0) #14 js:2:stargaze:stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w:
undefined: 449.012 STARS (5ops) (stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql on 44'/118'/15'/0/0) #15 js:2:stargaze:stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql:
undefined: 318.893 STARS (0ops) (stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q on 44'/118'/16'/0/0) #16 js:2:stargaze:stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q:
undefined: 0 STARS (0ops) (stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6 on 44'/118'/17'/0/0) #17 js:2:stargaze:stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6:
undefined: 0.35997 CORE (77ops) (core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk on 44'/118'/0'/0/0) #0 js:2:coreum:core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk:
undefined: 0.024863 CORE (117ops) (core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq on 44'/118'/1'/0/0) #1 js:2:coreum:core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq:
undefined: 0.028888 CORE (95ops) (core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89 on 44'/118'/2'/0/0) #2 js:2:coreum:core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89:
undefined: 0.509688 CORE (146ops) (core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l on 44'/118'/3'/0/0) #3 js:2:coreum:core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l:
undefined: 0.016046 CORE (84ops) (core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux on 44'/118'/4'/0/0) #4 js:2:coreum:core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux:
undefined: 0.021165 CORE (115ops) (core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8 on 44'/118'/5'/0/0) #5 js:2:coreum:core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8:
undefined: 0.242307 CORE (77ops) (core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp on 44'/118'/6'/0/0) #6 js:2:coreum:core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp:
undefined: 0.01574 CORE (107ops) (core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g on 44'/118'/7'/0/0) #7 js:2:coreum:core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g:
undefined: 0 CORE (74ops) (core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy on 44'/118'/8'/0/0) #8 js:2:coreum:core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy:
undefined: 0.011091 CORE (133ops) (core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea on 44'/118'/9'/0/0) #9 js:2:coreum:core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea:
undefined: 0.140897 CORE (70ops) (core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw on 44'/118'/10'/0/0) #10 js:2:coreum:core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw:
undefined: 0 CORE (107ops) (core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p on 44'/118'/11'/0/0) #11 js:2:coreum:core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p:
undefined: 0.207478 CORE (50ops) (core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j on 44'/118'/12'/0/0) #12 js:2:coreum:core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j:
undefined: 0.120718 CORE (112ops) (core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv on 44'/118'/13'/0/0) #13 js:2:coreum:core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv:
undefined: 1.35818 CORE (47ops) (core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try on 44'/118'/14'/0/0) #14 js:2:coreum:core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try:
undefined: 22.6716 CORE (74ops) (core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4 on 44'/118'/15'/0/0) #15 js:2:coreum:core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4:
undefined: 17.8648 CORE (27ops) (core1xr8krhp99mp9ncrz6dfgre542nv0rc8lck0ea2 on 44'/118'/16'/0/0) #16 js:2:coreum:core1xr8krhp99mp9ncrz6dfgre542nv0rc8lck0ea2:
undefined: 0 CORE (0ops) (core102w826rmvswfhs4zsv2ujhylmd92c28pp2r53s on 44'/118'/17'/0/0) #17 js:2:coreum:core102w826rmvswfhs4zsv2ujhylmd92c28pp2r53s:
undefined: 17.3755 CRO (44ops) (cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra on 44'/394'/0'/0/0) #0 js:2:crypto_org:cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra:
undefined: 0 CRO (35ops) (cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl on 44'/394'/1'/0/0) #1 js:2:crypto_org:cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl:
undefined: 0 CRO (39ops) (cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2 on 44'/394'/2'/0/0) #2 js:2:crypto_org:cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2:
undefined: 17.3755 CRO (30ops) (cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd on 44'/394'/3'/0/0) #3 js:2:crypto_org:cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd:
undefined: 0 CRO (30ops) (cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l on 44'/394'/4'/0/0) #4 js:2:crypto_org:cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l:
undefined: 0 CRO (31ops) (cro1zfhcf2htapdkjlw4ffqzce7yfe6mhscd2su05p on 44'/394'/5'/0/0) #5 js:2:crypto_org:cro1zfhcf2htapdkjlw4ffqzce7yfe6mhscd2su05p:
undefined: 0 CRO (0ops) (cro1gfrsr7eerpuc0zpl4j6wp3aj55gqahtls2hj9h on 44'/394'/6'/0/0) #6 js:2:crypto_org:cro1gfrsr7eerpuc0zpl4j6wp3aj55gqahtls2hj9h:
undefined: 0 EGLD (362ops) (erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp on 44'/508'/0'/0/0) #0 js:2:elrond:erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp:
undefined: 0.944633 EGLD (396ops) (erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6 on 44'/508'/1'/0/0) #1 js:2:elrond:erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6:
undefined: 0 EGLD (368ops) (erd1ql9pxrhe29cjr8qgxx3rtmh9lyax5x9dkvu3mfzrgt4e8hwk536ssl4sea on 44'/508'/2'/0/0) #2 js:2:elrond:erd1ql9pxrhe29cjr8qgxx3rtmh9lyax5x9dkvu3mfzrgt4e8hwk536ssl4sea:
undefined: 0 EGLD (384ops) (erd1sjvd5mh946cty4wq0ya0d82509tc8eulxjujrad5ztfwjlhkqz0qy5yzmn on 44'/508'/3'/0/0) #3 js:2:elrond:erd1sjvd5mh946cty4wq0ya0d82509tc8eulxjujrad5ztfwjlhkqz0qy5yzmn:
undefined: 0 EGLD (330ops) (erd149kzxgtymzzaddanlj02zhyhwves9wspvk8p69u325tjln5en9aqf8x8el on 44'/508'/4'/0/0) #4 js:2:elrond:erd149kzxgtymzzaddanlj02zhyhwves9wspvk8p69u325tjln5en9aqf8x8el:
undefined: 0 EGLD (307ops) (erd143yn6uvrfzjptq5g7wvzntl3fcthsxtxrp9f3dgasluj6q5n0pxq2td67n on 44'/508'/5'/0/0) #5 js:2:elrond:erd143yn6uvrfzjptq5g7wvzntl3fcthsxtxrp9f3dgasluj6q5n0pxq2td67n:
undefined: 0 EGLD (231ops) (erd1nhe920dlsx8u0lg46grd82dc8vqj8wejh8u7xcdjzfr8yy8ncdtsgtgjz7 on 44'/508'/6'/0/0) #6 js:2:elrond:erd1nhe920dlsx8u0lg46grd82dc8vqj8wejh8u7xcdjzfr8yy8ncdtsgtgjz7:
undefined: 0 EGLD (0ops) (erd1w4jjugkk5rp8hn8erefltjn0xek4x60t4hzsmnkfty7930sxujtqgryqgw on 44'/508'/7'/0/0) #7 js:2:elrond:erd1w4jjugkk5rp8hn8erefltjn0xek4x60t4hzsmnkfty7930sxujtqgryqgw:
undefined: 18.1012 HBAR (389ops) (0.0.3663977 on 44/3030) hederaBip44#0 js:2:hedera:0.0.3663977:hederaBip44
undefined: 18.1012 HBAR (389ops) (0.0.3663977 on 44/3030) hederaBip44#0 js:2:hedera:0.0.3663977:hederaBip44
undefined: 0.00001368 HBAR (340ops) (0.0.3664525 on 44/3030) hederaBip44#1 js:2:hedera:0.0.3664525:hederaBip44
undefined: 4.03011 HBAR (312ops) (0.0.3664539 on 44/3030) hederaBip44#2 js:2:hedera:0.0.3664539:hederaBip44
undefined: 16.9817 HBAR (290ops) (0.0.3664563 on 44/3030) hederaBip44#3 js:2:hedera:0.0.3664563:hederaBip44
undefined: 0.00257348 ICP (111ops) (f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209 on 44'/223'/0'/0/0) internet_computer#0 js:2:internet_computer:04e529ca9ff4709b35af64dce4f0719e770d5e185e4ee972729b75495b27628fad0990203fe3ac7079c643a6dd23384e597c65b7bbebbf994b8304253f1bd124e4:internet_computer
undefined: 0 ICP (101ops) (6084b3d34e7d4efd544ea0c3617a816577d00feb0de0db71b560b7687e7d3c14 on 44'/223'/0'/0/1) internet_computer#1 js:2:internet_computer:0404b6a7df5dd483be4711fbdc9248af1e49b3a205334120118fe1dd9567da874d2655f681d9935b02139ffe1997c7fcb7781c04917303d90c7ea157d495ec30d3:internet_computer
undefined: 0 ICP (97ops) (ff5ed1dc2538d7a8b3158e7c9d9b05f80bc5f49f292f1ad2a59576a70bfc4721 on 44'/223'/0'/0/2) internet_computer#2 js:2:internet_computer:04c6d5dab70167c7b104904e57ee8afc84e8b4809c927ceec353a217f1402438b86bb9515e5bdbcc8f187c2c0c5f539d6459fc99c86af1244f452175fd9b736714:internet_computer
undefined: 0 ICP (105ops) (a45d0e0afb2c416464342615b6ee1902ac6895cf5e9eab2ccc184978164e9310 on 44'/223'/0'/0/3) internet_computer#3 js:2:internet_computer:040e411918ebc5963b5f89938dd674d6cb95131ce3d335957cd8efd99cce3521ea22b3f0fc53996b9ce3373a86ca57def22b89829ae905fde5d22c4522a7af5aa2:internet_computer
undefined: 0 ICP (90ops) (5084840b6ed50fa97b40c93863092770dc74f42bd2fbc742b76ec2999e789262 on 44'/223'/0'/0/4) internet_computer#4 js:2:internet_computer:046036d79bf131623410cfe77b7ccc32c923c6f8dc1b62448111328a2a791b1a7df2d1d4ca80659f3f0613e2334df370ab1c4e38c724decdf7f9f650a61e4ea090:internet_computer
undefined: 0.198323 ICP (70ops) (0ec8cbc167cf495b7800efe653586d14ee0a53ef8880c63129b180580b02a8af on 44'/223'/0'/0/5) internet_computer#5 js:2:internet_computer:04e3bde2b3aeee5ae2af7ffdd25cc416df033c04d084ac02166ee52281e81be7945b119ab171b224984a8ff45adf4cbf28a392524dbefff12edf5d2470efd43375:internet_computer
undefined: 0.81408 ICP (42ops) (1d571d508b3c8901b3c4a8fdb733f5b831b9eab4f1f7443890ae04b36117fad5 on 44'/223'/0'/0/6) internet_computer#6 js:2:internet_computer:04000cb53ebc7761d8c976856db22cebbdf438fc7b3f9568ac90788d82be9890ac74d8a8f4f5cf86f8b4ea51e251c4aebda1e33af2c32fd90cbe051e5a0ffd641d:internet_computer
undefined: 0 ICP (0ops) (49a624b4179ec33e0faaa5998246c46ca16673ad9dc0e44f0026f5061177ebfb on 44'/223'/0'/0/7) internet_computer#7 js:2:internet_computer:04be24b119ae8d9a928654291e45eb8711739b524a36b8b1ace88a4ac0ec83ebfbf43eff2650c3bed6cae4898ae56cc59117c746de408dabc99ea37a590a12632c:internet_computer
undefined: 13.8276 STX (182ops) (SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2 on 44'/5757'/0'/0/0) #0 js:2:stacks:02d8ff937901982551807aace226a5b1eae3d8c5c89d1eae39ccab9cd1d27a9739:
undefined: 9.06861 STX (187ops) (SP3WE1A84RCG3GWKRXYMXNRVQJ8PG3VDRKE7CMPM4 on 44'/5757'/1'/0/0) #1 js:2:stacks:03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229:
undefined: 9.46356 STX (146ops) (SPJ68NSCQSTQ1AQRY1NJ5D4WWBEPDQ6X24R56J8A on 44'/5757'/2'/0/0) #2 js:2:stacks:02319a870c0e3d22b9c0169df3bae3029a9e5593f8dabbc7e4b6a1e356edafed77:
undefined: 13.8276 STX (182ops) (SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2 on 44'/5757'/0'/0/0) #0 js:2:stacks:02d8ff937901982551807aace226a5b1eae3d8c5c89d1eae39ccab9cd1d27a9739:
undefined: 9.06861 STX (187ops) (SP3WE1A84RCG3GWKRXYMXNRVQJ8PG3VDRKE7CMPM4 on 44'/5757'/1'/0/0) #1 js:2:stacks:03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229:
undefined: 9.46356 STX (146ops) (SPJ68NSCQSTQ1AQRY1NJ5D4WWBEPDQ6X24R56J8A on 44'/5757'/2'/0/0) #2 js:2:stacks:02319a870c0e3d22b9c0169df3bae3029a9e5593f8dabbc7e4b6a1e356edafed77:
undefined: 0 STX (0ops) (SP20VP4RY6P3WFDTFGA6A7WFK3ZNN1P305SDWPB3Q on 44'/5757'/3'/0/0) #3 js:2:stacks:02ba832a893132328c5459add91b296287a70b4cbb889eaf1e53542864a853eb8e:
undefined: 1.5005 XLM (564ops) (GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC on 44'/148'/0') sep5#0 js:2:stellar:GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC:sep5
undefined: 46.2248 XLM (559ops) (GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ on 44'/148'/1') sep5#1 js:2:stellar:GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ:sep5
undefined: 1.5005 XLM (561ops) (GA4A2FH4YYI2RXPUC3NPGZQP7XX4CEJNREB27XVX7B7D5RIA3KOLSKTI on 44'/148'/2') sep5#2 js:2:stellar:GA4A2FH4YYI2RXPUC3NPGZQP7XX4CEJNREB27XVX7B7D5RIA3KOLSKTI:sep5
undefined: 1.5005 XLM (537ops) (GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM on 44'/148'/3') sep5#3 js:2:stellar:GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM:sep5
undefined: 15.754 XLM (498ops) (GBV2ROL25KKDSFCZC2TQPMUEN567YQHRWTRBYHCO5AKYWVIV4JKJ56AF on 44'/148'/4') sep5#4 js:2:stellar:GBV2ROL25KKDSFCZC2TQPMUEN567YQHRWTRBYHCO5AKYWVIV4JKJ56AF:sep5
undefined: 0 XLM (0ops) (GCMN2KYJPPHB4TMXXF2OZPMWVM5EQSDD76IMFOMET7YMN64VJDVHVNCM on 44'/148'/5') sep5#5 js:2:stellar:GCMN2KYJPPHB4TMXXF2OZPMWVM5EQSDD76IMFOMET7YMN64VJDVHVNCM:sep5
undefined: 0.625 VET (7ops) (0xc4B17901FECf86932c3bb296BB00E7c6816Fd416 on 44'/818'/0'/0/0) vechain#0 js:2:vechain:0xc4B17901FECf86932c3bb296BB00E7c6816Fd416:vechain
undefined: 3.125 VET (5ops) (0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD on 44'/818'/0'/0/1) vechain#1 js:2:vechain:0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD:vechain
undefined: 1.25 VET (1ops) (0x6fc5998724338CDe55Bba798273FAdcDE79c5074 on 44'/818'/0'/0/2) vechain#2 js:2:vechain:0x6fc5998724338CDe55Bba798273FAdcDE79c5074:vechain
undefined: 0 VET (0ops) (0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3 on 44'/818'/0'/0/3) vechain#3 js:2:vechain:0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3:vechain
undefined: 0.625 VET (7ops) (0xc4B17901FECf86932c3bb296BB00E7c6816Fd416 on 44'/818'/0'/0/0) vechain#0 js:2:vechain:0xc4B17901FECf86932c3bb296BB00E7c6816Fd416:vechain
undefined: 3.125 VET (5ops) (0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD on 44'/818'/0'/0/1) vechain#1 js:2:vechain:0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD:vechain
undefined: 1.25 VET (1ops) (0x6fc5998724338CDe55Bba798273FAdcDE79c5074 on 44'/818'/0'/0/2) vechain#2 js:2:vechain:0x6fc5998724338CDe55Bba798273FAdcDE79c5074:vechain
undefined: 0 VET (0ops) (0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3 on 44'/818'/0'/0/3) vechain#3 js:2:vechain:0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3:vechain
undefined: 3 ALGO (438ops) (TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4 on 44'/283'/0'/0/0) #0 js:2:algorand:TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4:
undefined: 6.16864 ALGO (430ops) (RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ on 44'/283'/1'/0/0) #1 js:2:algorand:RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ:
undefined: 2.7 ALGO (446ops) (YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE on 44'/283'/2'/0/0) #2 js:2:algorand:YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE:
undefined: 9.12896 ALGO (484ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA:
undefined: 2 ALGO (395ops) (GEPEPFCOO7TRQ3HKU5IKQPARS7DDXDHH6Y2VNMUJWH7TMLLOZ3Z6JKRQAI on 44'/283'/4'/0/0) #4 js:2:algorand:GEPEPFCOO7TRQ3HKU5IKQPARS7DDXDHH6Y2VNMUJWH7TMLLOZ3Z6JKRQAI:
undefined: 0 ALGO (0ops) (X3TNYJCHUW6UBWVEN5K2ULWMLRWRGBEUWZLR4V2XR3UDN4TWNZP3Q6EAQU on 44'/283'/5'/0/0) #5 js:2:algorand:X3TNYJCHUW6UBWVEN5K2ULWMLRWRGBEUWZLR4V2XR3UDN4TWNZP3Q6EAQU:
undefined [native segwit]: 0 𝚝BTC (183ops) (tb1qqsk6rter25qfxful9dhzrtunyyaga2pvvv89vl on 84'/1'/0'/0/79) native_segwit#0 js:2:bitcoin_testnet:tpubDCgDNn312aj5XtrdMeA9TeQbp2HkMW2a1JNw2qhRLzUaFiDAAQK3Jzh6jzHpc6Agjn68mZgPQB2ZdQzfgRgXVXDi2FVECW7p4xGuK6Pa3b8:native_segwit
undefined [native segwit]: 0 𝚝BTC (156ops) (tb1qrlys0xw3ze6yrdg0l65fhavw75sjp8w4x6epe4 on 84'/1'/1'/0/77) native_segwit#1 js:2:bitcoin_testnet:tpubDCgDNn312aj5YVQsroTmVAWSVMpx2PM7m4toPJsHUricGUh457AwMZK55f2uNVxYdKeW8qDZDngveqFFcsFTWW7eZFbnYerfsf5YAdxU3K8:native_segwit
undefined [native segwit]: 0 𝚝BTC (184ops) (tb1qy7czv898xljxfr0jyw0stp8nj2fksjlrkt0vdc on 84'/1'/2'/0/80) native_segwit#2 js:2:bitcoin_testnet:tpubDCgDNn312aj5d7zhhRFxoozQMEzDZFVWmJngmKcygstAZheV88CxrZ2KqFL8nsjZoeNKeqEHTSmjii11wcuYuchvGYqYuGTzveWepNUKPmE:native_segwit
undefined [native segwit]: 0 𝚝BTC (0ops) (tb1q6d99qx850zdfx4ch32mm3v3mc2g5mupusazw49 on 84'/1'/3'/0/0) native_segwit#3 js:2:bitcoin_testnet:tpubDCgDNn312aj5f2MgUfzseZjbXNj5ep7UH8ucWf9VvUbRC1oyUG7cjbGLoCRhc429i6pMcuMS9ZhGX2bTwnKipVSkhNak9fn2N6sVorY4FxW:native_segwit
undefined [taproot]: 0.00009319 𝚝BTC (183ops) (tb1phpf60ff7kk5t4s5hd36pr6e6jkv6uhl869gs642gmytd05tqe0as2s58w7 on 86'/1'/0'/0/86) taproot#0 js:2:bitcoin_testnet:tpubDD1s2jBEVuSpzKea6ie3HMCmkanzcfvc9BbQq8nRDUaAUJPGFi83RWFCNMartYsuxksbFR6tDmVGMaaRP7ng7uovwKT1WNjcuDW34st9R56:taproot
undefined [taproot]: 0.0006 𝚝BTC (171ops) (tb1pmyh8crjlk5qy8qn0yk2u5ggr9jqqnmll4vtn894werm4tavd5ftqnzcn0a on 86'/1'/1'/0/77) taproot#1 js:2:bitcoin_testnet:tpubDD1s2jBEVuSq13eMrn3r2tnwxfuWeBM94Dgtc4D5A6h1Jcx2kheLSgGtZroZCwFnXN4ao5PxViYSFTK57vRZnQ1RS193EETKNMmRuPTcWJH:taproot
undefined [taproot]: 0 𝚝BTC (0ops) (tb1p7t4hdtqlmpfv4vpu2vqre6elaywjvlq5yfl4jnjz9gw7lwcpjl5svzk5yz on 86'/1'/2'/0/0) taproot#2 js:2:bitcoin_testnet:tpubDD1s2jBEVuSq4ewqyyWoJYgCyvXsQ3wRkeSmKa3RW3b4BL2rfdDWzwM2WoefQcPGjetH92smctVjK4qrS89zYShy399s8MqWzhZdnCvHLfF:taproot
undefined [segwit]: 0.00015 𝚝BTC (156ops) (2N3WJiFfMhLVg8Fd1bCcwGCH3JygLhHN6U8 on 49'/1'/0'/0/76) segwit#0 js:2:bitcoin_testnet:tpubDCoPNx9aypg8jXFPWWYdpHS3MtXF5GPM3nY2UbvQSnEt8PELHAbnf2MknjprAMTYUYPNJzKCr2XSBVMp2wctdKbU1jw9MHA9cbgN7CakJQe:segwit
undefined [segwit]: 0.00021266 𝚝BTC (141ops) (2MzVC116JFYi2C3gxDJ1RnsdqAJeFVgNFHu on 49'/1'/1'/0/64) segwit#1 js:2:bitcoin_testnet:tpubDCoPNx9aypg8mbeNfcfUjuUfsXwrSmZkRseMwRxkhinEX8JjfThyhtJg6HeVWp6mF8gf6m37xqC4Q9yebR5RdtdjFcJ1Js7t8VB8Dq8Nczj:segwit
undefined [segwit]: 0 𝚝BTC (0ops) (2Mys6yQgQV1gdVTPECM5xvhUuNsiqtwSTm7 on 49'/1'/2'/0/0) segwit#2 js:2:bitcoin_testnet:tpubDCoPNx9aypg8pnB9z8yPPo7WEEeu9H1VPzq185ppKSLXDpdvXWkR75auxm6pkL6PdyRNLckMzYbZwiUui7hxFSsK5S5YHXT7pyfiG1eR9JQ:segwit
undefined [legacy]: 0.00046673 𝚝BTC (142ops) (mp25g3AMZDZ5sNNnxaquBsdz4pVqiBVqeR on 44'/1'/0'/0/86) #0 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBsPABuHGzrXmApLgBRomQx7oFzQeuQn8gpzD27asWNYMeBzanzy4ru9hPE5q1HnQJCW2VcWm2Nz4cdNRB8Eo9xKPz6LGnrxQ:
undefined [legacy]: 0.00040818 𝚝BTC (107ops) (n2dUAxPre9KjeUTnAYPmyJb2jUj3wXLqLP on 44'/1'/1'/0/83) #1 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBv5wFZcFYEhephnhXGjF8gKZJ98kGxYvtiv8xdfNVgFgGAFZFCRXwR8td9Nq8nufwfXB1iX75Ypx99d1NktaeLNc4DxmrTng:
undefined [legacy]: 0 𝚝BTC (0ops) (n2pjyyrHHws2nhUT5vULWWYvVvKdQ6itHW on 44'/1'/2'/0/0) #2 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBxB9KbDNQ4KwPmSA6cftnyvQYTQWDgApMdz2Z3YrEMvJVe7ZXz3turDky7qbyk5WJBf2FS9xk4XacpPw8tND5mkkFZRpK1im:
undefined: 0 BCH (636ops) (qqgq6klv8h8a592a8vtmdsafvzu3l639fsjv0y0lsw on 44'/145'/0'/0/319) #0 js:2:bitcoin_cash:xpub6CYDTh442n9QYTMdQ7Uc7XDC2zCzZ5jM1m1DrWxmfQMToP2ngWZVtptKiksRoGgdcRSLDC6PgEULihbZE3SDt4ndVzoRNUEoZeTCsBUAWWP:
undefined: 0.0135601 BCH (608ops) (qrqnyfe03hrkvfe9wy8sdaapztmrezyvvy6qthmk8a on 44'/145'/1'/0/310) #1 js:2:bitcoin_cash:xpub6CYDTh442n9QaLF3Z2i5L9QENTixN9kGH5XCYh2J5UTHuu99Y2W1sxm2HcX9sQUe2xmv4r3GVmn8GdTvCsLEof448VdZEmdpfmzX7Dk3AJx:
undefined: 0.00808933 BCH (568ops) (qzj5g2rg5lpqwgp2l8xknvtqtd4e5ul45ygkeeu0sl on 44'/145'/2'/0/280) #2 js:2:bitcoin_cash:xpub6CYDTh442n9QdmbZ2RXVmndx8Hv2cFDKjhzANqnPkFjpcqaztmjEdhB9wiiYxJFncp8Et32XZF2YvsC6sXmDRFGEwgjVzQDinZ2xmgZuyb9:
undefined: 0.00015 BCH (566ops) (qz36gs0rv9spkvl62j84s2n9p504sz3rqchd7xsvee on 44'/145'/3'/0/277) #3 js:2:bitcoin_cash:xpub6CYDTh442n9QftkdDJbR3GXhop6xxjkHdxgz9xcKkdq8Q7xF9ER8NXJicVwjXbnkBdbF7nc52wrAVhGoraVfQcsGCA2JwjWurCZQU6pNyHH:
undefined: 0.00328332 BCH (537ops) (qz8l45jvkmuu046ckallsgaq4l5r9gtxughucj793p on 44'/145'/4'/0/252) #4 js:2:bitcoin_cash:xpub6CYDTh442n9QiWxQaeXpmh16DkgpNqufRUMcj6rDqW2gF9Ronnvv9okteP6YQHZGYEojUXg8LL3kfrJzWHrfLFKKarvBgZBtSBRgqcX6w1G:
undefined: 0.0220707 BCH (536ops) (qqyy9tu3lszeujmwtp4hz4ulf8z7sjz42sluhw9dvm on 44'/145'/5'/0/286) #5 js:2:bitcoin_cash:xpub6CYDTh442n9QmdbyiUh8ztDDRCJGwoxRyCCgYKtHyVktNFJiCcufp79mTstxxdkEv3jBzTeysds9JAcBPEbXCeyhPRsrfAJ1jzrf1PbkEvx:
undefined: 0 BCH (0ops) (bitcoincash:qq3427lxyy9x6fm7cvm6g82zl3hpzv5pwysgfcrg3s on 44'/145'/6'/0/0) #6 js:2:bitcoin_cash:xpub6CYDTh442n9QoTNBLkMrt63qoqsZWsuCQvMamTNNu6ZcNKNHN8LWJaV2qUrd2NBHuLkWCyuxreohYgxjBa5yzTNC5ezqB8XD39kHW2UyV36:
undefined [segwit]: 0.138337 BTG (675ops) (AYikw3VbrCivc3KZUSBriFf2yfkWMbfcZ8 on 49'/156'/0'/0/329) segwit#0 js:2:bitcoin_gold:xpub6DHWENEKDQW8XxvbwvAFdCTGgzmHJkx8eY8bdGrL6iLmiqmPmCEscEvf7MBSDtbZWuLcUeQP9j87rJSgMhtwpUj3JSnQDoGHG2aqRVaSn43:segwit
undefined [segwit]: 0.0929933 BTG (644ops) (AXSUGuEABQvF6Tp6XmbZxji4soPQTvRe41 on 49'/156'/1'/0/314) segwit#1 js:2:bitcoin_gold:xpub6DHWENEKDQW8apom13GYVHPmFci3b6ruunFh4WoHun5mH7UF9bupcCTDNz2FAv3Rf3zqs4jZfRwzvppDXVZ2F2C7ns48o2PLxby6icxWtui:segwit
undefined [segwit]: 0 BTG (0ops) (AcXrsmgyzU1wR27BzHgn7hKf9WiF1wZuWm on 49'/156'/2'/0/0) segwit#2 js:2:bitcoin_gold:xpub6DHWENEKDQW8dDLhanDtuN2LJMAoP6e5mprkTrSMFNrkQDmtQQryURzLmTU6zRp4Wa2iSTy2EG6piYgr5ry79CofEqRxyhmaWatZqNdEobT:segwit
undefined [legacy]: 0.158565 BTG (673ops) (GZ3HhUkYhHJb65BAydvCQwoGJjj5htKtQB on 44'/156'/0'/0/334) #0 js:2:bitcoin_gold:xpub6Cq1sXPAA8ijyqJpdR5hDVYJ7XyunpPgVpCWwPtReGJDwhqnWxBhu7wBJjbtdWHXSQiSyNDhxDXF4GmrXGatK4yDASHE3CgS3tsT41T81Dj:
undefined [legacy]: 0 BTG (657ops) (GQpFX6ZuiGvQVLuXLCzj7VUykVgt1ugwCF on 44'/156'/1'/0/346) #1 js:2:bitcoin_gold:xpub6Cq1sXPAA8ik2mHiQmGxqsHMwc1EyYvvViKoq1bhDST3xn3meJnWRE6BEf6xpDrg5xav4eJSYy7759aHxeqErTAxjAHx1uYWPrdsHANsecY:
undefined [legacy]: 0 BTG (0ops) (GWhP2tzoiE22tbzfTYtXrbmyE7bFw1Lp8i on 44'/156'/2'/0/0) #2 js:2:bitcoin_gold:xpub6Cq1sXPAA8ik5CLF1skYbPC7ZtoP9rBrgiMzQFjCYgLt3MZayRZKo6bpU8skwbLpKYpqDDLombBd6HRPAkQqRmwmUonpwDMQnicuo9YfCmK:
undefined: 0.0356138 DASH (498ops) (XinTss7uEgMEo6sbReTAZKburNSehxA5wG on 44'/5'/0'/0/248) #0 js:2:dash:drkvjS8m2iwuqAXaxEBNS8ULFEKfoEEVNrSyzsEwioinaxb7TZ6fmP7rB3YiU3xcEoM39WoeDJdTS5sgVHQAeowB9BhdxkvDZhJErQk8AWTyaYk:
undefined: 0.00593478 DASH (471ops) (Xk84qzYHZsSsuXcq4oRmqpLnyXb4YGV2ic on 44'/5'/1'/0/217) #1 js:2:dash:drkvjS8m2iwuqAXayHufe3hHCwpvgLyxxGhMAiCSW4kjQ2jC6FKcYKqC2ePkovCh93HAt2AgXQSt4YdJG3XX1raRMbHwwJz6ezKi4yotkX7mjwb:
undefined: 0.00385178 DASH (500ops) (XwaVUet9hKMDZdUok7G8rRkWD83cQZDpvP on 44'/5'/2'/0/249) #2 js:2:dash:drkvjS8m2iwuqAXb2YSrc4u7qMoaf3UtCbF5A1gphQy6soFEDH7sHmvfZiAEzFse5Q3ycaoq6Su8iitWgNoxRriwzitNTWcwBkXrAdaf2xNXuo4:
undefined: 0 DASH (466ops) (XvkdWNne2aqApe826RWcPcBQHD8jbCfuyC on 44'/5'/3'/0/233) #3 js:2:dash:drkvjS8m2iwuqAXb4LDphtncxj3UdVEACR5JCjoccMjdxfEkEhu7oB1vpZFyajdUEhapJgwi7uUq24ys47gm3VNj4vRQbVcV5YQkrGCpUyd7hDS:
undefined: 0.00474793 DASH (453ops) (XnYKCgp83eFSFJ3dZwHAZ3rQoudQ9Qf5ww on 44'/5'/4'/0/229) #4 js:2:dash:drkvjS8m2iwuqAXb7uLicFWmFdztLiHpa6PM7iTRQcYT9wX9vF565f9ZQ7ZrwYBKab7ctGrnUyyyn5zFBtBEazazVdBvneLkZ9bUjb83PMLEgpw:
undefined: 0.0575567 DASH (450ops) (Xr5QqTBVgBrJ1adDnSr4fSvzfXeese2eyk on 44'/5'/5'/0/239) #5 js:2:dash:drkvjS8m2iwuqAXbBAUgNiSVfsH5TurFQxb3bCTM84wuSY376sNUmXbTzLp6cPT8iLqD43n1GXTaHGAaemq8vEm2rwqu5bxtgemUp719HCTXW4S:
undefined: 0 DASH (0ops) (XiiyHQPZVuxXHnApv1XP2aNbz92zL8u6Hy on 44'/5'/6'/0/0) #6 js:2:dash:drkvjS8m2iwuqAXbCRvDwtZdhj7KX8KWD7NqtKJ3cmdPhKoAsfK26rcmmGGAoHdVCvsCgkkZMeyq9cxfExdrvJfzTXJFU8enhrj8pQ4vnTXXUh9:
undefined [native segwit]: 97.8842 DGB (640ops) (dgb1q3tr3n52yqg4z8v2pxxykfhwpx22xfy3h53k5jp on 84'/20'/0'/0/306) native_segwit#0 js:2:digibyte:xpub6CW9KDgdnS4RwiFZjL1YpEbk1yYvD96EqiBXmq6xKRhe3rJJQaB78voA4DG2dJctnUeWZes6NhysTRpCmBgGxCCy39wcwRwSB4fx3Nd2AxP:native_segwit
undefined [native segwit]: 202.455 DGB (639ops) (dgb1ql9q56h2hq7ae7yfl0uxhuvqly8xpnxjwyl4h2r on 84'/20'/1'/0/314) native_segwit#1 js:2:digibyte:xpub6CW9KDgdnS4Rz1D28B7SaGqGPp8Kb8gpvk1MCUeKb58HJTMhdXwCiwNLdZL7Ws6xU12uKat4szE9c2tV27jEfxSwW1uABgGXRJuXNCDZFD9:native_segwit
undefined [native segwit]: 0 DGB (0ops) (dgb1q5hv236zdu8fnxdr4mstuwzl76hrx9hr7g54x0l on 84'/20'/2'/0/0) native_segwit#2 js:2:digibyte:xpub6CW9KDgdnS4S2UHrC6Amu2eiJTRBAS1eoaXcVvS8yJtyoBsX7LwyeqjDwP3vBR2WLVhWbm9zdAMubfbK3WJDDmdPRGRT9MdV8RWZqJGwUYo:native_segwit
undefined [segwit]: 22.6738 DGB (596ops) (SgwgiFeEsjUGP5Cpywr5CHSJ6fEtau1WTc on 49'/20'/0'/0/295) segwit#0 js:2:digibyte:xpub6CrEMM6LnNPxiDTZaMJwXTtYZXUQvvMwYb2Do892dbEYMrLEfFXZ8ygRrywE66brjMWbV948BJAbWGwV1oeyT7L57ZJykK8jVJ26UQiDVfp:segwit
undefined [segwit]: 0 DGB (587ops) (STc8mDwpADT54GH2QkdkDu9wyREuFEGdhW on 49'/20'/1'/0/285) segwit#1 js:2:digibyte:xpub6CrEMM6LnNPxkr3nrjR8eEys5nHkysyjVHKAfpchrfj5Y2XEPRoiaSgAN7qtUwVxjaVZmGEnJjtRucoAf91u2W4kL8goUCZUKgGXPUgZkUY:segwit
undefined [segwit]: 0 DGB (0ops) (SZg5s18vy8EVLqNcMhvVi2TNYJeQf5crqK on 49'/20'/2'/0/0) segwit#2 js:2:digibyte:xpub6CrEMM6LnNPxmgxLuvQEz6U4j3FvXh7p8MgYFf1kA87Nm3zU6BTydBUdYrsyTF35zTbzPbDA3FudDtiaQjDs664TbtCyYaFni2GrJbk6oFr:segwit
undefined [legacy]: 104.577 DGB (615ops) (DB8oKwGChtBS4P9wftNfs7qqBVcrAPmPi5 on 44'/20'/0'/0/306) #0 js:2:digibyte:xpub6Cv4emS7S9zviCwMrBM1LhC7EdKY6QgFZ7T46nwEqtmaJda4EPH7Jv19h8GfhAPNTztGNWBBxribdod3wcxXRDkLmzRBxUgyZWxMoYLDgCX:
undefined [legacy]: 16.3428 DGB (589ops) (DMnCugEoqF9hsQfZZLxuJYaCnVre9sfYnn on 44'/20'/1'/0/322) #1 js:2:digibyte:xpub6Cv4emS7S9zvmSxVKstTvb3QR4MYRMR1ySqUZbWc8A1vE2Y2BYw3FjLoxVtVYAeJjzR8PqEDDykAzGBUXsphL3xbgbzx6EtS2D8ikALFT52:
undefined [legacy]: 0 DGB (0ops) (DBWpWpZTMg31XMoamhZjKoSqahTVTG2qHi on 44'/20'/2'/0/0) #2 js:2:digibyte:xpub6Cv4emS7S9zvoT2jPveX3CwptyX75sUdfpgmx6DyVGme8QQit5WYE189GhbBJyPThotPBRdpQ5RaXNn8BCkmPNGCG1cirRswqvyvhhqgnAT:
undefined: 0.808271 DOGE (321ops) (DErywhANM2NfctPACWXX6rcemYF6L9gfAm on 44'/3'/0'/0/159) #0 js:2:dogecoin:dgub8sBmteCcuFFejUSqGNBcwXRVJ4ZH33Sx3vTJG1o8Q1XwFRNFgT8fAreoj59VMzuU6EJmVMW9gLc9XJSXuxBeSUEt2s2QjSbfYCKkyBvF3pz:
undefined: 10.3929 DOGE (317ops) (DAX88dZ6htzrdQGc9piCWzakhCnmWj1482 on 44'/3'/1'/0/149) #1 js:2:dogecoin:dgub8sBmteCcuFFenEm7nyLHE2Zxt38inSEWx1bVAvWgAXbsHzuEHPaM4aP4J1oE2UWhoQ6cjN8rLEmuzqZHr9MyJvLE8zj527mdtweCgUBjuxj:
undefined: 5.6161 DOGE (321ops) (DMiSEN7HM5yCWpJDNcZkN6mGyGtWeoguFf on 44'/3'/2'/0/165) #2 js:2:dogecoin:dgub8sBmteCcuFFepPh2rZbmtt3RujGFHSLrQiT7cawEm8PpDRumeEWWM4tsKtqm4vUYtHSJZvsifqbKXgUMGN89Y29Kh6DMoq2JCEBPAE5BVK2:
undefined: 9.3133 DOGE (330ops) (DPXjF2jmYMmePSqjUhkXTovEREfgjttqjk on 44'/3'/3'/0/167) #3 js:2:dogecoin:dgub8sBmteCcuFFer5KqAKz1JpoYNxNzLP5v2uStDCS6iMYMJz9qssa7cr4EeDGLuPaJ6VRGK6owP43wMFhgHtPXMe56ptKcVF7o5DqVf8mTMDz:
undefined: 0 DOGE (329ops) (DEYVK94WwT4Yr85HxyE31movTcK9xpq59N on 44'/3'/4'/0/165) #4 js:2:dogecoin:dgub8sBmteCcuFFev32JBmBE5kkWA9Fz4LHryxURKDHBm8kXT2s5X3cM4eGnk5YDgbRj2cGny85CWZLtFuz4n6SNEff68ZFXZRfeMcKYjM4ZABa:
undefined: 1.43711 DOGE (260ops) (DFgi4RHh5w5rqnZNk5TnAKv9iQWp8w3B1x on 44'/3'/5'/0/132) #5 js:2:dogecoin:dgub8sBmteCcuFFexZUo9SNmC2kEwPEUKxWo4VbEi5sZq9uAa3koQSeoUyxC5Z9XXqHq6hvYUYMvWL1iuVLnneqEfda8PdDDWPbvXggRGYDS2Yy:
undefined: 0 DOGE (0ops) (DNvgzFMvZG3k3o78cqn3y3YksWoSnC3uJ8 on 44'/3'/6'/0/0) #6 js:2:dogecoin:dgub8sBmteCcuFFf1Q45j57nYSbt99vo2P5iHSDdytuEPxtbcaRJrgTJCCJFx9AJhFHvyRNkQ8HxwQ61te2F8hhtChBWAL6RCDZEpbjvKGVRR3T:
undefined: 4.75984 KMD (514ops) (RDkzJayYAfwwEuh9Efz44ds3w3giNzqbaa on 44'/141'/0'/0/247) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:
undefined: 1.09852 KMD (494ops) (RRvC2WCtckdJaYEhEt2QmgqdcTADrQUz91 on 44'/141'/1'/0/236) #1 js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:
undefined: 3.87139 KMD (492ops) (RJMuR88Fgn79mPLs6Wu57JJ9EweHX6Hoox on 44'/141'/2'/0/253) #2 js:2:komodo:v4PKUB9WZbMS4XNED8S4oAJzXQqPbfLCmNRNPW8QoETCA7opTJLFvrkm39QZAdLg8DygthREBvDRmrHDeVtEQ8C7iQDfXDSPTrzB2FAFkvgsQ9HA:
undefined: 7.7796 KMD (461ops) (RSLHgNvEKMJHkTmTYjeC5ii6EPxQe36wLY on 44'/141'/3'/0/243) #3 js:2:komodo:v4PKUB9WZbMS4XNEDBJ9e6csdTWjkQsBngGrmyPrPrwARdjCHQmEYDrU4Kq7HGhiDP6xnwdVwUp3pTCDBqPFJzzGWKwhGKyZ3R9twuUru5U57rPp:
undefined: 0 KMD (0ops) (RXXzA1HUyBUt3vYKgRDwktBrUxGB8nT4bN on 44'/141'/4'/0/0) #4 js:2:komodo:v4PKUB9WZbMS4XNEDFpraB4oy9vXnEDhnEWtmApcz3bN67vrQpVc1DjN5AQDZdV5dt5iXcf1BFTzfmCuAVFoFH3TsW7S8FZfkKBeBvvdLZeretiq:
undefined [native segwit]: 0.0194018 LTC (630ops) (ltc1qk8c3e2tpyd2fj50jm03gzdhkklrvlsyav2klg6 on 84'/2'/0'/0/295) native_segwit#0 js:2:litecoin:Ltub2YLUoe8MGLizFvLnAHJhiz3rdWG8UXqi9A9smDbuwPD44WPa1rB1EwyQwzRiVFKGH4mS6b5DRE3c3S9jZ944uaGcRK2XPinZcbdmo3P2vmq:native_segwit
undefined [native segwit]: 0.001 LTC (582ops) (ltc1qhz2qd96nanfkfkryzh86je6mszn4ceqggfmw2q on 84'/2'/1'/0/281) native_segwit#1 js:2:litecoin:Ltub2YLUoe8MGLizLLxfxim25UC6ncVSrJgQw7atsJnYY45xGTLjZk6n5mCnRFuR5rMwaQ7fGz8BFaw6chiDuz3zffibMSYuY5zxdfdRZxLr2Lw:native_segwit
undefined [native segwit]: 0 LTC (0ops) (ltc1qdc2fw3ytrnk9urf24dvgf6zzl8lndpe38kzpyf on 84'/2'/2'/0/0) native_segwit#2 js:2:litecoin:Ltub2YLUoe8MGLizMiiRURGW9BD6ycQNUzeQRRGhLCwGLW4HUpCJJJBJwFBjjE8uF3BigX2UwDPbkwNu41NCGtPoQzKjwPwuVcAruutKaRabtA7:native_segwit
undefined [segwit]: 0.0615516 LTC (622ops) (M9HbcGvCtuwXpu3EAFtfk19Ckzw7rwrho1 on 49'/2'/0'/0/305) segwit#0 js:2:litecoin:Ltub2YDfX8FoxTFohkcgknuZr2WLrCNpq6ufHxguxyjoDWGDZ1GBUVSn5wwoD2ifjY13iERFGvauvW55p6ASVCbqiABnreHFCsV5LKps76aWDV3:segwit
undefined [segwit]: 0.0520907 LTC (590ops) (ME6VEDDsBUBJoZYvdPw8AfSkWimxR5hrpR on 49'/2'/1'/0/301) segwit#1 js:2:litecoin:Ltub2YDfX8FoxTFokPftPWHCApgWFe3zeGaU4bag1Wo7HsciTTfvWhRqJvo5yULDSURkh475q8NVpZE2judnAYSmrGmSjH9cB1bUYrm6BgLEZGC:segwit
undefined [segwit]: 0 LTC (0ops) (MD2uvco48GWoQ11iYqQ4jiLfvc33b9E3b9 on 49'/2'/2'/0/0) segwit#2 js:2:litecoin:Ltub2YDfX8FoxTFopQz5yFXLXp9tVCybZ31GX9KsGYccPbFSf1qzFP2Bmq6sirajnUjcH1zhD5sHGPyH7s1KjfD4zZmo2fnq1CVcRpa5ZXZHo8t:segwit
undefined [legacy]: 0.160322 LTC (631ops) (LiHZwzKs4V5G3kmD9oJSPoP2exjnauhUrV on 44'/2'/0'/0/314) #0 js:2:litecoin:Ltub2YwXt3Fm1MVHeGxpcxFhFTe1FkqDdVoeRp9FRnnqGrinFxJSDjXwVTnmjK56jhq83mxWmTKprWjLXqspQCYtxJmCnwCLJUPoZhjJEYMtcFd:
undefined [legacy]: 0.0480485 LTC (562ops) (LP6qyr3n9NWT3wtjwwvSYUFhazqhEBAHwB on 44'/2'/1'/0/308) #1 js:2:litecoin:Ltub2YwXt3Fm1MVHgsz1XL8MM6MicGgumPzfpD1pZcsk15P4LZHiF4wpFPGvTi58u9evgMd4dV9K7cMMA532mq1HbEknZZ5UayUuRbSsM5VzptL:
undefined [legacy]: 0 LTC (0ops) (LiDx2poS1M1DwYU2zHuvKEQAAFUdpRgP59 on 44'/2'/2'/0/0) #2 js:2:litecoin:Ltub2YwXt3Fm1MVHgy4nREA2MxDT5Em3QsQv2Yu6gfGSPudxTKgcovLsh1sV3rje75uZ5eAkyJLkbHxPBFU3Wbhd2Q6XF863omV2XfWhsC2ACJ4:
undefined: 0 PIVX (663ops) (DFfaBrPgNicDbdBqgxZ4f5mK8V8sC1XDpN on 44'/77'/0'/0/317) #0 js:2:pivx:ToEA6mkkScBzPS3QGwz3pD9XiPf8YynSCGuC65sMGexuJ8oLkqEAZRAcR5VqKvRV5Phzid1ZG7myNKF6XtRBtVKT5JhgUpaKZtwAq3XzeH3Qnmz:
undefined: 3.81807 PIVX (611ops) (DToceWe8EFgK74HHzr4Zb7WQGgvdKEhGYh on 44'/77'/1'/0/294) #1 js:2:pivx:ToEA6mkkScBzPS3QK9QkPuwWHUEA284HMW86PxW1zkXJAAJa9zXWJjVwBvYEt5HTwDHyDpyfC2VRj3Sy9MBegtxX3kBM1dyiPx81KcwoA8DT75c:
undefined: 14.2534 PIVX (621ops) (DMrTSx9NHwUY4k78xSwYXsLyD5rW8iTCMJ on 44'/77'/2'/0/324) #2 js:2:pivx:ToEA6mkkScBzPS3QNaWms316jJrjhxFoXsKpv21fDZnZUqeqnX1FpofXYA3ARA7qSEHn2wmdd7EPMM1qJ36CiFP3Ycu6p4EMHKYgV49aAFQYdwt:
undefined: 28.5543 PIVX (656ops) (D83Kn3AmeDzJogXRnw7aoHBJfNRcqawUqD on 44'/77'/3'/0/338) #3 js:2:pivx:ToEA6mkkScBzPS3QRXKa6QiRvZKUYefypt8wZupR6GaqD77SPLwzgmraaKbGgcirVLLXkQ6XjZJcGhoLRL2xP5ZBVjD5TUz6ZY6WkgXBpJW5rNU:
undefined: 0 PIVX (0ops) (DGvVBqdtcbSTuXgf6JjAxG5a8MSRXk76Tw on 44'/77'/4'/0/0) #4 js:2:pivx:ToEA6mkkScBzPS3QS97WZjaF1BidcB1ywJUVPvH1UAbz9BzZ1U8Uzo3zVwrmNHH18cJiwpjFEUnvCu5hqTQs5df1A7f1vBttM65ReXpJhxvKtvh:
undefined [segwit]: 0.00015 VTC (590ops) (3PRX3xnmMDyJh2SsQPF3mJWCDhM7R2ctfw on 49'/28'/0'/0/274) segwit#0 js:2:vertcoin:xpub6BzrB2TZiXxTtjegub5eT5QAmDtrDVNDnwj8eJJgBqgbLwXxsRQgQQoP5eCaHNyvLxFXkB2doyxytbGkUvoQtepWayC3hWgoL7DbwshW4yS:segwit
undefined [segwit]: 24.7692 VTC (613ops) (37xJE46bHFonDePKyxYChaFkoZw3EYfG9W on 49'/28'/1'/0/305) segwit#1 js:2:vertcoin:xpub6BzrB2TZiXxTxPQdQWrnTLvxXgdvSncCsqYsUPHn93hfzzmNtKh89FH4W9qxzH2GHVhcvowEtcNHLBJMvaRfTPhAMgghoEFrjX8XMVgrTGf:segwit
undefined [segwit]: 0 VTC (0ops) (37sUZu9kBZk9uH1SxV1asosooyiHhbC7rd on 49'/28'/2'/0/0) segwit#2 js:2:vertcoin:xpub6BzrB2TZiXxU1HxVHfXBofkeE1JNTetYETWhdsEuPc7giYWWWsFTx8oYHvGYRCHXrczxA7iqAFTQpCAfyLqnzvTZgz25S5bDCr3aEgNLbHV:segwit
undefined [legacy]: 4.38906 VTC (615ops) (VtpQNvVRMoTg5kiBsy2rmpp5chXVLxzSCG on 44'/28'/0'/0/325) #0 js:2:vertcoin:xpub6D9ewWZRDVHmnJbjdoaFbC54UhW6iZ4k2n9tLiTPJsqp7x16bAdkGhK7yy7cnvegoJz5HwBGcoQpSv1Mp6oTDYDgHd2RPHennaNsQuBuaXR:
undefined [legacy]: 0 VTC (572ops) (VeuWK2EzV1P8ykMV6NTVGoZEdzbC2Y4vzv on 44'/28'/1'/0/288) #1 js:2:vertcoin:xpub6D9ewWZRDVHmoTUYA4SfZTKVP9QvkovJmZ5bPbj12dgZEUb6DtS76PP144mkfCfBDsXvEFsEN7hsrbdvBA34mg78owvpVXQAuQRKmggGvGF:
undefined [legacy]: 0 VTC (0ops) (VgM8spUbqP3r1qdnswXaSrqGeMVnERAuuV on 44'/28'/2'/0/0) #2 js:2:vertcoin:xpub6D9ewWZRDVHmtBmAgSQ2HSyfeZs9ebe5iYurVh2rBbpHRpQX52u3iZPqChjvoPYUmMD1jpGeNqVCkXEridcr92DTEFhngPjieTtiPjJGGEA:
undefined [segwit]: 31.0387 VIA (579ops) (Ed8hE3CZPp2JTTkVtNhYZqtngXdPqvZXPr on 49'/14'/0'/0/273) segwit#0 js:2:viacoin:xpub6BnHRZZc2q3Bq7c8LWrKVaek5cChKLozvgLvD4uS52XX9qvVv1AfXtGnQqs7z1fy58DCXc7333iznM3enL4y3gAjx9bbJAhEd3f9Bf8FMAL:segwit
undefined [segwit]: 6.59228 VIA (596ops) (ETHyuVeK4xh5w59MNay5ZUGTg1gxtiQ7LH on 49'/14'/1'/0/294) segwit#1 js:2:viacoin:xpub6BnHRZZc2q3Bv5KKzULAJs7Wp4Aa1Ht1i1HfMpFPz39ErhhzaK25gSKwbGvMLvU7gREE2N1uPJ87x9UyfbPhu6UTNbtRTq5K5EvXgktynP7:segwit
undefined [segwit]: 0 VIA (0ops) (ELsKYe4RMf5PjAh6ebwSwPhX7kJikrPS1B on 49'/14'/2'/0/0) segwit#2 js:2:viacoin:xpub6BnHRZZc2q3BwqXyrx8ZAntahSP89Z6HxVaWASEYswBqqKzmBigsCndsB57zZcYDVMbmE2mWbgRMV8AYgxfZKQgfoasrKvg4ex1zz3xX29x:segwit
undefined [legacy]: 1.42795 VIA (543ops) (VernKr7PjS8iyT2wSz7ZPdHdZtwsnnUnd7 on 44'/14'/0'/0/277) #0 js:2:viacoin:xpub6BqwJGyyRny96T4yirVKJ3iqL3dznXfrtohfLE5AgKButrt9PHen5v2yACKPuMZg53z5vmYkFh7NQeXotr714kgNUuuBD7HHpuZcfQpqtVB:
undefined [legacy]: 1.13913 VIA (577ops) (VoroJsWMYE1wQCWhQ11mBqv2vA13LrvXpZ on 44'/14'/1'/0/305) #1 js:2:viacoin:xpub6BqwJGyyRny99DmxkTjWUNWFd5foEt2aUddfdaEamdB8gLsfK225ttKKiM24gZvVmUWm1tC2zJheYZ7FfJkTgCvyAz8AxVRa8TPWbmsnWMb:
undefined [legacy]: 0 VIA (0ops) (Veeew6qhNE8XmE8pzfQygq223k1k5jxF63 on 44'/14'/2'/0/0) #2 js:2:viacoin:xpub6BqwJGyyRny9AaT939M5Mdnm5g2a3ZTj42bFNtYcmWz793oRxGodSi7sY42Uk62AtGMzdMuJqttJpKX1Yu6FxfggF1TU4whZhCnPbyZRKx5:
undefined: 0.00191538 ZEC (394ops) (t1SDpcaNZmbCH5TCCb5vNAh5bXs3isDtA5h on 44'/133'/0'/0/191) #0 js:2:zcash:xpub6CJCxQneNaGtEsc5RekCewAkzA4HmtexTwe7WEdEmduLVbfPti54Vme5gpsTrTDRB7qGUjn7LPhXitHvjrnMVDTt8LYvj7s34ZzEz6PcS8z:
undefined: 0.0002 ZEC (363ops) (t1PpjmFSysTrpUQra1fNCJJMYFGy6yrCxfu on 44'/133'/1'/0/179) #1 js:2:zcash:xpub6CJCxQneNaGtGzvpwjmx2kuAgbAwTBFFCC9TdvziUaYsPQYQ22mwaJbxvyBDLeW4gAnUBvKFeb5RznU3uxtVZp9AJQuU1Q5LsTMypXhN3dy:
undefined: 0.00156519 ZEC (359ops) (t1Z2giNqRBAcyij9iLRPEPBjaD8emFA5LCc on 44'/133'/2'/0/176) #2 js:2:zcash:xpub6CJCxQneNaGtLNBmM9y9Fm23XfXVewWuDYb5mqH1Fybr2579KAGiPfR2gsjjakYEGwFCL4Hau3C9ns24sPFM1MBrSPRKQLLVdQpiSQkSARY:
undefined: 0 ZEC (386ops) (t1YNMwj3ShjnCweX7dqho2w9rAT4PZABodm on 44'/133'/3'/0/203) #3 js:2:zcash:xpub6CJCxQneNaGtQ86kboo1yi9EsCrvQXMGKy2W6MWtMfSLxhpJQHgeLG4MLs1B6gHmYoWRC5q4CCUR4XzoBjPYAxFTHfdSfdhCWRspU2hJv1A:
undefined: 0 ZEC (0ops) (t1NCYEq5jS9TMQMVA4NeMVShuY7JFmFf89y on 44'/133'/4'/0/0) #4 js:2:zcash:xpub6CJCxQneNaGtQcwqQ4ZBYaBpHPzrTRbyU5S4ziPHtkL5iNHxRv9P7J3oJjerQuPNm3JFpz6Ktcui5Eqv5YW9PiCwYonU5E12pg1hwUAkGxh:
undefined: 0 ZEN (495ops) (znc25Kqjvpy65kYRCTzeun4jpFpomQ6EBGw on 44'/121'/0'/0/232) #0 js:2:zencash:xpub6C68jAb8xasfmbmg37N3W5TsYWdTb6xLCtjwz5oSVAdi6Jxzx6FeBQcQazySrCXnsGZKaT9MXB9i4Lny4AoFAVZtSy6kVExyheF7X5Msvu3:
undefined: 0 ZEN (483ops) (znRqMCYHqs3gQTyVfKcwwLrGaQF53ZUSkug on 44'/121'/1'/0/231) #1 js:2:zencash:xpub6C68jAb8xasfrBmUVvZbdXydhq15bdfePn1qhjb32azt3GkzoqBCQuRaZKPYp9T9uhr7TYCANdXanzeXfXp4qMjw7ijiPPNbBKmGRZRFeoa:
undefined: 0.101329 ZEN (483ops) (znoa4vqSsLgReCMuRHi3sUa4YJiaXhaQCm9 on 44'/121'/2'/0/252) #2 js:2:zencash:xpub6C68jAb8xasfsZCbDtbqPTydFZEHjfzFP75ZQyizidPdLPHNbf41HqQq8RiHMJNuXx71D15Uv9yVpxHkxicSAzKCPVqi1gCKkJTdCN6MK7Q:
undefined: 0.319582 ZEN (487ops) (znmq5coa5611Vets6FaAhjaN5HDp3FZzRff on 44'/121'/3'/0/257) #3 js:2:zencash:xpub6C68jAb8xasfwaE1WeCTh2JhK4KMh64oUaNn2MJCpVdjBmV7cdLhW8xqAfrb8eerM3wtiwMg9sMZkjA62QMH1rMDNbr97uLKNZohEX7c1cq:
undefined: 0 ZEN (0ops) (znm8ELZShHo5gm7aQjcd3qbxT7UF8Mnzyr2 on 44'/121'/4'/0/0) #4 js:2:zencash:xpub6C68jAb8xasfwknWxgLgizrHgqJko7RdnamzFS3DzoKUaA5721xs1HE23NHHqq6LcvmKf43ncaSsz3cEZZpmCrgfK1GhrmDNHkvKfyqpZHF:
undefined: 0.0476209 ETC (159ops) (0x7584df0780C5eB83b26aE55abBc265014f8bf897 on 44'/61'/0'/0/0) #0 js:2:ethereum_classic:0x7584df0780C5eB83b26aE55abBc265014f8bf897:
undefined: 0.0475957 ETC (142ops) (0x62ab4485f7EC0a291540dA31b82BE881166cD786 on 44'/61'/1'/0/0) #1 js:2:ethereum_classic:0x62ab4485f7EC0a291540dA31b82BE881166cD786:
undefined: 0.0476114 ETC (113ops) (0x0b248ABea3Ee9e94C03bc85c37516D16C909875c on 44'/61'/2'/0/0) #2 js:2:ethereum_classic:0x0b248ABea3Ee9e94C03bc85c37516D16C909875c:
undefined: 0.0420533 ETC (140ops) (0x01530f90685821747Eab008Fc217a2411AA6433C on 44'/61'/3'/0/0) #3 js:2:ethereum_classic:0x01530f90685821747Eab008Fc217a2411AA6433C:
undefined: 0.0475946 ETC (131ops) (0xD5fa1a3014A6a24f2C17E532713eb51500AD2bE8 on 44'/61'/4'/0/0) #4 js:2:ethereum_classic:0xD5fa1a3014A6a24f2C17E532713eb51500AD2bE8:
undefined: 0 ETC (0ops) (0x234D2443790764a622430213B6eCcA33272ca575 on 44'/61'/5'/0/0) #5 js:2:ethereum_classic:0x234D2443790764a622430213B6eCcA33272ca575:
undefined: 0 MATIC (352ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:polygon:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00338563 MATIC (315ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:polygon:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.153348 MATIC (315ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:polygon:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0120288 MATIC (348ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:polygon:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 MATIC (303ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:polygon:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0.0635762 MATIC (262ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:polygon:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.512202 MATIC (191ops) (0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E on 44'/60'/6'/0/0) #6 js:2:polygon:0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E:
undefined: 1.18046 MATIC (182ops) (0x48ec5fC762B9300e3B5e04E8ca634165240A1B15 on 44'/60'/7'/0/0) #7 js:2:polygon:0x48ec5fC762B9300e3B5e04E8ca634165240A1B15:
undefined: 16.9488 MATIC (179ops) (0x6434189D6179FB9DE41b392ED67a85C9F63216F6 on 44'/60'/8'/0/0) #8 js:2:polygon:0x6434189D6179FB9DE41b392ED67a85C9F63216F6:
undefined: 0 MATIC (0ops) (0x401C9CcB29d92ee707C6271ea5126aA6c257a37E on 44'/60'/9'/0/0) #9 js:2:polygon:0x401C9CcB29d92ee707C6271ea5126aA6c257a37E:
undefined: 0.00000006 𝚝ETH (141ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00346102 𝚝ETH (175ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00234078 𝚝ETH (160ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:ethereum_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00229781 𝚝ETH (145ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.0000023 𝚝ETH (126ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:ethereum_sepolia:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:ethereum_sepolia:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00072692 𝚝ETH (159ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_holesky:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00001729 𝚝ETH (163ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_holesky:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0182927 𝚝ETH (169ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:ethereum_holesky:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0175738 𝚝ETH (138ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_holesky:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.197642 𝚝ETH (92ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:ethereum_holesky:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:ethereum_holesky:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00087773 ETH (60ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00287598 ETH (63ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00030885 ETH (51ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00135614 ETH (47ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00009378 ETH (39ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:arbitrum:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:arbitrum:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.0415317 𝚝ETH (106ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0157955 𝚝ETH (118ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00003395 𝚝ETH (120ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0000231 𝚝ETH (100ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.933584 𝚝ETH (57ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:arbitrum_sepolia:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:arbitrum_sepolia:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.793924 FLR (486ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:flare:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.804325 FLR (543ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:flare:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.800893 FLR (492ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:flare:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.796164 FLR (535ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:flare:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.804751 FLR (102ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:flare:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 FLR (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:flare:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.000525 SGB (590ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:songbird:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.000525 SGB (578ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:songbird:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.000525 SGB (606ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:songbird:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 489.853 SGB (567ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:songbird:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 447.412 SGB (153ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:songbird:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 SGB (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:songbird:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.002625 GLMR (561ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonbeam:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 12.6244 GLMR (558ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonbeam:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 4.21159 GLMR (497ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonbeam:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 36.3331 GLMR (543ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonbeam:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 6.4998 GLMR (142ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:moonbeam:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 GLMR (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:moonbeam:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00015323 RBTC (210ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:rsk:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 RBTC (210ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:rsk:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00007726 RBTC (199ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:rsk:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00007863 RBTC (175ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:rsk:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 RBTC (0ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:rsk:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 129,106 BTT (487ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:bittorrent:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 690,101 BTT (519ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:bittorrent:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0 BTT (514ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:bittorrent:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0 BTT (438ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:bittorrent:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 672,148 BTT (158ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:bittorrent:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 BTT (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:bittorrent:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00097436 ETH (32ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:optimism:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00095956 ETH (23ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:optimism:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00000939 ETH (34ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:optimism:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00092379 ETH (32ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:optimism:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 ETH (0ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:optimism:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:optimism_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 4.96839 EWT (390ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:energy_web:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.925881 EWT (443ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:energy_web:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.925887 EWT (440ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:energy_web:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0 EWT (441ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:energy_web:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.708273 EWT (156ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:energy_web:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 EWT (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:energy_web:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 30.7314 ASTR (502ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:astar:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0122929 ASTR (503ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:astar:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 30.7774 ASTR (489ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:astar:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 10.2944 ASTR (420ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:astar:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 256.258 ASTR (128ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:astar:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 ASTR (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:astar:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.0351452 METIS (457ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:metis:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 METIS (423ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:metis:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0131161 METIS (466ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:metis:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0 METIS (460ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:metis:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.101312 METIS (162ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:metis:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 METIS (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:metis:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 1.11817 MOVR (422ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonriver:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.55911 MOVR (462ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonriver:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00002625 MOVR (478ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonriver:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.559104 MOVR (433ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonriver:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00002625 MOVR (147ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:moonriver:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 MOVR (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:moonriver:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0 VLX (100ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:velas_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 384.756 VLX (102ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:velas_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 142.502 VLX (101ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:velas_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0 VLX (100ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:velas_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 384.756 VLX (103ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:velas_evm:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 VLX (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:velas_evm:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.745167 SYS (488ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:syscoin:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 SYS (480ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:syscoin:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 3.31426 SYS (452ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:syscoin:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 23.9449 SYS (146ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:syscoin:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 29.0718 SYS (420ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:syscoin:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 SYS (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:syscoin:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00079068 ETH (69ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:base:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00080929 ETH (74ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:base:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00061445 ETH (52ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:base:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00047849 ETH (54ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:base:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 ETH (0ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:base:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (102ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:base_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0360047 𝚝ETH (111ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:base_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0288643 𝚝ETH (111ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:base_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0359987 𝚝ETH (94ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:base_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.889171 𝚝ETH (75ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:base_sepolia:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:base_sepolia:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 1.90456 KLAY (46ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:klaytn:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 1.6296 KLAY (44ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:klaytn:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 1.00473 KLAY (43ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:klaytn:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00105 KLAY (37ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:klaytn:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 4.28417 KLAY (37ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:klaytn:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 KLAY (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:klaytn:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00322362 NEON (200ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:neon_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00485752 NEON (211ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:neon_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 7.25455 NEON (199ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:neon_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 4.11104 NEON (208ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:neon_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 4.76836 NEON (184ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:neon_evm:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 NEON (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:neon_evm:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.230815 LYX (156ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:lukso:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00000818 LYX (211ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:lukso:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.137373 LYX (193ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:lukso:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.122689 LYX (191ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:lukso:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00001305 LYX (142ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:lukso:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 LYX (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:lukso:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00316594 ETH (107ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:linea:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00059115 ETH (118ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:linea:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00183973 ETH (148ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:linea:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00124847 ETH (122ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:linea:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 ETH (110ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:linea:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:linea:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:linea_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:scroll:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:scroll_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.444537 NEAR (66ops) (0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf on 44'/397'/0'/0'/0') nearbip44h#0 js:2:near:0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf:nearbip44h
undefined: 0.0519615 NEAR (20ops) (85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798 on 44'/397'/0'/0'/1') nearbip44h#1 js:2:near:85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798:nearbip44h
undefined: 0.052023 NEAR (28ops) (3cb1e394cc2cdc8923b410dd4d972959f14fd1c0f741e38607db1a3f27a35d65 on 44'/397'/0'/0'/2') nearbip44h#2 js:2:near:3cb1e394cc2cdc8923b410dd4d972959f14fd1c0f741e38607db1a3f27a35d65:nearbip44h
undefined: 0.0518366 NEAR (18ops) (cd21c9f87afdf5bdc49cfb9eb36a21cacdd7f5ce182cf98d0b48a5e9a875398e on 44'/397'/0'/0'/3') nearbip44h#3 js:2:near:cd21c9f87afdf5bdc49cfb9eb36a21cacdd7f5ce182cf98d0b48a5e9a875398e:nearbip44h
undefined: 0.0520869 NEAR (22ops) (aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93 on 44'/397'/0'/0'/4') nearbip44h#4 js:2:near:aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93:nearbip44h
undefined: 0.0524967 NEAR (32ops) (07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce on 44'/397'/0'/0'/5') nearbip44h#5 js:2:near:07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce:nearbip44h
undefined: 0.0519883 NEAR (18ops) (bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7 on 44'/397'/0'/0'/6') nearbip44h#6 js:2:near:bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7:nearbip44h
undefined: 0.445089 NEAR (9ops) (e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2 on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2:nearbip44h
undefined: 0.0521184 NEAR (13ops) (f6c2b6371dd3f335422ea179661698a1e0db6b9cc890e7fe43b669c9f7f16f43 on 44'/397'/0'/0'/8') nearbip44h#8 js:2:near:f6c2b6371dd3f335422ea179661698a1e0db6b9cc890e7fe43b669c9f7f16f43:nearbip44h
undefined: 0 NEAR (0ops) (fe690bacc672f4ac406416f197571c8e520523112949394d18fc137871f13c2f on 44'/397'/0'/0'/9') nearbip44h#9 js:2:near:fe690bacc672f4ac406416f197571c8e520523112949394d18fc137871f13c2f:nearbip44h
undefined: 0 NEAR (0ops) (18e7e0394281c32f1247969729a703866d69008f8845a89f746da3e75970518f on 44'/397'/0'/0'/10') nearbip44h#10 js:2:near:18e7e0394281c32f1247969729a703866d69008f8845a89f746da3e75970518f:nearbip44h
undefined: 5.28869 XTZ (152ops) (tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF on 44'/1729'/0'/0') tezbox#0 js:2:tezos:0240051fc51799e60dcc8870415b87fc4fd948e71b23fdc0d9b8ac7438cf7d4708:tezbox
undefined: 0 XTZ (4ops) (tz1he4fPXP3c9fFrztYT3k7KyYuLb28arFNn on 44'/1729'/1'/0') tezbox#1 js:2:tezos:02fe3d777af5380ef0a431c4985772c9669743050cee5feff717c3c3272d7a2810:tezbox
undefined: 0 XTZ (0ops) (tz1SApkt3kmMaqNE1qtgADc6m3B49HZkFVDA on 44'/1729'/2'/0') tezbox#2 js:2:tezos:029d7bcf10737806147b22ba4578747ce4ac53e26b443c9eb1ac0e4d5bfbb8f67e:tezbox
undefined: 11.4443 XRP (202ops) (r9etPtq3oboweMPju5gdYufmvwhH2euz8z on 44'/144'/0'/0/0) #0 js:2:ripple:r9etPtq3oboweMPju5gdYufmvwhH2euz8z:
undefined: 10.7231 XRP (202ops) (rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH on 44'/144'/1'/0/0) #1 js:2:ripple:rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH:
undefined: 21.8374 XRP (200ops) (rMoFGec38toFg9ncbi9YbrYYmrP3G5exqn on 44'/144'/2'/0/0) #2 js:2:ripple:rMoFGec38toFg9ncbi9YbrYYmrP3G5exqn:
undefined: 0 XRP (0ops) (rrnxW3THwB1ubsE9V78Lek6V1XYnNrodxC on 44'/144'/3'/0/0) #3 js:2:ripple:rrnxW3THwB1ubsE9V78Lek6V1XYnNrodxC:
Performance ⏲ 53min 10s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 11.6s 29min 51s 15s 2min 9s 13min 16s 94.1s 45min 51s 26min 50s
Casper (7) 0.33ms 31.5s 4.54ms 10ms N/A N/A N/A N/A
Celo (11) 929ms 45.1s 5.2s 8.2s 24.6s 31.3s 98.8s N/A
osmosis (17) 288ms 19.9s 24ms 1943ms 27s 311ms 52.1s 30.9s
desmos (17) 268ms 26.2s 20ms 1497ms 21.8s 346ms 4.52ms N/A
dydx (17) 891ms 37s 4.47ms N/A N/A N/A N/A N/A
umee (17) 235ms 22.2s 19ms 2762ms 34.8s 368ms 9ms N/A
persistence (17) 1713ms 72.1s 12ms 11.8s 27.7s 1478ms 1.33ms N/A
quicksilver (17) 423ms 40.3s 30ms 1938ms 31.3s 310ms 2.13ms N/A
onomy (17) 1077ms 42.2s 13ms 6.6s 37.9s 1090ms 1.88ms N/A
sei_network (15) 165ms 17.3s 3.85ms N/A N/A N/A N/A N/A
stargaze (17) 244ms 15.8s 24ms 2069ms 27.8s 338ms 1.23ms N/A
coreum (17) 320ms 29.9s 18ms 2113ms 22.1s 1597ms 1.27ms N/A
injective (0) N/A N/A N/A N/A N/A N/A N/A N/A
Crypto org (6) 0.66ms 21s 1.23ms 3.17ms N/A N/A N/A N/A
Elrond (7) 290ms 61s 7ms 4.01ms 4.9s 289ms 12.7s 13.4s
Hedera (5) 0.39ms 38s 11ms 730ms 25.8s 1758ms 41.6s 51.6s
InternetComputer (7) 0.47ms 9.4s 4.16ms 3.7s 7.3s 1335ms 21.5s 21.3s
Stacks (6) 1.38ms 46.2s 3.4s 5.3s 8.1s 889ms N/A N/A
Stellar (5) 0.73ms 1min 46s 2300ms 3.6s 22.1s 23.6s 32.4s N/A
VeChain VTHO (3) 0.72ms 8.4s 1.74ms 1116ms N/A N/A N/A N/A
VeChain VET (3) 0.14ms 8.4s 0.64ms N/A N/A N/A N/A N/A
Algorand (5) 0.87ms 66s 12ms 1629ms 29.2s 238ms 20.4s 20.5s
Bitcoin Testnet (9) 0.58ms 65.4s 3.31ms N/A N/A N/A N/A N/A
Bitcoin Cash (6) 0.32ms 27.4s 15ms 1083ms 39.9s 850ms 55.4s 56.7s
Bitcoin Gold (4) 0.33ms 23.5s 1.03ms 772ms 23.2s 770ms 35.1s 34.9s
Dash (6) 0.70ms 19s 7ms 969ms 29.9s 517ms 57.6s 56.4s
Digibyte (6) 0.36ms 21.5s 1.96ms 894ms 27.3s 884ms 76.7s 68.9s
DogeCoin (6) 0.19ms 16.4s 8ms 828ms 19.8s 742ms 43.5s 44.4s
Komodo (4) 0.18ms 9.4s 13ms 836ms 19.5s 1066ms 44.2s 44.4s
Litecoin (6) 0.23ms 18.5s 3.10ms 848ms 28.3s 522ms 67.1s 57.7s
Peercoin (0) 0.23ms N/A N/A N/A N/A N/A N/A N/A
PivX (4) 0.29ms 15.3s 0.95ms 622ms 21.3s 983ms 56.4s 37.5s
Vertcoin (4) 0.31ms 20.6s 1.29ms 810ms 18.5s 945ms 47s 37.6s
Viacoin (4) 0.21ms 17.4s 1970ms 922ms 13.6s 676ms 47.2s 5min 18s
ZCash (4) 0.65ms 6.1s 1.71ms N/A N/A N/A N/A N/A
Horizen (4) 0.19ms 12.8s 1012ms 342ms 12.2s 115ms 11.3s 11s
Ethereum Classic (5) 56ms 16.3s 13ms N/A N/A N/A N/A N/A
Polygon (9) 108ms 25.8s 21ms 2760ms 10.3s 1092ms 31.6s 30.7s
Ethereum Sepolia (5) 63ms 7.1s 19ms 4s 11.9s 332ms 61.4s 30.9s
Ethereum Holesky (5) 24ms 6.3s 21ms 3.9s 12.3s 239ms 41.3s 30.7s
Arbitrum (5) 162ms 89.7s 10ms 2854ms 6.6s 999ms 41.9s 36.8s
Arbitrum Sepolia (5) 54ms 6.9s 6ms 3.9s 10.3s 2303ms 32s 31.9s
Flare (5) 26ms 8.5s 2.85ms N/A N/A N/A N/A N/A
Songbird (5) 26ms 5.8s 14ms 1546ms 8.8s 429ms 31.5s 31.6s
Moonbeam (5) 44ms 94.4s 24ms 1185ms 8.6s 421ms 1min 54s 62.6s
RSK (4) 42ms 5.8s 4.73ms N/A N/A N/A N/A N/A
Bittorent Chain (5) 39ms 6.4s 16ms 1481ms 8.9s 470ms 42.3s 32.3s
OP Mainnet (4) 68ms 77.3s 0.91ms N/A N/A N/A N/A N/A
OP Sepolia (0) 63ms 1416ms N/A N/A N/A N/A N/A N/A
Energy Web (5) 48ms 6.6s 8ms 3.4s 6.7s 853ms 31.1s 21.2s
Astar (5) 42ms 10.9s 27ms 7.8s 9.8s 1659ms 4min 37s 33.4s
Metis (5) 45ms 8.7s 11ms 765ms 8s 919ms 34.5s 34.5s
Moonriver (5) 28ms 94.5s 19ms 2192ms 9.5s 780ms 2min 11s 63.4s
Velas EVM (5) 45ms 5s 8ms 1834ms 8.7s 4.5s 71.9s 31.7s
Syscoin (5) 54ms 4.6s 542ms 955ms 10.7s 292ms 11min 31s 20.8s
Polygon zkEVM Testnet (0) 48ms N/A N/A N/A N/A N/A N/A N/A
Base (4) 83ms 78.6s 0.93ms N/A N/A N/A N/A N/A
Base Sepolia (5) 78ms 5.6s 10ms 2807ms 9.7s 722ms 31.7s 31.7s
Klaytn (5) 42ms 10.7s 22ms 6.7s 10.5s 1886ms 34.2s 33.8s
Neon EVM (5) 34ms 10.3s 10ms 5.9s 10.8s 1200ms 45.5s 35.6s
Lukso (5) 29ms 3.7s 10ms 601ms 10s 200ms 1min 41s 30.8s
Linea (5) 44ms 90.5s 4.81ms 3.4s 9.6s 1030ms 62.8s 57.6s
Linea Sepolia (0) 38ms 12.3s N/A N/A N/A N/A N/A N/A
Blast (0) 51ms 11.6s N/A N/A N/A N/A N/A N/A
Blast Sepolia (0) 52ms 1683ms N/A N/A N/A N/A N/A N/A
Scroll (0) 70ms 1360ms N/A N/A N/A N/A N/A N/A
Scroll Sepolia (0) 59ms 2439ms N/A N/A N/A N/A N/A N/A
NEAR (9) 1475ms 29.8s 2.46ms 789ms N/A N/A N/A N/A
Solana (0) 784ms N/A N/A N/A N/A N/A N/A N/A
Tezos (2) 850ms 6.7s 0.49ms 973ms N/A N/A N/A N/A
XRP (3) 0.58ms 5.7s 9ms 5.7s 8.2s 468ms 22.4s 22.3s

What is the bot and how does it work? Everything is documented here!

Please sign in to comment.