Skip to content

Commit

Permalink
Merge pull request #9022 from LedgerHQ/support/qaa_428_llm_speculos_s…
Browse files Browse the repository at this point in the history
…end_test_2

[QAA-428][Detox][Speculos] Add more send tests
  • Loading branch information
ypolishchuk-ledger authored Feb 3, 2025
2 parents 22714d2 + 3dcbc96 commit 7a94bdf
Show file tree
Hide file tree
Showing 58 changed files with 633 additions and 71 deletions.
7 changes: 6 additions & 1 deletion apps/ledger-live-mobile/e2e/bridge/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import { MessageData, ServerData, mockDeviceEventSubject } from "./types";
import { getAllEnvs, setEnv } from "@ledgerhq/live-env";
import { getAllFeatureFlags } from "@ledgerhq/live-common/e2e/index";
import { DeviceModelId } from "@ledgerhq/devices";
import Config from "react-native-config";

export const e2eBridgeClient = new Subject<MessageData>();

Expand All @@ -29,7 +30,11 @@ export function init() {

log(`[E2E Bridge Client]: wsPort=${wsPort}, mock=${mock}`);

if (mock == "0") setEnv("MOCK", "");
if (mock == "0") {
setEnv("MOCK", "");
setEnv("MOCK_COUNTERVALUES", "");
Config.MOCK = "";
}
setEnv("DISABLE_TRANSACTION_BROADCAST", disable_broadcast != "0");

if (ws) {
Expand Down
22 changes: 19 additions & 3 deletions apps/ledger-live-mobile/e2e/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,24 @@ const MAX_PORT = 65535;
let portCounter = BASE_PORT; // Counter for generating unique ports
const speculosDevices: [number, SpeculosDevice][] = [];

export function setupEnvironment() {
setEnv("DISABLE_APP_VERSION_REQUIREMENTS", true);

if (process.env.MOCK == "0") {
setEnv("MOCK", "");
process.env.MOCK = "";
} else {
setEnv("MOCK", "1");
process.env.MOCK = "1";
}

if (process.env.DISABLE_TRANSACTION_BROADCAST == "0") {
setEnv("DISABLE_TRANSACTION_BROADCAST", false);
} else if (getEnv("MOCK") != "1") {
setEnv("DISABLE_TRANSACTION_BROADCAST", true);
}
}

function sync_delay(ms: number) {
const done = new Int32Array(new SharedArrayBuffer(4));
Atomics.wait(done, 0, 0, ms); // Wait for the specified duration
Expand Down Expand Up @@ -191,9 +209,7 @@ export async function launchApp() {
detoxURLBlacklistRegex:
'\\(".*sdk.*.braze.*",".*.googleapis.com/.*",".*clients3.google.com.*",".*tron.coin.ledger.com/wallet/getBrokerage.*"\\)',
mock: getEnv("MOCK") ? getEnv("MOCK") : "0",
disable_broadcast: getEnv("DISABLE_TRANSACTION_BROADCAST")
? getEnv("DISABLE_TRANSACTION_BROADCAST")
: "1",
disable_broadcast: getEnv("DISABLE_TRANSACTION_BROADCAST") ? 1 : 0,
},
languageAndLocale: {
language: "en-US",
Expand Down
4 changes: 3 additions & 1 deletion apps/ledger-live-mobile/e2e/jest.globalTeardown.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@ const detoxGlobalTeardown = require("detox/runners/jest/globalTeardown");
import { promises as fs } from "fs";
import { getEnvs, getFlags, loadConfig } from "./bridge/server";
import { formatFlagsData, formatEnvData } from "@ledgerhq/live-common/e2e/index";
import { launchApp, waitForElementById } from "./helpers";
import { launchApp, setupEnvironment, waitForElementById } from "./helpers";
import detox from "detox/internals";
import { close as closeBridge } from "./bridge/server";

const environmentFilePath = "artifacts/environment.properties";
const shouldManageDetox = detox.getStatus() === "inactive";

setupEnvironment();

export default async () => {
if (process.env.CI) {
try {
Expand Down
5 changes: 5 additions & 0 deletions apps/ledger-live-mobile/e2e/models/send.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export async function verifyAppValidationSendInfo(
const currency = transaction.accountToCredit.currency;
const addressRecipient = transaction.accountToCredit.address;
const addressSender = transaction.accountToDebit.address;
const ensName = transaction.accountToCredit.ensName;

await app.deviceValidation.expectDeviceValidationScreen();

Expand All @@ -42,4 +43,8 @@ export async function verifyAppValidationSendInfo(
if (currenciesForValidationSender.includes(currency)) {
await app.deviceValidation.expectAddress(addressSender);
}

if (ensName) {
await app.send.expectValidationEnsName(ensName);
}
}
101 changes: 95 additions & 6 deletions apps/ledger-live-mobile/e2e/page/trade/send.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,30 @@ import {
typeTextById,
tapByElement,
IsIdVisible,
getTextOfElement,
} from "../../helpers";
import { expect } from "detox";
import jestExpect from "expect";

const baseLink = "send";

export default class SendPage {
summaryAmount = () => getElementById("send-summary-amount");
summaryAmountId = "send-summary-amount";
summaryRecipient = () => getElementById("send-summary-recipient");
summaryRecipientEns = () => getElementById("send-summary-recipient-ens");
validationAmountId = "send-validation-amount";
validationAddressId = "send-validation-address";
validationEnsId = "send-validation-domain";
getStep1HeaderTitle = () => getElementById("send-header-step1-title");
recipientContinueButtonId = "recipient-continue-button";
recipientInputId = "recipient-input";
recipientErrorId = "send-recipient-error";
amountInputId = "amount-input";
amountErrorId = "send-amount-error";
amountMaxSwitch = () => getElementById("send-amount-max-switch");
amountContinueButton = () => getElementById("amount-continue-button");
summaryErrorId = "insufficient-fee-error";
summaryWarning = () => getElementById("send-summary-warning");
summaryContinueButton = () => getElementById("summary-continue-button");
highFreeConfirmButtonID = "confirmation-modal-confirm-button";

Expand All @@ -45,22 +56,54 @@ export default class SendPage {
await tapById(this.recipientContinueButtonId);
}

@Step("Expect recipient error message")
async expectSendRecipientError(errorMessage: string) {
if (errorMessage) await expect(getElementById(this.recipientErrorId)).toHaveText(errorMessage);
else await expect(getElementById(this.recipientErrorId)).not.toBeVisible();
await expect(getElementById(this.recipientContinueButtonId)).not.toBeVisible();
}

@Step("Expect recipient step success")
async expectSendRecipientSuccess(expectedWarningMessage?: string) {
if (!expectedWarningMessage)
await expect(getElementById(this.recipientErrorId)).not.toBeVisible();
else await expect(getElementById(this.recipientErrorId)).toHaveText(expectedWarningMessage);
await expect(getElementById(this.recipientContinueButtonId)).toBeVisible();
}

@Step("Set recipient and continue")
async setRecipientAndContinue(address: string) {
await this.setRecipient(address);
await this.recipientContinue();
}

@Step("Set the amount and return the value")
async setAmount(amount: string) {
const element = getElementById(this.amountInputId);
await element.replaceText(amount);
await element.tapReturnKey();
if (amount === "max") await tapByElement(this.amountMaxSwitch());
else {
const element = getElementById(this.amountInputId);
await element.replaceText(amount);
await element.tapReturnKey();
}
return await getTextOfElement(this.amountInputId);
}

async amountContinue() {
await tapByElement(this.amountContinueButton());
}

@Step("Expect amount step success")
async expectSendAmountSuccess() {
await expect(getElementById(this.amountErrorId)).toHaveText("");
await expect(this.amountContinueButton()).toBeVisible();
}

@Step("Expect amount error message")
async expectSendAmountError(errorMessage: string) {
await expect(getElementById(this.amountErrorId)).toHaveText(errorMessage);
await expect(this.amountContinueButton()).not.toBeVisible();
}

@Step("Set amount and continue")
async setAmountAndContinue(amount: string) {
await this.setAmount(amount);
Expand All @@ -73,17 +116,63 @@ export default class SendPage {

@Step("Expect amount in summary")
async expectSummaryAmount(amount: string) {
await expect(this.summaryAmount()).toHaveText(amount);
await expect(getElementById(this.summaryAmountId)).toHaveText(amount);
}

@Step("Expect max amount is within range in summary")
async expectSummaryMaxAmount(amount: string, tolerance = 0.00005) {
const summaryAmount = parseFloat(
(await getTextOfElement(this.summaryAmountId)).replace(/[^\d.-]/g, ""),
);
const expectedAmount = parseFloat(amount);
// Check if the actual amount is within the tolerance range
jestExpect(summaryAmount).toBeGreaterThanOrEqual(expectedAmount - tolerance);
jestExpect(summaryAmount).toBeLessThanOrEqual(expectedAmount + tolerance);
}

@Step("Expect recipient in summary")
async expectSummaryRecepient(recipient: string) {
async expectSummaryRecipient(recipient: string) {
await expect(this.summaryRecipient()).toHaveText(recipient);
}

@Step("Expect error in summary")
async expectSendSummaryError(errorMessage: RegExp) {
const error = await getTextOfElement(this.summaryErrorId);
jestExpect(error).toMatch(errorMessage);
await expect(this.summaryContinueButton()).not.toBeVisible();
}

@Step("Expect warning in summary")
async expectSummaryWarning(warningMessage: string) {
await expect(this.summaryWarning()).toHaveText(warningMessage);
}

@Step("Expect recipient ENS in summary")
async expectSummaryRecipientEns(ensName: string) {
await expect(this.summaryRecipientEns()).toHaveText(ensName);
}

@Step("Dismiss high fee modal if visible")
async dismissHighFeeModal() {
if (await IsIdVisible(this.highFreeConfirmButtonID))
await tapById(this.highFreeConfirmButtonID);
}

@Step("Expect amount in device validation screen")
async expectValidationAmount(amount: string) {
await waitForElementById(this.validationAmountId);
await expect(getElementById(this.validationAmountId)).toHaveText(amount);
}

@Step("Expect address in device validation screen")
async expectValidationAddress(recipient: string) {
await waitForElementById(this.validationAddressId);
await expect(getElementById(this.validationAddressId)).toHaveText(recipient);
}

@Step("Expect ENS name in device validation screen")
async expectValidationEnsName(ensName: string) {
await waitForElementById(this.validationEnsId);
await expect(getElementById(this.validationEnsId)).toHaveText(ensName);
}
}
16 changes: 5 additions & 11 deletions apps/ledger-live-mobile/e2e/setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,19 @@ import fs from "fs";
import { getState } from "expect";
import { MatcherState } from "expect";
import { format } from "date-fns";
import { launchApp, deleteSpeculos } from "./helpers";
import { launchApp, deleteSpeculos, setupEnvironment } from "./helpers";
import { closeProxy } from "./bridge/proxy";
import { setEnv } from "@ledgerhq/live-env";
import { getEnv, setEnv } from "@ledgerhq/live-env";

const currentDate = new Date();
const date = format(currentDate, "MM-dd");
const directoryPath = `artifacts/${date}_LLM`;
const broadcastOriginalValue = getEnv("DISABLE_TRANSACTION_BROADCAST");

if (process.env.MOCK == "0") {
setEnv("MOCK", "");
process.env.MOCK = "";
} else {
setEnv("MOCK", "1");
process.env.MOCK = "1";
}
setupEnvironment();

beforeAll(
async () => {
setEnv("DISABLE_APP_VERSION_REQUIREMENTS", true);

const port = await launchApp();
await device.reverseTcpPort(8081);
await device.reverseTcpPort(port);
Expand All @@ -37,6 +30,7 @@ afterEach(async () => {
});

afterAll(async () => {
setEnv("DISABLE_TRANSACTION_BROADCAST", broadcastOriginalValue);
serverBridge.close();
closeProxy();
await deleteSpeculos();
Expand Down
6 changes: 3 additions & 3 deletions apps/ledger-live-mobile/e2e/specs/speculos/deeplinks.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ const nanoApp = AppInfos.ETHEREUM;

const ethereumLong = "ethereum";
const bitcoinLong = "bitcoin";
const arbitrumLong = "arbitrum";
const bobaLong = "boba";
const zksync = "zksync";
const scroll = "scroll";

$TmsLink("B2CQA-1837");
describe("DeepLinks Tests", () => {
Expand Down Expand Up @@ -97,6 +97,6 @@ describe("DeepLinks Tests", () => {
await app.portfolio.openViaDeeplink();
await app.portfolio.waitForPortfolioPageToLoad();
await app.receive.receiveViaDeeplink(ethereumLong);
await app.receive.expectSecondStepNetworks([ethereumLong, arbitrumLong, bobaLong]);
await app.receive.expectSecondStepNetworks([ethereumLong, zksync, scroll]);
});
});
Loading

1 comment on commit 7a94bdf

@github-actions
Copy link
Contributor

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' ✅ 60 txs ❌ 12 txs 💰 21 miss funds ($536.70) ⏲ 18min 51s

✅ 38 specs are successful: Celo, Algorand, Bitcoin Gold, Dash, Digibyte, Komodo, Litecoin, osmosis, umee, persistence, quicksilver, onomy, stargaze, coreum, mantra, crypto_org, zenrock, Elrond, Polygon, Ethereum Holesky, Arbitrum, Arbitrum Sepolia, Songbird, Moonbeam, Bittorent Chain, Energy Web, Astar, Metis, Moonriver, Velas EVM, Syscoin, Base Sepolia, Lukso, Linea, Hedera, InternetComputer, Stellar, XRP
❌ 9 specs have problems: Bitcoin Cash, Horizen, desmos, Blast, Blast Sepolia, Icon, NEAR, Tezos, TON
💰 21 specs may miss funds: Bitcoin Testnet, DogeCoin, ZCash, dydx, sei_network, xion, Ethereum Classic, Ethereum Sepolia, Flare, Rootstock, OP Mainnet, OP Sepolia, Neon EVM, Linea Sepolia, Scroll, Scroll Sepolia, Etherlink, ZKsync, ZKsync Sepolia, VeChain VTHO, VeChain VET

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

7 critical spec errors

Spec Casper failed!

Error: speculos process failure. 

Spec Aptos failed!

Error: speculos process failure. readall: connection closed

Spec injective failed!

Error: "Error during injective synchronization: "API HTTP 429 https://injective-api.polkachu.com/cosmos/bank/v1beta1/balances/inj1vzjwweta3hegt99vfgrvmcq7rr5532yjsgxd4a

Spec Polygon zkEVM Testnet failed!

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

Spec Klaytn failed!

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

Spec Solana failed!

Error: scan accounts timeout for currency Solana

Spec Stacks failed!

Error: speculos process failure. vnc_server: readall: connection closed

❌ 12 mutation errors
necessary accounts resynced in 0.19ms
▬ BitcoinCash 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 0.00093072 BCH (855ops) (bitcoincash:qrfuumty4cw2w5d8626a3h8lkx4p4209qyjdk6vjg9 on 44'/145'/0'/0/423) #0 js:2:bitcoin_cash:xpub6CYDTh442n9QYTMdQ7Uc7XDC2zCzZ5jM1m1DrWxmfQMToP2ngWZVtptKiksRoGgdcRSLDC6PgEULihbZE3SDt4ndVzoRNUEoZeTCsBUAWWP:
4 UTXOs
0.00035267   bitcoincash:qqpvldwd600npnadkyzrhhyy50h54lufxqt7sgkl55 (change) 8c6f25253baf9e0758e1dee877b757eace237f8294fe92c4bb6bcaf33abf7be8 @1 (366)
0.00026068   bitcoincash:qq6gyp08skpc5ehypafprrw8v2a0xflm0s4ee3j5u2 (change) rbf 2a87c740f7c2d002caf72912d9f1d2d6b199c99233f2b3dede9f48585d02396b @1 (668)
0.00016737   bitcoincash:qqxn3et3fn53hwmg2aqwkjp6qp5ks5svsyrvgautwn (change) d46276a43455690504719de577f478fa6d305ed067ae1132f847c7ae67fd768c @1 (516)
0.00015      bitcoincash:qqp902dx65k2tn6m7u5lzlyhz28l6s74fqf77n2zhd c5594c2ad584060fc32c4b1f620481fa50f4dbf419250c294a298e9b0c0a50e3 @1 (366)

max spendable ~0.000918
★ using mutation 'send OP_RETURN transaction'
→ TO undefined: 0 BCH (820ops) (bitcoincash:qrgu29e3xrvadw4jls9w0zue9phv7468mucv7mk6m7 on 44'/145'/1'/0/414) #1 js:2:bitcoin_cash:xpub6CYDTh442n9QaLF3Z2i5L9QENTixN9kGH5XCYh2J5UTHuu99Y2W1sxm2HcX9sQUe2xmv4r3GVmn8GdTvCsLEof448VdZEmdpfmzX7Dk3AJx:
✔️ transaction 
SEND 0.00015 BCH
TO bitcoincash:qrgu29e3xrvadw4jls9w0zue9phv7468mucv7mk6m7
with feePerByte=2 (network fees: 0=3, 1=2, 2=1)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (215ms)
TX INPUTS (1):
0.00026068   qq6gyp08skpc5ehypafprrw8v2a0xflm0s4ee3j5u2 2a87c740f7c2d002caf72912d9f1d2d6b199c99233f2b3dede9f48585d02396b@1
TX OUTPUTS (3):
0            @0 (0)
0.00015      qrgu29e3xrvadw4jls9w0zue9phv7468mucv7mk6m7 @1 (0)
0.00010564   qrjwzrp39etlufd5qqthdxpse6yzrdt8tsptem95dq (change) @2 (0)
  amount: 0.00015 BCH
  estimated fees: 0.00000504 BCH
  total spent: 0.00015504 BCH
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Address'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Address": "bitcoincash:qrgu29e3xrvadw4jls9w0zue9phv7468mucv7mk6m7",
+   "Address": "qrgu29e3xrvadw4jls9w0zue9phv7468mucv7mk6m7",
  }
(totally spent 8.7s – ends at 2025-02-03T17:03:42.434Z)
necessary accounts resynced in 0.12ms
▬ Horizen 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 0.186901 ZEN (705ops) (znYKaquWQY6q4rocGv4tWJbbVB4WzKKXHSg on 44'/121'/0'/0/323) #0 js:2:zencash:xpub6C68jAb8xasfmbmg37N3W5TsYWdTb6xLCtjwz5oSVAdi6Jxzx6FeBQcQazySrCXnsGZKaT9MXB9i4Lny4AoFAVZtSy6kVExyheF7X5Msvu3:
4 UTXOs
0.0681495    znp7Z4MxkypD2aD6fAP8XUixgqhvLTmgTN8 a6f70bb47a33f7b776aa88f89fb39a83d3048215e15f271c6781b644816c828d @0 (1713)
0.0431217    znZg6CYHWANNq6haNXodYfaypHSEoxxPKQE 85bbd78620aafe71d1ce1aebe9814b59ecc6c6cd0c595a9aa45faf05efc6b3e5 @0 (2853)
0.0413411    znbp5kzRMxYxifUHTrmoM7sRtf5vvTqAH2Z (change) rbf e96af901bd2921c81bd8e429921be2731625fa977eed9ae947dc55e1d9b398b2 @1 (2853)
0.0342887    znjcp95FixGJpjN2oNSbZVf1oxousjhH5kd b0a954be6d0d669d204cb3df8705930a3b21b54e27529165187761f2b2cde7b9 @0 (2853)

max spendable ~0.186888
★ using mutation 'send OP_RETURN transaction'
→ TO undefined: 0.127317 ZEN (680ops) (znjnThPwNBi3kVX6RxvikH8x4LzGKNSYsQQ on 44'/121'/3'/0/358) #3 js:2:zencash:xpub6C68jAb8xasfwaE1WeCTh2JhK4KMh64oUaNn2MJCpVdjBmV7cdLhW8xqAfrb8eerM3wtiwMg9sMZkjA62QMH1rMDNbr97uLKNZohEX7c1cq:
✔️ transaction 
SEND 0.01 ZEN
TO znjnThPwNBi3kVX6RxvikH8x4LzGKNSYsQQ
with feePerByte=2 (network fees: 0=3, 1=2, 2=1)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (77ms)
TX INPUTS (1):
0.0413411    znbp5kzRMxYxifUHTrmoM7sRtf5vvTqAH2Z e96af901bd2921c81bd8e429921be2731625fa977eed9ae947dc55e1d9b398b2@1
TX OUTPUTS (3):
0            @0 (0)
0.01         znjnThPwNBi3kVX6RxvikH8x4LzGKNSYsQQ @1 (0)
0.0313353    znavrfGJuC8kiD8GBAVF8ZyosSNE9QMaTNE (change) @2 (0)
  amount: 0.01 ZEN
  estimated fees: 0.0000058 ZEN
  total spent: 0.0100058 ZEN
errors: 
warnings: 
⚠️ TransportStatusError: Ledger device: Invalid data received (0x6a80)
(totally spent 4.2s – ends at 2025-02-03T17:03:42.438Z)
necessary accounts resynced in 0.36ms
▬ Cosmos 2.36.1 on nanoS 2.1.0
→ FROM undefined: 0.085975 DSM (29ops) (desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur on 44'/118'/1'/0/0) #1 js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur: (! sum of ops 0.085434 DSM) 0.0839 DSM spendable. 0.002075 DSM delegated. 
DELEGATIONS
  to desmosvaloper1r75t9axgvcj6zxnn050n4r2tg3manmvy6n7908 0.002075 DSM  (claimable 0.002075)

max spendable ~0.083575
★ using mutation 'send some'
→ TO undefined: 0 DSM (12ops) (desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454 on 44'/118'/0'/0/0) #0 js:2:desmos:desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454:
✔️ transaction 
SEND  0.033711 DSM
TO desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454

with fees=0.000325
STATUS (8.1s)
  amount: 0.033711 DSM
  estimated fees: 0.000325 DSM
  total spent: 0.034036 DSM
errors: 
warnings: 
✔️ has been signed! (13.1s) {"operation":{"id":"js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:--OUT","hash":"","type":"OUT","senders":["desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur"],"recipients":["desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454"],"accountId":"js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:","blockHash":null,"blockHeight":null,"extra":{},"date":"2025-02-03T16:49:48.299Z","value":"34036","fee":"325","transactionSequenceNumber":129},"signature":"0a90010a8d010a1c2f636f736d6f732e62616e6b2e763162657461312e4d736753656e64126d0a2d6465736d6f73317176746e7a70747033306d617a6e6e6864673330786c326a746471327368706e6e7967787572122d6465736d6f7331727339376a34336e667976633638397935726a766e6e687271337465733667683079393435341a0d0a047564736d1205333337313112660a510a460a1f2f636f736d6f732e63727970746f2e736563703235366b312e5075624b657912230a2103bbdd0faa68724918e242ad33b2cbb8747bdf245b4db9bded5c52601699a714af12040a02087f18810112110a0b0a047564736d120333323510d0f7071a40a4d52064c887a50bd2468b7682f8f3c83813a26a31a99208df300776bbf6fc981220eb83b1269c5ce432851357252330a62ee30ad2b7e8c5baa38474afb95c76"}
⚠️ TEST during broadcast
LedgerAPI4xx: must declare at least one event to search
(totally spent 21.9s – ends at 2025-02-03T17:03:42.442Z)
necessary accounts resynced in 0.23ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00112981 ETH (98ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892: (! sum of ops -0.001290851784615595 ETH)  TokenAccount PacMoon: 89.668802350444586624 PAC (27 ops) (! sum of ops 89.636783209228456048 PAC)
max spendable ~0.0011295
★ using mutation 'move 50%'
→ TO undefined: 0.00433618 ETH (82ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:blast:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
✔️ transaction 
SEND  0.0005647532457252 ETH
TO 0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9
STATUS (180ms)
  amount: 0.0005647532457252 ETH
  estimated fees: 0.000000121696239 ETH
  total spent: 0.0005648749419642 ETH
errors: 
warnings: 
✔️ has been signed! (5.8s) 
✔️ broadcasted! (254ms) optimistic operation: 
  -0.0005648749419642 ETH OUT        0x234b84e2a7593fd645293a9d0c7ceb5aa5d6a06c598285b1a009a9435b43fa51 2025-02-03T16:53
(in 10min 1s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "564999539943201"
Received: "564962653430626"
(totally spent 10min 7s – ends at 2025-02-03T17:03:42.445Z)
necessary accounts resynced in 0.09ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.0500394 𝚝ETH (1ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892: (! sum of ops 0.05 𝚝ETH)
max spendable ~0.0500394
★ using mutation 'move 50%'
→ TO undefined: 0 𝚝ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:blast_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
✔️ transaction 
SEND  0.025019732350060649 𝚝ETH
TO 0x90bD48144e08b66490BcA9a756BDe9f004F17857
STATUS (612ms)
  amount: 0.025019732350060649 𝚝ETH
  estimated fees: 0.000000009250626 𝚝ETH
  total spent: 0.025019741600686649 𝚝ETH
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Amount'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Amount": "𝚝ETH 0.025019732350060649",
+   "Amount": "ETH 0.025019732350060649",
  }
(totally spent 1916ms – ends at 2025-02-03T17:03:42.446Z)
necessary accounts resynced in 0.17ms
▬ ICON 1.0.8 on nanoS 2.1.0
→ FROM undefined: 0.00439767 ICX (88ops) (hx895d4e11fae4c0d5280481752a19d819c1657f67 on 44'/4801368'/0'/0'/1') icon#1 js:2:icon:hx895d4e11fae4c0d5280481752a19d819c1657f67:icon
max spendable ~0.00314767
★ using mutation 'send 50%~'
→ TO undefined: 0.119748 ICX (38ops) (hxdac11c144fd926ed044199586ccdc14df1ac7313 on 44'/4801368'/0'/0'/5') icon#5 js:2:icon:hxdac11c144fd926ed044199586ccdc14df1ac7313:icon
✔️ transaction 
SEND  0.002198838007268455 ICX
TO hxdac11c144fd926ed044199586ccdc14df1ac7313
STATUS (1075ms)
  amount: 0.002198838007268455 ICX
  estimated fees: 0.00125 ICX
  total spent: 0.003448838007268455 ICX
errors: amount IconDoMaxSendInstead
warnings: 
⚠️ TEST mutation must not have tx status errors
IconDoMaxSendInstead: Balance cannot be below {{minimumBalance}}. Send max to empty account.
(totally spent 1076ms – ends at 2025-02-03T17:03:42.448Z)
necessary accounts resynced in 1.77ms
▬ ICON 1.0.8 on nanoS 2.1.0
→ FROM undefined: 0.00431388 ICX (85ops) (hx227e5543bd947e939d4f4dd3361627f3963cc7bf on 44'/4801368'/0'/0'/2') icon#2 js:2:icon:hx227e5543bd947e939d4f4dd3361627f3963cc7bf:icon
max spendable ~0.00306388
★ using mutation 'send 50%~'
→ TO undefined: 0.00439767 ICX (88ops) (hx895d4e11fae4c0d5280481752a19d819c1657f67 on 44'/4801368'/0'/0'/1') icon#1 js:2:icon:hx895d4e11fae4c0d5280481752a19d819c1657f67:icon
✔️ transaction 
SEND  0.00215694100545134 ICX
TO hx895d4e11fae4c0d5280481752a19d819c1657f67
STATUS (1547ms)
  amount: 0.00215694100545134 ICX
  estimated fees: 0.00125 ICX
  total spent: 0.00340694100545134 ICX
errors: amount IconDoMaxSendInstead
warnings: 
⚠️ TEST mutation must not have tx status errors
IconDoMaxSendInstead: Balance cannot be below {{minimumBalance}}. Send max to empty account.
(totally spent 1549ms – ends at 2025-02-03T17:03:42.450Z)
necessary accounts resynced in 0.11ms
▬ ICON 1.0.8 on nanoS 2.1.0
→ FROM undefined: 0.00306388 ICX (60ops) (hxce13c96a270a5f5a7cfeba91273e6d726b152ea3 on 44'/4801368'/0'/0'/3') icon#3 js:2:icon:hxce13c96a270a5f5a7cfeba91273e6d726b152ea3:icon
max spendable ~0.00181388
★ using mutation 'send 50%~'
→ TO undefined: 0.00439767 ICX (88ops) (hx895d4e11fae4c0d5280481752a19d819c1657f67 on 44'/4801368'/0'/0'/1') icon#1 js:2:icon:hx895d4e11fae4c0d5280481752a19d819c1657f67:icon
✔️ transaction 
SEND  0.00153194100545134 ICX
TO hx895d4e11fae4c0d5280481752a19d819c1657f67
STATUS (826ms)
  amount: 0.00153194100545134 ICX
  estimated fees: 0.00125 ICX
  total spent: 0.00278194100545134 ICX
errors: amount IconDoMaxSendInstead
warnings: 
⚠️ TEST mutation must not have tx status errors
IconDoMaxSendInstead: Balance cannot be below {{minimumBalance}}. Send max to empty account.
(totally spent 827ms – ends at 2025-02-03T17:03:42.452Z)
necessary accounts resynced in 0.12ms
▬ NEAR 2.2.0 on nanoS 2.1.0
→ FROM undefined: 0.44455 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 'Move 50% to another account'
→ TO undefined: 0.0519972 NEAR (18ops) (bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7 on 44'/397'/0'/0'/6') nearbip44h#6 js:2:near:bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7:nearbip44h
✔️ transaction 
SEND  0.19579683009972547709 NEAR
TO bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7
STATUS (806ms)
  amount: 0.19579683009972547709 NEAR
  estimated fees: 0.0008349895375 NEAR
  total spent: 0.19663181963722547709 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.8s – ends at 2025-02-03T17:03:42.454Z)
necessary accounts resynced in 0.23ms
▬ TezosWallet 3.0.6 on nanoS 2.1.0
→ FROM undefined: 2.5797 XTZ (154ops) (tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF on 44'/1729'/0'/0') tezbox#0 js:2:tezos:0240051fc51799e60dcc8870415b87fc4fd948e71b23fdc0d9b8ac7438cf7d4708:tezbox
max spendable ~2.57911
★ using mutation 'send revealed'
→ TO undefined: 0 XTZ (4ops) (tz1he4fPXP3c9fFrztYT3k7KyYuLb28arFNn on 44'/1729'/1'/0') tezbox#1 js:2:tezos:02fe3d777af5380ef0a431c4985772c9669743050cee5feff717c3c3272d7a2810:tezbox
✔️ transaction 
SEND 1.289558 XTZ
TO tz1he4fPXP3c9fFrztYT3k7KyYuLb28arFNn
with fees=0.0005
with gasLimit=600
with storageLimit=277
(estimatedFees 0.0005)
STATUS (2245ms)
  amount: 1.289558 XTZ
  estimated fees: 0.0005 XTZ
  total spent: 1.290058 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":"Transaction","x":34,"y":10,"w":94,"h":11}
(totally spent 64.7s – ends at 2025-02-03T17:03:42.498Z)
necessary accounts resynced in 14ms
▬ TezosWallet 3.0.6 on nanoS 2.1.0
→ FROM undefined: 2.64387 XTZ (1ops) (tz1SApkt3kmMaqNE1qtgADc6m3B49HZkFVDA on 44'/1729'/2'/0') tezbox#2 js:2:tezos:029d7bcf10737806147b22ba4578747ce4ac53e26b443c9eb1ac0e4d5bfbb8f67e:tezbox
max spendable ~2.64291
★ using mutation 'send unrevealed'
→ TO undefined: 0 XTZ (4ops) (tz1he4fPXP3c9fFrztYT3k7KyYuLb28arFNn on 44'/1729'/1'/0') tezbox#1 js:2:tezos:02fe3d777af5380ef0a431c4985772c9669743050cee5feff717c3c3272d7a2810:tezbox
✔️ transaction 
SEND 1.321458 XTZ
TO tz1he4fPXP3c9fFrztYT3k7KyYuLb28arFNn
with fees=0.0005
with gasLimit=600
with storageLimit=277
(estimatedFees 0.000562)
STATUS (687ms)
  amount: 1.321458 XTZ
  estimated fees: 0.000562 XTZ
  total spent: 1.32202 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.7s – ends at 2025-02-03T17:03:42.500Z)
necessary accounts resynced in 0.19ms
▬ TON 2.4.1 on nanoSP 1.1.2
→ FROM undefined: 0.0151678 TON (17ops) (UQCn-JC2p2S4NWRhqrHkuNmoziSwZ2rSYOIlq-GDUd2V0cq2 on 44'/607'/0'/0'/4'/0') ton#4 js:2:ton:00eb62bbc9b4515d20d3381b34c542c3cfdfdf1a3603eea8a25996ff01342b6a:ton (! sum of ops 0.035328945 TON)
max spendable ~0.0151678
★ using mutation 'Send ~50%'
→ TO undefined: 0.0131815 TON (28ops) (UQDkfo-2gm0LAN6Rs80vnTTHUtlEAn7TomCLKLhvbcw1LSHG on 44'/607'/0'/0'/3'/0') ton#3 js:2:ton:0ca11456791dafa4f1bd25138797661aaf6fa6e4d7d4606efc6757c8ef907291:ton
✔️ transaction 
SEND  0.007583914 TON
TO UQDkfo-2gm0LAN6Rs80vnTTHUtlEAn7TomCLKLhvbcw1LSHG
STATUS (3.6s)
  amount: 0.007583914 TON
  estimated fees: 0.004645546 TON
  total spent: 0.01222946 TON
errors: amount TonMinimumRequired
warnings: 
⚠️ TEST mutation must not have tx status errors
TonMinimumRequired: TonMinimumRequired
(totally spent 3.7s – ends at 2025-02-03T17:03:42.502Z)
⚠️ 30 spec hints
  • Spec Celo:
    • mutations should define a test(): Celo: Move 50% to another account
    • mutations should define a testDestination(): Celo: Move 50% to another account
    • mutation Celo: Move 50% to another account: unexpected status.warnings.amount = CeloAllFundsWarning: CeloAllFundsWarning – Please implement expectStatusWarnings on the mutation if expected
  • Spec Bitcoin Testnet:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec ZCash:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec dydx:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec sei_network:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec xion:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Ethereum Classic:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Ethereum Sepolia:
    • 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
  • Spec Flare:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Rootstock:
    • 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 (1).
      Please increase the account target to at least 2 accounts
  • Spec Astar:
    • mutation move 50%: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Base:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Neon EVM:
    • 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 (1).
      Please increase the account target to at least 2 accounts
  • Spec Scroll:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Scroll Sepolia:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Etherlink:
    • There are not enough accounts (1) to cover all mutations (1).
      Please increase the account target to at least 2 accounts
  • Spec ZKsync:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec ZKsync Sepolia:
    • There are not enough accounts (1) to cover all mutations (1).
      Please increase the account target to at least 2 accounts
  • Spec Icon:
    • mutations should define a testDestination(): send 50%~
  • Spec NEAR:
    • mutations should define a testDestination(): Move 50% to another account
  • Spec Stellar:
    • mutations should define a testDestination(): move ~50% XLM
  • Spec Tezos:
    • mutations should define a test(): send unrevealed, send revealed
  • Spec VeChain VTHO:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec VeChain VET:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
Portfolio ($536.70) – Details of the 76 currencies
Spec (accounts) State Remaining Runs (est) funds?
Casper (0) 0 ops , 🤷‍♂️ ``
Celo (12) 2076 ops (+2), 16.288 CELO ($6.97) 💪 999+ 0x246FFDB387F1F8c48072E1C13443540017bC71b7
Algorand (6) 3286 ops (+2), 7.43648 ALGO ($6.82) 💪 999+ TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4
Aptos (0) 0 ops , 🤷‍♂️ ``
Bitcoin Testnet (13) 1457 ops , 0.00102278 𝚝BTC ($0.00) ⚠️ 0 tb1qva8ex44kkad8gz4m7yukmc9hdvhml29ych5esm
Bitcoin Cash (7) 4723 ops (+6), 0.0432984 BCH ($14.45) 💪 997 qpk4tdpv8u7rgwr8crz6nuv7c4g5tn7qmctdhzj9rv
Bitcoin Gold (6) 3579 ops (+8), 0.348246 BTG ($1.76) 💪 999+ AQ7wVwtMFwXzJcxroN3FatwLfvHbVAUPfV
Dash (7) 3998 ops (+8), 0.102821 DASH ($2.65) 💪 999+ XuhsABGNr8uAsowbWBxP9fvSaGm5qyHeXq
Digibyte (9) 5000 ops (+8), 443.786 DGB ($3.65) 💪 999+ dgb1qzy0w9yqzyp50ww2yjvav7hzdvm0z63peu8wkre
DogeCoin (7) 2312 ops , 3.53936 DOGE ($0.96) ⚠️ DPMKt6FSk3UXjNya2PKQBiHj4S1W2YiFRh
Komodo (5) 2759 ops (+8), 17.4843 KMD ($3.33) 💪 999+ RBugW52ToTwGajZg7rWzoTX7ULiMSPg3UM
Litecoin (9) 4883 ops (+8), 0.338921 LTC ($34.60) 💪 999+ ltc1qxzpw6taapr5vymmh3scv55xsqh2ststhhme4a9
ZCash (5) 1502 ops , 0.00368057 ZEC ($0.13) ⚠️ 2 t1SDpcaNZmbCH5TCCb5vNAh5bXs3isDtA5h
Horizen (5) 2758 ops (+4), 0.418216 ZEN ($5.58) 💪 999+ znYTPmtiJCDwsXLxyCd9iPHxJh42UvWPLUX
osmosis (18) 12 ops (+2), 16.0463 OSMO ($4.87) 💪 999+ osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l
desmos (18) 304 ops (+5), 144.865 DSM ($0.08) 💪 999+ desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454
dydx (18) 361 ops , 0.00957568 dydx ($0.00) ⚠️ 6 dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6
umee (18) 174 ops , 703.073 UMEE ($0.36) 💪 999+ umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l
persistence (18) 426 ops , 24.4095 XPRT ($2.95) 💪 999+ persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf
quicksilver (18) 11 ops , 19.549 QCK ($0.09) 💪 999+ quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l
onomy (18) 428 ops , 1.8058 NOM ($0.01) 💪 999+ onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg
sei_network (16) 0 ops , 0.068109 SEI ($0.00) sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v
stargaze (18) 23 ops , 758.343 STARS ($2.30) 💪 999+ stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu
coreum (18) 2397 ops , 28.772 CORE ($4.87) 💪 999+ core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk
injective (0) 0 ops , 🤷‍♂️ ``
mantra (18) 0 ops , 3.31572 OM ($19.67) mantra1rs97j43nfyvc689y5rjvnnhrq3tes6ghshzpqh
crypto_org (15) 161 ops , 34.2943 CRO ($3.76) 💪 999+ cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra
xion (9) 60 ops , 0.087639 XION ($0.10) ⚠️ 0 xion1rs97j43nfyvc689y5rjvnnhrq3tes6ghe4j84x
zenrock (7) 42 ops , 9.78377 ROCK ($0.35) 💪 997 zen1rs97j43nfyvc689y5rjvnnhrq3tes6ghp36y0u
Elrond (8) 3268 ops (+2), 0.911145 EGLD ($20.98) 💪 999+ erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp
Ethereum Classic (6) 685 ops , 0.232476 ETC ($4.83) 💪 999+ 0x7584df0780C5eB83b26aE55abBc265014f8bf897
Polygon (10) 3115 ops (+2), 18.7838 POL ($6.18) 👍 93 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Sepolia (6) 781 ops , 0.00260545 𝚝ETH ($0.00) ⚠️ 4 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Holesky (6) 1647 ops (+2), 0.227446 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum (6) 824 ops (+2), 0.00508734 ETH ($13.76) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum Sepolia (6) 1305 ops (+2), 0.983855 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Flare (6) 2170 ops , 4.00005 FLR ($0.18) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Songbird (6) 3440 ops (+2), 936.908 SGB ($5.65) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonbeam (6) 2891 ops (+2), 58.7244 GLMR ($7.84) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Rootstock (5) 794 ops , 0.00030914 RBTC ($30.34) 👍 226 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Bittorent Chain (6) 2976 ops (+2), 1,488,200 BTT ($1.30) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Mainnet (5) 119 ops , 0.00286711 ETH ($19.86) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Energy Web (6) 2766 ops (+2), 7.52295 EWT ($7.23) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Astar (6) 2984 ops (+2), 316.962 ASTR ($12.68) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Metis (6) 127 ops (+2), 0.127667 METIS ($3.26) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonriver (6) 2516 ops (+2), 2.22419 MOVR ($16.37) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Velas EVM (6) 502 ops (+2), 911.986 VLX ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Syscoin (6) 2900 ops (+2), 57.0325 SYS ($3.92) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Polygon zkEVM Testnet (0) 0 ops , 🤷‍♂️ ``
Base (5) 249 ops , 0.00269293 ETH ($7.28) 👍 303 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Base Sepolia (6) 1313 ops (+2), 0.977058 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Klaytn (0) 0 ops , 🤷‍♂️ ``
Neon EVM (6) 1642 ops , 13.7527 NEON ($4.77) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Lukso (6) 1831 ops (+2), 0.48324 LYX ($0.72) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea (6) 1205 ops (+2), 0.00516633 ETH ($13.96) 👍 349 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Blast (6) 443 ops (+2), 0.00887051 ETH ($24.04) 💪 999+ 0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9
Blast Sepolia (2) 1 ops , 0.0500394 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Scroll (2) 2 ops , 0.01 ETH ($32.28) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Scroll Sepolia (2) 1 ops , 0.05 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Etherlink (1) 0 ops , 0 XTZ ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
ZKsync (2) 3 ops , 0.003 ETH ($10.99) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
ZKsync Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Hedera (4) 2372 ops (+4), 38.3686 HBAR ($9.95) 💪 999+ 0.0.3663977
InternetComputer (8) 1116 ops (+2), 0.990077 ICP ($7.16) 💪 999+ f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209
Icon (8) 445 ops (+2), 9.72374 ICX ($1.24) 💪 999+ hxdd614da5f057ce32185619f98edd81445a946ea5
NEAR (11) 227 ops , 0.939839 NEAR ($5.08) 💪 999+ 0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf
Solana (0) 0 ops , 🤷‍♂️ ``
Stacks (0) 0 ops , 🤷‍♂️ ``
Stellar (6) 2878 ops (+2), 58.977 XLM ($23.48) 💪 999+ GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC
Tezos (4) 159 ops , 5.22357 XTZ ($4.64) 💪 709 tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF
TON (7) 165 ops , 0.0464555 TON ($0.18) ⚠️ 0 UQDL7vAIogYGacmfO0xTS1bwPEMJNh1g1Jliwq2p-qWkS1J0
VeChain VTHO (4) 19 ops , 5 VET ($0.48) 0xc4B17901FECf86932c3bb296BB00E7c6816Fd416
VeChain VET (4) 19 ops , 5 VET ($0.48) ⚠️ 24 0xc4B17901FECf86932c3bb296BB00E7c6816Fd416
XRP (5) 643 ops (+2), 40.0027 XRP ($115.28) 💪 999+ r9etPtq3oboweMPju5gdYufmvwhH2euz8z
undefined: 0.00280262 CELO (281ops) (0x246FFDB387F1F8c48072E1C13443540017bC71b7 on 44'/52752'/0'/0/0) #0 js:2:celo:0x246FFDB387F1F8c48072E1C13443540017bC71b7:
undefined: 0.0606742 CELO (211ops) (0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8 on 44'/52752'/1'/0/0) #1 js:2:celo:0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8:
undefined: 0.439855 CELO (216ops) (0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0 on 44'/52752'/2'/0/0) #2 js:2:celo:0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0:
undefined: 0.808835 CELO (194ops) (0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2 on 44'/52752'/3'/0/0) #3 js:2:celo:0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2:
undefined: 0.0184793 CELO (183ops) (0xA6EB5541E3527d07CaD4dD14E5454820DB858160 on 44'/52752'/4'/0/0) #4 js:2:celo:0xA6EB5541E3527d07CaD4dD14E5454820DB858160:
undefined: 0.117211 CELO (168ops) (0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE on 44'/52752'/5'/0/0) #5 js:2:celo:0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE:
undefined: 7.97343 CELO (161ops) (0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc on 44'/52752'/6'/0/0) #6 js:2:celo:0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc:
undefined: 1.70557 CELO (178ops) (0xc054A142A0e8793bC860A34971C3eb549064A54a on 44'/52752'/7'/0/0) #7 js:2:celo:0xc054A142A0e8793bC860A34971C3eb549064A54a:
undefined: 0.00271313 CELO (182ops) (0x78AB368133f5Bf101849475dD4a5747E6d1A897a on 44'/52752'/8'/0/0) #8 js:2:celo:0x78AB368133f5Bf101849475dD4a5747E6d1A897a:
undefined: 1.79572 CELO (158ops) (0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8 on 44'/52752'/9'/0/0) #9 js:2:celo:0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8:
undefined: 3.45352 CELO (144ops) (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: 4.94807 ALGO (651ops) (TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4 on 44'/283'/0'/0/0) #0 js:2:algorand:TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4:
undefined: 5.03672 ALGO (647ops) (RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ on 44'/283'/1'/0/0) #1 js:2:algorand:RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ:
undefined: 3.1339 ALGO (670ops) (YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE on 44'/283'/2'/0/0) #2 js:2:algorand:YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE:
undefined: 6.71258 ALGO (738ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA:
undefined: 2.70419 ALGO (580ops) (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.00011941 𝚝BTC (187ops) (tb1qva8ex44kkad8gz4m7yukmc9hdvhml29ych5esm on 84'/1'/0'/0/81) native_segwit#0 js:2:bitcoin_testnet:tpubDCgDNn312aj5XtrdMeA9TeQbp2HkMW2a1JNw2qhRLzUaFiDAAQK3Jzh6jzHpc6Agjn68mZgPQB2ZdQzfgRgXVXDi2FVECW7p4xGuK6Pa3b8:native_segwit
undefined [native segwit]: 0 𝚝BTC (164ops) (tb1qu3zymzu9syar4tkkq8g37a84349sx2vm2p6uka on 84'/1'/1'/0/81) native_segwit#1 js:2:bitcoin_testnet:tpubDCgDNn312aj5YVQsroTmVAWSVMpx2PM7m4toPJsHUricGUh457AwMZK55f2uNVxYdKeW8qDZDngveqFFcsFTWW7eZFbnYerfsf5YAdxU3K8:native_segwit
undefined [native segwit]: 0.00015 𝚝BTC (185ops) (tb1qd0pgst9gvhsgdku8tv5aenuhvf7g63ecj4rzh6 on 84'/1'/2'/0/81) 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.00015035 𝚝BTC (184ops) (tb1prx0rzeeaj8u99jfywvc34mg64yhpw4vf44nnpa0cx9gaw98gjxzqklvuqe on 86'/1'/0'/0/87) taproot#0 js:2:bitcoin_testnet:tpubDD1s2jBEVuSpzKea6ie3HMCmkanzcfvc9BbQq8nRDUaAUJPGFi83RWFCNMartYsuxksbFR6tDmVGMaaRP7ng7uovwKT1WNjcuDW34st9R56:taproot
undefined [taproot]: 0.00010077 𝚝BTC (178ops) (tb1pmhp66fc43q87ltl2h07geyfqlyszw8p7e467qdm6g72k5wn7t2yqkt8k2s on 86'/1'/1'/0/80) 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.00018548 𝚝BTC (161ops) (2N9Sb3KXBURoeavoxkfSUpFEZbHrRv2cY3a on 49'/1'/0'/0/79) segwit#0 js:2:bitcoin_testnet:tpubDCoPNx9aypg8jXFPWWYdpHS3MtXF5GPM3nY2UbvQSnEt8PELHAbnf2MknjprAMTYUYPNJzKCr2XSBVMp2wctdKbU1jw9MHA9cbgN7CakJQe:segwit
undefined [segwit]: 0.00015 𝚝BTC (143ops) (2N8xuMjQfhDrtbvmb3251L3x1yGmdnt4Cvo on 49'/1'/1'/0/65) 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.00011084 𝚝BTC (145ops) (mjYkQgDh2y2m26kDuLV4aKhEY2TievEtzZ on 44'/1'/0'/0/87) #0 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBsPABuHGzrXmApLgBRomQx7oFzQeuQn8gpzD27asWNYMeBzanzy4ru9hPE5q1HnQJCW2VcWm2Nz4cdNRB8Eo9xKPz6LGnrxQ:
undefined [legacy]: 0.00005593 𝚝BTC (110ops) (mw9wWMVC6R3WFhj6n1qyLR8hcV2Gd1DQ5B on 44'/1'/1'/0/84) #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.0152104 BCH (856ops) (qpk4tdpv8u7rgwr8crz6nuv7c4g5tn7qmctdhzj9rv on 44'/145'/0'/0/424) #0 js:2:bitcoin_cash:xpub6CYDTh442n9QYTMdQ7Uc7XDC2zCzZ5jM1m1DrWxmfQMToP2ngWZVtptKiksRoGgdcRSLDC6PgEULihbZE3SDt4ndVzoRNUEoZeTCsBUAWWP:
undefined: 0 BCH (820ops) (bitcoincash:qrgu29e3xrvadw4jls9w0zue9phv7468mucv7mk6m7 on 44'/145'/1'/0/414) #1 js:2:bitcoin_cash:xpub6CYDTh442n9QaLF3Z2i5L9QENTixN9kGH5XCYh2J5UTHuu99Y2W1sxm2HcX9sQUe2xmv4r3GVmn8GdTvCsLEof448VdZEmdpfmzX7Dk3AJx:
undefined: 0.001259 BCH (791ops) (qrakyp3fvh5qqa3pnhrlrzf6jtvydnk8fcuty74nfn on 44'/145'/2'/0/396) #2 js:2:bitcoin_cash:xpub6CYDTh442n9QdmbZ2RXVmndx8Hv2cFDKjhzANqnPkFjpcqaztmjEdhB9wiiYxJFncp8Et32XZF2YvsC6sXmDRFGEwgjVzQDinZ2xmgZuyb9:
undefined: 0.00276853 BCH (770ops) (qzsuvwju082l05ft9qgy2x666f5jaufsr5uzrge2ap on 44'/145'/3'/0/378) #3 js:2:bitcoin_cash:xpub6CYDTh442n9QftkdDJbR3GXhop6xxjkHdxgz9xcKkdq8Q7xF9ER8NXJicVwjXbnkBdbF7nc52wrAVhGoraVfQcsGCA2JwjWurCZQU6pNyHH:
undefined: 0.0225544 BCH (759ops) (qqp7npx2yw8ps6vym9y68tsmuqxawc5za5gfnh62dl on 44'/145'/4'/0/358) #4 js:2:bitcoin_cash:xpub6CYDTh442n9QiWxQaeXpmh16DkgpNqufRUMcj6rDqW2gF9Ronnvv9okteP6YQHZGYEojUXg8LL3kfrJzWHrfLFKKarvBgZBtSBRgqcX6w1G:
undefined: 0.00148426 BCH (727ops) (qp52dh9e2ynf8x62vkgrzm30tt6y7h8qkya38zr72u on 44'/145'/5'/0/390) #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.128357 BTG (899ops) (AQ7wVwtMFwXzJcxroN3FatwLfvHbVAUPfV on 49'/156'/0'/0/440) segwit#0 js:2:bitcoin_gold:xpub6DHWENEKDQW8XxvbwvAFdCTGgzmHJkx8eY8bdGrL6iLmiqmPmCEscEvf7MBSDtbZWuLcUeQP9j87rJSgMhtwpUj3JSnQDoGHG2aqRVaSn43:segwit
undefined [segwit]: 0.0340668 BTG (884ops) (AK5A5tKRowegRHHA3nmt5QJfxEoUULEe96 on 49'/156'/1'/0/437) 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.0557329 BTG (898ops) (GTC1A3HdVsR3iHKn9TB6vMC6fqvHArKPBP on 44'/156'/0'/0/447) #0 js:2:bitcoin_gold:xpub6Cq1sXPAA8ijyqJpdR5hDVYJ7XyunpPgVpCWwPtReGJDwhqnWxBhu7wBJjbtdWHXSQiSyNDhxDXF4GmrXGatK4yDASHE3CgS3tsT41T81Dj:
undefined [legacy]: 0.13005 BTG (898ops) (GKFoPrCcTxdLjAuHpZRprQNqUKHGVUwRrK on 44'/156'/1'/0/464) #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.00495473 DASH (694ops) (XuhsABGNr8uAsowbWBxP9fvSaGm5qyHeXq on 44'/5'/0'/0/343) #0 js:2:dash:drkvjS8m2iwuqAXaxEBNS8ULFEKfoEEVNrSyzsEwioinaxb7TZ6fmP7rB3YiU3xcEoM39WoeDJdTS5sgVHQAeowB9BhdxkvDZhJErQk8AWTyaYk:
undefined: 0.0004569 DASH (669ops) (XahudTZ24GBqTpnYfaasrvcfwKX6DsyvXm on 44'/5'/1'/0/318) #1 js:2:dash:drkvjS8m2iwuqAXayHufe3hHCwpvgLyxxGhMAiCSW4kjQ2jC6FKcYKqC2ePkovCh93HAt2AgXQSt4YdJG3XX1raRMbHwwJz6ezKi4yotkX7mjwb:
undefined: 0.00075706 DASH (680ops) (XrGb6cbFTKeyep7cCV5VPu4PHXuGmtwCeg on 44'/5'/2'/0/325) #2 js:2:dash:drkvjS8m2iwuqAXb2YSrc4u7qMoaf3UtCbF5A1gphQy6soFEDH7sHmvfZiAEzFse5Q3ycaoq6Su8iitWgNoxRriwzitNTWcwBkXrAdaf2xNXuo4:
undefined: 0.0092204 DASH (674ops) (Xyw2SV5otbWdrPe7wYD1oFhstykZ4d3DYW on 44'/5'/3'/0/339) #3 js:2:dash:drkvjS8m2iwuqAXb4LDphtncxj3UdVEACR5JCjoccMjdxfEkEhu7oB1vpZFyajdUEhapJgwi7uUq24ys47gm3VNj4vRQbVcV5YQkrGCpUyd7hDS:
undefined: 0.0442608 DASH (660ops) (XsdCnLJmLcYTQ9oDiGJubyNsbu6njQf8bU on 44'/5'/4'/0/330) #4 js:2:dash:drkvjS8m2iwuqAXb7uLicFWmFdztLiHpa6PM7iTRQcYT9wX9vF565f9ZQ7ZrwYBKab7ctGrnUyyyn5zFBtBEazazVdBvneLkZ9bUjb83PMLEgpw:
undefined: 0.0431506 DASH (621ops) (XfryMd9EmSrYhHoMbZipCnf9xRGJhdT1zw on 44'/5'/5'/0/340) #5 js:2:dash:drkvjS8m2iwuqAXbBAUgNiSVfsH5TurFQxb3bCTM84wuSY376sNUmXbTzLp6cPT8iLqD43n1GXTaHGAaemq8vEm2rwqu5bxtgemUp719HCTXW4S:
undefined: 0 DASH (0ops) (XiiyHQPZVuxXHnApv1XP2aNbz92zL8u6Hy on 44'/5'/6'/0/0) #6 js:2:dash:drkvjS8m2iwuqAXbCRvDwtZdhj7KX8KWD7NqtKJ3cmdPhKoAsfK26rcmmGGAoHdVCvsCgkkZMeyq9cxfExdrvJfzTXJFU8enhrj8pQ4vnTXXUh9:
undefined [native segwit]: 6.2465 DGB (864ops) (dgb1qzy0w9yqzyp50ww2yjvav7hzdvm0z63peu8wkre on 84'/20'/0'/0/406) native_segwit#0 js:2:digibyte:xpub6CW9KDgdnS4RwiFZjL1YpEbk1yYvD96EqiBXmq6xKRhe3rJJQaB78voA4DG2dJctnUeWZes6NhysTRpCmBgGxCCy39wcwRwSB4fx3Nd2AxP:native_segwit
undefined [native segwit]: 0.377471 DGB (863ops) (dgb1qyqf7em5l5ggsyxr8hed6fhf8y8cgw3klagttp8 on 84'/20'/1'/0/425) 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]: 0.0914199 DGB (834ops) (SiYdyKbRkpzXT1SBtnaRYHQfm3sskW33kp on 49'/20'/0'/0/411) segwit#0 js:2:digibyte:xpub6CrEMM6LnNPxiDTZaMJwXTtYZXUQvvMwYb2Do892dbEYMrLEfFXZ8ygRrywE66brjMWbV948BJAbWGwV1oeyT7L57ZJykK8jVJ26UQiDVfp:segwit
undefined [segwit]: 18.2587 DGB (812ops) (SVopWcwVRBXQHPdPADTm9L52ygQGWtm8bz on 49'/20'/1'/0/398) 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]: 115.329 DGB (831ops) (DRoEBzjWyf31jpKXD5kPRvu8Cpg4ftcDSA on 44'/20'/0'/0/412) #0 js:2:digibyte:xpub6Cv4emS7S9zviCwMrBM1LhC7EdKY6QgFZ7T46nwEqtmaJda4EPH7Jv19h8GfhAPNTztGNWBBxribdod3wcxXRDkLmzRBxUgyZWxMoYLDgCX:
undefined [legacy]: 303.482 DGB (796ops) (D6BAGW1emhLjgj6GEvsJyKUqsMXKiAVuTi on 44'/20'/1'/0/443) #1 js:2:digibyte:xpub6Cv4emS7S9zvmSxVKstTvb3QR4MYRMR1ySqUZbWc8A1vE2Y2BYw3FjLoxVtVYAeJjzR8PqEDDykAzGBUXsphL3xbgbzx6EtS2D8ikALFT52:
undefined [legacy]: 0 DGB (0ops) (DBWpWpZTMg31XMoamhZjKoSqahTVTG2qHi on 44'/20'/2'/0/0) #2 js:2:digibyte:xpub6Cv4emS7S9zvoT2jPveX3CwptyX75sUdfpgmx6DyVGme8QQit5WYE189GhbBJyPThotPBRdpQ5RaXNn8BCkmPNGCG1cirRswqvyvhhqgnAT:
undefined: 0.920545 DOGE (397ops) (DPMKt6FSk3UXjNya2PKQBiHj4S1W2YiFRh on 44'/3'/0'/0/197) #0 js:2:dogecoin:dgub8sBmteCcuFFejUSqGNBcwXRVJ4ZH33Sx3vTJG1o8Q1XwFRNFgT8fAreoj59VMzuU6EJmVMW9gLc9XJSXuxBeSUEt2s2QjSbfYCKkyBvF3pz:
undefined: 0.952644 DOGE (393ops) (DNm6KZDqokGsG4owh2FmUBtFPuXjZnpJgT on 44'/3'/1'/0/184) #1 js:2:dogecoin:dgub8sBmteCcuFFenEm7nyLHE2Zxt38inSEWx1bVAvWgAXbsHzuEHPaM4aP4J1oE2UWhoQ6cjN8rLEmuzqZHr9MyJvLE8zj527mdtweCgUBjuxj:
undefined: 0.233161 DOGE (381ops) (DDbnxtCqjiH9HpcGCXAJ6zM3yqWZUoz7o7 on 44'/3'/2'/0/198) #2 js:2:dogecoin:dgub8sBmteCcuFFepPh2rZbmtt3RujGFHSLrQiT7cawEm8PpDRumeEWWM4tsKtqm4vUYtHSJZvsifqbKXgUMGN89Y29Kh6DMoq2JCEBPAE5BVK2:
undefined: 0.850515 DOGE (396ops) (D8D7641JRE2rm69b8s7AoLtM2gFetEAQ5X on 44'/3'/3'/0/201) #3 js:2:dogecoin:dgub8sBmteCcuFFer5KqAKz1JpoYNxNzLP5v2uStDCS6iMYMJz9qssa7cr4EeDGLuPaJ6VRGK6owP43wMFhgHtPXMe56ptKcVF7o5DqVf8mTMDz:
undefined: 0.582498 DOGE (409ops) (DJVPzhFYmcsr2tjw9WkkUpWrCAUzCrZjqy on 44'/3'/4'/0/202) #4 js:2:dogecoin:dgub8sBmteCcuFFev32JBmBE5kkWA9Fz4LHryxURKDHBm8kXT2s5X3cM4eGnk5YDgbRj2cGny85CWZLtFuz4n6SNEff68ZFXZRfeMcKYjM4ZABa:
undefined: 0 DOGE (336ops) (DMhyaM7cxjL28LdeSTi7RjmgQazn1vboX7 on 44'/3'/5'/0/172) #5 js:2:dogecoin:dgub8sBmteCcuFFexZUo9SNmC2kEwPEUKxWo4VbEi5sZq9uAa3koQSeoUyxC5Z9XXqHq6hvYUYMvWL1iuVLnneqEfda8PdDDWPbvXggRGYDS2Yy:
undefined: 0 DOGE (0ops) (DNvgzFMvZG3k3o78cqn3y3YksWoSnC3uJ8 on 44'/3'/6'/0/0) #6 js:2:dogecoin:dgub8sBmteCcuFFf1Q45j57nYSbt99vo2P5iHSDdytuEPxtbcaRJrgTJCCJFx9AJhFHvyRNkQ8HxwQ61te2F8hhtChBWAL6RCDZEpbjvKGVRR3T:
undefined: 0.751078 KMD (712ops) (RBugW52ToTwGajZg7rWzoTX7ULiMSPg3UM on 44'/141'/0'/0/341) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:
undefined: 6.07503 KMD (728ops) (RLqAfxuhrKLUaej2hZUoRDn4Zh61pyfkSe on 44'/141'/1'/0/358) #1 js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:
undefined: 9.02183 KMD (678ops) (RYEDe92uL9YGfta3BGz3Uq9Q2XzpL3J8Jn on 44'/141'/2'/0/347) #2 js:2:komodo:v4PKUB9WZbMS4XNED8S4oAJzXQqPbfLCmNRNPW8QoETCA7opTJLFvrkm39QZAdLg8DygthREBvDRmrHDeVtEQ8C7iQDfXDSPTrzB2FAFkvgsQ9HA:
undefined: 1.63614 KMD (641ops) (RW4Mkdfd8weEaYaHdtxkVZJKdQuwu1xNDN on 44'/141'/3'/0/332) #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.00442999 LTC (852ops) (ltc1qxzpw6taapr5vymmh3scv55xsqh2ststhhme4a9 on 84'/2'/0'/0/402) native_segwit#0 js:2:litecoin:Ltub2YLUoe8MGLizFvLnAHJhiz3rdWG8UXqi9A9smDbuwPD44WPa1rB1EwyQwzRiVFKGH4mS6b5DRE3c3S9jZ944uaGcRK2XPinZcbdmo3P2vmq:native_segwit
undefined [native segwit]: 0.00491835 LTC (813ops) (ltc1q5p6ywhsuglqt6wfzar57fzjk8argfqejlc7qrx on 84'/2'/1'/0/399) 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.00338754 LTC (813ops) (MPVBwAARNzjhrNQ59nBcBJ8Px8r2uT6XHm on 49'/2'/0'/0/392) segwit#0 js:2:litecoin:Ltub2YDfX8FoxTFohkcgknuZr2WLrCNpq6ufHxguxyjoDWGDZ1GBUVSn5wwoD2ifjY13iERFGvauvW55p6ASVCbqiABnreHFCsV5LKps76aWDV3:segwit
undefined [segwit]: 0.00365149 LTC (790ops) (MURsZ2DhjjeMw9cDfTMA9s1ZrFaZs8YyRb on 49'/2'/1'/0/398) 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.0113307 LTC (850ops) (LV5xhAgtTTaeYNsPS81xByHEbNpQidEovS on 44'/2'/0'/0/425) #0 js:2:litecoin:Ltub2YwXt3Fm1MVHeGxpcxFhFTe1FkqDdVoeRp9FRnnqGrinFxJSDjXwVTnmjK56jhq83mxWmTKprWjLXqspQCYtxJmCnwCLJUPoZhjJEYMtcFd:
undefined [legacy]: 0.31119 LTC (765ops) (LPmq6WNFqEsEroka2dbz7dcDFSFRi1wiJ1 on 44'/2'/1'/0/421) #1 js:2:litecoin:Ltub2YwXt3Fm1MVHgsz1XL8MM6MicGgumPzfpD1pZcsk15P4LZHiF4wpFPGvTi58u9evgMd4dV9K7cMMA532mq1HbEknZZ5UayUuRbSsM5VzptL:
undefined [legacy]: 0 LTC (0ops) (LiDx2poS1M1DwYU2zHuvKEQAAFUdpRgP59 on 44'/2'/2'/0/0) #2 js:2:litecoin:Ltub2YwXt3Fm1MVHgy4nREA2MxDT5Em3QsQv2Yu6gfGSPudxTKgcovLsh1sV3rje75uZ5eAkyJLkbHxPBFU3Wbhd2Q6XF863omV2XfWhsC2ACJ4:
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.209151 ZEN (706ops) (znYTPmtiJCDwsXLxyCd9iPHxJh42UvWPLUX on 44'/121'/0'/0/324) #0 js:2:zencash:xpub6C68jAb8xasfmbmg37N3W5TsYWdTb6xLCtjwz5oSVAdi6Jxzx6FeBQcQazySrCXnsGZKaT9MXB9i4Lny4AoFAVZtSy6kVExyheF7X5Msvu3:
undefined: 0.0503765 ZEN (694ops) (zncAN12dpTN9MdSzy1NLsnA7RHXCY6DWard on 44'/121'/1'/0/333) #1 js:2:zencash:xpub6C68jAb8xasfrBmUVvZbdXydhq15bdfePn1qhjb32azt3GkzoqBCQuRaZKPYp9T9uhr7TYCANdXanzeXfXp4qMjw7ijiPPNbBKmGRZRFeoa:
undefined: 0.0536088 ZEN (677ops) (znU6Z2GPP6Kf533oNkkR4M31L5rm6g1cz2P on 44'/121'/2'/0/362) #2 js:2:zencash:xpub6C68jAb8xasfsZCbDtbqPTydFZEHjfzFP75ZQyizidPdLPHNbf41HqQq8RiHMJNuXx71D15Uv9yVpxHkxicSAzKCPVqi1gCKkJTdCN6MK7Q:
undefined: 0.105063 ZEN (681ops) (znjnThPwNBi3kVX6RxvikH8x4LzGKNSYsQQ on 44'/121'/3'/0/358) #3 js:2:zencash:xpub6C68jAb8xasfwaE1WeCTh2JhK4KMh64oUaNn2MJCpVdjBmV7cdLhW8xqAfrb8eerM3wtiwMg9sMZkjA62QMH1rMDNbr97uLKNZohEX7c1cq:
undefined: 0 ZEN (0ops) (znm8ELZShHo5gm7aQjcd3qbxT7UF8Mnzyr2 on 44'/121'/4'/0/0) #4 js:2:zencash:xpub6C68jAb8xasfwknWxgLgizrHgqJko7RdnamzFS3DzoKUaA5721xs1HE23NHHqq6LcvmKf43ncaSsz3cEZZpmCrgfK1GhrmDNHkvKfyqpZHF:
undefined: 0.002876 OSMO (0ops) (osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l on 44'/118'/0'/0/0) #0 js:2:osmo:osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l:
undefined: 0.006017 OSMO (0ops) (osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf on 44'/118'/1'/0/0) #1 js:2:osmo:osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf:
undefined: 0.033635 OSMO (4ops) (osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv on 44'/118'/2'/0/0) #2 js:2:osmo:osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv:
undefined: 0.000383 OSMO (0ops) (osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k on 44'/118'/3'/0/0) #3 js:2:osmo:osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k:
undefined: 0.004928 OSMO (2ops) (osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0 on 44'/118'/4'/0/0) #4 js:2:osmo:osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0:
undefined: 0.4187 OSMO (1ops) (osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw on 44'/118'/5'/0/0) #5 js:2:osmo:osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw:
undefined: 0.007699 OSMO (1ops) (osmo1n6vccpa77x7xyhnk98jy6gg3rmgjkazxuyk2ng on 44'/118'/6'/0/0) #6 js:2:osmo:osmo1n6vccpa77x7xyhnk98jy6gg3rmgjkazxuyk2ng:
undefined: 2.58652 OSMO (0ops) (osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp on 44'/118'/7'/0/0) #7 js:2:osmo:osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp:
undefined: 0.607539 OSMO (2ops) (osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d on 44'/118'/8'/0/0) #8 js:2:osmo:osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d:
undefined: 1.25523 OSMO (0ops) (osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5 on 44'/118'/9'/0/0) #9 js:2:osmo:osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5:
undefined: 0.933472 OSMO (0ops) (osmo1733g3dfzj6tulcqtvz628ypuqj0hvlrzruntc8 on 44'/118'/10'/0/0) #10 js:2:osmo:osmo1733g3dfzj6tulcqtvz628ypuqj0hvlrzruntc8:
undefined: 0.006923 OSMO (0ops) (osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg on 44'/118'/11'/0/0) #11 js:2:osmo:osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg:
undefined: 1.32104 OSMO (0ops) (osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m on 44'/118'/12'/0/0) #12 js:2:osmo:osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m:
undefined: 0.084982 OSMO (1ops) (osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9 on 44'/118'/13'/0/0) #13 js:2:osmo:osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9:
undefined: 0.391517 OSMO (0ops) (osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd on 44'/118'/14'/0/0) #14 js:2:osmo:osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd:
undefined: 5.56816 OSMO (1ops) (osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau on 44'/118'/15'/0/0) #15 js:2:osmo:osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau:
undefined: 2.87781 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 DSM (17ops) (desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454 on 44'/118'/0'/0/0) #0 js:2:desmos:desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454:
undefined: 0.085975 DSM (29ops) (desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur on 44'/118'/1'/0/0) #1 js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:
undefined: 0.136276 DSM (20ops) (desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx on 44'/118'/2'/0/0) #2 js:2:desmos:desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx:
undefined: 0.079159 DSM (16ops) (desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu on 44'/118'/3'/0/0) #3 js:2:desmos:desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu:
undefined: 0.18237 DSM (1ops) (desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9 on 44'/118'/4'/0/0) #4 js:2:desmos:desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9:
undefined: 0 DSM (17ops) (desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y on 44'/118'/5'/0/0) #5 js:2:desmos:desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y:
undefined: 0 DSM (10ops) (desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz on 44'/118'/6'/0/0) #6 js:2:desmos:desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz:
undefined: 0.001914 DSM (34ops) (desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt on 44'/118'/7'/0/0) #7 js:2:desmos:desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt:
undefined: 0.0475 DSM (18ops) (desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8 on 44'/118'/8'/0/0) #8 js:2:desmos:desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8:
undefined: 0.373557 DSM (18ops) (desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7 on 44'/118'/9'/0/0) #9 js:2:desmos:desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7:
undefined: 0 DSM (10ops) (desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted on 44'/118'/10'/0/0) #10 js:2:desmos:desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted:
undefined: 6.75428 DSM (21ops) (desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z on 44'/118'/11'/0/0) #11 js:2:desmos:desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z:
undefined: 1.17886 DSM (15ops) (desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243 on 44'/118'/12'/0/0) #12 js:2:desmos:desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243:
undefined: 21.2513 DSM (46ops) (desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0 on 44'/118'/13'/0/0) #13 js:2:desmos:desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0:
undefined: 47.3112 DSM (1ops) (desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8 on 44'/118'/14'/0/0) #14 js:2:desmos:desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8:
undefined: 19.4152 DSM (31ops) (desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk on 44'/118'/15'/0/0) #15 js:2:desmos:desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk:
undefined: 48.0851 DSM (0ops) (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.00046992 dydx (19ops) (dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6 on 44'/118'/0'/0/0) #0 js:2:dydx:dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6:
undefined: 0.00005817 dydx (13ops) (dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv on 44'/118'/1'/0/0) #1 js:2:dydx:dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv:
undefined: 0.00113709 dydx (28ops) (dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf on 44'/118'/2'/0/0) #2 js:2:dydx:dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf:
undefined: 0.00114923 dydx (26ops) (dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en on 44'/118'/3'/0/0) #3 js:2:dydx:dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en:
undefined: 0 dydx (22ops) (dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2 on 44'/118'/4'/0/0) #4 js:2:dydx:dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2:
undefined: 0.00085659 dydx (26ops) (dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt on 44'/118'/5'/0/0) #5 js:2:dydx:dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt:
undefined: 0.00092916 dydx (19ops) (dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d on 44'/118'/6'/0/0) #6 js:2:dydx:dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d:
undefined: 0.00627605 dydx (23ops) (dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky on 44'/118'/7'/0/0) #7 js:2:dydx:dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky:
undefined: 0 dydx (10ops) (dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug on 44'/118'/8'/0/0) #8 js:2:dydx:dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug:
undefined: 0.0010178 dydx (17ops) (dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73 on 44'/118'/9'/0/0) #9 js:2:dydx:dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73:
undefined: 0 dydx (4ops) (dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz on 44'/118'/10'/0/0) #10 js:2:dydx:dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz:
undefined: 0.00060307 dydx (35ops) (dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd on 44'/118'/11'/0/0) #11 js:2:dydx:dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd:
undefined: 0.00055212 dydx (15ops) (dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7 on 44'/118'/12'/0/0) #12 js:2:dydx:dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7:
undefined: 0.00099341 dydx (34ops) (dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq on 44'/118'/13'/0/0) #13 js:2:dydx:dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq:
undefined: 0.00099731 dydx (30ops) (dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg on 44'/118'/14'/0/0) #14 js:2:dydx:dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg:
undefined: 0.00072955 dydx (34ops) (dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te on 44'/118'/15'/0/0) #15 js:2:dydx:dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te:
undefined: 0.00130597 dydx (6ops) (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 (5ops) (umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l on 44'/118'/0'/0/0) #0 js:2:umee:umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l:
undefined: 0.009046 UMEE (16ops) (umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f on 44'/118'/1'/0/0) #1 js:2:umee:umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f:
undefined: 0 UMEE (11ops) (umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv on 44'/118'/2'/0/0) #2 js:2:umee:umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv:
undefined: 0.196795 UMEE (4ops) (umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak on 44'/118'/3'/0/0) #3 js:2:umee:umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak:
undefined: 0.532989 UMEE (12ops) (umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0 on 44'/118'/4'/0/0) #4 js:2:umee:umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0:
undefined: 10.0975 UMEE (17ops) (umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw on 44'/118'/5'/0/0) #5 js:2:umee:umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw:
undefined: 0.386321 UMEE (7ops) (umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg on 44'/118'/6'/0/0) #6 js:2:umee:umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg:
undefined: 3.01999 UMEE (20ops) (umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp on 44'/118'/7'/0/0) #7 js:2:umee:umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp:
undefined: 0.950758 UMEE (12ops) (umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd on 44'/118'/8'/0/0) #8 js:2:umee:umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd:
undefined: 3.8798 UMEE (19ops) (umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65 on 44'/118'/9'/0/0) #9 js:2:umee:umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65:
undefined: 0.020952 UMEE (1ops) (umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28 on 44'/118'/10'/0/0) #10 js:2:umee:umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28:
undefined: 1.99559 UMEE (5ops) (umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg on 44'/118'/11'/0/0) #11 js:2:umee:umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg:
undefined: 1.49321 UMEE (7ops) (umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm on 44'/118'/12'/0/0) #12 js:2:umee:umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm:
undefined: 44.1628 UMEE (16ops) (umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29 on 44'/118'/13'/0/0) #13 js:2:umee:umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29:
undefined: 3.30341 UMEE (4ops) (umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd on 44'/118'/14'/0/0) #14 js:2:umee:umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd:
undefined: 519.471 UMEE (16ops) (umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u on 44'/118'/15'/0/0) #15 js:2:umee:umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u:
undefined: 115.297 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.003424 XPRT (29ops) (persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf on 44'/118'/0'/0/0) #0 js:2:persistence:persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf:
undefined: 0.003551 XPRT (12ops) (persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l on 44'/118'/1'/0/0) #1 js:2:persistence:persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l:
undefined: 0.00408 XPRT (30ops) (persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6 on 44'/118'/2'/0/0) #2 js:2:persistence:persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6:
undefined: 0.032533 XPRT (19ops) (persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq on 44'/118'/3'/0/0) #3 js:2:persistence:persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq:
undefined: 0.006189 XPRT (30ops) (persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e on 44'/118'/4'/0/0) #4 js:2:persistence:persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e:
undefined: 0.000252 XPRT (30ops) (persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc on 44'/118'/5'/0/0) #5 js:2:persistence:persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc:
undefined: 0.004834 XPRT (22ops) (persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7 on 44'/118'/6'/0/0) #6 js:2:persistence:persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7:
undefined: 0.006247 XPRT (24ops) (persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch on 44'/118'/7'/0/0) #7 js:2:persistence:persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch:
undefined: 0 XPRT (22ops) (persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm on 44'/118'/8'/0/0) #8 js:2:persistence:persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm:
undefined: 0.002293 XPRT (15ops) (persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz on 44'/118'/9'/0/0) #9 js:2:persistence:persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz:
undefined: 0.033761 XPRT (21ops) (persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3 on 44'/118'/10'/0/0) #10 js:2:persistence:persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3:
undefined: 0.092546 XPRT (25ops) (persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7 on 44'/118'/11'/0/0) #11 js:2:persistence:persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7:
undefined: 0.301831 XPRT (25ops) (persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd on 44'/118'/12'/0/0) #12 js:2:persistence:persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd:
undefined: 0.221736 XPRT (49ops) (persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn on 44'/118'/13'/0/0) #13 js:2:persistence:persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn:
undefined: 5.7975 XPRT (13ops) (persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m on 44'/118'/14'/0/0) #14 js:2:persistence:persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m:
undefined: 9.25632 XPRT (49ops) (persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92 on 44'/118'/15'/0/0) #15 js:2:persistence:persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92:
undefined: 9.06123 XPRT (11ops) (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 (0ops) (quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l on 44'/118'/0'/0/0) #0 js:2:quicksilver:quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l:
undefined: 0.00298 QCK (9ops) (quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf on 44'/118'/1'/0/0) #1 js:2:quicksilver:quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf:
undefined: 0.0005 QCK (0ops) (quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev on 44'/118'/2'/0/0) #2 js:2:quicksilver:quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev:
undefined: 0.00058 QCK (0ops) (quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk on 44'/118'/3'/0/0) #3 js:2:quicksilver:quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk:
undefined: 0.000696 QCK (0ops) (quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0 on 44'/118'/4'/0/0) #4 js:2:quicksilver:quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0:
undefined: 0.001243 QCK (0ops) (quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw on 44'/118'/5'/0/0) #5 js:2:quicksilver:quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw:
undefined: 0.000465 QCK (2ops) (quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug on 44'/118'/6'/0/0) #6 js:2:quicksilver:quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug:
undefined: 0.000513 QCK (0ops) (quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p on 44'/118'/7'/0/0) #7 js:2:quicksilver:quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p:
undefined: 0.000738 QCK (0ops) (quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d on 44'/118'/8'/0/0) #8 js:2:quicksilver:quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d:
undefined: 0.001108 QCK (0ops) (quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585 on 44'/118'/9'/0/0) #9 js:2:quicksilver:quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585:
undefined: 0.000994 QCK (0ops) (quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8 on 44'/118'/10'/0/0) #10 js:2:quicksilver:quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8:
undefined: 0.462881 QCK (0ops) (quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg on 44'/118'/11'/0/0) #11 js:2:quicksilver:quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg:
undefined: 0.180101 QCK (0ops) (quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm on 44'/118'/12'/0/0) #12 js:2:quicksilver:quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm:
undefined: 3.1307 QCK (0ops) (quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9 on 44'/118'/13'/0/0) #13 js:2:quicksilver:quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9:
undefined: 2.47352 QCK (0ops) (quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad on 44'/118'/14'/0/0) #14 js:2:quicksilver:quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad:
undefined: 4.94504 QCK (0ops) (quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju on 44'/118'/15'/0/0) #15 js:2:quicksilver:quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju:
undefined: 11.447 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 (24ops) (onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg on 44'/118'/0'/0/0) #0 js:2:onomy:onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg:
undefined: 0.00000205 NOM (46ops) (onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67 on 44'/118'/1'/0/0) #1 js:2:onomy:onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67:
undefined: 0 NOM (30ops) (onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m on 44'/118'/2'/0/0) #2 js:2:onomy:onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m:
undefined: 0 NOM (26ops) (onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp on 44'/118'/3'/0/0) #3 js:2:onomy:onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp:
undefined: 0 NOM (29ops) (onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c on 44'/118'/4'/0/0) #4 js:2:onomy:onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c:
undefined: 0 NOM (48ops) (onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he on 44'/118'/5'/0/0) #5 js:2:onomy:onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he:
undefined: 0.00000019 NOM (19ops) (onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l on 44'/118'/6'/0/0) #6 js:2:onomy:onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l:
undefined: 0.0000001 NOM (25ops) (onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k on 44'/118'/7'/0/0) #7 js:2:onomy:onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k:
undefined: 0.00000005 NOM (6ops) (onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6 on 44'/118'/8'/0/0) #8 js:2:onomy:onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6:
undefined: 0.0000078 NOM (50ops) (onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r on 44'/118'/9'/0/0) #9 js:2:onomy:onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r:
undefined: 0.00001168 NOM (13ops) (onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls on 44'/118'/10'/0/0) #10 js:2:onomy:onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls:
undefined: 0.00016993 NOM (40ops) (onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl on 44'/118'/11'/0/0) #11 js:2:onomy:onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl:
undefined: 0.00000208 NOM (12ops) (onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv on 44'/118'/12'/0/0) #12 js:2:onomy:onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv:
undefined: 0.217736 NOM (25ops) (onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj on 44'/118'/13'/0/0) #13 js:2:onomy:onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj:
undefined: 0.400236 NOM (12ops) (onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46 on 44'/118'/14'/0/0) #14 js:2:onomy:onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46:
undefined: 0.0528771 NOM (8ops) (onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t on 44'/118'/15'/0/0) #15 js:2:onomy:onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t:
undefined: 1.13535 NOM (15ops) (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.002195 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.003307 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: 0.134041 STARS (0ops) (stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu on 44'/118'/0'/0/0) #0 js:2:stargaze:stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu:
undefined: 0.023931 STARS (0ops) (stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2 on 44'/118'/1'/0/0) #1 js:2:stargaze:stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2:
undefined: 0.087609 STARS (2ops) (stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0 on 44'/118'/2'/0/0) #2 js:2:stargaze:stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0:
undefined: 0.241914 STARS (0ops) (stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4 on 44'/118'/3'/0/0) #3 js:2:stargaze:stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4:
undefined: 114.653 STARS (5ops) (stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv on 44'/118'/4'/0/0) #4 js:2:stargaze:stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv:
undefined: 0.165246 STARS (0ops) (stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd on 44'/118'/5'/0/0) #5 js:2:stargaze:stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd:
undefined: 0.152191 STARS (1ops) (stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt on 44'/118'/6'/0/0) #6 js:2:stargaze:stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt:
undefined: 0.264578 STARS (1ops) (stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz on 44'/118'/7'/0/0) #7 js:2:stargaze:stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz:
undefined: 0.147262 STARS (0ops) (stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw on 44'/118'/8'/0/0) #8 js:2:stargaze:stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw:
undefined: 22.7942 STARS (2ops) (stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h on 44'/118'/9'/0/0) #9 js:2:stargaze:stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h:
undefined: 0.113797 STARS (0ops) (stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y on 44'/118'/10'/0/0) #10 js:2:stargaze:stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y:
undefined: 26.9329 STARS (3ops) (stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet on 44'/118'/11'/0/0) #11 js:2:stargaze:stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet:
undefined: 0.147458 STARS (4ops) (stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc on 44'/118'/12'/0/0) #12 js:2:stargaze:stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc:
undefined: 48.5602 STARS (3ops) (stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x on 44'/118'/13'/0/0) #13 js:2:stargaze:stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x:
undefined: 0 STARS (1ops) (stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w on 44'/118'/14'/0/0) #14 js:2:stargaze:stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w:
undefined: 164.713 STARS (0ops) (stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql on 44'/118'/15'/0/0) #15 js:2:stargaze:stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql:
undefined: 381.109 STARS (1ops) (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.009468 CORE (125ops) (core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk on 44'/118'/0'/0/0) #0 js:2:coreum:core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk:
undefined: 0.007217 CORE (165ops) (core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq on 44'/118'/1'/0/0) #1 js:2:coreum:core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq:
undefined: 0.014022 CORE (171ops) (core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89 on 44'/118'/2'/0/0) #2 js:2:coreum:core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89:
undefined: 0.024213 CORE (174ops) (core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l on 44'/118'/3'/0/0) #3 js:2:coreum:core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l:
undefined: 0 CORE (165ops) (core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux on 44'/118'/4'/0/0) #4 js:2:coreum:core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux:
undefined: 0.120825 CORE (173ops) (core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8 on 44'/118'/5'/0/0) #5 js:2:coreum:core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8:
undefined: 0.038181 CORE (143ops) (core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp on 44'/118'/6'/0/0) #6 js:2:coreum:core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp:
undefined: 0.089774 CORE (152ops) (core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g on 44'/118'/7'/0/0) #7 js:2:coreum:core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g:
undefined: 0.112076 CORE (127ops) (core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy on 44'/118'/8'/0/0) #8 js:2:coreum:core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy:
undefined: 0.482641 CORE (174ops) (core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea on 44'/118'/9'/0/0) #9 js:2:coreum:core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea:
undefined: 0.027605 CORE (124ops) (core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw on 44'/118'/10'/0/0) #10 js:2:coreum:core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw:
undefined: 0.085215 CORE (159ops) (core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p on 44'/118'/11'/0/0) #11 js:2:coreum:core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p:
undefined: 0.041275 CORE (88ops) (core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j on 44'/118'/12'/0/0) #12 js:2:coreum:core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j:
undefined: 0.771036 CORE (150ops) (core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv on 44'/118'/13'/0/0) #13 js:2:coreum:core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv:
undefined: 0.085356 CORE (98ops) (core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try on 44'/118'/14'/0/0) #14 js:2:coreum:core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try:
undefined: 0.304359 CORE (152ops) (core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4 on 44'/118'/15'/0/0) #15 js:2:coreum:core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4:
undefined: 26.7799 CORE (57ops) (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: 0.017913 OM (0ops) (mantra1rs97j43nfyvc689y5rjvnnhrq3tes6ghshzpqh on 44'/118'/0'/0/0) #0 js:2:mantra:mantra1rs97j43nfyvc689y5rjvnnhrq3tes6ghshzpqh:
undefined: 0.040508 OM (0ops) (mantra1qvtnzptp30maznnhdg30xl2jtdq2shpnvh0jgp on 44'/118'/1'/0/0) #1 js:2:mantra:mantra1qvtnzptp30maznnhdg30xl2jtdq2shpnvh0jgp:
undefined: 0.016919 OM (0ops) (mantra1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnt8zry on 44'/118'/2'/0/0) #2 js:2:mantra:mantra1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnt8zry:
undefined: 0.052958 OM (0ops) (mantra1hgyf054qztvmty3cayuw9nedftlhejv5q20867 on 44'/118'/3'/0/0) #3 js:2:mantra:mantra1hgyf054qztvmty3cayuw9nedftlhejv5q20867:
undefined: 0.014598 OM (0ops) (mantra1vc7s929uh2yxyhau4wsg5th9jzedvkurgh65c8 on 44'/118'/4'/0/0) #4 js:2:mantra:mantra1vc7s929uh2yxyhau4wsg5th9jzedvkurgh65c8:
undefined: 0.000818 OM (0ops) (mantra1qgrd8srhvald995uvpeyncvwg7afgkmryhf49x on 44'/118'/5'/0/0) #5 js:2:mantra:mantra1qgrd8srhvald995uvpeyncvwg7afgkmryhf49x:
undefined: 0.000818 OM (0ops) (mantra1n6vccpa77x7xyhnk98jy6gg3rmgjkazxl507xq on 44'/118'/6'/0/0) #6 js:2:mantra:mantra1n6vccpa77x7xyhnk98jy6gg3rmgjkazxl507xq:
undefined: 0.037527 OM (0ops) (mantra1v283e7h2plllyjwgqrexv2ge5e4z252uf23m4f on 44'/118'/7'/0/0) #7 js:2:mantra:mantra1v283e7h2plllyjwgqrexv2ge5e4z252uf23m4f:
undefined: 0.124107 OM (0ops) (mantra1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gf0gl9 on 44'/118'/8'/0/0) #8 js:2:mantra:mantra1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gf0gl9:
undefined: 0.003067 OM (0ops) (mantra1jgk668h53gd9wn09mndq7uzgk80nr5d8fm6zau on 44'/118'/9'/0/0) #9 js:2:mantra:mantra1jgk668h53gd9wn09mndq7uzgk80nr5d8fm6zau:
undefined: 0.016581 OM (0ops) (mantra1733g3dfzj6tulcqtvz628ypuqj0hvlrzqv2ld0 on 44'/118'/10'/0/0) #10 js:2:mantra:mantra1733g3dfzj6tulcqtvz628ypuqj0hvlrzqv2ld0:
undefined: 0.797574 OM (0ops) (mantra1q09970dekm5hdku5tta7p9w6kldyyf259epm3q on 44'/118'/11'/0/0) #11 js:2:mantra:mantra1q09970dekm5hdku5tta7p9w6kldyyf259epm3q:
undefined: 0.250537 OM (0ops) (mantra1yhlye27fl05kg4nhmeu5d579m8ups9ewa9v7pn on 44'/118'/12'/0/0) #12 js:2:mantra:mantra1yhlye27fl05kg4nhmeu5d579m8ups9ewa9v7pn:
undefined: 0.061835 OM (0ops) (mantra1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmldgdd on 44'/118'/13'/0/0) #13 js:2:mantra:mantra1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmldgdd:
undefined: 0.579738 OM (0ops) (mantra1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn4r589 on 44'/118'/14'/0/0) #14 js:2:mantra:mantra1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn4r589:
undefined: 1.15129 OM (0ops) (mantra10wwjgt3uluxt4zq4qxnkcv96nyz4catau944g5 on 44'/118'/15'/0/0) #15 js:2:mantra:mantra10wwjgt3uluxt4zq4qxnkcv96nyz4catau944g5:
undefined: 0.249273 OM (0ops) (mantra1xr8krhp99mp9ncrz6dfgre542nv0rc8lqnaxet on 44'/118'/16'/0/0) #16 js:2:mantra:mantra1xr8krhp99mp9ncrz6dfgre542nv0rc8lqnaxet:
undefined: 0 OM (0ops) (mantra102w826rmvswfhs4zsv2ujhylmd92c28pe03t43 on 44'/118'/17'/0/0) #17 js:2:mantra:mantra102w826rmvswfhs4zsv2ujhylmd92c28pe03t43:
undefined: 0.00000004 CRO (13ops) (cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra on 44'/394'/0'/0/0) #0 js:2:crypto_org:cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra:
undefined: 0.0471127 CRO (28ops) (cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl on 44'/394'/1'/0/0) #1 js:2:crypto_org:cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl:
undefined: 0.0314444 CRO (11ops) (cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2 on 44'/394'/2'/0/0) #2 js:2:crypto_org:cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2:
undefined: 1.96796 CRO (26ops) (cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd on 44'/394'/3'/0/0) #3 js:2:crypto_org:cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd:
undefined: 0 CRO (17ops) (cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l on 44'/394'/4'/0/0) #4 js:2:crypto_org:cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l:
undefined: 14.7674 CRO (23ops) (cro1zfhcf2htapdkjlw4ffqzce7yfe6mhscd2su05p on 44'/394'/5'/0/0) #5 js:2:crypto_org:cro1zfhcf2htapdkjlw4ffqzce7yfe6mhscd2su05p:
undefined: 0.978955 CRO (15ops) (cro1gfrsr7eerpuc0zpl4j6wp3aj55gqahtls2hj9h on 44'/394'/6'/0/0) #6 js:2:crypto_org:cro1gfrsr7eerpuc0zpl4j6wp3aj55gqahtls2hj9h:
undefined: 2.84139 CRO (11ops) (cro1e2gxhqvvdhxnwd4k4txhegngcpudus6xq4jerk on 44'/394'/7'/0/0) #7 js:2:crypto_org:cro1e2gxhqvvdhxnwd4k4txhegngcpudus6xq4jerk:
undefined: 7.44954 CRO (6ops) (cro1rsl6f6zw3ygj4a0dj6ks8e72c0na4d2djzjfer on 44'/394'/8'/0/0) #8 js:2:crypto_org:cro1rsl6f6zw3ygj4a0dj6ks8e72c0na4d2djzjfer:
undefined: 3.49273 CRO (5ops) (cro1hguy0m603wmgs73m4ya68946e9ym392npqjt64 on 44'/394'/9'/0/0) #9 js:2:crypto_org:cro1hguy0m603wmgs73m4ya68946e9ym392npqjt64:
undefined: 0.0596492 CRO (2ops) (cro1un0mqythaxtt8eegq5ycqhry33fwk873dmxlu9 on 44'/394'/10'/0/0) #10 js:2:crypto_org:cro1un0mqythaxtt8eegq5ycqhry33fwk873dmxlu9:
undefined: 1.90042 CRO (2ops) (cro1e4x938jzzfdjt37f9vlwj005ay0x2l8r8yknfd on 44'/394'/11'/0/0) #11 js:2:crypto_org:cro1e4x938jzzfdjt37f9vlwj005ay0x2l8r8yknfd:
undefined: 0.423295 CRO (1ops) (cro163wn7llaw9e65rm5u5uz24ar0qdmk0ym7x9vrc on 44'/394'/12'/0/0) #12 js:2:crypto_org:cro163wn7llaw9e65rm5u5uz24ar0qdmk0ym7x9vrc:
undefined: 0.78945 CRO (1ops) (cro1arktckp24j6zuwmsq7wgdjm39vsamfrwqgjm7w on 44'/394'/13'/0/0) #13 js:2:crypto_org:cro1arktckp24j6zuwmsq7wgdjm39vsamfrwqgjm7w:
undefined: 0 CRO (0ops) (cro1cwygeeecpyazd2kmhtgx65hmf2lsmuyjx52mee on 44'/394'/14'/0/0) #14 js:2:crypto_org:cro1cwygeeecpyazd2kmhtgx65hmf2lsmuyjx52mee:
undefined: 0.017971 XION (7ops) (xion1rs97j43nfyvc689y5rjvnnhrq3tes6ghe4j84x on 44'/118'/0'/0/0) #0 js:2:xion:xion1rs97j43nfyvc689y5rjvnnhrq3tes6ghe4j84x:
undefined: 0.014081 XION (6ops) (xion1qvtnzptp30maznnhdg30xl2jtdq2shpn94l5as on 44'/118'/1'/0/0) #1 js:2:xion:xion1qvtnzptp30maznnhdg30xl2jtdq2shpn94l5as:
undefined: 0 XION (6ops) (xion1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw6fhyk4 on 44'/118'/2'/0/0) #2 js:2:xion:xion1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw6fhyk4:
undefined: 0.020178 XION (17ops) (xion1hgyf054qztvmty3cayuw9nedftlhejv5fglp00 on 44'/118'/3'/0/0) #3 js:2:xion:xion1hgyf054qztvmty3cayuw9nedftlhejv5fglp00:
undefined: 0.014644 XION (7ops) (xion1vc7s929uh2yxyhau4wsg5th9jzedvkurp42jdk on 44'/118'/4'/0/0) #4 js:2:xion:xion1vc7s929uh2yxyhau4wsg5th9jzedvkurp42jdk:
undefined: 0.01082 XION (7ops) (xion1qgrd8srhvald995uvpeyncvwg7afgkmrd4ensh on 44'/118'/5'/0/0) #5 js:2:xion:xion1qgrd8srhvald995uvpeyncvwg7afgkmrd4ensh:
undefined: 0 XION (9ops) (xion1n6vccpa77x7xyhnk98jy6gg3rmgjkazxkklcn3 on 44'/118'/6'/0/0) #6 js:2:xion:xion1n6vccpa77x7xyhnk98jy6gg3rmgjkazxkklcn3:
undefined: 0.009945 XION (1ops) (xion1v283e7h2plllyjwgqrexv2ge5e4z252uqgpaqc on 44'/118'/7'/0/0) #7 js:2:xion:xion1v283e7h2plllyjwgqrexv2ge5e4z252uqgpaqc:
undefined: 0 XION (0ops) (xion1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ptlw25 on 44'/118'/8'/0/0) #8 js:2:xion:xion1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ptlw25:
undefined: 0.032956 ROCK (14ops) (zen1rs97j43nfyvc689y5rjvnnhrq3tes6ghp36y0u on 44'/118'/0'/0/0) #0 js:2:zenrock:zen1rs97j43nfyvc689y5rjvnnhrq3tes6ghp36y0u:
undefined: 0.614383 ROCK (9ops) (zen1qvtnzptp30maznnhdg30xl2jtdq2shpna3hh82 on 44'/118'/1'/0/0) #1 js:2:zenrock:zen1qvtnzptp30maznnhdg30xl2jtdq2shpna3hh82:
undefined: 0 ROCK (7ops) (zen1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzdl8v0 on 44'/118'/2'/0/0) #2 js:2:zenrock:zen1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzdl8v0:
undefined: 1.945 ROCK (4ops) (zen1hgyf054qztvmty3cayuw9nedftlhejv53vhz44 on 44'/118'/3'/0/0) #3 js:2:zenrock:zen1hgyf054qztvmty3cayuw9nedftlhejv53vhz44:
undefined: 2.47733 ROCK (4ops) (zen1vc7s929uh2yxyhau4wsg5th9jzedvkure3z3hv on 44'/118'/4'/0/0) #4 js:2:zenrock:zen1vc7s929uh2yxyhau4wsg5th9jzedvkure3z3hv:
undefined: 4.72306 ROCK (4ops) (zen1qgrd8srhvald995uvpeyncvwg7afgkmr433s2d on 44'/118'/5'/0/0) #5 js:2:zenrock:zen1qgrd8srhvald995uvpeyncvwg7afgkmr433s2d:
undefined: 0 ROCK (0ops) (zen1n6vccpa77x7xyhnk98jy6gg3rmgjkazxwjhmft on 44'/118'/6'/0/0) #6 js:2:zenrock:zen1n6vccpa77x7xyhnk98jy6gg3rmgjkazxwjhmft:
undefined: 0.00721907 EGLD (503ops) (erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp on 44'/508'/0'/0/0) #0 js:2:elrond:erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp:
undefined: 0.0144904 EGLD (536ops) (erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6 on 44'/508'/1'/0/0) #1 js:2:elrond:erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6:
undefined: 0.230115 EGLD (529ops) (erd1ql9pxrhe29cjr8qgxx3rtmh9lyax5x9dkvu3mfzrgt4e8hwk536ssl4sea on 44'/508'/2'/0/0) #2 js:2:elrond:erd1ql9pxrhe29cjr8qgxx3rtmh9lyax5x9dkvu3mfzrgt4e8hwk536ssl4sea:
undefined: 0.161909 EGLD (494ops) (erd1sjvd5mh946cty4wq0ya0d82509tc8eulxjujrad5ztfwjlhkqz0qy5yzmn on 44'/508'/3'/0/0) #3 js:2:elrond:erd1sjvd5mh946cty4wq0ya0d82509tc8eulxjujrad5ztfwjlhkqz0qy5yzmn:
undefined: 0.198054 EGLD (459ops) (erd149kzxgtymzzaddanlj02zhyhwves9wspvk8p69u325tjln5en9aqf8x8el on 44'/508'/4'/0/0) #4 js:2:elrond:erd149kzxgtymzzaddanlj02zhyhwves9wspvk8p69u325tjln5en9aqf8x8el:
undefined: 0.0825241 EGLD (417ops) (erd143yn6uvrfzjptq5g7wvzntl3fcthsxtxrp9f3dgasluj6q5n0pxq2td67n on 44'/508'/5'/0/0) #5 js:2:elrond:erd143yn6uvrfzjptq5g7wvzntl3fcthsxtxrp9f3dgasluj6q5n0pxq2td67n:
undefined: 0.216782 EGLD (330ops) (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: 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.0470425 POL (466ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:polygon:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00078088 POL (413ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:polygon:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00227652 POL (436ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:polygon:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0935202 POL (441ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:polygon:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.466683 POL (415ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:polygon:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0.923016 POL (299ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:polygon:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 1.49502 POL (225ops) (0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E on 44'/60'/6'/0/0) #6 js:2:polygon:0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E:
undefined: 3.27845 POL (218ops) (0x48ec5fC762B9300e3B5e04E8ca634165240A1B15 on 44'/60'/7'/0/0) #7 js:2:polygon:0x48ec5fC762B9300e3B5e04E8ca634165240A1B15:
undefined: 12.4749 POL (202ops) (0x6434189D6179FB9DE41b392ED67a85C9F63216F6 on 44'/60'/8'/0/0) #8 js:2:polygon:0x6434189D6179FB9DE41b392ED67a85C9F63216F6:
undefined: 0 POL (0ops) (0x401C9CcB29d92ee707C6271ea5126aA6c257a37E on 44'/60'/9'/0/0) #9 js:2:polygon:0x401C9CcB29d92ee707C6271ea5126aA6c257a37E:
undefined: 0.00072909 𝚝ETH (150ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00036839 𝚝ETH (181ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00044794 𝚝ETH (170ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:ethereum_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0001192 𝚝ETH (147ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00094081 𝚝ETH (133ops) (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.00100695 𝚝ETH (356ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_holesky:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00139465 𝚝ETH (360ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_holesky:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.143212 𝚝ETH (381ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:ethereum_holesky:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0166678 𝚝ETH (314ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_holesky:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.0651399 𝚝ETH (236ops) (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.00077146 ETH (173ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00084625 ETH (193ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0007354 ETH (155ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00205935 ETH (138ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00067337 ETH (165ops) (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.00103084 𝚝ETH (268ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00066126 𝚝ETH (316ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0146227 𝚝ETH (293ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.21664 𝚝ETH (251ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.750896 𝚝ETH (177ops) (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 (490ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:flare:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.804325 FLR (545ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:flare:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.800893 FLR (494ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:flare:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.796164 FLR (537ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:flare:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.804751 FLR (104ops) (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: 13.8122 SGB (811ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:songbird:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 344.344 SGB (791ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:songbird:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 61.6901 SGB (793ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:songbird:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 489.441 SGB (753ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:songbird:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 27.6197 SGB (292ops) (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.760895 GLMR (666ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonbeam:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 2.45991 GLMR (684ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonbeam:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 1.70572 GLMR (629ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonbeam:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 13.6845 GLMR (667ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonbeam:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 40.1124 GLMR (245ops) (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: 94.4422 BTT (671ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:bittorrent:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 48,390.2 BTT (725ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:bittorrent:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 700,521 BTT (694ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:bittorrent:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 6,523.77 BTT (594ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:bittorrent:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 732,664 BTT (292ops) (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 (33ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:optimism:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00092379 ETH (31ops) (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: 1.51686 EWT (556ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:energy_web:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.792608 EWT (643ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:energy_web:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 2.29901 EWT (636ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:energy_web:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.612063 EWT (627ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:energy_web:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 2.30238 EWT (304ops) (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: 0.683675 ASTR (714ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:astar:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 25.048 ASTR (700ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:astar:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 49.5711 ASTR (700ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:astar:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 78.4626 ASTR (604ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:astar:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 163.126 ASTR (266ops) (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.0206716 METIS (26ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:metis:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0140571 METIS (26ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:metis:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00634241 METIS (25ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:metis:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00828424 METIS (25ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:metis:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.0782711 METIS (25ops) (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: 0.157051 MOVR (535ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonriver:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0722796 MOVR (579ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonriver:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0635707 MOVR (598ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonriver:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 1.60601 MOVR (560ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonriver:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.32526 MOVR (244ops) (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: 7.17795 VLX (101ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:velas_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 20.6924 VLX (101ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:velas_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 57.1519 VLX (100ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:velas_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 261.14 VLX (100ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:velas_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 565.823 VLX (100ops) (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.728668 SYS (684ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:syscoin:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 2.10289 SYS (683ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:syscoin:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 1.45025 SYS (665ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:syscoin:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 13.522 SYS (584ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:syscoin:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 39.2286 SYS (284ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:syscoin:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
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.00089317 𝚝ETH (285ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:base_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.019636 𝚝ETH (285ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:base_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.222787 𝚝ETH (266ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:base_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.170185 𝚝ETH (262ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:base_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.563556 𝚝ETH (215ops) (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: 2.68938 NEON (325ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:neon_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.396002 NEON (332ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:neon_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 8.30518 NEON (336ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:neon_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 2.0104 NEON (326ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:neon_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.351763 NEON (323ops) (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.00712542 LYX (358ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:lukso:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00671391 LYX (415ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:lukso:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00766466 LYX (390ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:lukso:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.124999 LYX (393ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:lukso:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.336729 LYX (275ops) (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.0008738 ETH (222ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:linea:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00169289 ETH (233ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:linea:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00085643 ETH (275ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:linea:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00089144 ETH (240ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:linea:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00084757 ETH (235ops) (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.00490093 ETH (83ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:blast:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0.00080789 ETH (95ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:blast:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00088289 ETH (75ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:blast:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00171373 ETH (91ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:blast:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00056496 ETH (99ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:blast:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.0500394 𝚝ETH (1ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 𝚝ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:blast_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.01 ETH (2ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:scroll:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:scroll:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.05 𝚝ETH (1ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:scroll_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 𝚝ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:scroll_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0 XTZ (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:etherlink:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.003 ETH (3ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:zksync:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:zksync:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:zksync_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.326438 HBAR (658ops) (0.0.3663977 on 44/3030) hederaBip44#0 js:2:hedera:0.0.3663977:hederaBip44
undefined: 0.117671 HBAR (611ops) (0.0.3664525 on 44/3030) hederaBip44#1 js:2:hedera:0.0.3664525:hederaBip44
undefined: 16.7136 HBAR (562ops) (0.0.3664539 on 44/3030) hederaBip44#2 js:2:hedera:0.0.3664539:hederaBip44
undefined: 21.2099 HBAR (541ops) (0.0.3664563 on 44/3030) hederaBip44#3 js:2:hedera:0.0.3664563:hederaBip44
undefined: 0.00007707 ICP (201ops) (f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209 on 44'/223'/0'/0/0) internet_computer#0 js:2:internet_computer:04e529ca9ff4709b35af64dce4f0719e770d5e185e4ee972729b75495b27628fad0990203fe3ac7079c643a6dd23384e597c65b7bbebbf994b8304253f1bd124e4:internet_computer
undefined: 0.0000472 ICP (177ops) (6084b3d34e7d4efd544ea0c3617a816577d00feb0de0db71b560b7687e7d3c14 on 44'/223'/0'/0/1) internet_computer#1 js:2:internet_computer:0404b6a7df5dd483be4711fbdc9248af1e49b3a205334120118fe1dd9567da874d2655f681d9935b02139ffe1997c7fcb7781c04917303d90c7ea157d495ec30d3:internet_computer
undefined: 0.00003854 ICP (186ops) (ff5ed1dc2538d7a8b3158e7c9d9b05f80bc5f49f292f1ad2a59576a70bfc4721 on 44'/223'/0'/0/2) internet_computer#2 js:2:internet_computer:04c6d5dab70167c7b104904e57ee8afc84e8b4809c927ceec353a217f1402438b86bb9515e5bdbcc8f187c2c0c5f539d6459fc99c86af1244f452175fd9b736714:internet_computer
undefined: 0.00041458 ICP (170ops) (a45d0e0afb2c416464342615b6ee1902ac6895cf5e9eab2ccc184978164e9310 on 44'/223'/0'/0/3) internet_computer#3 js:2:internet_computer:040e411918ebc5963b5f89938dd674d6cb95131ce3d335957cd8efd99cce3521ea22b3f0fc53996b9ce3373a86ca57def22b89829ae905fde5d22c4522a7af5aa2:internet_computer
undefined: 0.00025827 ICP (169ops) (5084840b6ed50fa97b40c93863092770dc74f42bd2fbc742b76ec2999e789262 on 44'/223'/0'/0/4) internet_computer#4 js:2:internet_computer:046036d79bf131623410cfe77b7ccc32c923c6f8dc1b62448111328a2a791b1a7df2d1d4ca80659f3f0613e2334df370ab1c4e38c724decdf7f9f650a61e4ea090:internet_computer
undefined: 0.00398393 ICP (127ops) (0ec8cbc167cf495b7800efe653586d14ee0a53ef8880c63129b180580b02a8af on 44'/223'/0'/0/5) internet_computer#5 js:2:internet_computer:04e3bde2b3aeee5ae2af7ffdd25cc416df033c04d084ac02166ee52281e81be7945b119ab171b224984a8ff45adf4cbf28a392524dbefff12edf5d2470efd43375:internet_computer
undefined: 0.985158 ICP (86ops) (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: 0.00602869 ICX (83ops) (hxdd614da5f057ce32185619f98edd81445a946ea5 on 44'/4801368'/0'/0'/0') icon#0 js:2:icon:hxdd614da5f057ce32185619f98edd81445a946ea5:icon
undefined: 0.00439767 ICX (88ops) (hx895d4e11fae4c0d5280481752a19d819c1657f67 on 44'/4801368'/0'/0'/1') icon#1 js:2:icon:hx895d4e11fae4c0d5280481752a19d819c1657f67:icon
undefined: 0.00431388 ICX (85ops) (hx227e5543bd947e939d4f4dd3361627f3963cc7bf on 44'/4801368'/0'/0'/2') icon#2 js:2:icon:hx227e5543bd947e939d4f4dd3361627f3963cc7bf:icon
undefined: 0.00306388 ICX (60ops) (hxce13c96a270a5f5a7cfeba91273e6d726b152ea3 on 44'/4801368'/0'/0'/3') icon#3 js:2:icon:hxce13c96a270a5f5a7cfeba91273e6d726b152ea3:icon
undefined: 0.0023398 ICX (58ops) (hxc11d409cce9c51ba10497e8095802210a41a13c4 on 44'/4801368'/0'/0'/4') icon#4 js:2:icon:hxc11d409cce9c51ba10497e8095802210a41a13c4:icon
undefined: 0.119748 ICX (38ops) (hxdac11c144fd926ed044199586ccdc14df1ac7313 on 44'/4801368'/0'/0'/5') icon#5 js:2:icon:hxdac11c144fd926ed044199586ccdc14df1ac7313:icon
undefined: 9.5826 ICX (33ops) (hx793091df35b221dacb509a7b581c060478329ea2 on 44'/4801368'/0'/0'/6') icon#6 js:2:icon:hx793091df35b221dacb509a7b581c060478329ea2:icon
undefined: 0 ICX (0ops) (hxfc7ad3c322576ea4daa967f6e50200e55ad51ee5 on 44'/4801368'/0'/0'/7') icon#7 js:2:icon:hxfc7ad3c322576ea4daa967f6e50200e55ad51ee5:icon
undefined: 0.44455 NEAR (66ops) (0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf on 44'/397'/0'/0'/0') nearbip44h#0 js:2:near:0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf:nearbip44h
undefined: 0.0519695 NEAR (20ops) (85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798 on 44'/397'/0'/0'/1') nearbip44h#1 js:2:near:85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798:nearbip44h
undefined: 0.0520316 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.0520991 NEAR (22ops) (aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93 on 44'/397'/0'/0'/4') nearbip44h#4 js:2:near:aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93:nearbip44h
undefined: 0.0525182 NEAR (32ops) (07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce on 44'/397'/0'/0'/5') nearbip44h#5 js:2:near:07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce:nearbip44h
undefined: 0.0519972 NEAR (18ops) (bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7 on 44'/397'/0'/0'/6') nearbip44h#6 js:2:near:bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7:nearbip44h
undefined: 0.4451 NEAR (9ops) (e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2 on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2:nearbip44h
undefined: 0.206489 NEAR (14ops) (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: 3.46151 XLM (604ops) (GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC on 44'/148'/0') sep5#0 js:2:stellar:GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC:sep5
undefined: 1.5005 XLM (579ops) (GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ on 44'/148'/1') sep5#1 js:2:stellar:GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ:sep5
undefined: 40.4301 XLM (600ops) (GA4A2FH4YYI2RXPUC3NPGZQP7XX4CEJNREB27XVX7B7D5RIA3KOLSKTI on 44'/148'/2') sep5#2 js:2:stellar:GA4A2FH4YYI2RXPUC3NPGZQP7XX4CEJNREB27XVX7B7D5RIA3KOLSKTI:sep5
undefined: 1.5005 XLM (560ops) (GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM on 44'/148'/3') sep5#3 js:2:stellar:GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM:sep5
undefined: 19.5853 XLM (535ops) (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: 2.5797 XTZ (154ops) (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: 2.64387 XTZ (1ops) (tz1SApkt3kmMaqNE1qtgADc6m3B49HZkFVDA on 44'/1729'/2'/0') tezbox#2 js:2:tezos:029d7bcf10737806147b22ba4578747ce4ac53e26b443c9eb1ac0e4d5bfbb8f67e:tezbox
undefined: 0 XTZ (0ops) (tz1cCUsHo56gpb1KAjkzQqJfkKaUi4XPU2Kw on 44'/1729'/3'/0') tezbox#3 js:2:tezos:021b9babf0a0b9f179296df0132bfdd9bd54da94187f8798493ec4c173e8371e31:tezbox
undefined: 0.01009 TON (29ops) (UQDL7vAIogYGacmfO0xTS1bwPEMJNh1g1Jliwq2p-qWkS1J0 on 44'/607'/0'/0'/0'/0') ton#0 js:2:ton:3f0a4cc222f4d9b4d8bcfb5d0cb4a8908bbcb4a5e375c7ef745e6e78b780669d:ton
undefined: 0 TON (47ops) (UQCgFq3YfNA6MbXU__1AX1iSOy-iS5O5iIvqVprRQINAfACO on 44'/607'/0'/0'/1'/0') ton#1 js:2:ton:160444af87a5a38726dbe60ed81906095cb3e196ea1f7d5ec1be614945346359:ton
undefined: 0.0080161 TON (25ops) (UQCrRfsP_wKs6y2TfaBzZUzPDcH-gRignkJkeOkP3KXlParY on 44'/607'/0'/0'/2'/0') ton#2 js:2:ton:bb17bd2bb498dacdb2f2463285608bdee79f93b0300767a0729102f44cfec852:ton
undefined: 0.0131815 TON (28ops) (UQDkfo-2gm0LAN6Rs80vnTTHUtlEAn7TomCLKLhvbcw1LSHG on 44'/607'/0'/0'/3'/0') ton#3 js:2:ton:0ca11456791dafa4f1bd25138797661aaf6fa6e4d7d4606efc6757c8ef907291:ton
undefined: 0.0151678 TON (17ops) (UQCn-JC2p2S4NWRhqrHkuNmoziSwZ2rSYOIlq-GDUd2V0cq2 on 44'/607'/0'/0'/4'/0') ton#4 js:2:ton:00eb62bbc9b4515d20d3381b34c542c3cfdfdf1a3603eea8a25996ff01342b6a:ton
undefined: 0 TON (19ops) (UQA1a4iC0Zft5IaIfHEZvL9UH6XDT21vhezrmtOJGtSbMvFs on 44'/607'/0'/0'/5'/0') ton#5 js:2:ton:dedd6076377fcb492a47dba85c9cbfcec6f9b9df123355f1ac41a06890b1679b:ton
undefined: 0 TON (0ops) (UQAh3HfAveN89UPrnRe8jGWc9gGQRX6B2kY706gRUUsba10A on 44'/607'/0'/0'/6'/0') ton#6 js:2:ton:cd66d0f8aed63caa55661c8d43c5bfcf08d24e007275757711bbf3e4980d5075:ton
undefined: 0 VET (10ops) (0xc4B17901FECf86932c3bb296BB00E7c6816Fd416 on 44'/818'/0'/0/0) vechain#0 js:2:vechain:0xc4B17901FECf86932c3bb296BB00E7c6816Fd416:vechain
undefined: 2.65625 VET (7ops) (0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD on 44'/818'/0'/0/1) vechain#1 js:2:vechain:0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD:vechain
undefined: 2.34375 VET (2ops) (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 VET (10ops) (0xc4B17901FECf86932c3bb296BB00E7c6816Fd416 on 44'/818'/0'/0/0) vechain#0 js:2:vechain:0xc4B17901FECf86932c3bb296BB00E7c6816Fd416:vechain
undefined: 2.65625 VET (7ops) (0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD on 44'/818'/0'/0/1) vechain#1 js:2:vechain:0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD:vechain
undefined: 2.34375 VET (2ops) (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: 1.08088 XRP (200ops) (r9etPtq3oboweMPju5gdYufmvwhH2euz8z on 44'/144'/0'/0/0) #0 js:2:ripple:r9etPtq3oboweMPju5gdYufmvwhH2euz8z:
undefined: 1.21901 XRP (201ops) (rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH on 44'/144'/1'/0/0) #1 js:2:ripple:rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH:
undefined: 2.84698 XRP (201ops) (rMoFGec38toFg9ncbi9YbrYYmrP3G5exqn on 44'/144'/2'/0/0) #2 js:2:ripple:rMoFGec38toFg9ncbi9YbrYYmrP3G5exqn:
undefined: 38.8558 XRP (41ops) (rrnxW3THwB1ubsE9V78Lek6V1XYnNrodxC on 44'/144'/3'/0/0) #3 js:2:ripple:rrnxW3THwB1ubsE9V78Lek6V1XYnNrodxC:
undefined: 0 XRP (0ops) (rPX1z7bA8Mz7KQHetnwuqbEQMGApv8XKAu on 44'/144'/4'/0/0) #4 js:2:ripple:rPX1z7bA8Mz7KQHetnwuqbEQMGApv8XKAu:
Performance ⏲ 18min 51s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 12.1s 51min 23s 11.4s 56.2s 7min 36s 30.4s 14min 15s 9min 32s
Casper (0) N/A N/A N/A N/A N/A N/A N/A N/A
Celo (11) 1171ms 1min 54s 3.4s 1346ms 5.7s 5.7s 12.7s N/A
Algorand (5) 1.65ms 2min 33s 1.23ms 1015ms 13.5s 164ms 10.2s 10.6s
Aptos (0) N/A N/A N/A N/A N/A N/A N/A N/A
Bitcoin Testnet (9) 0.45ms 2min 11s 2.52ms N/A N/A N/A N/A N/A
Bitcoin Cash (6) 0.56ms 97.6s 13ms 905ms 25.7s 385ms 35.1s 35.4s
Bitcoin Gold (4) 0.18ms 89.3s 54ms 1095ms 43.8s 464ms 50.5s 49.6s
Dash (6) 0.14ms 87.6s 6ms 1912ms 37.8s 366ms 51.1s 48.2s
Digibyte (6) 0.15ms 88.1s 1.82ms 1191ms 34.2s 394ms 53.3s 50.6s
DogeCoin (6) 0.14ms 68.3s 2.70ms N/A N/A N/A N/A N/A
Komodo (4) 1.06ms 52.5s 1.03ms 3.2s 44.6s 541ms 47.7s 48.4s
Litecoin (6) 0.50ms 89s 1.65ms 902ms 26.4s 408ms 51.5s 49.3s
ZCash (4) 0.28ms 23.8s 1.36ms N/A N/A N/A N/A N/A
Horizen (4) 0.17ms 23.1s 1.11ms 500ms 17.6s 207ms 23s 23.7s
osmosis (17) 380ms 24.2s 5ms 461ms 4.8s 78ms 11.6s 10.3s
desmos (17) 1090ms 1min 42s 4.7s 8.1s 13.1s N/A N/A N/A
dydx (17) 213ms 48.6s 14ms N/A N/A N/A N/A N/A
umee (17) 287ms 22.1s 23ms 594ms 13.8s 140ms 0.31ms N/A
persistence (17) 230ms 73.8s 19ms 449ms 15.1s 107ms 0.18ms N/A
quicksilver (17) 527ms 75s 10ms 345ms 11.9s 59ms 9ms N/A
onomy (17) 334ms 40.7s 14ms 626ms 10.1s 98ms 0.34ms N/A
sei_network (15) 210ms 34.9s 19ms N/A N/A N/A N/A N/A
stargaze (17) 293ms 82.6s 22ms 625ms 6.4s 68ms 0.24ms N/A
coreum (17) 282ms 90.9s 6ms 326ms 6.7s 3.9s 0.33ms N/A
injective (0) 512ms N/A N/A N/A N/A N/A N/A N/A
mantra (17) 940ms 99.6s 28ms 1472ms 5.6s 238ms 0.24ms N/A
crypto_org (14) 349ms 71.3s 3.18ms 561ms 5.6s 73ms 0.28ms N/A
xion (8) 357ms 23.5s 41ms N/A N/A N/A N/A N/A
zenrock (6) 83ms 18s 1.41ms 145ms 12.2s 83ms 0.18ms N/A
Elrond (7) 376ms 93.2s 3.34ms 2.64ms 5.3s 372ms 12.2s 22.1s
Ethereum Classic (5) 68ms 23.2s 2.92ms N/A N/A N/A N/A N/A
Polygon (9) 169ms 89.8s 9ms 745ms 5.9s 45ms 60.5s 10.2s
Ethereum Sepolia (5) 37ms 33.2s 11ms N/A N/A N/A N/A N/A
Ethereum Holesky (5) 35ms 1min 56s 40ms 1508ms 3.5s 57ms 20.3s 10.2s
Arbitrum (5) 89ms 11s 15ms 1263ms 4.1s 550ms 11.1s 11.2s
Arbitrum Sepolia (5) 48ms 15.6s 1.40ms 764ms 4.1s 295ms 11.5s 11.6s
Flare (5) 38ms 12.8s 9ms N/A N/A N/A N/A N/A
Songbird (5) 43ms 7.3s 4.46ms 223ms 4s 62ms 10.5s 10.6s
Moonbeam (5) 42ms 17s 2.00ms 376ms 3.5s 137ms 21.5s 11.6s
Rootstock (4) 68ms 14.9s 0.97ms N/A N/A N/A N/A N/A
Bittorent Chain (5) 38ms 14.2s 1.62ms 487ms 4.1s 155ms 11.9s 11.8s
OP Mainnet (4) 51ms 4.2s 29ms N/A N/A N/A N/A N/A
OP Sepolia (0) 90ms 1476ms N/A N/A N/A N/A N/A N/A
Energy Web (5) 40ms 8.4s 3.84ms 1108ms 4s 376ms 11.1s 12s
Astar (5) 36ms 10.4s 9ms 623ms 3.8s 411ms 32s 12.1s
Metis (5) 39ms 49.4s 1.17ms 223ms 4s 384ms 21.1s 13.2s
Moonriver (5) 43ms 14.9s 7ms 376ms 3.2s 123ms 31.5s 11.6s
Velas EVM (5) 91ms 7.1s 2.56ms 687ms 5.5s 418ms 20.8s 11.5s
Syscoin (5) 38ms 7.5s 6ms 298ms 3.7s 99ms 2min 3s 10.5s
Polygon zkEVM Testnet (0) 185ms N/A N/A N/A N/A N/A N/A N/A
Base (4) 189ms 7s 7ms N/A N/A N/A N/A N/A
Base Sepolia (5) 91ms 6.6s 8ms 868ms 4.3s 285ms 10.5s 10.6s
Klaytn (0) 32ms N/A N/A N/A N/A N/A N/A N/A
Neon EVM (5) 39ms 9.5s 1.10ms N/A N/A N/A N/A N/A
Lukso (5) 39ms 5.4s 1.12ms 436ms 4.3s 110ms 20.4s 10.4s
Linea (5) 46ms 14.4s 1.22ms 1000ms 4.2s 358ms 11.7s 11.6s
Linea Sepolia (0) 113ms 2618ms N/A N/A N/A N/A N/A N/A
Blast (5) 36ms 6.8s 515ms 180ms 5.8s 254ms N/A N/A
Blast Sepolia (1) 121ms 4.9s 0.33ms 612ms N/A N/A N/A N/A
Scroll (1) 63ms 2913ms 0.87ms N/A N/A N/A N/A N/A
Scroll Sepolia (1) 86ms 3.4s 0.51ms N/A N/A N/A N/A N/A
Etherlink (0) 70ms 1295ms N/A N/A N/A N/A N/A N/A
ZKsync (1) 44ms 6.3s 0.25ms N/A N/A N/A N/A N/A
ZKsync Sepolia (0) 99ms 4.9s N/A N/A N/A N/A N/A N/A
Hedera (4) 0.40ms 4min 11s 7ms 381ms 7.2s 1166ms 20.5s 20.8s
InternetComputer (7) 0.36ms 20.5s 15ms 4.2s 7.2s 1764ms 11.5s 10.6s
Icon (7) 0.42ms 24.2s 1548ms 4.3s 504ms 149ms 13s N/A
NEAR (9) 1815ms 1min 42s 4.96ms 806ms N/A N/A N/A N/A
Solana (0) 126ms N/A N/A N/A N/A N/A N/A N/A
Stacks (0) N/A N/A N/A N/A N/A N/A N/A N/A
Stellar (5) 0.39ms 2min 29s 728ms 1006ms 4.7s 9.2s 10.9s N/A
Tezos (3) 212ms 20.6s 16ms 2932ms N/A N/A N/A N/A
TON (6) 0.29ms 27.2s 2.08ms 3.6s N/A N/A N/A N/A
VeChain VTHO (3) 0.43ms 13.3s 0.91ms N/A N/A N/A N/A N/A
VeChain VET (3) 0.06ms 12.9s 1.46ms N/A N/A N/A N/A N/A
XRP (4) 0.29ms 10.6s 7ms 1409ms 4.6s 164ms 11.4s 11.5s

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

Please sign in to comment.