Skip to content

Commit

Permalink
Merge pull request #7170 from LedgerHQ/feat/DSDK-352-keyring-mapper
Browse files Browse the repository at this point in the history
Feat/dsdk 352 keyring mapper
  • Loading branch information
aussedatlo authored Jun 25, 2024
2 parents 22962ba + 5ed9a8b commit 5388f72
Show file tree
Hide file tree
Showing 28 changed files with 690 additions and 209 deletions.
5 changes: 5 additions & 0 deletions .changeset/fast-feet-double.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@ledgerhq/keyring-eth": minor
---

Support the specific transaction type of ledger live
5 changes: 5 additions & 0 deletions .changeset/tall-hats-sin.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@ledgerhq/context-module": minor
---

Remove the dependency of ethers, replaced by custom types: TransactionContext in input and ClearSignContext in output
7 changes: 3 additions & 4 deletions libs/ledgerjs/packages/context-module/src/ContextModule.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { ContextResponse } from "./shared/model/ContextResponse";
import { LoaderOptions } from "./shared/model/LoaderOptions";
import { Transaction } from "./shared/model/Transaction";
import { ClearSignContext } from "./shared/model/ClearSignContext";
import { TransactionContext } from "./shared/model/TransactionContext";

export interface ContextModule {
getContexts(transaction: Transaction, options: LoaderOptions): Promise<ContextResponse[]>;
getContexts(transaction: TransactionContext): Promise<ClearSignContext[]>;
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { DefaultContextModule } from "./DefaultContextModule";
import { LoaderOptions } from "./shared/model/LoaderOptions";
import { Transaction } from "./shared/model/Transaction";
import { TransactionContext } from "./shared/model/TransactionContext";

const contextLoaderStubBuilder = () => {
return { load: jest.fn() };
Expand All @@ -14,15 +13,15 @@ describe("DefaultContextModule", () => {
it("should initialize the context module with all the default loaders", async () => {
const contextModule = new DefaultContextModule({ loaders: [] });

const res = await contextModule.getContexts({} as Transaction, {} as LoaderOptions);
const res = await contextModule.getContexts({} as TransactionContext);

expect(res).toEqual([]);
});

it("should return an empty array when no loaders", async () => {
const contextModule = new DefaultContextModule({ loaders: [] });

const res = await contextModule.getContexts({} as Transaction, {} as LoaderOptions);
const res = await contextModule.getContexts({} as TransactionContext);

expect(res).toEqual([]);
});
Expand All @@ -31,7 +30,7 @@ describe("DefaultContextModule", () => {
const loader = contextLoaderStubBuilder();
const contextModule = new DefaultContextModule({ loaders: [loader, loader] });

await contextModule.getContexts({} as Transaction, {} as LoaderOptions);
await contextModule.getContexts({} as TransactionContext);

expect(loader.load).toHaveBeenCalledTimes(2);
});
Expand All @@ -51,7 +50,7 @@ describe("DefaultContextModule", () => {
.mockResolvedValueOnce(responses[1]);
const contextModule = new DefaultContextModule({ loaders: [loader, loader] });

const res = await contextModule.getContexts({} as Transaction, {} as LoaderOptions);
const res = await contextModule.getContexts({} as TransactionContext);

expect(loader.load).toHaveBeenCalledTimes(2);
expect(res).toEqual(responses.flat());
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { ContextModule } from "./ContextModule";
import { ContextLoader } from "./shared/domain/ContextLoader";
import { ContextResponse } from "./shared/model/ContextResponse";
import { LoaderOptions } from "./shared/model/LoaderOptions";
import { Transaction } from "./shared/model/Transaction";
import { ClearSignContext } from "./shared/model/ClearSignContext";
import { TransactionContext } from "./shared/model/TransactionContext";

type DefaultContextModuleConstructorArgs = {
loaders: ContextLoader[];
Expand All @@ -15,11 +14,8 @@ export class DefaultContextModule implements ContextModule {
this._loaders = args.loaders;
}

public async getContexts(
transaction: Transaction,
options: LoaderOptions,
): Promise<ContextResponse[]> {
const promises = this._loaders.map(fetcher => fetcher.load(transaction, options));
public async getContexts(transaction: TransactionContext): Promise<ClearSignContext[]> {
const promises = this._loaders.map(fetcher => fetcher.load(transaction));
const responses = await Promise.all(promises);
return responses.flat();
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import { LoaderOptions } from "../../shared/model/LoaderOptions";
import { TokenDataSource } from "../../token/data/TokenDataSource";
import { ExternalPluginDataSource } from "../data/ExternalPluginDataSource";
import { ExternalPluginContextLoader } from "./ExternalPluginContextLoader";
import { Transaction } from "../../shared/model/Transaction";
import { TransactionContext } from "../../shared/model/TransactionContext";
import { SelectorDetails } from "../model/SelectorDetails";
import { DappInfos } from "../model/DappInfos";
import { Interface } from "ethers/lib/utils";
Expand All @@ -28,20 +27,23 @@ const dappInfosBuilder = ({
} as DappInfos;
};

const transactionBuilder = (abi: object, functionName: string, params: unknown[]): Transaction => {
const transactionBuilder = (
abi: object,
functionName: string,
params: unknown[],
): TransactionContext => {
const contract = new Interface(JSON.stringify(abi));
const data = contract.encodeFunctionData(functionName, params);
return {
to: "0x0",
data,
} as Transaction;
} as TransactionContext;
};

describe("ExternalPluginContextLoader", () => {
const mockTokenDataSource: TokenDataSource = { getTokenInfosPayload: jest.fn() };
const mockExternalPluginDataSource: ExternalPluginDataSource = { getDappInfos: jest.fn() };
const loader = new ExternalPluginContextLoader(mockExternalPluginDataSource, mockTokenDataSource);
const emptyOptions = {} as LoaderOptions;

beforeEach(() => {
jest.restoreAllMocks();
Expand All @@ -53,32 +55,32 @@ describe("ExternalPluginContextLoader", () => {
describe("load function", () => {
it("should return an empty array if no destination address is provided", async () => {
// GIVEN
const transaction = {} as Transaction;
const transaction = {} as TransactionContext;

// WHEN
const promise = () => loader.load(transaction, emptyOptions);
const promise = () => loader.load(transaction);

// THEN
expect(promise()).resolves.toEqual([]);
});

it("should return an empty array if data is undefined", async () => {
// GIVEN
const transaction = { to: "0x0" } as Transaction;
const transaction = { to: "0x0" } as TransactionContext;

// WHEN
const result = await loader.load(transaction, emptyOptions);
const result = await loader.load(transaction);

// THEN
expect(result).toEqual([]);
});

it("should return an empty array if no data provided", async () => {
// GIVEN
const transaction = { to: "0x0", data: "0x" } as Transaction;
const transaction = { to: "0x0", data: "0x" } as TransactionContext;

// WHEN
const result = await loader.load(transaction, emptyOptions);
const result = await loader.load(transaction);

// THEN
expect(result).toEqual([]);
Expand All @@ -92,7 +94,7 @@ describe("ExternalPluginContextLoader", () => {
jest.spyOn(mockExternalPluginDataSource, "getDappInfos").mockResolvedValue(undefined);

// WHEN
const result = await loader.load(transaction, emptyOptions);
const result = await loader.load(transaction);

// THEN
expect(result).toEqual([]);
Expand All @@ -109,7 +111,7 @@ describe("ExternalPluginContextLoader", () => {
jest.spyOn(mockExternalPluginDataSource, "getDappInfos").mockResolvedValue(dappInfos);

// WHEN
const result = await loader.load(transaction, emptyOptions);
const result = await loader.load(transaction);

// THEN
expect(result).toEqual([]);
Expand All @@ -127,7 +129,7 @@ describe("ExternalPluginContextLoader", () => {
jest.spyOn(mockExternalPluginDataSource, "getDappInfos").mockResolvedValue(dappInfos);

// WHEN
const result = await loader.load(transaction, emptyOptions);
const result = await loader.load(transaction);

// THEN
expect(result).toEqual(
Expand Down Expand Up @@ -157,7 +159,7 @@ describe("ExternalPluginContextLoader", () => {
jest.spyOn(mockTokenDataSource, "getTokenInfosPayload").mockResolvedValue(undefined);

// WHEN
const result = await loader.load(transaction, emptyOptions);
const result = await loader.load(transaction);

// THEN
expect(result).toEqual([
Expand Down Expand Up @@ -187,7 +189,7 @@ describe("ExternalPluginContextLoader", () => {
jest.spyOn(mockExternalPluginDataSource, "getDappInfos").mockResolvedValue(dappInfos);

// WHEN
const result = await loader.load(transaction, emptyOptions);
const result = await loader.load(transaction);

// THEN
expect(result).toEqual(
Expand Down Expand Up @@ -227,7 +229,7 @@ describe("ExternalPluginContextLoader", () => {
jest.spyOn(mockExternalPluginDataSource, "getDappInfos").mockResolvedValue(dappInfos);

// WHEN
const result = await loader.load(transaction, emptyOptions);
const result = await loader.load(transaction);

// THEN
expect(result).toEqual([
Expand Down Expand Up @@ -271,7 +273,7 @@ describe("ExternalPluginContextLoader", () => {
jest.spyOn(mockExternalPluginDataSource, "getDappInfos").mockResolvedValue(dappInfos);

// WHEN
const promise = loader.load(transaction, emptyOptions);
const promise = loader.load(transaction);

// THEN
expect(promise).rejects.toEqual(
Expand All @@ -294,7 +296,7 @@ describe("ExternalPluginContextLoader", () => {
jest.spyOn(mockExternalPluginDataSource, "getDappInfos").mockResolvedValue(dappInfos);

// WHEN
const promise = loader.load(transaction, emptyOptions);
const promise = loader.load(transaction);

// THEN
expect(promise).rejects.toEqual(
Expand All @@ -321,7 +323,7 @@ describe("ExternalPluginContextLoader", () => {
jest.spyOn(mockExternalPluginDataSource, "getDappInfos").mockResolvedValue(dappInfos);

// WHEN
const promise = loader.load(transaction, emptyOptions);
const promise = loader.load(transaction);

// THEN
expect(promise).rejects.toEqual(
Expand Down Expand Up @@ -366,7 +368,7 @@ describe("ExternalPluginContextLoader", () => {
jest.spyOn(mockExternalPluginDataSource, "getDappInfos").mockResolvedValue(dappInfos);

// WHEN
const result = await loader.load(transaction, emptyOptions);
const result = await loader.load(transaction);

// THEN
expect(result).toEqual([
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
import { ethers } from "ethers";
import { Interface } from "ethers/lib/utils";
import { ContextLoader } from "../../shared/domain/ContextLoader";
import { LoaderOptions } from "../../shared/model/LoaderOptions";
import { Transaction } from "../../shared/model/Transaction";
import { TransactionContext } from "../../shared/model/TransactionContext";
import { TokenDataSource } from "../../token/data/TokenDataSource";
import { ContextResponse } from "../../shared/model/ContextResponse";
import { ClearSignContext } from "../../shared/model/ClearSignContext";
import { ExternalPluginDataSource } from "../data/ExternalPluginDataSource";

export class ExternalPluginContextLoader implements ContextLoader {
Expand All @@ -19,8 +18,8 @@ export class ExternalPluginContextLoader implements ContextLoader {
this._tokenDataSource = tokenDataSource;
}

async load(transaction: Transaction, _options: LoaderOptions) {
const response: ContextResponse[] = [];
async load(transaction: TransactionContext) {
const response: ClearSignContext[] = [];

if (!transaction.to || !transaction.data || transaction.data === "0x") {
return [];
Expand Down
Loading

1 comment on commit 5388f72

@github-actions
Copy link

Choose a reason for hiding this comment

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

[Bot] Daily non-reg on develop with 'Nitrogen' ✅ 159 txs ❌ 18 txs 💰 13 miss funds ($1,164.66) ⏲ 38min 24s

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

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

4 critical spec errors

Spec injective failed!

Error: "Error during injective synchronization: "API HTTP 429 https://injective-api.polkachu.com/cosmos/distribution/v1beta1/delegators/inj1vzjwweta3hegt99vfgrvmcq7rr5532yjsgxd4a/withdraw_address

Spec Peercoin failed!

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

Spec Polygon zkEVM Testnet failed!

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

Spec Solana failed!

NetworkError: failed to get Stake Activation AKACvcmB18HnAHyLWkAqd6egsG8y85z1w2cjN1ypm9TQ: Invalid param: account not found
❌ 18 mutation errors
necessary accounts resynced in 0.18ms
▬ Casper 2.6.3 on nanoSP 1.1.1
→ FROM undefined: 3,124.98 CSPR (59ops) (0203b56bc181780f8fb173bafd8d483d6911282ec46d72692d0a5bbbb29ea242ed76 on 44'/506'/0'/0/2) casper_wallet#2 js:2:casper:0203b56bc181780f8fb173bafd8d483d6911282ec46d72692d0a5bbbb29ea242ed76:casper_wallet
max spendable ~3,124.88
★ using mutation 'Transfer Max'
→ TO undefined: 0 CSPR (77ops) (02026b93627ed2f76551e7cef0466468b12db8fab806266107b69947d9c95ced9e7c on 44'/506'/0'/0/0) casper_wallet#0 js:2:casper:02026b93627ed2f76551e7cef0466468b12db8fab806266107b69947d9c95ced9e7c:casper_wallet
✔️ transaction 
SEND MAX
TO 02026b93627ed2f76551e7cef0466468b12db8fab806266107b69947d9c95ced9e7c
STATUS (2.32ms)
  amount: 3,124.881939043 CSPR
  estimated fees: 0.1 CSPR
  total spent: 3,124.981939043 CSPR
errors: 
warnings: amount MayBlockAccount
⚠️ TEST deviceAction confirm step 'Target'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Target": "C0794bc80eDfa58D3427Cb4E2861630900b3bf30390447B6b0A1614f2bff9234",
+   "Target": "02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c",
  }
(totally spent 4.4s – ends at 2024-06-25T17:13:37.890Z)
necessary accounts resynced in 0.22ms
▬ Casper 2.6.3 on nanoSP 1.1.1
→ FROM undefined: 3,122.33 CSPR (75ops) (0203d14bf1367769813e9c7233db26dc2208ca211532a0c2b1189992dc01d4bc098e on 44'/506'/0'/0/3) casper_wallet#3 js:2:casper:0203d14bf1367769813e9c7233db26dc2208ca211532a0c2b1189992dc01d4bc098e:casper_wallet
max spendable ~3,122.23
★ using mutation 'Send ~50%'
→ TO undefined: 0 CSPR (35ops) (02033ceac656c99270c432fd59a60102b4e807977f67c429298ea3436f2ce41a1b1b on 44'/506'/0'/0/5) casper_wallet#5 js:2:casper:02033ceac656c99270c432fd59a60102b4e807977f67c429298ea3436f2ce41a1b1b:casper_wallet
✔️ transaction 
SEND  1,561.11875 CSPR
TO 02033ceac656c99270c432fd59a60102b4e807977f67c429298ea3436f2ce41a1b1b
STATUS (0.73ms)
  amount: 1,561.11875 CSPR
  estimated fees: 0.1 CSPR
  total spent: 1,561.21875 CSPR
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Target'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Target": "9Fd7E509cc08b4A5d553955494A5FDdA165aeCE042428c267e68dA24Af61F0e8",
+   "Target": "02033CEac656c99270C432fd59a60102B4E807977F67C429298eA3436F2cE41A1B1b",
  }
(totally spent 4.1s – ends at 2024-06-25T17:13:37.892Z)
necessary accounts resynced in 0.24ms
▬ Crypto.orgChain 2.17.1 on nanoS 2.1.0
→ FROM undefined: 17.3755 CRO (44ops) (cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra on 44'/394'/0'/0/0) #0 js:2:crypto_org:cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra: (! sum of ops 17.37656309 CRO)
max spendable ~17.3755
★ using mutation 'move 50%'
→ TO undefined: 0 CRO (30ops) (cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l on 44'/394'/4'/0/0) #4 js:2:crypto_org:cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l:
✔️ transaction 
SEND  8.68778155 CRO
TO cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l
STATUS (1.53ms)
  amount: 8.68778155 CRO
  estimated fees: 0.00005 CRO
  total spent: 8.68783155 CRO
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"review","x":47,"y":10,"w":81,"h":11}
{"text":"Please","x":48,"y":-1,"w":80,"h":11}
{"text":"review","x":47,"y":10,"w":81,"h":11}
{"text":"Please","x":48,"y":-1,"w":80,"h":11}
{"text":"review","x":47,"y":10,"w":81,"h":11}
(totally spent 60s – ends at 2024-06-25T17:13:37.895Z)
necessary accounts resynced in 0.15ms
▬ Crypto.orgChain 2.17.1 on nanoS 2.1.0
→ FROM undefined: 17.3755 CRO (30ops) (cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd on 44'/394'/3'/0/0) #3 js:2:crypto_org:cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd: (! sum of ops 17.37636309 CRO)
max spendable ~17.3754
★ using mutation 'move 50%'
→ TO undefined: 0 CRO (35ops) (cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl on 44'/394'/1'/0/0) #1 js:2:crypto_org:cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl:
✔️ transaction 
SEND  8.68775655 CRO
TO cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl
STATUS (1.04ms)
  amount: 8.68775655 CRO
  estimated fees: 0.00005 CRO
  total spent: 8.68780655 CRO
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"review","x":47,"y":10,"w":81,"h":11}
{"text":"Please","x":48,"y":-1,"w":80,"h":11}
{"text":"review","x":47,"y":10,"w":81,"h":11}
{"text":"Please","x":48,"y":-1,"w":80,"h":11}
{"text":"review","x":47,"y":10,"w":81,"h":11}
(totally spent 60s – ends at 2024-06-25T17:13:37.898Z)
necessary accounts resynced in 56ms
▬ Hedera 1.0.8 on nanoS 2.1.0
→ FROM undefined: 17.1199 HBAR (344ops) (0.0.3664525 on 44/3030) hederaBip44#1 js:2:hedera:0.0.3664525:hederaBip44
max spendable ~17.1186
★ using mutation 'Send max'
→ TO undefined: 18.6228 HBAR (396ops) (0.0.3663977 on 44/3030) hederaBip44#0 js:2:hedera:0.0.3663977:hederaBip44
✔️ transaction SEND 17.11869863 HBAR
TO 0.0.3663977
STATUS (329ms)
  amount: 17.11869863 HBAR
  estimated fees: 0.00126223 HBAR
  total spent: 17.11996086 HBAR
errors: 
warnings: 
✔️ has been signed! (4.5s) 
✔️ broadcasted! (304ms) optimistic operation: 
  -17.11869863 HBAR  OUT        OBbbpfvGu24cOE5rfPmpKdj0OtBSWn4OFcajmqXFvE373kja-lm7rvTl_t4UCShC 2024-06-25T16:37
✔️ operation confirmed (20.6s): 
  -0.00126587 HBAR   OUT        OBbbpfvGu24cOE5rfPmpKdj0OtBSWn4OFcajmqXFvE373kja-lm7rvTl_t4UCShC 2024-06-25T16:37
✔️ undefined: 17.1186 HBAR (345ops) (0.0.3664525 on 44/3030) hederaBip44#1 js:2:hedera:0.0.3664525:hederaBip44(in 20.6s)
(in 4min 41s)
⚠️ TEST destination account should receive an operation (by tx hash)
Invariant Violation: no operation found with hash OBbbpfvGu24cOE5rfPmpKdj0OtBSWn4OFcajmqXFvE373kja-lm7rvTl_t4UCShC
(totally spent 5min 7s – ends at 2024-06-25T17:13:37.904Z)
necessary accounts resynced in 0.10ms
▬ VeChain 1.1.1 on nanoSP 1.1.1
→ FROM undefined: 0.625 VET (7ops) (0xc4B17901FECf86932c3bb296BB00E7c6816Fd416 on 44'/818'/0'/0/0) vechain#0 js:2:vechain:0xc4B17901FECf86932c3bb296BB00E7c6816Fd416:vechain  TokenAccount Vethor: 53.96661821875 VTHO (2 ops) (! sum of ops 55 VTHO)
max spendable ~0.625
★ using mutation 'move ~50% VTHO'
→ TO undefined: 1.25 VET (1ops) (0x6fc5998724338CDe55Bba798273FAdcDE79c5074 on 44'/818'/0'/0/2) vechain#2 js:2:vechain:0x6fc5998724338CDe55Bba798273FAdcDE79c5074:vechain
✔️ transaction SEND  26.983309109375 VET TO 0x6fc5998724338CDe55Bba798273FAdcDE79c5074
STATUS (960ms)
  amount: 26.983309109375 VTHO
  estimated fees: 0.5171 VET
  total spent: 27.500409109375 VTHO
errors: 
warnings: 
⚠️ VechainAppPleaseEnableContractDataAndMultiClause: Please enable contract data in Vechain app settings
(totally spent 993ms – ends at 2024-06-25T17:13:37.907Z)
necessary accounts resynced in 0.22ms
▬ Algorand 2.1.11 on nanoS 2.1.0
→ FROM undefined: 5.91095 ALGO (485ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA: 3.310954 ALGO spendable. 
  TokenAccount Asia Reserve Currency Coin: 0 ARCC (0 ops)
  TokenAccount MESE USD Exchange Token: 0 USD-MESE (0 ops)
  TokenAccount MESE Index Fund: 0 MESX (0 ops)
  TokenAccount Micro-Microsoft: 0 M-MSFT (0 ops)
  TokenAccount Micro-Amazon: 0 M-AMZN (0 ops)
  TokenAccount Micro-Twitter: 0 M-TWTR (0 ops)
  TokenAccount Micro-Netflix: 0 M-NFLX (0 ops)
  TokenAccount Micro-Google: 0 M-GOOGL (0 ops)
  TokenAccount Micro-Apple: 0 M-AAPL (0 ops)
  TokenAccount Micro-Tesla: 0 M-TSLA (0 ops)
  TokenAccount Realio Token: 0 RIO (0 ops)
  TokenAccount realioUSD: 0 RUSD (0 ops)
  TokenAccount Liquid Mining Fund I: 0 RHO 1 (0 ops)
  TokenAccount Credit Opportunities Fund I: 0 VAL 1 (0 ops)
  TokenAccount Meld Gold: 0 MCAU (0 ops)
  TokenAccount Meld Silver: 0 MCAG (0 ops)
  TokenAccount PLANET: 0 PLANETS (0 ops)
  TokenAccount USDC: 0 USDC (0 ops)
  TokenAccount HEADLINE: 0 HDL (0 ops)
  TokenAccount AlgoGems: 0 GEMS (0 ops)
  TokenAccount Choice Coin: 0 CHOICE (0 ops)
  TokenAccount Smile Coin: 0 SMILE (0 ops)
  TokenAccount goBTC: 0 goBTC (0 ops)
  TokenAccount Nimble: 0 NIMBLE (0 ops)
  TokenAccount CollecteursX: 0 CLTR (0 ops)
max spendable ~3.30995
★ using mutation 'opt-In ASA available'
→ TO undefined: 5.91095 ALGO (485ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA:
✔️ transaction 
    OPT_IN 0 ALGO
    TO WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA
    with fees=0.001 ALGO
STATUS (303ms)
  amount: 0 ALGO
  estimated fees: 0.001 ALGO
  total spent: 0.001 ALGO
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Asset ID'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Asset ID": "Loot Box (#408898501)",
+   "Asset ID": "Loot Box ASA (#408898501)",
  }
(totally spent 3.1s – ends at 2024-06-25T17:13:37.920Z)
necessary accounts resynced in 0.16ms
▬ PivX 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 34.8214 PIVX (669ops) (DUPqA3h4czj8VDqtjxjLNnJobg54xGZxpQ on 44'/77'/0'/0/322) #0 js:2:pivx:ToEA6mkkScBzPS3QGwz3pD9XiPf8YynSCGuC65sMGexuJ8oLkqEAZRAcR5VqKvRV5Phzid1ZG7myNKF6XtRBtVKT5JhgUpaKZtwAq3XzeH3Qnmz:
4 UTXOs
22.0166      DPvhVC8niTrK93Vh7oUKSUMrGPW9jqwNr3 efdf3a4cfce5d9fbaf368145a2607a5c62afa02115e41f7fe162d33ab6301638 @0 (1406)
10.9643      DSFAR1JeEgtYPF1au92MrHQJzidHCtYaer 864466ff2f15fe4528611262c462ad95aed3cbd29dc5f01946e0b29370ca842f @0 (1406)
1.84037      DFfaBrPgNicDbdBqgxZ4f5mK8V8sC1XDpN rbf b014a5b9544340039f4ad29244af7d4d67597a4fd3310b903fcfff68be75ab57 @0 (5623)
0.00015      DSfFpJ6xAnf83wvWPCNQbEwXLyHNTKv1ja 38eb59ffe42ef8c833e7f62ec423dae23b2189a892c1f77e432268a1f7d958ed @0 (5621)

max spendable ~34.8214
★ using mutation 'move ~50%'
→ TO undefined: 11.2871 PIVX (658ops) (D83Kn3AmeDzJogXRnw7aoHBJfNRcqawUqD on 44'/77'/3'/0/338) #3 js:2:pivx:ToEA6mkkScBzPS3QRXKa6QiRvZKUYefypt8wZupR6GaqD77SPLwzgmraaKbGgcirVLLXkQ6XjZJcGhoLRL2xP5ZBVjD5TUz6ZY6WkgXBpJW5rNU:
✔️ transaction 
SEND 16.7864054 PIVX
TO D83Kn3AmeDzJogXRnw7aoHBJfNRcqawUqD
with feePerByte=11 (network fees: 0=12, 1=11, 2=10)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (194ms)
TX INPUTS (4):
1.84037      DFfaBrPgNicDbdBqgxZ4f5mK8V8sC1XDpN b014a5b9544340039f4ad29244af7d4d67597a4fd3310b903fcfff68be75ab57@0
0.00015      DSfFpJ6xAnf83wvWPCNQbEwXLyHNTKv1ja 38eb59ffe42ef8c833e7f62ec423dae23b2189a892c1f77e432268a1f7d958ed@0
10.9643      DSFAR1JeEgtYPF1au92MrHQJzidHCtYaer 864466ff2f15fe4528611262c462ad95aed3cbd29dc5f01946e0b29370ca842f@0
22.0166      DPvhVC8niTrK93Vh7oUKSUMrGPW9jqwNr3 efdf3a4cfce5d9fbaf368145a2607a5c62afa02115e41f7fe162d33ab6301638@0
TX OUTPUTS (2):
16.7864      D83Kn3AmeDzJogXRnw7aoHBJfNRcqawUqD @0 (0)
18.0349      DQLyzmqRCa3vqYLyHBw3xhBYiwhrZzRG28 (change) @1 (0)
  amount: 16.7864054 PIVX
  estimated fees: 0.0000737 PIVX
  total spent: 16.7864791 PIVX
errors: 
warnings: 
✔️ has been signed! (12.3s) 
✔️ broadcasted! (105ms) optimistic operation: 
  -16.7864791 PIVX   OUT        447d66acfe3ce45f4ae11e49c511c2b2e70ad5c5bf70204ecf4dc45fce2501fc 2024-06-25T16:40
✔️ operation confirmed (12.6s): 
  -34.82147545 PIVX  OUT        447d66acfe3ce45f4ae11e49c511c2b2e70ad5c5bf70204ecf4dc45fce2501fc 2024-06-25T16:41
✔️ undefined: 0 PIVX (670ops) (DUPqA3h4czj8VDqtjxjLNnJobg54xGZxpQ on 44'/77'/0'/0/322) #0 js:2:pivx:ToEA6mkkScBzPS3QGwz3pD9XiPf8YynSCGuC65sMGexuJ8oLkqEAZRAcR5VqKvRV5Phzid1ZG7myNKF6XtRBtVKT5JhgUpaKZtwAq3XzeH3Qnmz:
0 UTXOs
(in 12.6s)
(in 4min 54s)
⚠️ TEST destination > account balance increased with transaction amount
Error: expect(received).toBe(expected) // Object.is equality

Expected: "4610854965"
Received: "2807355330"
(totally spent 5min 19s – ends at 2024-06-25T17:13:37.929Z)
necessary accounts resynced in 0.22ms
▬ Horizen 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 0.319582 ZEN (487ops) (znmq5coa5611Vets6FaAhjaN5HDp3FZzRff on 44'/121'/3'/0/257) #3 js:2:zencash:xpub6C68jAb8xasfwaE1WeCTh2JhK4KMh64oUaNn2MJCpVdjBmV7cdLhW8xqAfrb8eerM3wtiwMg9sMZkjA62QMH1rMDNbr97uLKNZohEX7c1cq:
4 UTXOs
0.211816     znWt3DPQ92HVNyByaXadkz5mEiByoByL3Vt c302f96e987d39cbad014fb55f8c755325d7fe361d313428c3b113c7811ab3c0 @0 (3439)
0.0803105    zne8yxUsDDKcU9WwFvMNn7MLGgzbnJU4jdW 04cebd31b344977dcf6918686ff08643eb7a6e6c57071d5d677758b8d613f916 @0 (3439)
0.0195202    znfuznprnxUDEMVaw4yhxMDqRMKZFgivJmS (change) eb77aab916fe13346127d1e1c11a1883cc68c81a85aadefa34c53f311eb30b4f @1 (3438)
0.00793515   zndy3d2GJMeBi7kDkMMeW9up4C7BZKVHc9y 975726adbd05e31c25d535804b59d7acf34e5c409a8af1e7d551ec49516b8176 @0 (4583)

max spendable ~0.31957
★ using mutation 'send OP_RETURN transaction'
→ TO undefined: 0 ZEN (485ops) (znoa4vqSsLgReCMuRHi3sUa4YJiaXhaQCm9 on 44'/121'/2'/0/252) #2 js:2:zencash:xpub6C68jAb8xasfsZCbDtbqPTydFZEHjfzFP75ZQyizidPdLPHNbf41HqQq8RiHMJNuXx71D15Uv9yVpxHkxicSAzKCPVqi1gCKkJTdCN6MK7Q:
✔️ transaction 
SEND 0.01 ZEN
TO znoa4vqSsLgReCMuRHi3sUa4YJiaXhaQCm9
with feePerByte=2 (network fees: 0=3, 1=2, 2=1)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (98ms)
TX INPUTS (2):
0.00793515   zndy3d2GJMeBi7kDkMMeW9up4C7BZKVHc9y 975726adbd05e31c25d535804b59d7acf34e5c409a8af1e7d551ec49516b8176@0
0.211816     znWt3DPQ92HVNyByaXadkz5mEiByoByL3Vt c302f96e987d39cbad014fb55f8c755325d7fe361d313428c3b113c7811ab3c0@0
TX OUTPUTS (3):
0.01         znoa4vqSsLgReCMuRHi3sUa4YJiaXhaQCm9 @0 (0)
0            @1 (0)
0.209742     zngmHni63UM2k2ddEXrZqYhvsRnZEAwjrQe (change) @2 (0)
  amount: 0.01 ZEN
  estimated fees: 0.0000096 ZEN
  total spent: 0.0100096 ZEN
errors: 
warnings: 
✔️ has been signed! (5.9s) {"operation":{"id":"js:2:zencash:xpub6C68jAb8xasfwaE1WeCTh2JhK4KMh64oUaNn2MJCpVdjBmV7cdLhW8xqAfrb8eerM3wtiwMg9sMZkjA62QMH1rMDNbr97uLKNZohEX7c1cq:--OUT","hash":"","type":"OUT","senders":["zndy3d2GJMeBi7kDkMMeW9up4C7BZKVHc9y","znWt3DPQ92HVNyByaXadkz5mEiByoByL3Vt"],"recipients":["znoa4vqSsLgReCMuRHi3sUa4YJiaXhaQCm9"],"accountId":"js:2:zencash:xpub6C68jAb8xasfwaE1WeCTh2JhK4KMh64oUaNn2MJCpVdjBmV7cdLhW8xqAfrb8eerM3wtiwMg9sMZkjA62QMH1rMDNbr97uLKNZohEX7c1cq:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-06-25T16:41:58.097Z","value":"1000960","fee":"960"},"signature":"010000000276816b5149ec51d5e7f18a9a405c4ef3acd7594b8035d5251ce305bdad265797000000006b483045022100aa0bc7c9bef7a287196d81a9da2585cd22a13b050b5bba11d352b2334c4ad5b402206ff5722d4d17f888d4b087ff6c193ac7aa1a2344cad24c664befdcb9854d16980121030a4f2b2379c43f7a627a9fd021adf523f965579bb82dd208927f8c227911530bffffffffc0b31a81c713b1c32834311d36fed72553758c5fb54f01adcb397d986ef902c3000000006a4730440220212dacefdc9d3f30a98e9fa5e79e7cbc04ce8ad2f381277ea7e0b3fb4a34fa4602203dd0f4f1107928e3f483ea7c43dbe53fe38d417804e191d4106312bf8265d6be0121023983eeaa69d7ab5980d6af1f740a0d8d362a3524698b92391788ab0aeb4e0e7cffffffff0340420f00000000003f76a914f6a5e015f1a7c9f056f8bb36681a62f86d209ef388ac209ec9845acb02fab24e1c0368b3b517c1a4488fba97f0e3459ac053ea0100000003c01f02b40000000000000000156a13636861726c6579206c6f766573206865696469aa0a4001000000003f76a914abfc4e2937e9b771e0418fd46710e8b0b0ba63b488ac209ec9845acb02fab24e1c0368b3b517c1a4488fba97f0e3459ac053ea0100000003c01f02b400000000"}
⚠️ TEST during broadcast
LedgerAPI4xx: An exception occurred during transaction send: 68: op-checkblockatheight-needed
(totally spent 6.2s – ends at 2024-06-25T17:13:37.935Z)
necessary accounts resynced in 0.13ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 3.2203 KLAY (45ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:klaytn:0x60A4E7657D8df28594ac4A06CDe01E18E948a892: (! sum of ops 3.21925367429967846 KLAY)  TokenAccount Orbit Bridge Klaytn USD Tether: 1 OUSDT (1 ops)
max spendable ~3.21632
★ using mutation 'move some ERC20 like (ERC20, BEP20, etc...)'
→ TO undefined: 2.14115 KLAY (42ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:klaytn:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
✔️ transaction 
SEND  0.000000000000734259 KLAY
TO 0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25
STATUS (2822ms)
  amount: 0.734259 OUSDT
  estimated fees: 0.004557225 KLAY
  total spent: 0.734259 OUSDT
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Amount'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Amount": "OUSDT 0.734259",
+   "Amount": "oUSDT 0.734259",
  }
(totally spent 4.4s – ends at 2024-06-25T17:13:37.999Z)
necessary accounts resynced in 0.72ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00918114 ETH (4ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892: (! sum of ops 0.009178221385223016 ETH)  TokenAccount PacMoon: 0 PAC (3 ops)
max spendable ~0.00917905
★ using mutation 'send max'
→ TO undefined: 0 ETH (0ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:blast:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
✔️ transaction 
SEND MAX
TO 0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25
STATUS (290ms)
  amount: 0.009180318561881895 ETH
  estimated fees: 0.000000830960214 ETH
  total spent: 0.009181149522095895 ETH
errors: 
warnings: 
✔️ has been signed! (3.8s) {"operation":{"id":"js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:--OUT","hash":"","type":"OUT","senders":["0x60A4E7657D8df28594ac4A06CDe01E18E948a892"],"recipients":["0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25"],"accountId":"js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-06-25T16:48:26.410Z","value":"9181149522095895","fee":"830960214000","transactionSequenceNumber":2,"transactionRaw":{"amount":"9180318561881895","recipient":"0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25","useAllAmount":true,"family":"evm","mode":"send","chainId":81457,"nonce":2,"gasLimit":"21000","feesStrategy":"medium","type":2,"maxFeePerGas":"39569534","maxPriorityFeePerGas":"1227962"}},"signature":"0x02f87383013e31028312bcba84025bc87e82520894b6e8b0371a15cdadf1d8eda34f78870a5e688b2587209d737ace4f2780c001a0611558f9277dd5e6053b488ac21114842f8f762104187e2695303795c9bbb7b6a04e8b8f10d3025d2dd656da48494827ffaede928ba5306841e959b977fe392e43"}
⚠️ TEST during broadcast
InsufficientFunds: InsufficientFunds
(totally spent 4.3s – ends at 2024-06-25T17:13:38.007Z)
necessary accounts resynced in 2.09ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00918114 ETH (4ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892: (! sum of ops 0.009178221385223016 ETH)  TokenAccount PacMoon: 0 PAC (3 ops)
max spendable ~0.00917904
★ using mutation 'move 50%'
→ TO undefined: 0 ETH (2ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:blast:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
✔️ transaction 
SEND  0.004589520453592448 ETH
TO 0x90bD48144e08b66490BcA9a756BDe9f004F17857
STATUS (176ms)
  amount: 0.004589520453592448 ETH
  estimated fees: 0.000000835488927 ETH
  total spent: 0.004590355942519448 ETH
errors: 
warnings: 
✔️ has been signed! (3.2s) 
✔️ broadcasted! (196ms) optimistic operation: 
  -0.004590355942519448 ETH OUT        0xe38f3cc18e15ace6697e778d339808b2470383c98bf23e6cb579b933fef8edc0 2024-06-25T16:48
(in 10min 13s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "4591194336877447"
Received: "4591177117098170"
(totally spent 10min 17s – ends at 2024-06-25T17:13:38.010Z)
necessary accounts resynced in 0.11ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.0500008 𝚝ETH (1ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892: (! sum of ops 0.05 𝚝ETH)
max spendable ~0.0500008
★ using mutation 'send max'
→ TO undefined: 0 𝚝ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:blast_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
✔️ transaction 
SEND MAX
TO 0x90bD48144e08b66490BcA9a756BDe9f004F17857
STATUS (856ms)
  amount: 0.050000855574600844 𝚝ETH
  estimated fees: 0.00000001849113 𝚝ETH
  total spent: 0.050000874065730844 𝚝ETH
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Amount'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Amount": "𝚝ETH 0.050000855574600844",
+   "Amount": "ETH 0.050000855574600844",
  }
(totally spent 2116ms – ends at 2024-06-25T17:13:38.015Z)
necessary accounts resynced in 10ms
▬ NEAR 2.0.0 on nanoS 2.1.0
→ FROM undefined: 0.444538 NEAR (66ops) (0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf on 44'/397'/0'/0'/0') nearbip44h#0 js:2:near:0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf:nearbip44h (! sum of ops 0.98067982518354365104 NEAR)
max spendable ~0.391593
★ using mutation 'Stake'
✔️ transaction 
STAKE  0.00000686987621376771 NEAR
TO ledgerbyfigment.poolv1.near
STATUS (351ms)
  amount: 0.00000686987621376771 NEAR
  estimated fees: 0.0015 NEAR
  total spent: 0.00150686987621376771 NEAR
errors: amount NearStakingThresholdNotMet
warnings: 
⚠️ TEST mutation must not have tx status errors
NearStakingThresholdNotMet: NearStakingThresholdNotMet
(totally spent 361ms – ends at 2024-06-25T17:13:38.017Z)
necessary accounts resynced in 0.27ms
▬ NEAR 2.0.0 on nanoS 2.1.0
→ FROM undefined: 0.445089 NEAR (9ops) (e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2 on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2:nearbip44h (! sum of ops 0.53976724470021827 NEAR)
max spendable ~0.392221
★ using mutation 'Unstake'
✔️ transaction 
UNSTAKE  0.00010076142582220963 NEAR
TO ledgerbyfigment.poolv1.near
STATUS (300ms)
  amount: 0.00010076142582220963 NEAR
  estimated fees: 0.0015 NEAR
  total spent: 0.0015 NEAR
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Near app","x":41,"y":6,"w":48,"h":11}
{"text":"is ready","x":41,"y":17,"w":48,"h":11}
{"text":"Receiving","x":36,"y":3,"w":92,"h":11}
{"text":"Transaction...","x":26,"y":15,"w":102,"h":11}
{"text":"View header","x":29,"y":19,"w":99,"h":11}
(totally spent 60.3s – ends at 2024-06-25T17:13:38.020Z)
necessary accounts resynced in 7ms
▬ Solana 1.2.0 on nanoS 2.1.0
→ FROM undefined: 0.0332267 SOL (100ops) (6iNx5SVYQBGEEooLJiptwqL8YR7qEcZELqpBfd4kwiwx on 44'/501'/1') solanaSub#1 js:2:solana:6iNx5SVYQBGEEooLJiptwqL8YR7qEcZELqpBfd4kwiwx:solanaSub (! sum of ops -0.032455001 SOL)
max spendable ~0.0299416
★ using mutation 'Delegate'
✔️ transaction 
  CREATE STAKE ACCOUNT: 6iiA86aqeDTSvWEdXuQpK4S8NmA4mSa3dSF3rtkNTkAt
  FROM: 6iNx5SVYQBGEEooLJiptwqL8YR7qEcZELqpBfd4kwiwx
  AMOUNT: 0.00238288 SOL
  SEED: stake:0.4118504313412179
  VALIDATOR: J4JhJL3kurhw8RZKhXp3fFTjyd5NX2yCbKDBN1eMh1Uy
STATUS (3.2s)
  amount: 0.0001 SOL
  estimated fees: 0.00228788 SOL
  total spent: 0.00238788 SOL
errors: 
warnings: 
✔️ has been signed! (2712ms) 
✔️ broadcasted! (5.3s) optimistic operation: 
  -0.00238788 SOL    DELEGATE   3aEun6MsjDXekG95hP3wuvVgG9LsiiwQf9CqDGicQG2GdrSfAZ53to9LA6vVi1jPh7QBMQah8wjfvsHLr1zyAEhR 2024-06-25T16:56
(in 2min 9s)
⚠️ Error: expected delegation not found in account resources
(totally spent 2min 20s – ends at 2024-06-25T17:13:38.023Z)
necessary accounts resynced in 13.5s
▬ Solana 1.2.0 on nanoS 2.1.0
→ FROM undefined: 0.0332761 SOL (99ops) (BsQzVpyrHi5ivGaouc46w9GekQgbiJcWNAhsmzzRuo9M on 44'/501'/4') solanaSub#4 js:2:solana:BsQzVpyrHi5ivGaouc46w9GekQgbiJcWNAhsmzzRuo9M:solanaSub (! sum of ops -0.001466812 SOL)
max spendable ~0.0251979
★ using mutation 'Withdraw Delegation'
✔️ transaction 
  WITHDRAW FROM: AKACvcmB18HnAHyLWkAqd6egsG8y85z1w2cjN1ypm9TQ
  AMOUNT: 0.002387084 SOL
  TO: BsQzVpyrHi5ivGaouc46w9GekQgbiJcWNAhsmzzRuo9M
STATUS (645ms)
  amount: 0.002387084 SOL
  estimated fees: 0.000005 SOL
  total spent: 0.000005 SOL
errors: 
warnings: 
✔️ has been signed! (2702ms) 
✔️ broadcasted! (8s) optimistic operation: 
  +0.002382084 SOL   IN         Ey17dqa64NJ4S1rJSUF4TQfuYB2c1R7EjUJmPQSg3LTxrr9Lpd1HFgCnvX9Mfgi9HPNXDcZhCExX8xamWY458ag 2024-06-25T17:00
⚠️ NetworkError: failed to get Stake Activation AKACvcmB18HnAHyLWkAqd6egsG8y85z1w2cjN1ypm9TQ: Invalid param: account not found
(totally spent 35.8s – ends at 2024-06-25T17:13:38.026Z)
necessary accounts resynced in 0.08ms
▬ TezosWallet 3.0.3 on nanoS 2.1.0
→ FROM undefined: 5.28869 XTZ (152ops) (tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF on 44'/1729'/0'/0') tezbox#0 js:2:tezos:0240051fc51799e60dcc8870415b87fc4fd948e71b23fdc0d9b8ac7438cf7d4708:tezbox
max spendable ~5.28803
★ using mutation 'delegate unrevealed'
✔️ transaction 
DELEGATE 0 XTZ
TO tz1PWCDnz783NNGGQjEFFsHtrcK5yBW4E2rm
with fees=0.000184
with gasLimit=100
with storageLimit=0
(estimatedFees 0.000558)
STATUS (1311ms)
  amount: 0 XTZ
  estimated fees: 0.000558 XTZ
  total spent: 0.000558 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.4s – ends at 2024-06-25T17:13:38.032Z)
⚠️ 40 spec hints
  • Spec Celo:
    • mutations should define a test(): Celo: Move 50% to another account, Celo: Send max to another account, Celo: Register Account, Celo: Unlock, Celo: Lock, Celo: Vote, Celo: Activate Vote, Celo: RevokeVote, Celo: Withdraw
    • mutations should define a testDestination(): Celo: Move 50% to another account, Celo: Send max to another account
    • mutation Celo: Send max to another account: unexpected status.warnings.amount = CeloAllFundsWarning: CeloAllFundsWarning – Please implement expectStatusWarnings on the mutation if expected
  • Spec dydx:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec umee:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
  • Spec sei_network:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec stargaze:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
  • Spec Crypto org:
    • mutations should define a test(): move 50%, send max
    • mutations should define a testDestination(): move 50%
  • Spec Stacks:
    • mutations should define a testDestination(): Transfer Max, Send 50%~
  • Spec Stellar:
    • mutations should define a testDestination(): move ~50% XLM
  • Spec VeChain VTHO:
    • mutations should define a testDestination(): move ~50% VTHO
  • Spec VeChain VET:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Algorand:
    • mutations should define a testDestination(): opt-In ASA available
  • Spec Bitcoin Testnet:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Bitcoin Gold:
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec DogeCoin:
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Komodo:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
  • Spec PivX:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
  • Spec Vertcoin:
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec ZCash:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Horizen:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
  • Spec Ethereum Classic:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Ethereum Sepolia:
    • mutation send max: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
    • 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 RSK:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec OP Mainnet:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec OP Sepolia:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Base:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Linea Sepolia:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Blast:
    • There are not enough accounts (3) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Blast Sepolia:
    • There are not enough accounts (2) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Scroll:
    • There are not enough accounts (2) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Scroll Sepolia:
    • There are not enough accounts (2) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Tezos:
    • mutations should define a test(): send unrevealed, send revealed, send max (non delegating), delegate unrevealed, delegate revealed, undelegate unrevealed, undelegate revealed
    • There are not enough accounts (3) to cover all mutations (7).
      Please increase the account target to at least 8 accounts
Portfolio ($1,164.66) – Details of the 71 currencies
Spec (accounts) State Remaining Runs (est) funds?
Casper (8) 421 ops , 24,979 CSPR ($535.97) 💪 999+ 02026b93627ed2f76551e7cef0466468b12db8fab806266107b69947d9c95ced9e7c
Celo (12) 1600 ops (+9), 17.092 CELO ($10.34) 💪 515 0x246FFDB387F1F8c48072E1C13443540017bC71b7
osmosis (18) 51 ops (+8), 20.2612 OSMO ($11.35) 👍 385 osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l
desmos (18) 135 ops , 138.737 DSM ($0.39) 💪 999+ desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454
dydx (18) 4 ops , 0.00954312 dydx ($0.02) ⚠️ 1 dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6
umee (18) 48 ops , 718.074 UMEE ($1.34) 💪 999+ umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l
persistence (18) 979 ops , 28.5142 XPRT ($5.60) 💪 677 persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf
quicksilver (18) 12 ops , 21.1919 QCK ($0.38) 💪 999+ quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l
onomy (18) 665 ops , 1.80463 NOM ($0.19) 💪 999+ onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg
sei_network (16) 0 ops , 0.077475 SEI ($0.00) sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v
stargaze (18) 139 ops , 881.918 STARS ($10.25) 💪 701 stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu
coreum (18) 1537 ops , 40.5432 CORE ($4.83) 👍 232 core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk
injective (0) 0 ops , 🤷‍♂️ ``
Crypto org (7) 209 ops , 34.751 CRO ($3.20) 💪 999+ cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra
Elrond (8) 2384 ops (+2), 0.944373 EGLD ($28.37) 💪 999+ erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp
Hedera (4) 1352 ops (+7), 39.1041 HBAR ($3.11) 💪 999+ 0.0.3663977
InternetComputer (8) 628 ops (+4), 1.01457 ICP ($8.43) 💪 999+ f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209
Stacks (4) 529 ops (+3), 32.3567 STX ($41.08) 👍 458 SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2
Stellar (6) 2733 ops (+4), 58.9793 XLM ($6.12) 💪 999+ GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC
VeChain VTHO (4) 13 ops , 5 VET ($0.26) ⚠️ 12 0xc4B17901FECf86932c3bb296BB00E7c6816Fd416
VeChain VET (4) 13 ops , 5 VET ($0.26) ⚠️ 12 0xc4B17901FECf86932c3bb296BB00E7c6816Fd416
Algorand (6) 2205 ops (+6), 9.59461 ALGO ($3.27) 💪 999+ TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4
Bitcoin Testnet (13) 1423 ops , 0.00193076 𝚝BTC ($0.00) ⚠️ 3 tb1qqsk6rter25qfxful9dhzrtunyyaga2pvvv89vl
Bitcoin Cash (7) 3479 ops (+10), 0.047109 BCH ($18.35) 💪 755 qrl2hj3cnvf48uuelvvdewxa29srgtz04s20uckhkg
Bitcoin Gold (6) 2667 ops (+6), 0.389752 BTG ($10.15) 💪 999+ AXxqhhv4DzigLUXS3YkSSXsskG581MHrdj
Dash (7) 2868 ops (+10), 0.10701 DASH ($2.58) 💪 999+ XfJPX8uAUD6tgutvBuwguYV1xV2oLEqBsR
Digibyte (9) 3694 ops (+10), 443.931 DGB ($3.73) 💪 999+ dgb1qxu2uz58kf3u2zr3g39lk8d8mnnc8wph7xxlgdz
DogeCoin (7) 1902 ops (+8), 26.9307 DOGE ($3.34) ⚠️ 46 DS4u76sY8RfrTcVT9YYvWt6ptUUE9Htv4y
Komodo (5) 1983 ops (+6), 17.5086 KMD ($6.07) 💪 999+ RVCMZSRWEpMPw8Pk477NkMtts7TJdBrztr
Litecoin (9) 3647 ops (+10), 0.342359 LTC ($24.27) 💪 999+ ltc1q5zxywf65gakhtxfn8eqc58nvhhhc44w2zyp0ks
Peercoin (0) 0 ops , 🤷‍♂️ ``
PivX (5) 2571 ops (+6), 46.6256 PIVX ($7.75) 💪 999+ DUPqA3h4czj8VDqtjxjLNnJobg54xGZxpQ
Vertcoin (6) 2406 ops (+6), 29.1563 VTC ($1.51) 💪 999+ 3QiXxZRNEBWWkgbNk8Q1VAdFUahAzMR9Ad
Viacoin (6) 2309 ops (+4), 40.6493 VIA ($0.54) 💪 999+ Ed1vCUuYKC18iJus9qLiJdMVuL1xuvPi7N
ZCash (5) 1502 ops , 0.00368057 ZEC ($0.07) ⚠️ 2 t1SDpcaNZmbCH5TCCb5vNAh5bXs3isDtA5h
Horizen (5) 1956 ops (+2), 0.420895 ZEN ($2.79) 💪 999+ znYaYMnKTUh3fBDYwY8AhaFtBFofJrCM7M9
Ethereum Classic (6) 685 ops , 0.232476 ETC ($5.47) 💪 999+ 0x7584df0780C5eB83b26aE55abBc265014f8bf897
Polygon (10) 2485 ops (+6), 18.8688 MATIC ($10.78) ⚠️ 21 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Sepolia (6) 765 ops (+6), 0.00653412 𝚝ETH ($0.00) ⚠️ 2 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Holesky (6) 739 ops (+6), 0.234076 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum (6) 274 ops (+4), 0.00550883 ETH ($18.67) 💪 687 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum Sepolia (6) 519 ops (+6), 0.990838 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Flare (6) 2158 ops , 4.00005 FLR ($0.10) 👍 295 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Songbird (6) 2510 ops (+6), 937.265 SGB ($8.48) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonbeam (6) 2319 ops (+6), 59.6543 GLMR ($12.78) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
RSK (5) 794 ops , 0.00030914 RBTC ($19.09) 👍 56 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Bittorent Chain (6) 2134 ops (+6), 1,491,292 BTT ($1.31) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Mainnet (5) 121 ops , 0.00286711 ETH ($28.46) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Energy Web (6) 1888 ops (+6), 7.52836 EWT ($17.86) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Astar (6) 2060 ops (+6), 327.971 ASTR ($22.97) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Metis (6) 1986 ops (+6), 0.147935 METIS ($7.46) 👍 122 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonriver (6) 1960 ops (+6), 2.23606 MOVR ($25.88) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Velas EVM (6) 506 ops (+6), 912.015 VLX ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Syscoin (6) 2006 ops (+6), 57.076 SYS ($7.14) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Polygon zkEVM Testnet (0) 0 ops , 🤷‍♂️ ``
Base (5) 249 ops , 0.00269293 ETH ($9.12) 👍 76 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Base Sepolia (6) 511 ops (+6), 0.990038 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Klaytn (6) 207 ops (+6), 8.82097 KLAY ($1.44) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Neon EVM (6) 1018 ops (+4), 16.1224 NEON ($10.47) 👍 286 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Lukso (6) 911 ops (+6), 0.490762 LYX ($1.24) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea (6) 623 ops (+6), 0.00683737 ETH ($23.13) 👍 73 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Blast (3) 6 ops , 0.00918114 ETH ($37.94) 💪 521 0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25
Blast Sepolia (2) 1 ops , 0.0500008 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Scroll (2) 2 ops , 0.01 ETH ($39.11) 💪 768 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Scroll Sepolia (2) 1 ops , 0.05 𝚝ETH ($0.00) 💪 996 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
NEAR (11) 226 ops , 0.785485 NEAR ($6.93) 👍 175 0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf
Solana (11) 945 ops (+4), 0.34309 SOL ($67.70) 💪 999+ 5vhAGihUC1uKucJvreCgWWXB6LEptPwkwpqhkq9M6iaz
Tezos (3) 156 ops , 5.28869 XTZ ($4.21) 👍 182 tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF
XRP (4) 604 ops (+4), 14.0049 XRP ($21.01) 💪 999+ r9etPtq3oboweMPju5gdYufmvwhH2euz8z
undefined: 0 CSPR (77ops) (02026b93627ed2f76551e7cef0466468b12db8fab806266107b69947d9c95ced9e7c on 44'/506'/0'/0/0) casper_wallet#0 js:2:casper:02026b93627ed2f76551e7cef0466468b12db8fab806266107b69947d9c95ced9e7c:casper_wallet
undefined: 0 CSPR (76ops) (02034a7c5519d553bc282f768dca044e18746b7be9b711f2f310c190f33b3cbc4a4f on 44'/506'/0'/0/1) casper_wallet#1 js:2:casper:02034a7c5519d553bc282f768dca044e18746b7be9b711f2f310c190f33b3cbc4a4f:casper_wallet
undefined: 3,124.98 CSPR (59ops) (0203b56bc181780f8fb173bafd8d483d6911282ec46d72692d0a5bbbb29ea242ed76 on 44'/506'/0'/0/2) casper_wallet#2 js:2:casper:0203b56bc181780f8fb173bafd8d483d6911282ec46d72692d0a5bbbb29ea242ed76:casper_wallet
undefined: 3,122.33 CSPR (75ops) (0203d14bf1367769813e9c7233db26dc2208ca211532a0c2b1189992dc01d4bc098e on 44'/506'/0'/0/3) casper_wallet#3 js:2:casper:0203d14bf1367769813e9c7233db26dc2208ca211532a0c2b1189992dc01d4bc098e:casper_wallet
undefined: 0 CSPR (60ops) (02039ae761a635a37868cf35e6de9799cba9fc4cdb9a3afbba6ab5c83291f13bbec8 on 44'/506'/0'/0/4) casper_wallet#4 js:2:casper:02039ae761a635a37868cf35e6de9799cba9fc4cdb9a3afbba6ab5c83291f13bbec8:casper_wallet
undefined: 0 CSPR (35ops) (02033ceac656c99270c432fd59a60102b4e807977f67c429298ea3436f2ce41a1b1b on 44'/506'/0'/0/5) casper_wallet#5 js:2:casper:02033ceac656c99270c432fd59a60102b4e807977f67c429298ea3436f2ce41a1b1b:casper_wallet
undefined: 18,731.6 CSPR (39ops) (02035addb3ef3863b0b44054e638f7c61f74319d5da70b8e98fef9ea984f7db6edac on 44'/506'/0'/0/6) casper_wallet#6 js:2:casper:02035addb3ef3863b0b44054e638f7c61f74319d5da70b8e98fef9ea984f7db6edac:casper_wallet
undefined: 0 CSPR (0ops) (0202b75fd56f06b03e675b33b0a136b6c87810c5a0435281dfe567c79596e0876fa4 on 44'/506'/0'/0/7) casper_wallet#7 js:2:casper:0202b75fd56f06b03e675b33b0a136b6c87810c5a0435281dfe567c79596e0876fa4:casper_wallet
undefined: 6.63539 CELO (218ops) (0x246FFDB387F1F8c48072E1C13443540017bC71b7 on 44'/52752'/0'/0/0) #0 js:2:celo:0x246FFDB387F1F8c48072E1C13443540017bC71b7:
undefined: 0.80677 CELO (175ops) (0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8 on 44'/52752'/1'/0/0) #1 js:2:celo:0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8:
undefined: 6.44595 CELO (179ops) (0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0 on 44'/52752'/2'/0/0) #2 js:2:celo:0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0:
undefined: 0.415098 CELO (131ops) (0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2 on 44'/52752'/3'/0/0) #3 js:2:celo:0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2:
undefined: 0.00802489 CELO (149ops) (0xA6EB5541E3527d07CaD4dD14E5454820DB858160 on 44'/52752'/4'/0/0) #4 js:2:celo:0xA6EB5541E3527d07CaD4dD14E5454820DB858160:
undefined: 0.0143615 CELO (142ops) (0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE on 44'/52752'/5'/0/0) #5 js:2:celo:0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE:
undefined: 0.00507531 CELO (130ops) (0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc on 44'/52752'/6'/0/0) #6 js:2:celo:0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc:
undefined: 0.00051924 CELO (143ops) (0xc054A142A0e8793bC860A34971C3eb549064A54a on 44'/52752'/7'/0/0) #7 js:2:celo:0xc054A142A0e8793bC860A34971C3eb549064A54a:
undefined: 0.009629 CELO (134ops) (0x78AB368133f5Bf101849475dD4a5747E6d1A897a on 44'/52752'/8'/0/0) #8 js:2:celo:0x78AB368133f5Bf101849475dD4a5747E6d1A897a:
undefined: 2.27143 CELO (102ops) (0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8 on 44'/52752'/9'/0/0) #9 js:2:celo:0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8:
undefined: 0.566527 CELO (97ops) (0x3f6AB52EDA4a9d38b3cf208E3fB4c3f87C53002D on 44'/52752'/10'/0/0) #10 js:2:celo:0x3f6AB52EDA4a9d38b3cf208E3fB4c3f87C53002D:
undefined: 0 CELO (0ops) (0xA07f9fb2bd5A8799081d5519897dB27B257D036D on 44'/52752'/11'/0/0) #11 js:2:celo:0xA07f9fb2bd5A8799081d5519897dB27B257D036D:
undefined: 0.029828 OSMO (4ops) (osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l on 44'/118'/0'/0/0) #0 js:2:osmo:osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l:
undefined: 0.00312 OSMO (3ops) (osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf on 44'/118'/1'/0/0) #1 js:2:osmo:osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf:
undefined: 0 OSMO (3ops) (osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv on 44'/118'/2'/0/0) #2 js:2:osmo:osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv:
undefined: 0.002544 OSMO (3ops) (osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k on 44'/118'/3'/0/0) #3 js:2:osmo:osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k:
undefined: 0.013764 OSMO (3ops) (osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0 on 44'/118'/4'/0/0) #4 js:2:osmo:osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0:
undefined: 0.203169 OSMO (8ops) (osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw on 44'/118'/5'/0/0) #5 js:2:osmo:osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw:
undefined: 0 OSMO (7ops) (osmo1n6vccpa77x7xyhnk98jy6gg3rmgjkazxuyk2ng on 44'/118'/6'/0/0) #6 js:2:osmo:osmo1n6vccpa77x7xyhnk98jy6gg3rmgjkazxuyk2ng:
undefined: 0.142702 OSMO (0ops) (osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp on 44'/118'/7'/0/0) #7 js:2:osmo:osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp:
undefined: 0.019413 OSMO (4ops) (osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d on 44'/118'/8'/0/0) #8 js:2:osmo:osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d:
undefined: 2.26142 OSMO (6ops) (osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5 on 44'/118'/9'/0/0) #9 js:2:osmo:osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5:
undefined: 0.449684 OSMO (1ops) (osmo1733g3dfzj6tulcqtvz628ypuqj0hvlrzruntc8 on 44'/118'/10'/0/0) #10 js:2:osmo:osmo1733g3dfzj6tulcqtvz628ypuqj0hvlrzruntc8:
undefined: 0.289397 OSMO (2ops) (osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg on 44'/118'/11'/0/0) #11 js:2:osmo:osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg:
undefined: 0.426649 OSMO (0ops) (osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m on 44'/118'/12'/0/0) #12 js:2:osmo:osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m:
undefined: 0.466806 OSMO (1ops) (osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9 on 44'/118'/13'/0/0) #13 js:2:osmo:osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9:
undefined: 1.49116 OSMO (4ops) (osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd on 44'/118'/14'/0/0) #14 js:2:osmo:osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd:
undefined: 13.3795 OSMO (2ops) (osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau on 44'/118'/15'/0/0) #15 js:2:osmo:osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau:
undefined: 1.36541 OSMO (0ops) (osmo1xr8krhp99mp9ncrz6dfgre542nv0rc8lrryjvr on 44'/118'/16'/0/0) #16 js:2:osmo:osmo1xr8krhp99mp9ncrz6dfgre542nv0rc8lrryjvr:
undefined: 0 OSMO (0ops) (osmo102w826rmvswfhs4zsv2ujhylmd92c28p6lglqe on 44'/118'/17'/0/0) #17 js:2:osmo:osmo102w826rmvswfhs4zsv2ujhylmd92c28p6lglqe:
undefined: 0.000854 DSM (3ops) (desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454 on 44'/118'/0'/0/0) #0 js:2:desmos:desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454:
undefined: 0.000317 DSM (8ops) (desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur on 44'/118'/1'/0/0) #1 js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:
undefined: 0.000745 DSM (6ops) (desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx on 44'/118'/2'/0/0) #2 js:2:desmos:desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx:
undefined: 0.034603 DSM (10ops) (desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu on 44'/118'/3'/0/0) #3 js:2:desmos:desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu:
undefined: 0 DSM (11ops) (desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9 on 44'/118'/4'/0/0) #4 js:2:desmos:desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9:
undefined: 0.0006 DSM (15ops) (desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y on 44'/118'/5'/0/0) #5 js:2:desmos:desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y:
undefined: 0 DSM (6ops) (desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz on 44'/118'/6'/0/0) #6 js:2:desmos:desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz:
undefined: 0.000766 DSM (7ops) (desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt on 44'/118'/7'/0/0) #7 js:2:desmos:desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt:
undefined: 0.001486 DSM (7ops) (desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8 on 44'/118'/8'/0/0) #8 js:2:desmos:desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8:
undefined: 0.002571 DSM (8ops) (desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7 on 44'/118'/9'/0/0) #9 js:2:desmos:desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7:
undefined: 0.017274 DSM (6ops) (desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted on 44'/118'/10'/0/0) #10 js:2:desmos:desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted:
undefined: 0 DSM (1ops) (desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z on 44'/118'/11'/0/0) #11 js:2:desmos:desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z:
undefined: 0.087107 DSM (5ops) (desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243 on 44'/118'/12'/0/0) #12 js:2:desmos:desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243:
undefined: 76.064 DSM (19ops) (desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0 on 44'/118'/13'/0/0) #13 js:2:desmos:desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0:
undefined: 16.1554 DSM (4ops) (desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8 on 44'/118'/14'/0/0) #14 js:2:desmos:desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8:
undefined: 22.9378 DSM (17ops) (desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk on 44'/118'/15'/0/0) #15 js:2:desmos:desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk:
undefined: 29.6404 DSM (2ops) (desmos1xr8krhp99mp9ncrz6dfgre542nv0rc8llq6jdf on 44'/118'/16'/0/0) #16 js:2:desmos:desmos1xr8krhp99mp9ncrz6dfgre542nv0rc8llq6jdf:
undefined: 0 DSM (0ops) (desmos102w826rmvswfhs4zsv2ujhylmd92c28pxuklpn on 44'/118'/17'/0/0) #17 js:2:desmos:desmos102w826rmvswfhs4zsv2ujhylmd92c28pxuklpn:
undefined: 0.00028612 dydx (0ops) (dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6 on 44'/118'/0'/0/0) #0 js:2:dydx:dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6:
undefined: 0.0006465 dydx (1ops) (dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv on 44'/118'/1'/0/0) #1 js:2:dydx:dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv:
undefined: 0.00081036 dydx (0ops) (dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf on 44'/118'/2'/0/0) #2 js:2:dydx:dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf:
undefined: 0.00103948 dydx (0ops) (dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en on 44'/118'/3'/0/0) #3 js:2:dydx:dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en:
undefined: 0 dydx (0ops) (dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2 on 44'/118'/4'/0/0) #4 js:2:dydx:dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2:
undefined: 0.00034181 dydx (2ops) (dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt on 44'/118'/5'/0/0) #5 js:2:dydx:dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt:
undefined: 0.00123005 dydx (0ops) (dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d on 44'/118'/6'/0/0) #6 js:2:dydx:dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d:
undefined: 0.0005327 dydx (0ops) (dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky on 44'/118'/7'/0/0) #7 js:2:dydx:dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky:
undefined: 0.00108568 dydx (0ops) (dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug on 44'/118'/8'/0/0) #8 js:2:dydx:dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug:
undefined: 0.00002859 dydx (1ops) (dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73 on 44'/118'/9'/0/0) #9 js:2:dydx:dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73:
undefined: 0.00032301 dydx (0ops) (dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz on 44'/118'/10'/0/0) #10 js:2:dydx:dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz:
undefined: 0.00079267 dydx (0ops) (dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd on 44'/118'/11'/0/0) #11 js:2:dydx:dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd:
undefined: 0.00117506 dydx (0ops) (dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7 on 44'/118'/12'/0/0) #12 js:2:dydx:dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7:
undefined: 0.0133491 dydx (0ops) (dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq on 44'/118'/13'/0/0) #13 js:2:dydx:dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq:
undefined: 0.00070996 dydx (0ops) (dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg on 44'/118'/14'/0/0) #14 js:2:dydx:dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg:
undefined: 0.00090914 dydx (0ops) (dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te on 44'/118'/15'/0/0) #15 js:2:dydx:dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te:
undefined: 0 dydx (0ops) (dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x on 44'/118'/16'/0/0) #16 js:2:dydx:dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x:
undefined: 0 dydx (0ops) (dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku on 44'/118'/17'/0/0) #17 js:2:dydx:dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku:
undefined: 0 UMEE (2ops) (umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l on 44'/118'/0'/0/0) #0 js:2:umee:umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l:
undefined: 16.0938 UMEE (4ops) (umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f on 44'/118'/1'/0/0) #1 js:2:umee:umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f:
undefined: 0.023772 UMEE (0ops) (umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv on 44'/118'/2'/0/0) #2 js:2:umee:umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv:
undefined: 1.17955 UMEE (0ops) (umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak on 44'/118'/3'/0/0) #3 js:2:umee:umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak:
undefined: 0.486896 UMEE (2ops) (umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0 on 44'/118'/4'/0/0) #4 js:2:umee:umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0:
undefined: 0.243184 UMEE (2ops) (umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw on 44'/118'/5'/0/0) #5 js:2:umee:umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw:
undefined: 0.014473 UMEE (3ops) (umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg on 44'/118'/6'/0/0) #6 js:2:umee:umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg:
undefined: 0.679948 UMEE (6ops) (umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp on 44'/118'/7'/0/0) #7 js:2:umee:umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp:
undefined: 0 UMEE (2ops) (umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd on 44'/118'/8'/0/0) #8 js:2:umee:umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd:
undefined: 3.79504 UMEE (5ops) (umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65 on 44'/118'/9'/0/0) #9 js:2:umee:umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65:
undefined: 0 UMEE (2ops) (umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28 on 44'/118'/10'/0/0) #10 js:2:umee:umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28:
undefined: 3.92629 UMEE (4ops) (umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg on 44'/118'/11'/0/0) #11 js:2:umee:umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg:
undefined: 3.71498 UMEE (1ops) (umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm on 44'/118'/12'/0/0) #12 js:2:umee:umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm:
undefined: 77.916 UMEE (7ops) (umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29 on 44'/118'/13'/0/0) #13 js:2:umee:umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29:
undefined: 39.6647 UMEE (1ops) (umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd on 44'/118'/14'/0/0) #14 js:2:umee:umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd:
undefined: 405.807 UMEE (4ops) (umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u on 44'/118'/15'/0/0) #15 js:2:umee:umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u:
undefined: 187.704 UMEE (3ops) (umee1xr8krhp99mp9ncrz6dfgre542nv0rc8lew2a7r on 44'/118'/16'/0/0) #16 js:2:umee:umee1xr8krhp99mp9ncrz6dfgre542nv0rc8lew2a7r:
undefined: 0 UMEE (0ops) (umee102w826rmvswfhs4zsv2ujhylmd92c28pqjxsje on 44'/118'/17'/0/0) #17 js:2:umee:umee102w826rmvswfhs4zsv2ujhylmd92c28pqjxsje:
undefined: 0 XPRT (50ops) (persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf on 44'/118'/0'/0/0) #0 js:2:persistence:persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf:
undefined: 0.007867 XPRT (63ops) (persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l on 44'/118'/1'/0/0) #1 js:2:persistence:persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l:
undefined: 0 XPRT (42ops) (persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6 on 44'/118'/2'/0/0) #2 js:2:persistence:persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6:
undefined: 0.013504 XPRT (76ops) (persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq on 44'/118'/3'/0/0) #3 js:2:persistence:persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq:
undefined: 0.010175 XPRT (17ops) (persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e on 44'/118'/4'/0/0) #4 js:2:persistence:persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e:
undefined: 0.007567 XPRT (64ops) (persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc on 44'/118'/5'/0/0) #5 js:2:persistence:persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc:
undefined: 0.063844 XPRT (51ops) (persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7 on 44'/118'/6'/0/0) #6 js:2:persistence:persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7:
undefined: 0.430196 XPRT (64ops) (persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch on 44'/118'/7'/0/0) #7 js:2:persistence:persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch:
undefined: 0 XPRT (56ops) (persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm on 44'/118'/8'/0/0) #8 js:2:persistence:persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm:
undefined: 0.105711 XPRT (119ops) (persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz on 44'/118'/9'/0/0) #9 js:2:persistence:persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz:
undefined: 0.108314 XPRT (52ops) (persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3 on 44'/118'/10'/0/0) #10 js:2:persistence:persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3:
undefined: 0.657719 XPRT (95ops) (persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7 on 44'/118'/11'/0/0) #11 js:2:persistence:persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7:
undefined: 1.19879 XPRT (31ops) (persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd on 44'/118'/12'/0/0) #12 js:2:persistence:persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd:
undefined: 5.73082 XPRT (111ops) (persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn on 44'/118'/13'/0/0) #13 js:2:persistence:persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn:
undefined: 10.4311 XPRT (22ops) (persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m on 44'/118'/14'/0/0) #14 js:2:persistence:persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m:
undefined: 8.04518 XPRT (44ops) (persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92 on 44'/118'/15'/0/0) #15 js:2:persistence:persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92:
undefined: 2.31736 XPRT (22ops) (persistence1xr8krhp99mp9ncrz6dfgre542nv0rc8l953354 on 44'/118'/16'/0/0) #16 js:2:persistence:persistence1xr8krhp99mp9ncrz6dfgre542nv0rc8l953354:
undefined: 0 XPRT (0ops) (persistence102w826rmvswfhs4zsv2ujhylmd92c28pugauc0 on 44'/118'/17'/0/0) #17 js:2:persistence:persistence102w826rmvswfhs4zsv2ujhylmd92c28pugauc0:
undefined: 0 QCK (1ops) (quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l on 44'/118'/0'/0/0) #0 js:2:quicksilver:quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l:
undefined: 0 QCK (0ops) (quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf on 44'/118'/1'/0/0) #1 js:2:quicksilver:quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf:
undefined: 0 QCK (0ops) (quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev on 44'/118'/2'/0/0) #2 js:2:quicksilver:quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev:
undefined: 0.000654 QCK (0ops) (quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk on 44'/118'/3'/0/0) #3 js:2:quicksilver:quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk:
undefined: 0 QCK (0ops) (quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0 on 44'/118'/4'/0/0) #4 js:2:quicksilver:quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0:
undefined: 0.021161 QCK (0ops) (quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw on 44'/118'/5'/0/0) #5 js:2:quicksilver:quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw:
undefined: 0.26109 QCK (0ops) (quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug on 44'/118'/6'/0/0) #6 js:2:quicksilver:quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug:
undefined: 0 QCK (0ops) (quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p on 44'/118'/7'/0/0) #7 js:2:quicksilver:quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p:
undefined: 0.001454 QCK (9ops) (quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d on 44'/118'/8'/0/0) #8 js:2:quicksilver:quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d:
undefined: 0.169283 QCK (0ops) (quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585 on 44'/118'/9'/0/0) #9 js:2:quicksilver:quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585:
undefined: 0.013183 QCK (0ops) (quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8 on 44'/118'/10'/0/0) #10 js:2:quicksilver:quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8:
undefined: 0.603196 QCK (0ops) (quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg on 44'/118'/11'/0/0) #11 js:2:quicksilver:quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg:
undefined: 0.097119 QCK (0ops) (quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm on 44'/118'/12'/0/0) #12 js:2:quicksilver:quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm:
undefined: 7.61646 QCK (0ops) (quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9 on 44'/118'/13'/0/0) #13 js:2:quicksilver:quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9:
undefined: 0 QCK (2ops) (quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad on 44'/118'/14'/0/0) #14 js:2:quicksilver:quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad:
undefined: 3.6206 QCK (0ops) (quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju on 44'/118'/15'/0/0) #15 js:2:quicksilver:quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju:
undefined: 10.8204 QCK (0ops) (quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr on 44'/118'/16'/0/0) #16 js:2:quicksilver:quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr:
undefined: 0 QCK (0ops) (quick102w826rmvswfhs4zsv2ujhylmd92c28peqta0e on 44'/118'/17'/0/0) #17 js:2:quicksilver:quick102w826rmvswfhs4zsv2ujhylmd92c28peqta0e:
undefined: 0 NOM (19ops) (onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg on 44'/118'/0'/0/0) #0 js:2:onomy:onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg:
undefined: 0.00001606 NOM (54ops) (onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67 on 44'/118'/1'/0/0) #1 js:2:onomy:onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67:
undefined: 0 NOM (36ops) (onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m on 44'/118'/2'/0/0) #2 js:2:onomy:onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m:
undefined: 0.00000173 NOM (76ops) (onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp on 44'/118'/3'/0/0) #3 js:2:onomy:onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp:
undefined: 0 NOM (43ops) (onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c on 44'/118'/4'/0/0) #4 js:2:onomy:onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c:
undefined: 0.00000023 NOM (74ops) (onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he on 44'/118'/5'/0/0) #5 js:2:onomy:onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he:
undefined: 0.00001736 NOM (48ops) (onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l on 44'/118'/6'/0/0) #6 js:2:onomy:onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l:
undefined: 0.00001285 NOM (62ops) (onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k on 44'/118'/7'/0/0) #7 js:2:onomy:onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k:
undefined: 0.00000024 NOM (34ops) (onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6 on 44'/118'/8'/0/0) #8 js:2:onomy:onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6:
undefined: 0.0000337 NOM (70ops) (onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r on 44'/118'/9'/0/0) #9 js:2:onomy:onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r:
undefined: 0.0000045 NOM (17ops) (onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls on 44'/118'/10'/0/0) #10 js:2:onomy:onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls:
undefined: 0.00314235 NOM (58ops) (onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl on 44'/118'/11'/0/0) #11 js:2:onomy:onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl:
undefined: 0.00094749 NOM (16ops) (onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv on 44'/118'/12'/0/0) #12 js:2:onomy:onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv:
undefined: 0.214328 NOM (15ops) (onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj on 44'/118'/13'/0/0) #13 js:2:onomy:onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj:
undefined: 0.399647 NOM (19ops) (onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46 on 44'/118'/14'/0/0) #14 js:2:onomy:onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46:
undefined: 0.0528671 NOM (10ops) (onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t on 44'/118'/15'/0/0) #15 js:2:onomy:onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t:
undefined: 1.13529 NOM (14ops) (onomy1xr8krhp99mp9ncrz6dfgre542nv0rc8l3er5t5 on 44'/118'/16'/0/0) #16 js:2:onomy:onomy1xr8krhp99mp9ncrz6dfgre542nv0rc8l3er5t5:
undefined: 0 NOM (0ops) (onomy102w826rmvswfhs4zsv2ujhylmd92c28pg90e8w on 44'/118'/17'/0/0) #17 js:2:onomy:onomy102w826rmvswfhs4zsv2ujhylmd92c28pg90e8w:
undefined: 0.005246 SEI (0ops) (sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v on 44'/118'/0'/0/0) #0 js:2:sei_network:sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v:
undefined: 0.010124 SEI (0ops) (sei1qvtnzptp30maznnhdg30xl2jtdq2shpn2s5qd6 on 44'/118'/1'/0/0) #1 js:2:sei_network:sei1qvtnzptp30maznnhdg30xl2jtdq2shpn2s5qd6:
undefined: 0 SEI (0ops) (sei1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw4vusxl on 44'/118'/2'/0/0) #2 js:2:sei_network:sei1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw4vusxl:
undefined: 0.027521 SEI (0ops) (sei1hgyf054qztvmty3cayuw9nedftlhejv5xd54l9 on 44'/118'/3'/0/0) #3 js:2:sei_network:sei1hgyf054qztvmty3cayuw9nedftlhejv5xd54l9:
undefined: 0 SEI (0ops) (sei1vc7s929uh2yxyhau4wsg5th9jzedvkurwspxau on 44'/118'/4'/0/0) #4 js:2:sei_network:sei1vc7s929uh2yxyhau4wsg5th9jzedvkurwspxau:
undefined: 0 SEI (0ops) (sei1qgrd8srhvald995uvpeyncvwg7afgkmrzsj8qa on 44'/118'/5'/0/0) #5 js:2:sei_network:sei1qgrd8srhvald995uvpeyncvwg7afgkmrzsj8qa:
undefined: 0.013449 SEI (0ops) (sei1n6vccpa77x7xyhnk98jy6gg3rmgjkazxen5vrm on 44'/118'/6'/0/0) #6 js:2:sei_network:sei1n6vccpa77x7xyhnk98jy6gg3rmgjkazxen5vrm:
undefined: 0.004018 SEI (0ops) (sei1v283e7h2plllyjwgqrexv2ge5e4z252u0d2fsj on 44'/118'/7'/0/0) #7 js:2:sei_network:sei1v283e7h2plllyjwgqrexv2ge5e4z252u0d2fsj:
undefined: 0 SEI (0ops) (sei1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ww5667 on 44'/118'/8'/0/0) #8 js:2:sei_network:sei1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ww5667:
undefined: 0.014582 SEI (0ops) (sei1jgk668h53gd9wn09mndq7uzgk80nr5d80upsc8 on 44'/118'/9'/0/0) #9 js:2:sei_network:sei1jgk668h53gd9wn09mndq7uzgk80nr5d80upsc8:
undefined: 0.01225 SEI (0ops) (sei1733g3dfzj6tulcqtvz628ypuqj0hvlrzxt3dg5 on 44'/118'/10'/0/0) #10 js:2:sei_network:sei1733g3dfzj6tulcqtvz628ypuqj0hvlrzxt3dg5:
undefined: 0 SEI (0ops) (sei1q09970dekm5hdku5tta7p9w6kldyyf25r76f5m on 44'/118'/11'/0/0) #11 js:2:sei_network:sei1q09970dekm5hdku5tta7p9w6kldyyf25r76f5m:
undefined: 0.005197 SEI (0ops) (sei1yhlye27fl05kg4nhmeu5d579m8ups9ewmzhvyg on 44'/118'/12'/0/0) #12 js:2:sei_network:sei1yhlye27fl05kg4nhmeu5d579m8ups9ewmzhvyg:
undefined: 0.00525 SEI (0ops) (sei1890w5jltm6wmq2jr9f9e8x4vhs5fx30qack6gk on 44'/118'/13'/0/0) #13 js:2:sei_network:sei1890w5jltm6wmq2jr9f9e8x4vhs5fx30qack6gk:
undefined: 0.014868 SEI (0ops) (sei1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap4jcxz7 on 44'/118'/14'/0/0) #14 js:2:sei_network:sei1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap4jcxz7:
undefined: 0 SEI (0ops) (sei10wwjgt3uluxt4zq4qxnkcv96nyz4cata6zw8d0 on 44'/118'/15'/0/0) #15 js:2:sei_network:sei10wwjgt3uluxt4zq4qxnkcv96nyz4cata6zw8d0:
undefined: 0 STARS (12ops) (stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu on 44'/118'/0'/0/0) #0 js:2:stargaze:stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu:
undefined: 27.9488 STARS (21ops) (stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2 on 44'/118'/1'/0/0) #1 js:2:stargaze:stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2:
undefined: 0.244265 STARS (9ops) (stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0 on 44'/118'/2'/0/0) #2 js:2:stargaze:stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0:
undefined: 2.08863 STARS (14ops) (stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4 on 44'/118'/3'/0/0) #3 js:2:stargaze:stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4:
undefined: 0.16107 STARS (11ops) (stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv on 44'/118'/4'/0/0) #4 js:2:stargaze:stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv:
undefined: 14.2786 STARS (9ops) (stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd on 44'/118'/5'/0/0) #5 js:2:stargaze:stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd:
undefined: 16.7416 STARS (3ops) (stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt on 44'/118'/6'/0/0) #6 js:2:stargaze:stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt:
undefined: 12.8614 STARS (9ops) (stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz on 44'/118'/7'/0/0) #7 js:2:stargaze:stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz:
undefined: 0 STARS (5ops) (stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw on 44'/118'/8'/0/0) #8 js:2:stargaze:stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw:
undefined: 0.154727 STARS (7ops) (stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h on 44'/118'/9'/0/0) #9 js:2:stargaze:stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h:
undefined: 1.02703 STARS (11ops) (stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y on 44'/118'/10'/0/0) #10 js:2:stargaze:stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y:
undefined: 6.34934 STARS (9ops) (stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet on 44'/118'/11'/0/0) #11 js:2:stargaze:stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet:
undefined: 2.60569 STARS (5ops) (stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc on 44'/118'/12'/0/0) #12 js:2:stargaze:stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc:
undefined: 0.683077 STARS (5ops) (stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x on 44'/118'/13'/0/0) #13 js:2:stargaze:stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x:
undefined: 32.7534 STARS (3ops) (stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w on 44'/118'/14'/0/0) #14 js:2:stargaze:stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w:
undefined: 449.46 STARS (6ops) (stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql on 44'/118'/15'/0/0) #15 js:2:stargaze:stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql:
undefined: 318.893 STARS (0ops) (stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q on 44'/118'/16'/0/0) #16 js:2:stargaze:stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q:
undefined: 0 STARS (0ops) (stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6 on 44'/118'/17'/0/0) #17 js:2:stargaze:stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6:
undefined: 0 CORE (78ops) (core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk on 44'/118'/0'/0/0) #0 js:2:coreum:core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk:
undefined: 0.024863 CORE (117ops) (core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq on 44'/118'/1'/0/0) #1 js:2:coreum:core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq:
undefined: 0 CORE (97ops) (core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89 on 44'/118'/2'/0/0) #2 js:2:coreum:core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89:
undefined: 0.821942 CORE (150ops) (core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l on 44'/118'/3'/0/0) #3 js:2:coreum:core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l:
undefined: 0.016046 CORE (84ops) (core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux on 44'/118'/4'/0/0) #4 js:2:coreum:core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux:
undefined: 0.246985 CORE (119ops) (core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8 on 44'/118'/5'/0/0) #5 js:2:coreum:core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8:
undefined: 0.023366 CORE (80ops) (core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp on 44'/118'/6'/0/0) #6 js:2:coreum:core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp:
undefined: 0.01574 CORE (107ops) (core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g on 44'/118'/7'/0/0) #7 js:2:coreum:core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g:
undefined: 0 CORE (74ops) (core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy on 44'/118'/8'/0/0) #8 js:2:coreum:core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy:
undefined: 0.011091 CORE (133ops) (core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea on 44'/118'/9'/0/0) #9 js:2:coreum:core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea:
undefined: 0.011286 CORE (72ops) (core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw on 44'/118'/10'/0/0) #10 js:2:coreum:core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw:
undefined: 0 CORE (107ops) (core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p on 44'/118'/11'/0/0) #11 js:2:coreum:core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p:
undefined: 0 CORE (51ops) (core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j on 44'/118'/12'/0/0) #12 js:2:coreum:core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j:
undefined: 0.058652 CORE (113ops) (core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv on 44'/118'/13'/0/0) #13 js:2:coreum:core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv:
undefined: 1.45913 CORE (49ops) (core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try on 44'/118'/14'/0/0) #14 js:2:coreum:core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try:
undefined: 22.7289 CORE (79ops) (core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4 on 44'/118'/15'/0/0) #15 js:2:coreum:core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4:
undefined: 17.8648 CORE (27ops) (core1xr8krhp99mp9ncrz6dfgre542nv0rc8lck0ea2 on 44'/118'/16'/0/0) #16 js:2:coreum:core1xr8krhp99mp9ncrz6dfgre542nv0rc8lck0ea2:
undefined: 0 CORE (0ops) (core102w826rmvswfhs4zsv2ujhylmd92c28pp2r53s on 44'/118'/17'/0/0) #17 js:2:coreum:core102w826rmvswfhs4zsv2ujhylmd92c28pp2r53s:
undefined: 17.3755 CRO (44ops) (cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra on 44'/394'/0'/0/0) #0 js:2:crypto_org:cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra:
undefined: 0 CRO (35ops) (cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl on 44'/394'/1'/0/0) #1 js:2:crypto_org:cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl:
undefined: 0 CRO (39ops) (cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2 on 44'/394'/2'/0/0) #2 js:2:crypto_org:cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2:
undefined: 17.3755 CRO (30ops) (cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd on 44'/394'/3'/0/0) #3 js:2:crypto_org:cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd:
undefined: 0 CRO (30ops) (cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l on 44'/394'/4'/0/0) #4 js:2:crypto_org:cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l:
undefined: 0 CRO (31ops) (cro1zfhcf2htapdkjlw4ffqzce7yfe6mhscd2su05p on 44'/394'/5'/0/0) #5 js:2:crypto_org:cro1zfhcf2htapdkjlw4ffqzce7yfe6mhscd2su05p:
undefined: 0 CRO (0ops) (cro1gfrsr7eerpuc0zpl4j6wp3aj55gqahtls2hj9h on 44'/394'/6'/0/0) #6 js:2:crypto_org:cro1gfrsr7eerpuc0zpl4j6wp3aj55gqahtls2hj9h:
undefined: 0.455776 EGLD (363ops) (erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp on 44'/508'/0'/0/0) #0 js:2:elrond:erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp:
undefined: 0.488546 EGLD (399ops) (erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6 on 44'/508'/1'/0/0) #1 js:2:elrond:erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6:
undefined: 0 EGLD (369ops) (erd1ql9pxrhe29cjr8qgxx3rtmh9lyax5x9dkvu3mfzrgt4e8hwk536ssl4sea on 44'/508'/2'/0/0) #2 js:2:elrond:erd1ql9pxrhe29cjr8qgxx3rtmh9lyax5x9dkvu3mfzrgt4e8hwk536ssl4sea:
undefined: 0 EGLD (384ops) (erd1sjvd5mh946cty4wq0ya0d82509tc8eulxjujrad5ztfwjlhkqz0qy5yzmn on 44'/508'/3'/0/0) #3 js:2:elrond:erd1sjvd5mh946cty4wq0ya0d82509tc8eulxjujrad5ztfwjlhkqz0qy5yzmn:
undefined: 0 EGLD (330ops) (erd149kzxgtymzzaddanlj02zhyhwves9wspvk8p69u325tjln5en9aqf8x8el on 44'/508'/4'/0/0) #4 js:2:elrond:erd149kzxgtymzzaddanlj02zhyhwves9wspvk8p69u325tjln5en9aqf8x8el:
undefined: 0 EGLD (307ops) (erd143yn6uvrfzjptq5g7wvzntl3fcthsxtxrp9f3dgasluj6q5n0pxq2td67n on 44'/508'/5'/0/0) #5 js:2:elrond:erd143yn6uvrfzjptq5g7wvzntl3fcthsxtxrp9f3dgasluj6q5n0pxq2td67n:
undefined: 0 EGLD (232ops) (erd1nhe920dlsx8u0lg46grd82dc8vqj8wejh8u7xcdjzfr8yy8ncdtsgtgjz7 on 44'/508'/6'/0/0) #6 js:2:elrond:erd1nhe920dlsx8u0lg46grd82dc8vqj8wejh8u7xcdjzfr8yy8ncdtsgtgjz7:
undefined: 0 EGLD (0ops) (erd1w4jjugkk5rp8hn8erefltjn0xek4x60t4hzsmnkfty7930sxujtqgryqgw on 44'/508'/7'/0/0) #7 js:2:elrond:erd1w4jjugkk5rp8hn8erefltjn0xek4x60t4hzsmnkfty7930sxujtqgryqgw:
undefined: 18.6228 HBAR (396ops) (0.0.3663977 on 44/3030) hederaBip44#0 js:2:hedera:0.0.3663977:hederaBip44
undefined: 17.9168 HBAR (346ops) (0.0.3664525 on 44/3030) hederaBip44#1 js:2:hedera:0.0.3664525:hederaBip44
undefined: 1.73337 HBAR (316ops) (0.0.3664539 on 44/3030) hederaBip44#2 js:2:hedera:0.0.3664539:hederaBip44
undefined: 0.825978 HBAR (294ops) (0.0.3664563 on 44/3030) hederaBip44#3 js:2:hedera:0.0.3664563:hederaBip44
undefined: 0 ICP (115ops) (f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209 on 44'/223'/0'/0/0) internet_computer#0 js:2:internet_computer:04e529ca9ff4709b35af64dce4f0719e770d5e185e4ee972729b75495b27628fad0990203fe3ac7079c643a6dd23384e597c65b7bbebbf994b8304253f1bd124e4:internet_computer
undefined: 0 ICP (103ops) (6084b3d34e7d4efd544ea0c3617a816577d00feb0de0db71b560b7687e7d3c14 on 44'/223'/0'/0/1) internet_computer#1 js:2:internet_computer:0404b6a7df5dd483be4711fbdc9248af1e49b3a205334120118fe1dd9567da874d2655f681d9935b02139ffe1997c7fcb7781c04917303d90c7ea157d495ec30d3:internet_computer
undefined: 0 ICP (97ops) (ff5ed1dc2538d7a8b3158e7c9d9b05f80bc5f49f292f1ad2a59576a70bfc4721 on 44'/223'/0'/0/2) internet_computer#2 js:2:internet_computer:04c6d5dab70167c7b104904e57ee8afc84e8b4809c927ceec353a217f1402438b86bb9515e5bdbcc8f187c2c0c5f539d6459fc99c86af1244f452175fd9b736714:internet_computer
undefined: 0 ICP (105ops) (a45d0e0afb2c416464342615b6ee1902ac6895cf5e9eab2ccc184978164e9310 on 44'/223'/0'/0/3) internet_computer#3 js:2:internet_computer:040e411918ebc5963b5f89938dd674d6cb95131ce3d335957cd8efd99cce3521ea22b3f0fc53996b9ce3373a86ca57def22b89829ae905fde5d22c4522a7af5aa2:internet_computer
undefined: 0.00020918 ICP (93ops) (5084840b6ed50fa97b40c93863092770dc74f42bd2fbc742b76ec2999e789262 on 44'/223'/0'/0/4) internet_computer#4 js:2:internet_computer:046036d79bf131623410cfe77b7ccc32c923c6f8dc1b62448111328a2a791b1a7df2d1d4ca80659f3f0613e2334df370ab1c4e38c724decdf7f9f650a61e4ea090:internet_computer
undefined: 0.19946 ICP (71ops) (0ec8cbc167cf495b7800efe653586d14ee0a53ef8880c63129b180580b02a8af on 44'/223'/0'/0/5) internet_computer#5 js:2:internet_computer:04e3bde2b3aeee5ae2af7ffdd25cc416df033c04d084ac02166ee52281e81be7945b119ab171b224984a8ff45adf4cbf28a392524dbefff12edf5d2470efd43375:internet_computer
undefined: 0.814708 ICP (44ops) (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 STX (186ops) (SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2 on 44'/5757'/0'/0/0) #0 js:2:stacks:02d8ff937901982551807aace226a5b1eae3d8c5c89d1eae39ccab9cd1d27a9739:
undefined: 8.30552 STX (193ops) (SP3WE1A84RCG3GWKRXYMXNRVQJ8PG3VDRKE7CMPM4 on 44'/5757'/1'/0/0) #1 js:2:stacks:03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229:
undefined: 15.4419 STX (150ops) (SPJ68NSCQSTQ1AQRY1NJ5D4WWBEPDQ6X24R56J8A on 44'/5757'/2'/0/0) #2 js:2:stacks:02319a870c0e3d22b9c0169df3bae3029a9e5593f8dabbc7e4b6a1e356edafed77:
undefined: 0 STX (0ops) (SP20VP4RY6P3WFDTFGA6A7WFK3ZNN1P305SDWPB3Q on 44'/5757'/3'/0/0) #3 js:2:stacks:02ba832a893132328c5459add91b296287a70b4cbb889eaf1e53542864a853eb8e:
undefined: 1.5005 XLM (566ops) (GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC on 44'/148'/0') sep5#0 js:2:stellar:GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC:sep5
undefined: 1.5005 XLM (560ops) (GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ on 44'/148'/1') sep5#1 js:2:stellar:GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ:sep5
undefined: 16.6907 XLM (563ops) (GA4A2FH4YYI2RXPUC3NPGZQP7XX4CEJNREB27XVX7B7D5RIA3KOLSKTI on 44'/148'/2') sep5#2 js:2:stellar:GA4A2FH4YYI2RXPUC3NPGZQP7XX4CEJNREB27XVX7B7D5RIA3KOLSKTI:sep5
undefined: 22.5555 XLM (541ops) (GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM on 44'/148'/3') sep5#3 js:2:stellar:GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM:sep5
undefined: 24.2329 XLM (503ops) (GBV2ROL25KKDSFCZC2TQPMUEN567YQHRWTRBYHCO5AKYWVIV4JKJ56AF on 44'/148'/4') sep5#4 js:2:stellar:GBV2ROL25KKDSFCZC2TQPMUEN567YQHRWTRBYHCO5AKYWVIV4JKJ56AF:sep5
undefined: 0 XLM (0ops) (GCMN2KYJPPHB4TMXXF2OZPMWVM5EQSDD76IMFOMET7YMN64VJDVHVNCM on 44'/148'/5') sep5#5 js:2:stellar:GCMN2KYJPPHB4TMXXF2OZPMWVM5EQSDD76IMFOMET7YMN64VJDVHVNCM:sep5
undefined: 0.625 VET (7ops) (0xc4B17901FECf86932c3bb296BB00E7c6816Fd416 on 44'/818'/0'/0/0) vechain#0 js:2:vechain:0xc4B17901FECf86932c3bb296BB00E7c6816Fd416:vechain
undefined: 3.125 VET (5ops) (0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD on 44'/818'/0'/0/1) vechain#1 js:2:vechain:0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD:vechain
undefined: 1.25 VET (1ops) (0x6fc5998724338CDe55Bba798273FAdcDE79c5074 on 44'/818'/0'/0/2) vechain#2 js:2:vechain:0x6fc5998724338CDe55Bba798273FAdcDE79c5074:vechain
undefined: 0 VET (0ops) (0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3 on 44'/818'/0'/0/3) vechain#3 js:2:vechain:0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3:vechain
undefined: 0.625 VET (7ops) (0xc4B17901FECf86932c3bb296BB00E7c6816Fd416 on 44'/818'/0'/0/0) vechain#0 js:2:vechain:0xc4B17901FECf86932c3bb296BB00E7c6816Fd416:vechain
undefined: 3.125 VET (5ops) (0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD on 44'/818'/0'/0/1) vechain#1 js:2:vechain:0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD:vechain
undefined: 1.25 VET (1ops) (0x6fc5998724338CDe55Bba798273FAdcDE79c5074 on 44'/818'/0'/0/2) vechain#2 js:2:vechain:0x6fc5998724338CDe55Bba798273FAdcDE79c5074:vechain
undefined: 0 VET (0ops) (0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3 on 44'/818'/0'/0/3) vechain#3 js:2:vechain:0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3:vechain
undefined: 3 ALGO (440ops) (TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4 on 44'/283'/0'/0/0) #0 js:2:algorand:TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4:
undefined: 6.33998 ALGO (434ops) (RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ on 44'/283'/1'/0/0) #1 js:2:algorand:RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ:
undefined: 4.21227 ALGO (447ops) (YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE on 44'/283'/2'/0/0) #2 js:2:algorand:YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE:
undefined: 5.91095 ALGO (485ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA:
undefined: 3.52839 ALGO (399ops) (GEPEPFCOO7TRQ3HKU5IKQPARS7DDXDHH6Y2VNMUJWH7TMLLOZ3Z6JKRQAI on 44'/283'/4'/0/0) #4 js:2:algorand:GEPEPFCOO7TRQ3HKU5IKQPARS7DDXDHH6Y2VNMUJWH7TMLLOZ3Z6JKRQAI:
undefined: 0 ALGO (0ops) (X3TNYJCHUW6UBWVEN5K2ULWMLRWRGBEUWZLR4V2XR3UDN4TWNZP3Q6EAQU on 44'/283'/5'/0/0) #5 js:2:algorand:X3TNYJCHUW6UBWVEN5K2ULWMLRWRGBEUWZLR4V2XR3UDN4TWNZP3Q6EAQU:
undefined [native segwit]: 0 𝚝BTC (183ops) (tb1qqsk6rter25qfxful9dhzrtunyyaga2pvvv89vl on 84'/1'/0'/0/79) native_segwit#0 js:2:bitcoin_testnet:tpubDCgDNn312aj5XtrdMeA9TeQbp2HkMW2a1JNw2qhRLzUaFiDAAQK3Jzh6jzHpc6Agjn68mZgPQB2ZdQzfgRgXVXDi2FVECW7p4xGuK6Pa3b8:native_segwit
undefined [native segwit]: 0 𝚝BTC (156ops) (tb1qrlys0xw3ze6yrdg0l65fhavw75sjp8w4x6epe4 on 84'/1'/1'/0/77) native_segwit#1 js:2:bitcoin_testnet:tpubDCgDNn312aj5YVQsroTmVAWSVMpx2PM7m4toPJsHUricGUh457AwMZK55f2uNVxYdKeW8qDZDngveqFFcsFTWW7eZFbnYerfsf5YAdxU3K8:native_segwit
undefined [native segwit]: 0 𝚝BTC (184ops) (tb1qy7czv898xljxfr0jyw0stp8nj2fksjlrkt0vdc on 84'/1'/2'/0/80) native_segwit#2 js:2:bitcoin_testnet:tpubDCgDNn312aj5d7zhhRFxoozQMEzDZFVWmJngmKcygstAZheV88CxrZ2KqFL8nsjZoeNKeqEHTSmjii11wcuYuchvGYqYuGTzveWepNUKPmE:native_segwit
undefined [native segwit]: 0 𝚝BTC (0ops) (tb1q6d99qx850zdfx4ch32mm3v3mc2g5mupusazw49 on 84'/1'/3'/0/0) native_segwit#3 js:2:bitcoin_testnet:tpubDCgDNn312aj5f2MgUfzseZjbXNj5ep7UH8ucWf9VvUbRC1oyUG7cjbGLoCRhc429i6pMcuMS9ZhGX2bTwnKipVSkhNak9fn2N6sVorY4FxW:native_segwit
undefined [taproot]: 0.00009319 𝚝BTC (183ops) (tb1phpf60ff7kk5t4s5hd36pr6e6jkv6uhl869gs642gmytd05tqe0as2s58w7 on 86'/1'/0'/0/86) taproot#0 js:2:bitcoin_testnet:tpubDD1s2jBEVuSpzKea6ie3HMCmkanzcfvc9BbQq8nRDUaAUJPGFi83RWFCNMartYsuxksbFR6tDmVGMaaRP7ng7uovwKT1WNjcuDW34st9R56:taproot
undefined [taproot]: 0.0006 𝚝BTC (171ops) (tb1pmyh8crjlk5qy8qn0yk2u5ggr9jqqnmll4vtn894werm4tavd5ftqnzcn0a on 86'/1'/1'/0/77) taproot#1 js:2:bitcoin_testnet:tpubDD1s2jBEVuSq13eMrn3r2tnwxfuWeBM94Dgtc4D5A6h1Jcx2kheLSgGtZroZCwFnXN4ao5PxViYSFTK57vRZnQ1RS193EETKNMmRuPTcWJH:taproot
undefined [taproot]: 0 𝚝BTC (0ops) (tb1p7t4hdtqlmpfv4vpu2vqre6elaywjvlq5yfl4jnjz9gw7lwcpjl5svzk5yz on 86'/1'/2'/0/0) taproot#2 js:2:bitcoin_testnet:tpubDD1s2jBEVuSq4ewqyyWoJYgCyvXsQ3wRkeSmKa3RW3b4BL2rfdDWzwM2WoefQcPGjetH92smctVjK4qrS89zYShy399s8MqWzhZdnCvHLfF:taproot
undefined [segwit]: 0.00015 𝚝BTC (156ops) (2N3WJiFfMhLVg8Fd1bCcwGCH3JygLhHN6U8 on 49'/1'/0'/0/76) segwit#0 js:2:bitcoin_testnet:tpubDCoPNx9aypg8jXFPWWYdpHS3MtXF5GPM3nY2UbvQSnEt8PELHAbnf2MknjprAMTYUYPNJzKCr2XSBVMp2wctdKbU1jw9MHA9cbgN7CakJQe:segwit
undefined [segwit]: 0.00021266 𝚝BTC (141ops) (2MzVC116JFYi2C3gxDJ1RnsdqAJeFVgNFHu on 49'/1'/1'/0/64) segwit#1 js:2:bitcoin_testnet:tpubDCoPNx9aypg8mbeNfcfUjuUfsXwrSmZkRseMwRxkhinEX8JjfThyhtJg6HeVWp6mF8gf6m37xqC4Q9yebR5RdtdjFcJ1Js7t8VB8Dq8Nczj:segwit
undefined [segwit]: 0 𝚝BTC (0ops) (2Mys6yQgQV1gdVTPECM5xvhUuNsiqtwSTm7 on 49'/1'/2'/0/0) segwit#2 js:2:bitcoin_testnet:tpubDCoPNx9aypg8pnB9z8yPPo7WEEeu9H1VPzq185ppKSLXDpdvXWkR75auxm6pkL6PdyRNLckMzYbZwiUui7hxFSsK5S5YHXT7pyfiG1eR9JQ:segwit
undefined [legacy]: 0.00046673 𝚝BTC (142ops) (mp25g3AMZDZ5sNNnxaquBsdz4pVqiBVqeR on 44'/1'/0'/0/86) #0 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBsPABuHGzrXmApLgBRomQx7oFzQeuQn8gpzD27asWNYMeBzanzy4ru9hPE5q1HnQJCW2VcWm2Nz4cdNRB8Eo9xKPz6LGnrxQ:
undefined [legacy]: 0.00040818 𝚝BTC (107ops) (n2dUAxPre9KjeUTnAYPmyJb2jUj3wXLqLP on 44'/1'/1'/0/83) #1 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBv5wFZcFYEhephnhXGjF8gKZJ98kGxYvtiv8xdfNVgFgGAFZFCRXwR8td9Nq8nufwfXB1iX75Ypx99d1NktaeLNc4DxmrTng:
undefined [legacy]: 0 𝚝BTC (0ops) (n2pjyyrHHws2nhUT5vULWWYvVvKdQ6itHW on 44'/1'/2'/0/0) #2 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBxB9KbDNQ4KwPmSA6cftnyvQYTQWDgApMdz2Z3YrEMvJVe7ZXz3turDky7qbyk5WJBf2FS9xk4XacpPw8tND5mkkFZRpK1im:
undefined: 0.0118429 BCH (641ops) (qrl2hj3cnvf48uuelvvdewxa29srgtz04s20uckhkg on 44'/145'/0'/0/322) #0 js:2:bitcoin_cash:xpub6CYDTh442n9QYTMdQ7Uc7XDC2zCzZ5jM1m1DrWxmfQMToP2ngWZVtptKiksRoGgdcRSLDC6PgEULihbZE3SDt4ndVzoRNUEoZeTCsBUAWWP:
undefined: 0.00227986 BCH (612ops) (qrce2f7zfwl7gjx8prj3d4y9m6u70skktup759uw97 on 44'/145'/1'/0/311) #1 js:2:bitcoin_cash:xpub6CYDTh442n9QaLF3Z2i5L9QENTixN9kGH5XCYh2J5UTHuu99Y2W1sxm2HcX9sQUe2xmv4r3GVmn8GdTvCsLEof448VdZEmdpfmzX7Dk3AJx:
undefined: 0 BCH (574ops) (qqfqe6udl2a7wh0msnuxlych9ju86v3yfyyz4hzw47 on 44'/145'/2'/0/283) #2 js:2:bitcoin_cash:xpub6CYDTh442n9QdmbZ2RXVmndx8Hv2cFDKjhzANqnPkFjpcqaztmjEdhB9wiiYxJFncp8Et32XZF2YvsC6sXmDRFGEwgjVzQDinZ2xmgZuyb9:
undefined: 0.00730815 BCH (570ops) (qreznpuupa6caegvfhguahwr3xrnatr8y5rmt38j8t on 44'/145'/3'/0/280) #3 js:2:bitcoin_cash:xpub6CYDTh442n9QftkdDJbR3GXhop6xxjkHdxgz9xcKkdq8Q7xF9ER8NXJicVwjXbnkBdbF7nc52wrAVhGoraVfQcsGCA2JwjWurCZQU6pNyHH:
undefined: 0.00183613 BCH (543ops) (qzmtqfjtes9qzw5555860lnr0epce47vk5suhdgf54 on 44'/145'/4'/0/255) #4 js:2:bitcoin_cash:xpub6CYDTh442n9QiWxQaeXpmh16DkgpNqufRUMcj6rDqW2gF9Ronnvv9okteP6YQHZGYEojUXg8LL3kfrJzWHrfLFKKarvBgZBtSBRgqcX6w1G:
undefined: 0.0238171 BCH (539ops) (qp4wxt4rm55dtpent240gtdk64cdkqtn8g9gqma5kv on 44'/145'/5'/0/287) #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.0807667 BTG (680ops) (AXxqhhv4DzigLUXS3YkSSXsskG581MHrdj on 49'/156'/0'/0/332) segwit#0 js:2:bitcoin_gold:xpub6DHWENEKDQW8XxvbwvAFdCTGgzmHJkx8eY8bdGrL6iLmiqmPmCEscEvf7MBSDtbZWuLcUeQP9j87rJSgMhtwpUj3JSnQDoGHG2aqRVaSn43:segwit
undefined [segwit]: 0.2357 BTG (649ops) (AbVfkw5uL7PRMc3BqZycwMy4QBdwYK7EAN on 49'/156'/1'/0/316) 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.0731834 BTG (678ops) (GTKM198BkiiHeL2riHmoqAcqY5XQvg3S18 on 44'/156'/0'/0/336) #0 js:2:bitcoin_gold:xpub6Cq1sXPAA8ijyqJpdR5hDVYJ7XyunpPgVpCWwPtReGJDwhqnWxBhu7wBJjbtdWHXSQiSyNDhxDXF4GmrXGatK4yDASHE3CgS3tsT41T81Dj:
undefined [legacy]: 0 BTG (660ops) (GNh2jwTbsh2HPbGZjyNvfKtgCWe7RF7PfT on 44'/156'/1'/0/348) #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.00105554 DASH (503ops) (XfJPX8uAUD6tgutvBuwguYV1xV2oLEqBsR on 44'/5'/0'/0/250) #0 js:2:dash:drkvjS8m2iwuqAXaxEBNS8ULFEKfoEEVNrSyzsEwioinaxb7TZ6fmP7rB3YiU3xcEoM39WoeDJdTS5sgVHQAeowB9BhdxkvDZhJErQk8AWTyaYk:
undefined: 0.003825 DASH (477ops) (Xe7PoLrRiBRNyS3oKiYy3KKrvmyRKUixfG on 44'/5'/1'/0/220) #1 js:2:dash:drkvjS8m2iwuqAXayHufe3hHCwpvgLyxxGhMAiCSW4kjQ2jC6FKcYKqC2ePkovCh93HAt2AgXQSt4YdJG3XX1raRMbHwwJz6ezKi4yotkX7mjwb:
undefined: 0.0951353 DASH (505ops) (Xg4b2jVg8UHzgXAJGCK21CFAk9uFbu4bBT on 44'/5'/2'/0/252) #2 js:2:dash:drkvjS8m2iwuqAXb2YSrc4u7qMoaf3UtCbF5A1gphQy6soFEDH7sHmvfZiAEzFse5Q3ycaoq6Su8iitWgNoxRriwzitNTWcwBkXrAdaf2xNXuo4:
undefined: 0.00360845 DASH (472ops) (XquhSE18MdyfAtFus9cH4Gmzo5xuJPx8bC on 44'/5'/3'/0/237) #3 js:2:dash:drkvjS8m2iwuqAXb4LDphtncxj3UdVEACR5JCjoccMjdxfEkEhu7oB1vpZFyajdUEhapJgwi7uUq24ys47gm3VNj4vRQbVcV5YQkrGCpUyd7hDS:
undefined: 0.00016188 DASH (457ops) (Xez3bN9sDTc8z1TVRdqWmkSg7ZKdvBKbg5 on 44'/5'/4'/0/230) #4 js:2:dash:drkvjS8m2iwuqAXb7uLicFWmFdztLiHpa6PM7iTRQcYT9wX9vF565f9ZQ7ZrwYBKab7ctGrnUyyyn5zFBtBEazazVdBvneLkZ9bUjb83PMLEgpw:
undefined: 0.00319036 DASH (454ops) (XgzHMo1tt4rDiKrVNvd2AqwqfbKwuyenGs on 44'/5'/5'/0/241) #5 js:2:dash:drkvjS8m2iwuqAXbBAUgNiSVfsH5TurFQxb3bCTM84wuSY376sNUmXbTzLp6cPT8iLqD43n1GXTaHGAaemq8vEm2rwqu5bxtgemUp719HCTXW4S:
undefined: 0 DASH (0ops) (XiiyHQPZVuxXHnApv1XP2aNbz92zL8u6Hy on 44'/5'/6'/0/0) #6 js:2:dash:drkvjS8m2iwuqAXbCRvDwtZdhj7KX8KWD7NqtKJ3cmdPhKoAsfK26rcmmGGAoHdVCvsCgkkZMeyq9cxfExdrvJfzTXJFU8enhrj8pQ4vnTXXUh9:
undefined [native segwit]: 84.7839 DGB (645ops) (dgb1qxu2uz58kf3u2zr3g39lk8d8mnnc8wph7xxlgdz on 84'/20'/0'/0/308) native_segwit#0 js:2:digibyte:xpub6CW9KDgdnS4RwiFZjL1YpEbk1yYvD96EqiBXmq6xKRhe3rJJQaB78voA4DG2dJctnUeWZes6NhysTRpCmBgGxCCy39wcwRwSB4fx3Nd2AxP:native_segwit
undefined [native segwit]: 15.146 DGB (643ops) (dgb1qk4a63me2z8jljm77cp80y2jehxuuj9eerkt46t on 84'/20'/1'/0/315) 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.1 DGB (601ops) (SVbKvenyv2ijhv3SJuHVVqKgWEZvjE3iSs on 49'/20'/0'/0/298) segwit#0 js:2:digibyte:xpub6CrEMM6LnNPxiDTZaMJwXTtYZXUQvvMwYb2Do892dbEYMrLEfFXZ8ygRrywE66brjMWbV948BJAbWGwV1oeyT7L57ZJykK8jVJ26UQiDVfp:segwit
undefined [segwit]: 3.90917 DGB (591ops) (SZPUsyZ7QSVd7soqTRw9Jt83bMrrcDBRbd on 49'/20'/1'/0/288) 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]: 0 DGB (620ops) (DEDCgGx1g7HBdf8HzT7ESTn1T8XnZcTbG5 on 44'/20'/0'/0/308) #0 js:2:digibyte:xpub6Cv4emS7S9zviCwMrBM1LhC7EdKY6QgFZ7T46nwEqtmaJda4EPH7Jv19h8GfhAPNTztGNWBBxribdod3wcxXRDkLmzRBxUgyZWxMoYLDgCX:
undefined [legacy]: 339.991 DGB (594ops) (DFj8PqWK8ie3L2RUNAKdH7K9vZZttVTYCM on 44'/20'/1'/0/325) #1 js:2:digibyte:xpub6Cv4emS7S9zvmSxVKstTvb3QR4MYRMR1ySqUZbWc8A1vE2Y2BYw3FjLoxVtVYAeJjzR8PqEDDykAzGBUXsphL3xbgbzx6EtS2D8ikALFT52:
undefined [legacy]: 0 DGB (0ops) (DBWpWpZTMg31XMoamhZjKoSqahTVTG2qHi on 44'/20'/2'/0/0) #2 js:2:digibyte:xpub6Cv4emS7S9zvoT2jPveX3CwptyX75sUdfpgmx6DyVGme8QQit5WYE189GhbBJyPThotPBRdpQ5RaXNn8BCkmPNGCG1cirRswqvyvhhqgnAT:
undefined: 11.0559 DOGE (328ops) (DS4u76sY8RfrTcVT9YYvWt6ptUUE9Htv4y on 44'/3'/0'/0/164) #0 js:2:dogecoin:dgub8sBmteCcuFFejUSqGNBcwXRVJ4ZH33Sx3vTJG1o8Q1XwFRNFgT8fAreoj59VMzuU6EJmVMW9gLc9XJSXuxBeSUEt2s2QjSbfYCKkyBvF3pz:
undefined: 2.59527 DOGE (320ops) (DAX88dZ6htzrdQGc9piCWzakhCnmWj1482 on 44'/3'/1'/0/149) #1 js:2:dogecoin:dgub8sBmteCcuFFenEm7nyLHE2Zxt38inSEWx1bVAvWgAXbsHzuEHPaM4aP4J1oE2UWhoQ6cjN8rLEmuzqZHr9MyJvLE8zj527mdtweCgUBjuxj:
undefined: 0 DOGE (327ops) (DCgu4AbjTSkuJ5DsPQPqwtM72zyFpRchRc on 44'/3'/2'/0/168) #2 js:2:dogecoin:dgub8sBmteCcuFFepPh2rZbmtt3RujGFHSLrQiT7cawEm8PpDRumeEWWM4tsKtqm4vUYtHSJZvsifqbKXgUMGN89Y29Kh6DMoq2JCEBPAE5BVK2:
undefined: 3.07128 DOGE (333ops) (DPXjF2jmYMmePSqjUhkXTovEREfgjttqjk on 44'/3'/3'/0/167) #3 js:2:dogecoin:dgub8sBmteCcuFFer5KqAKz1JpoYNxNzLP5v2uStDCS6iMYMJz9qssa7cr4EeDGLuPaJ6VRGK6owP43wMFhgHtPXMe56ptKcVF7o5DqVf8mTMDz:
undefined: 3.38883 DOGE (330ops) (DJhGMDfDXz9UauTbh8yg4N3KygsQu7YPQ9 on 44'/3'/4'/0/166) #4 js:2:dogecoin:dgub8sBmteCcuFFev32JBmBE5kkWA9Fz4LHryxURKDHBm8kXT2s5X3cM4eGnk5YDgbRj2cGny85CWZLtFuz4n6SNEff68ZFXZRfeMcKYjM4ZABa:
undefined: 6.25583 DOGE (264ops) (DCbBZ9TFaooZ98HbHr3wKQKQRzhMbwEeyD on 44'/3'/5'/0/135) #5 js:2:dogecoin:dgub8sBmteCcuFFexZUo9SNmC2kEwPEUKxWo4VbEi5sZq9uAa3koQSeoUyxC5Z9XXqHq6hvYUYMvWL1iuVLnneqEfda8PdDDWPbvXggRGYDS2Yy:
undefined: 0 DOGE (0ops) (DNvgzFMvZG3k3o78cqn3y3YksWoSnC3uJ8 on 44'/3'/6'/0/0) #6 js:2:dogecoin:dgub8sBmteCcuFFf1Q45j57nYSbt99vo2P5iHSDdytuEPxtbcaRJrgTJCCJFx9AJhFHvyRNkQ8HxwQ61te2F8hhtChBWAL6RCDZEpbjvKGVRR3T:
undefined: 4.62015 KMD (520ops) (RVCMZSRWEpMPw8Pk477NkMtts7TJdBrztr on 44'/141'/0'/0/251) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:
undefined: 8.71282 KMD (499ops) (RWM6Ve7GBBuMqRfh6XEhts5D3mDx7Px2pM on 44'/141'/1'/0/238) #1 js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:
undefined: 4.17541 KMD (498ops) (RK8ShhVfzfTJjm2h1jKr4ZHDa8F4e2NM8s on 44'/141'/2'/0/256) #2 js:2:komodo:v4PKUB9WZbMS4XNED8S4oAJzXQqPbfLCmNRNPW8QoETCA7opTJLFvrkm39QZAdLg8DygthREBvDRmrHDeVtEQ8C7iQDfXDSPTrzB2FAFkvgsQ9HA:
undefined: 0 KMD (466ops) (RPXWovcKjAbgYMBoV8SDhMTTiF1VaVVRYt on 44'/141'/3'/0/245) #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.121134 LTC (637ops) (ltc1q5zxywf65gakhtxfn8eqc58nvhhhc44w2zyp0ks on 84'/2'/0'/0/299) native_segwit#0 js:2:litecoin:Ltub2YLUoe8MGLizFvLnAHJhiz3rdWG8UXqi9A9smDbuwPD44WPa1rB1EwyQwzRiVFKGH4mS6b5DRE3c3S9jZ944uaGcRK2XPinZcbdmo3P2vmq:native_segwit
undefined [native segwit]: 0.132737 LTC (585ops) (ltc1qmfuc7r45j5qw6x8xm6jue4ez2gwaze6sgype2s on 84'/2'/1'/0/283) 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.028734 LTC (628ops) (MPdMrU1wFKf1RnoBFfxLWxhuwdSBeyHP7c on 49'/2'/0'/0/308) segwit#0 js:2:litecoin:Ltub2YDfX8FoxTFohkcgknuZr2WLrCNpq6ufHxguxyjoDWGDZ1GBUVSn5wwoD2ifjY13iERFGvauvW55p6ASVCbqiABnreHFCsV5LKps76aWDV3:segwit
undefined [segwit]: 0.0294916 LTC (597ops) (MBZ6Td7AS4zUsh5ELhs7r4JoC7yPDBTvZ6 on 49'/2'/1'/0/305) 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 LTC (633ops) (LiHZwzKs4V5G3kmD9oJSPoP2exjnauhUrV on 44'/2'/0'/0/314) #0 js:2:litecoin:Ltub2YwXt3Fm1MVHeGxpcxFhFTe1FkqDdVoeRp9FRnnqGrinFxJSDjXwVTnmjK56jhq83mxWmTKprWjLXqspQCYtxJmCnwCLJUPoZhjJEYMtcFd:
undefined [legacy]: 0.0302413 LTC (567ops) (LZnUjMdjfwJocqj4tURpBHpho7R75Qmes7 on 44'/2'/1'/0/310) #1 js:2:litecoin:Ltub2YwXt3Fm1MVHgsz1XL8MM6MicGgumPzfpD1pZcsk15P4LZHiF4wpFPGvTi58u9evgMd4dV9K7cMMA532mq1HbEknZZ5UayUuRbSsM5VzptL:
undefined [legacy]: 0 LTC (0ops) (LiDx2poS1M1DwYU2zHuvKEQAAFUdpRgP59 on 44'/2'/2'/0/0) #2 js:2:litecoin:Ltub2YwXt3Fm1MVHgy4nREA2MxDT5Em3QsQv2Yu6gfGSPudxTKgcovLsh1sV3rje75uZ5eAkyJLkbHxPBFU3Wbhd2Q6XF863omV2XfWhsC2ACJ4:
undefined: 0 PIVX (670ops) (DUPqA3h4czj8VDqtjxjLNnJobg54xGZxpQ on 44'/77'/0'/0/322) #0 js:2:pivx:ToEA6mkkScBzPS3QGwz3pD9XiPf8YynSCGuC65sMGexuJ8oLkqEAZRAcR5VqKvRV5Phzid1ZG7myNKF6XtRBtVKT5JhgUpaKZtwAq3XzeH3Qnmz:
undefined: 0.205318 PIVX (614ops) (DToceWe8EFgK74HHzr4Zb7WQGgvdKEhGYh on 44'/77'/1'/0/294) #1 js:2:pivx:ToEA6mkkScBzPS3QK9QkPuwWHUEA284HMW86PxW1zkXJAAJa9zXWJjVwBvYEt5HTwDHyDpyfC2VRj3Sy9MBegtxX3kBM1dyiPx81KcwoA8DT75c:
undefined: 28.3851 PIVX (627ops) (DJRMB6AvsxuNuvfs3omJiHABPTrrTXAHBj on 44'/77'/2'/0/328) #2 js:2:pivx:ToEA6mkkScBzPS3QNaWms316jJrjhxFoXsKpv21fDZnZUqeqnX1FpofXYA3ARA7qSEHn2wmdd7EPMM1qJ36CiFP3Ycu6p4EMHKYgV49aAFQYdwt:
undefined: 0 PIVX (660ops) (DHZV8shUXLRaFxMvJS1bz3nwbtChUNDojS on 44'/77'/3'/0/339) #3 js:2:pivx:ToEA6mkkScBzPS3QRXKa6QiRvZKUYefypt8wZupR6GaqD77SPLwzgmraaKbGgcirVLLXkQ6XjZJcGhoLRL2xP5ZBVjD5TUz6ZY6WkgXBpJW5rNU:
undefined: 0 PIVX (0ops) (DGvVBqdtcbSTuXgf6JjAxG5a8MSRXk76Tw on 44'/77'/4'/0/0) #4 js:2:pivx:ToEA6mkkScBzPS3QS97WZjaF1BidcB1ywJUVPvH1UAbz9BzZ1U8Uzo3zVwrmNHH18cJiwpjFEUnvCu5hqTQs5df1A7f1vBttM65ReXpJhxvKtvh:
undefined [segwit]: 2.89611 VTC (595ops) (3QiXxZRNEBWWkgbNk8Q1VAdFUahAzMR9Ad on 49'/28'/0'/0/277) segwit#0 js:2:vertcoin:xpub6BzrB2TZiXxTtjegub5eT5QAmDtrDVNDnwj8eJJgBqgbLwXxsRQgQQoP5eCaHNyvLxFXkB2doyxytbGkUvoQtepWayC3hWgoL7DbwshW4yS:segwit
undefined [segwit]: 21.4375 VTC (617ops) (3F9eFuz9RiCoZRxBSedDJESU5mvc7bDBXQ on 49'/28'/1'/0/306) segwit#1 js:2:vertcoin:xpub6BzrB2TZiXxTxPQdQWrnTLvxXgdvSncCsqYsUPHn93hfzzmNtKh89FH4W9qxzH2GHVhcvowEtcNHLBJMvaRfTPhAMgghoEFrjX8XMVgrTGf:segwit
undefined [segwit]: 0 VTC (0ops) (37sUZu9kBZk9uH1SxV1asosooyiHhbC7rd on 49'/28'/2'/0/0) segwit#2 js:2:vertcoin:xpub6BzrB2TZiXxU1HxVHfXBofkeE1JNTetYETWhdsEuPc7giYWWWsFTx8oYHvGYRCHXrczxA7iqAFTQpCAfyLqnzvTZgz25S5bDCr3aEgNLbHV:segwit
undefined [legacy]: 4.82063 VTC (622ops) (VjerDNTuC4WaQhWtGBsWrgQMXGh1vVdmsn on 44'/28'/0'/0/329) #0 js:2:vertcoin:xpub6D9ewWZRDVHmnJbjdoaFbC54UhW6iZ4k2n9tLiTPJsqp7x16bAdkGhK7yy7cnvegoJz5HwBGcoQpSv1Mp6oTDYDgHd2RPHennaNsQuBuaXR:
undefined [legacy]: 0 VTC (572ops) (VeuWK2EzV1P8ykMV6NTVGoZEdzbC2Y4vzv on 44'/28'/1'/0/288) #1 js:2:vertcoin:xpub6D9ewWZRDVHmoTUYA4SfZTKVP9QvkovJmZ5bPbj12dgZEUb6DtS76PP144mkfCfBDsXvEFsEN7hsrbdvBA34mg78owvpVXQAuQRKmggGvGF:
undefined [legacy]: 0 VTC (0ops) (VgM8spUbqP3r1qdnswXaSrqGeMVnERAuuV on 44'/28'/2'/0/0) #2 js:2:vertcoin:xpub6D9ewWZRDVHmtBmAgSQ2HSyfeZs9ebe5iYurVh2rBbpHRpQX52u3iZPqChjvoPYUmMD1jpGeNqVCkXEridcr92DTEFhngPjieTtiPjJGGEA:
undefined [segwit]: 20.2906 VIA (582ops) (Ed1vCUuYKC18iJus9qLiJdMVuL1xuvPi7N on 49'/14'/0'/0/276) segwit#0 js:2:viacoin:xpub6BnHRZZc2q3Bq7c8LWrKVaek5cChKLozvgLvD4uS52XX9qvVv1AfXtGnQqs7z1fy58DCXc7333iznM3enL4y3gAjx9bbJAhEd3f9Bf8FMAL:segwit
undefined [segwit]: 10.7669 VIA (602ops) (EfgVFX55ucAfwD3eDce99di9md7qSFJA72 on 49'/14'/1'/0/297) segwit#1 js:2:viacoin:xpub6BnHRZZc2q3Bv5KKzULAJs7Wp4Aa1Ht1i1HfMpFPz39ErhhzaK25gSKwbGvMLvU7gREE2N1uPJ87x9UyfbPhu6UTNbtRTq5K5EvXgktynP7:segwit
undefined [segwit]: 0 VIA (0ops) (ELsKYe4RMf5PjAh6ebwSwPhX7kJikrPS1B on 49'/14'/2'/0/0) segwit#2 js:2:viacoin:xpub6BnHRZZc2q3BwqXyrx8ZAntahSP89Z6HxVaWASEYswBqqKzmBigsCndsB57zZcYDVMbmE2mWbgRMV8AYgxfZKQgfoasrKvg4ex1zz3xX29x:segwit
undefined [legacy]: 8.44768 VIA (545ops) (VdQ7NWezPRvE4H5rrgTcHxsbUGcFEVv5yY on 44'/14'/0'/0/278) #0 js:2:viacoin:xpub6BqwJGyyRny96T4yirVKJ3iqL3dznXfrtohfLE5AgKButrt9PHen5v2yACKPuMZg53z5vmYkFh7NQeXotr714kgNUuuBD7HHpuZcfQpqtVB:
undefined [legacy]: 1.14013 VIA (580ops) (VeAHyf3W4DVHthUoAVQBehhvGh1HzPqTmj on 44'/14'/1'/0/307) #1 js:2:viacoin:xpub6BqwJGyyRny99DmxkTjWUNWFd5foEt2aUddfdaEamdB8gLsfK225ttKKiM24gZvVmUWm1tC2zJheYZ7FfJkTgCvyAz8AxVRa8TPWbmsnWMb:
undefined [legacy]: 0 VIA (0ops) (Veeew6qhNE8XmE8pzfQygq223k1k5jxF63 on 44'/14'/2'/0/0) #2 js:2:viacoin:xpub6BqwJGyyRny9AaT939M5Mdnm5g2a3ZTj42bFNtYcmWz793oRxGodSi7sY42Uk62AtGMzdMuJqttJpKX1Yu6FxfggF1TU4whZhCnPbyZRKx5:
undefined: 0.00191538 ZEC (394ops) (t1SDpcaNZmbCH5TCCb5vNAh5bXs3isDtA5h on 44'/133'/0'/0/191) #0 js:2:zcash:xpub6CJCxQneNaGtEsc5RekCewAkzA4HmtexTwe7WEdEmduLVbfPti54Vme5gpsTrTDRB7qGUjn7LPhXitHvjrnMVDTt8LYvj7s34ZzEz6PcS8z:
undefined: 0.0002 ZEC (363ops) (t1PpjmFSysTrpUQra1fNCJJMYFGy6yrCxfu on 44'/133'/1'/0/179) #1 js:2:zcash:xpub6CJCxQneNaGtGzvpwjmx2kuAgbAwTBFFCC9TdvziUaYsPQYQ22mwaJbxvyBDLeW4gAnUBvKFeb5RznU3uxtVZp9AJQuU1Q5LsTMypXhN3dy:
undefined: 0.00156519 ZEC (359ops) (t1Z2giNqRBAcyij9iLRPEPBjaD8emFA5LCc on 44'/133'/2'/0/176) #2 js:2:zcash:xpub6CJCxQneNaGtLNBmM9y9Fm23XfXVewWuDYb5mqH1Fybr2579KAGiPfR2gsjjakYEGwFCL4Hau3C9ns24sPFM1MBrSPRKQLLVdQpiSQkSARY:
undefined: 0 ZEC (386ops) (t1YNMwj3ShjnCweX7dqho2w9rAT4PZABodm on 44'/133'/3'/0/203) #3 js:2:zcash:xpub6CJCxQneNaGtQ86kboo1yi9EsCrvQXMGKy2W6MWtMfSLxhpJQHgeLG4MLs1B6gHmYoWRC5q4CCUR4XzoBjPYAxFTHfdSfdhCWRspU2hJv1A:
undefined: 0 ZEC (0ops) (t1NCYEq5jS9TMQMVA4NeMVShuY7JFmFf89y on 44'/133'/4'/0/0) #4 js:2:zcash:xpub6CJCxQneNaGtQcwqQ4ZBYaBpHPzrTRbyU5S4ziPHtkL5iNHxRv9P7J3oJjerQuPNm3JFpz6Ktcui5Eqv5YW9PiCwYonU5E12pg1hwUAkGxh:
undefined: 0.0172175 ZEN (498ops) (znYaYMnKTUh3fBDYwY8AhaFtBFofJrCM7M9 on 44'/121'/0'/0/234) #0 js:2:zencash:xpub6C68jAb8xasfmbmg37N3W5TsYWdTb6xLCtjwz5oSVAdi6Jxzx6FeBQcQazySrCXnsGZKaT9MXB9i4Lny4AoFAVZtSy6kVExyheF7X5Msvu3:
undefined: 0.0840894 ZEN (486ops) (znYqVGwUB56picSrJyvfthzXc8oaMpqZuPt on 44'/121'/1'/0/233) #1 js:2:zencash:xpub6C68jAb8xasfrBmUVvZbdXydhq15bdfePn1qhjb32azt3GkzoqBCQuRaZKPYp9T9uhr7TYCANdXanzeXfXp4qMjw7ijiPPNbBKmGRZRFeoa:
undefined: 0 ZEN (485ops) (znoa4vqSsLgReCMuRHi3sUa4YJiaXhaQCm9 on 44'/121'/2'/0/252) #2 js:2:zencash:xpub6C68jAb8xasfsZCbDtbqPTydFZEHjfzFP75ZQyizidPdLPHNbf41HqQq8RiHMJNuXx71D15Uv9yVpxHkxicSAzKCPVqi1gCKkJTdCN6MK7Q:
undefined: 0.319582 ZEN (487ops) (znmq5coa5611Vets6FaAhjaN5HDp3FZzRff on 44'/121'/3'/0/257) #3 js:2:zencash:xpub6C68jAb8xasfwaE1WeCTh2JhK4KMh64oUaNn2MJCpVdjBmV7cdLhW8xqAfrb8eerM3wtiwMg9sMZkjA62QMH1rMDNbr97uLKNZohEX7c1cq:
undefined: 0 ZEN (0ops) (znm8ELZShHo5gm7aQjcd3qbxT7UF8Mnzyr2 on 44'/121'/4'/0/0) #4 js:2:zencash:xpub6C68jAb8xasfwknWxgLgizrHgqJko7RdnamzFS3DzoKUaA5721xs1HE23NHHqq6LcvmKf43ncaSsz3cEZZpmCrgfK1GhrmDNHkvKfyqpZHF:
undefined: 0.0476209 ETC (159ops) (0x7584df0780C5eB83b26aE55abBc265014f8bf897 on 44'/61'/0'/0/0) #0 js:2:ethereum_classic:0x7584df0780C5eB83b26aE55abBc265014f8bf897:
undefined: 0.0475957 ETC (142ops) (0x62ab4485f7EC0a291540dA31b82BE881166cD786 on 44'/61'/1'/0/0) #1 js:2:ethereum_classic:0x62ab4485f7EC0a291540dA31b82BE881166cD786:
undefined: 0.0476114 ETC (113ops) (0x0b248ABea3Ee9e94C03bc85c37516D16C909875c on 44'/61'/2'/0/0) #2 js:2:ethereum_classic:0x0b248ABea3Ee9e94C03bc85c37516D16C909875c:
undefined: 0.0420533 ETC (140ops) (0x01530f90685821747Eab008Fc217a2411AA6433C on 44'/61'/3'/0/0) #3 js:2:ethereum_classic:0x01530f90685821747Eab008Fc217a2411AA6433C:
undefined: 0.0475946 ETC (131ops) (0xD5fa1a3014A6a24f2C17E532713eb51500AD2bE8 on 44'/61'/4'/0/0) #4 js:2:ethereum_classic:0xD5fa1a3014A6a24f2C17E532713eb51500AD2bE8:
undefined: 0 ETC (0ops) (0x234D2443790764a622430213B6eCcA33272ca575 on 44'/61'/5'/0/0) #5 js:2:ethereum_classic:0x234D2443790764a622430213B6eCcA33272ca575:
undefined: 0.0363803 MATIC (356ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:polygon:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00338563 MATIC (318ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:polygon:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0 MATIC (322ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:polygon:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.127586 MATIC (351ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:polygon:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.127378 MATIC (307ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:polygon:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 MATIC (266ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:polygon:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.126914 MATIC (195ops) (0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E on 44'/60'/6'/0/0) #6 js:2:polygon:0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E:
undefined: 1.48504 MATIC (189ops) (0x48ec5fC762B9300e3B5e04E8ca634165240A1B15 on 44'/60'/7'/0/0) #7 js:2:polygon:0x48ec5fC762B9300e3B5e04E8ca634165240A1B15:
undefined: 16.9601 MATIC (181ops) (0x6434189D6179FB9DE41b392ED67a85C9F63216F6 on 44'/60'/8'/0/0) #8 js:2:polygon:0x6434189D6179FB9DE41b392ED67a85C9F63216F6:
undefined: 0 MATIC (0ops) (0x401C9CcB29d92ee707C6271ea5126aA6c257a37E on 44'/60'/9'/0/0) #9 js:2:polygon:0x401C9CcB29d92ee707C6271ea5126aA6c257a37E:
undefined: 0.00018529 𝚝ETH (146ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0003734 𝚝ETH (177ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00114798 𝚝ETH (165ops) (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.00358313 𝚝ETH (130ops) (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.00563802 𝚝ETH (164ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_holesky:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.116979 𝚝ETH (166ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_holesky:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.11135 𝚝ETH (174ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:ethereum_holesky:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00000633 𝚝ETH (142ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_holesky:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00001008 𝚝ETH (93ops) (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.00002211 ETH (62ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00232749 ETH (69ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00236013 ETH (56ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00070489 ETH (48ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00009378 ETH (39ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:arbitrum:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:arbitrum:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.0287086 𝚝ETH (111ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00036499 𝚝ETH (123ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00054464 𝚝ETH (122ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.476546 𝚝ETH (103ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.484595 𝚝ETH (60ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:arbitrum_sepolia:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:arbitrum_sepolia:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.793924 FLR (486ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:flare:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.804325 FLR (543ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:flare:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.800893 FLR (492ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:flare:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.796164 FLR (535ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:flare:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.804751 FLR (102ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:flare:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 FLR (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:flare:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.000525 SGB (594ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:songbird:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 326.161 SGB (581ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:songbird:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.000525 SGB (606ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:songbird:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 264.931 SGB (572ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:songbird:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 346.169 SGB (157ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:songbird:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 SGB (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:songbird:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.002625 GLMR (565ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonbeam:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 15.9527 GLMR (563ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonbeam:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 10.6202 GLMR (499ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonbeam:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 10.6286 GLMR (549ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonbeam:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 22.4416 GLMR (143ops) (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: 0 BTT (491ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:bittorrent:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 729,500 BTT (524ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:bittorrent:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 372,820 BTT (518ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:bittorrent:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 388,939 BTT (440ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:bittorrent:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 BTT (161ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:bittorrent:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 BTT (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:bittorrent:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00097436 ETH (32ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:optimism:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00095956 ETH (23ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:optimism:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00000939 ETH (34ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:optimism:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00092379 ETH (32ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:optimism:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 ETH (0ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:optimism:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:optimism_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 1.93047 EWT (395ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:energy_web:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 1.83972 EWT (444ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:energy_web:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 1.93047 EWT (445ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:energy_web:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.913845 EWT (445ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:energy_web:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.913852 EWT (159ops) (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.012275 ASTR (506ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:astar:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 3.87257 ASTR (506ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:astar:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 1.93119 ASTR (494ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:astar:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 28.1278 ASTR (424ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:astar:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 293.974 ASTR (130ops) (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.00772906 METIS (461ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:metis:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0331226 METIS (425ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:metis:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0324336 METIS (470ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:metis:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0 METIS (462ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:metis:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.0738313 METIS (168ops) (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.00002625 MOVR (425ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonriver:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.558959 MOVR (466ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonriver:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.628875 MOVR (482ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonriver:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00002625 MOVR (439ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonriver:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 1.04809 MOVR (148ops) (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: 65.9073 VLX (101ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:velas_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 197.721 VLX (102ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:velas_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 197.722 VLX (102ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:velas_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 65.9072 VLX (101ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:velas_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 384.756 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: 6.13242 SYS (494ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:syscoin:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 12.265 SYS (483ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:syscoin:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 6.13248 SYS (455ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:syscoin:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0 SYS (423ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:syscoin:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 32.5459 SYS (151ops) (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 𝚝ETH (102ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:base_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.465302 𝚝ETH (116ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:base_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0594333 𝚝ETH (118ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:base_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00000003 𝚝ETH (98ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:base_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.465302 𝚝ETH (77ops) (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: 3.2203 KLAY (45ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:klaytn:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.656783 KLAY (42ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:klaytn:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 1.76953 KLAY (44ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:klaytn:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 1.40084 KLAY (38ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:klaytn:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 1.77193 KLAY (38ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:klaytn:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 KLAY (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:klaytn:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 9.10807 NEON (203ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:neon_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 6.99265 NEON (216ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:neon_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00480169 NEON (200ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:neon_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00500118 NEON (212ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:neon_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00511478 NEON (187ops) (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.197508 LYX (160ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:lukso:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00000818 LYX (211ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:lukso:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.197551 LYX (198ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:lukso:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0153717 LYX (194ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:lukso:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.080252 LYX (148ops) (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.0010012 ETH (110ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:linea:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0025191 ETH (123ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:linea:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0 ETH (152ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:linea:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00151788 ETH (125ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:linea:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00179303 ETH (113ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:linea:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:linea:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:linea_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 ETH (0ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:blast:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0 ETH (2ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:blast:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00918114 ETH (4ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0500008 𝚝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.444538 NEAR (66ops) (0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf on 44'/397'/0'/0'/0') nearbip44h#0 js:2:near:0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf:nearbip44h
undefined: 0.0519617 NEAR (20ops) (85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798 on 44'/397'/0'/0'/1') nearbip44h#1 js:2:near:85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798:nearbip44h
undefined: 0.0520232 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.0520872 NEAR (22ops) (aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93 on 44'/397'/0'/0'/4') nearbip44h#4 js:2:near:aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93:nearbip44h
undefined: 0.0524972 NEAR (32ops) (07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce on 44'/397'/0'/0'/5') nearbip44h#5 js:2:near:07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce:nearbip44h
undefined: 0.0519885 NEAR (18ops) (bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7 on 44'/397'/0'/0'/6') nearbip44h#6 js:2:near:bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7:nearbip44h
undefined: 0.445089 NEAR (9ops) (e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2 on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2:nearbip44h
undefined: 0.0521188 NEAR (13ops) (f6c2b6371dd3f335422ea179661698a1e0db6b9cc890e7fe43b669c9f7f16f43 on 44'/397'/0'/0'/8') nearbip44h#8 js:2:near:f6c2b6371dd3f335422ea179661698a1e0db6b9cc890e7fe43b669c9f7f16f43:nearbip44h
undefined: 0 NEAR (0ops) (fe690bacc672f4ac406416f197571c8e520523112949394d18fc137871f13c2f on 44'/397'/0'/0'/9') nearbip44h#9 js:2:near:fe690bacc672f4ac406416f197571c8e520523112949394d18fc137871f13c2f:nearbip44h
undefined: 0 NEAR (0ops) (18e7e0394281c32f1247969729a703866d69008f8845a89f746da3e75970518f on 44'/397'/0'/0'/10') nearbip44h#10 js:2:near:18e7e0394281c32f1247969729a703866d69008f8845a89f746da3e75970518f:nearbip44h
undefined: 0.0713465 SOL (101ops) (5vhAGihUC1uKucJvreCgWWXB6LEptPwkwpqhkq9M6iaz on 44'/501'/0') solanaSub#0 js:2:solana:5vhAGihUC1uKucJvreCgWWXB6LEptPwkwpqhkq9M6iaz:solanaSub
undefined: 0.0308389 SOL (101ops) (6iNx5SVYQBGEEooLJiptwqL8YR7qEcZELqpBfd4kwiwx on 44'/501'/1') solanaSub#1 js:2:solana:6iNx5SVYQBGEEooLJiptwqL8YR7qEcZELqpBfd4kwiwx:solanaSub
undefined: 0.01527 SOL (100ops) (2rUuDdwtM2b6zKWU7y8PNzuHomPPG1uAreDafg2xPnA5 on 44'/501'/2') solanaSub#2 js:2:solana:2rUuDdwtM2b6zKWU7y8PNzuHomPPG1uAreDafg2xPnA5:solanaSub
undefined: 0.0248516 SOL (99ops) (Cw4MiEvepwAHkxY6DKYDVK5jDEoCSCoT4JmVbJPYauhk on 44'/501'/3') solanaSub#3 js:2:solana:Cw4MiEvepwAHkxY6DKYDVK5jDEoCSCoT4JmVbJPYauhk:solanaSub
undefined: 0.0332761 SOL (99ops) (BsQzVpyrHi5ivGaouc46w9GekQgbiJcWNAhsmzzRuo9M on 44'/501'/4') solanaSub#4 js:2:solana:BsQzVpyrHi5ivGaouc46w9GekQgbiJcWNAhsmzzRuo9M:solanaSub
undefined: 0.111244 SOL (99ops) (2kd3E2Kh7xvcQ1UVVfpys5GHVo1KKKRZXVmuTmkYWK4n on 44'/501'/5') solanaSub#5 js:2:solana:2kd3E2Kh7xvcQ1UVVfpys5GHVo1KKKRZXVmuTmkYWK4n:solanaSub
undefined: 0.0224644 SOL (100ops) (3ZgtNrSv7F5uhNVWJJkKKvtQVnaubN3QDDJkvTtwMPdF on 44'/501'/6') solanaSub#6 js:2:solana:3ZgtNrSv7F5uhNVWJJkKKvtQVnaubN3QDDJkvTtwMPdF:solanaSub
undefined: 0.0712895 SOL (100ops) (9UP1mN61QFowx7zxTBRw3UrV9o8JoyQ6jjsLQfLedG8N on 44'/501'/7') solanaSub#7 js:2:solana:9UP1mN61QFowx7zxTBRw3UrV9o8JoyQ6jjsLQfLedG8N:solanaSub
undefined: 0.095475 SOL (73ops) (AAM59Hc6eC3aASjNbVAitFYKnCcirNcu554gj77QBHME on 44'/501'/8') solanaSub#8 js:2:solana:AAM59Hc6eC3aASjNbVAitFYKnCcirNcu554gj77QBHME:solanaSub
undefined: 0.0148924 SOL (73ops) (6nMswXFvmTgzxhGmxjJYVQNoUJaFjM1arwAafHcxDbxK on 44'/501'/9') solanaSub#9 js:2:solana:6nMswXFvmTgzxhGmxjJYVQNoUJaFjM1arwAafHcxDbxK:solanaSub
undefined: 0 SOL (0ops) (GiLkLhWJiNk6EsgwA1KzNbsBoJAANa46M6Rq5bVCxTFG on 44'/501'/10') solanaSub#10 js:2:solana:GiLkLhWJiNk6EsgwA1KzNbsBoJAANa46M6Rq5bVCxTFG:solanaSub
undefined: 5.28869 XTZ (152ops) (tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF on 44'/1729'/0'/0') tezbox#0 js:2:tezos:0240051fc51799e60dcc8870415b87fc4fd948e71b23fdc0d9b8ac7438cf7d4708:tezbox
undefined: 0 XTZ (4ops) (tz1he4fPXP3c9fFrztYT3k7KyYuLb28arFNn on 44'/1729'/1'/0') tezbox#1 js:2:tezos:02fe3d777af5380ef0a431c4985772c9669743050cee5feff717c3c3272d7a2810:tezbox
undefined: 0 XTZ (0ops) (tz1SApkt3kmMaqNE1qtgADc6m3B49HZkFVDA on 44'/1729'/2'/0') tezbox#2 js:2:tezos:029d7bcf10737806147b22ba4578747ce4ac53e26b443c9eb1ac0e4d5bfbb8f67e:tezbox
undefined: 13.8618 XRP (202ops) (r9etPtq3oboweMPju5gdYufmvwhH2euz8z on 44'/144'/0'/0/0) #0 js:2:ripple:r9etPtq3oboweMPju5gdYufmvwhH2euz8z:
undefined: 10.3457 XRP (201ops) (rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH on 44'/144'/1'/0/0) #1 js:2:ripple:rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH:
undefined: 19.7972 XRP (201ops) (rMoFGec38toFg9ncbi9YbrYYmrP3G5exqn on 44'/144'/2'/0/0) #2 js:2:ripple:rMoFGec38toFg9ncbi9YbrYYmrP3G5exqn:
undefined: 0 XRP (0ops) (rrnxW3THwB1ubsE9V78Lek6V1XYnNrodxC on 44'/144'/3'/0/0) #3 js:2:ripple:rrnxW3THwB1ubsE9V78Lek6V1XYnNrodxC:
Performance ⏲ 38min 24s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 11.8s 37min 50s 63.6s 2min 10s 14min 10s 1min 48s 80min 41s 31min 41s
Casper (7) 0.40ms 30.5s 4.32ms 3.05ms N/A N/A N/A N/A
Celo (11) 1043ms 45.3s 6.7s 9.4s 32.1s 30.2s 90.6s N/A
osmosis (17) 273ms 22.7s 8ms 1873ms 28.4s 290ms 52s 31.3s
desmos (17) 464ms 27.9s 13ms 2100ms 23.7s 1033ms 1.74ms N/A
dydx (17) 211ms 43.7s 5ms N/A N/A N/A N/A N/A
umee (17) 225ms 22.4s 22ms 2994ms 44s 458ms 3.75ms N/A
persistence (17) 1733ms 73s 23ms 9.8s 29.2s 1510ms 4.83ms N/A
quicksilver (17) 564ms 48.3s 11ms 2040ms 30.4s 259ms 1.65ms N/A
onomy (17) 1305ms 46.2s 27ms 6.3s 42.4s 1046ms 8ms N/A
sei_network (15) 214ms 21.1s 21ms N/A N/A N/A N/A N/A
stargaze (17) 212ms 18.2s 6ms 2021ms 30.9s 279ms 1.43ms N/A
coreum (17) 792ms 33.5s 36ms 1437ms 19.9s 867ms 1.06ms N/A
injective (0) 225ms N/A N/A N/A N/A N/A N/A N/A
Crypto org (6) 0.72ms 26.2s 2.73ms 2.57ms N/A N/A N/A N/A
Elrond (7) 312ms 60.7s 7ms 4.14ms 6.7s 286ms 12.8s 22.5s
Hedera (4) 0.58ms 18.8s 545ms 976ms 16.4s 1421ms 52.3s 5min 12s
InternetComputer (7) 0.33ms 9.4s 16ms 2994ms 7.8s 1684ms 21.3s 21.3s
Stacks (3) 0.46ms 19.7s 3.7s 3.5s 8.1s 537ms 35min 58s N/A
Stellar (5) 0.66ms 1min 45s 1282ms 2049ms 14.5s 20.4s 21.5s N/A
VeChain VTHO (3) 0.57ms 9.2s 0.89ms 960ms N/A N/A N/A N/A
VeChain VET (3) 0.20ms 10.2s 0.92ms N/A N/A N/A N/A N/A
Algorand (5) 0.78ms 66.8s 6ms 1847ms 35s 361ms 30.8s 30.7s
Bitcoin Testnet (9) 0.47ms 65.1s 3.55ms N/A N/A N/A N/A N/A
Bitcoin Cash (6) 0.25ms 28.8s 12ms 1102ms 32.3s 512ms 58.2s 67.1s
Bitcoin Gold (4) 0.23ms 25.1s 1.35ms 629ms 20.3s 359ms 34.2s 34s
Dash (6) 0.23ms 19.3s 17ms 973ms 34.4s 496ms 56s 56.4s
Digibyte (6) 0.26ms 22.2s 3.21ms 900ms 31.6s 840ms 80.2s 76.6s
DogeCoin (6) 0.24ms 13.2s 2.16ms 876ms 29.1s 388ms 44.6s 43.8s
Komodo (4) 0.13ms 11.5s 1.05ms 545ms 18.2s 654ms 34.8s 32.9s
Litecoin (6) 0.35ms 17.5s 3.24ms 985ms 31.8s 523ms 61.2s 56.5s
Peercoin (0) 0.16ms N/A N/A N/A N/A N/A N/A N/A
PivX (4) 0.24ms 19.8s 1971ms 737ms 20.8s 304ms 37.6s 5min 18s
Vertcoin (4) 0.18ms 21.8s 73ms 702ms 21.7s 320ms 48s 35.6s
Viacoin (4) 0.24ms 16.6s 1.39ms 568ms 9.6s 192ms 25s 23.6s
ZCash (4) 0.22ms 6.9s 1.35ms N/A N/A N/A N/A N/A
Horizen (4) 0.18ms 9.2s 1239ms 305ms 11.2s 498ms 11.3s 11.1s
Ethereum Classic (5) 59ms 14.4s 1.12ms N/A N/A N/A N/A N/A
Polygon (9) 227ms 19.8s 43ms 4.5s 10.8s 274ms 30.7s 35.7s
Ethereum Sepolia (5) 50ms 6.2s 9ms 3.4s 11.6s 450ms 50.7s 30.8s
Ethereum Holesky (5) 34ms 6.9s 24ms 3.4s 10.5s 593ms 80.7s 30.7s
Arbitrum (5) 109ms 94.5s 11ms 2817ms 6.2s 1207ms 41.9s 37.4s
Arbitrum Sepolia (5) 51ms 8.6s 39ms 3.9s 10s 1546ms 32.1s 32.1s
Flare (5) 38ms 5.7s 1.41ms N/A N/A N/A N/A N/A
Songbird (5) 33ms 5.4s 11ms 1856ms 9.3s 783ms 32.3s 31.4s
Moonbeam (5) 46ms 94.5s 16ms 1136ms 9.8s 388ms 2min 12s 62.6s
RSK (4) 40ms 6.8s 5ms N/A N/A N/A N/A N/A
Bittorent Chain (5) 76ms 6.5s 15ms 1524ms 10.3s 483ms 32.3s 32.2s
OP Mainnet (4) 80ms 77.4s 4.38ms N/A N/A N/A N/A N/A
OP Sepolia (0) 98ms 1369ms N/A N/A N/A N/A N/A N/A
Energy Web (5) 47ms 6s 9ms 3.9s 10.2s 1158ms 31.7s 31.8s
Astar (5) 77ms 6.8s 22ms 4s 10.4s 922ms 5min 34s 35.9s
Metis (5) 52ms 9.3s 8ms 710ms 9.6s 1107ms 34.2s 34s
Moonriver (5) 32ms 95.2s 16ms 2967ms 14.3s 343ms 1min 54s 62.8s
Velas EVM (5) 605ms 5.5s 20ms 1642ms 9.5s 6.6s 61.9s 31.5s
Syscoin (5) 52ms 4.7s 25ms 956ms 9.9s 336ms 9min 42s 31.5s
Polygon zkEVM Testnet (0) 54ms N/A N/A N/A N/A N/A N/A N/A
Base (4) 87ms 73.1s 1.04ms N/A N/A N/A N/A N/A
Base Sepolia (5) 31ms 5.7s 14ms 2775ms 12.5s 696ms 31.6s 31.7s
Klaytn (5) 95ms 10.9s 1.69ms 9.8s 10.2s 1886ms 33.8s 33.9s
Neon EVM (5) 49ms 9.7s 1.79ms 3.9s 6.8s 870ms 23.4s 23.1s
Lukso (5) 33ms 3.9s 6ms 585ms 11s 170ms 81.4s 30.9s
Linea (5) 40ms 91.3s 16ms 3.2s 10s 979ms 62.7s 64.8s
Linea Sepolia (0) 33ms 11.9s N/A N/A N/A N/A N/A N/A
Blast (2) 50ms 44.8s 26.4s 466ms 6.9s 196ms N/A N/A
Blast Sepolia (1) 48ms 2524ms 0.39ms 856ms N/A N/A N/A N/A
Scroll (1) 115ms 2243ms 1.10ms N/A N/A N/A N/A N/A
Scroll Sepolia (1) 60ms 4.2s 0.42ms N/A N/A N/A N/A N/A
NEAR (9) 1427ms 29.4s 22ms 651ms N/A N/A N/A N/A
Solana (10) 134ms 7min 36s 21s 5.1s 10.3s 20.9s 65.3s N/A
Tezos (2) 183ms 6.8s 0.51ms 1311ms N/A N/A N/A N/A
XRP (3) 0.63ms 6.6s 14ms 6.1s 8.8s 278ms 22.3s 22.4s

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

Please sign in to comment.