Skip to content

Commit

Permalink
chore(live-wallet): introduce WalletSyncSDK (#7107)
Browse files Browse the repository at this point in the history
chore: bootstrap a walletsync sdk
  • Loading branch information
gre authored Jun 18, 2024
1 parent cc67a9f commit 162219e
Show file tree
Hide file tree
Showing 30 changed files with 619 additions and 108 deletions.
2 changes: 2 additions & 0 deletions apps/web-tools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,13 @@
"@ledgerhq/live-common": "workspace:^",
"@ledgerhq/live-config": "workspace:^",
"@ledgerhq/live-env": "workspace:^",
"@ledgerhq/live-wallet": "workspace:^",
"@ledgerhq/logs": "workspace:^",
"@ledgerhq/trustchain": "workspace:^",
"@ledgerhq/types-cryptoassets": "workspace:^",
"@ledgerhq/types-live": "workspace:^",
"bignumber.js": "^9.1.2",
"brace": "^0.11.1",
"bufferutil": "^4.0.7",
"encoding": "^0.1.13",
"eslint-config-next": "13.5.6",
Expand Down
72 changes: 62 additions & 10 deletions apps/web-tools/trustchain/components/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import Expand from "./Expand";
import { getSdk } from "@ledgerhq/trustchain";
import { DisplayName, IdentityManager } from "./IdentityManager";
import { AppQRCodeCandidate } from "./AppQRCodeCandidate";
import { SDKContext, defaultContext } from "../context";
import { TrustchainSDKContext, defaultContext } from "../context";
import { AppQRCodeHost } from "./AppQRCodeHost";
import { AppMemberRow } from "./AppMemberRow";
import { AppDecryptUserData } from "./AppDecryptUserData";
Expand All @@ -22,6 +22,8 @@ import { AppInitLiveCredentials } from "./AppInitLiveCredentials";
import { AppMockEnv } from "./AppMockEnv";
import { AppSetTrustchainAPIEnv } from "./AppSetTrustchainAPIEnv";
import { AppRestoreTrustchain } from "./AppRestoreTrustchain";
import { AppWalletSync } from "./AppWalletSync";
import { AppSetCloudSyncAPIEnv } from "./AppSetCloudSyncAPIEnv";

const Container = styled.div`
padding: 0 10px;
Expand Down Expand Up @@ -64,9 +66,18 @@ const App = () => {

const mockEnv = useEnv("MOCK");
const sdk = useMemo(() => getSdk(!!mockEnv, context), [mockEnv, context]);
const envTrustchainApiIsStg = useEnv("TRUSTCHAIN_API").includes("stg");
const envWalletSyncApiIsStg = useEnv("WALLET_SYNC_API").includes("stg");
const envSummary = mockEnv
? "MOCK"
: envTrustchainApiIsStg && envWalletSyncApiIsStg
? "STG"
: !envTrustchainApiIsStg && !envWalletSyncApiIsStg
? "PROD"
: "MIXED";

return (
<SDKContext.Provider value={sdk}>
<TrustchainSDKContext.Provider value={sdk}>
<Container>
<h2>Wallet Sync Trustchain Playground</h2>

Expand All @@ -93,12 +104,42 @@ const App = () => {
/>
</Expand>

<Expand title="Environment">
<Expand
title={
<>
<span>Environment</span>{" "}
<code
style={{
borderRadius: "4px",
padding: "3px 6px",
background: "#ddd",
color: "#000",
}}
>
{envSummary}
</code>
</>
}
>
<AppSetTrustchainAPIEnv />
<AppSetCloudSyncAPIEnv />
<AppMockEnv />
</Expand>

<Expand title="Trustchain SDK" expanded>
<Expand
title={
<>
<span>Trustchain SDK</span>{" "}
{trustchain ? (
<code style={{ fontWeight: "normal" }}>
{trustchain.rootId.slice(0, 6)}..{trustchain.rootId.slice(-6)} at{" "}
{trustchain.applicationPath}
</code>
) : null}
</>
}
expanded={!trustchain}
>
<AppInitLiveCredentials
memberCredentials={memberCredentials}
setMemberCredentials={setMemberCredentials}
Expand Down Expand Up @@ -160,19 +201,30 @@ const App = () => {
setDeviceJWT={setDeviceJWT}
jwt={jwt}
/>
</Expand>

<Expand title="QR Code Host">
<AppQRCodeHost trustchain={trustchain} memberCredentials={memberCredentials} />
<Expand title="QR Code Host">
<AppQRCodeHost trustchain={trustchain} memberCredentials={memberCredentials} />
</Expand>

<Expand title="QR Code Candidate">
<AppQRCodeCandidate
memberCredentials={memberCredentials}
setTrustchain={setTrustchain}
/>
</Expand>
</Expand>

<Expand title="QR Code Candidate">
<AppQRCodeCandidate memberCredentials={memberCredentials} setTrustchain={setTrustchain} />
<Expand title="Wallet Sync" expanded={!!trustchain}>
{trustchain && memberCredentials ? (
<AppWalletSync trustchain={trustchain} memberCredentials={memberCredentials} />
) : (
"Please create a trustchain first"
)}
</Expand>

<Tooltip id="tooltip" />
</Container>
</SDKContext.Provider>
</TrustchainSDKContext.Provider>
);
};

Expand Down
5 changes: 2 additions & 3 deletions apps/web-tools/trustchain/components/AppAuthenticate.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
import React, { useCallback } from "react";

import { JWT, MemberCredentials, Trustchain } from "@ledgerhq/trustchain/types";
import { Actionable } from "./Actionable";
import { useSDK } from "../context";
import { useTrustchainSDK } from "../context";

export function AppAuthenticate({
jwt,
Expand All @@ -17,7 +16,7 @@ export function AppAuthenticate({
trustchain: Trustchain | null;
deviceJWT: JWT | null;
}) {
const sdk = useSDK();
const sdk = useTrustchainSDK();

const action = useCallback(
(trustchain: Trustchain, memberCredentials: MemberCredentials) =>
Expand Down
29 changes: 10 additions & 19 deletions apps/web-tools/trustchain/components/AppDecryptUserData.tsx
Original file line number Diff line number Diff line change
@@ -1,33 +1,24 @@
import React, { useCallback, useEffect, useMemo, useState } from "react";
import { createQRCodeHostInstance } from "@ledgerhq/trustchain/qrcode/index";
import React, { useCallback, useState } from "react";
import { crypto } from "@ledgerhq/hw-trustchain";
import { InvalidDigitsError } from "@ledgerhq/trustchain/errors";
import styled from "styled-components";
import { Tooltip } from "react-tooltip";
import { JWT, MemberCredentials, Trustchain, TrustchainMember } from "@ledgerhq/trustchain/types";
import { getInitialStore } from "@ledgerhq/trustchain/store";
import { Actionable, RenderActionable } from "./Actionable";
import QRCode from "./QRCode";
import useEnv from "../useEnv";
import Expand from "./Expand";
import { getSdk } from "@ledgerhq/trustchain";
import { DisplayName, IdentityManager } from "./IdentityManager";
import { AppQRCodeCandidate } from "./AppQRCodeCandidate";
import { JWT, Trustchain } from "@ledgerhq/trustchain/types";
import { Actionable } from "./Actionable";
import { Input } from "./Input";
import { SDKContext, defaultContext, useSDK } from "../context";
import { useTrustchainSDK } from "../context";

export function AppDecryptUserData({ trustchain }: { trustchain: Trustchain | null }) {
const [input, setInput] = useState<string | null>(null);
const [output, setOutput] = useState<{ input: string } | null>(null);
const sdk = useSDK();
const [output, setOutput] = useState<string | null>(null);
const sdk = useTrustchainSDK();

const action = useCallback(
(trustchain: Trustchain, input: string) =>
sdk.decryptUserData(trustchain, crypto.from_hex(input)).then(obj => obj as { input: string }),
sdk
.decryptUserData(trustchain, crypto.from_hex(input))
.then(array => new TextDecoder().decode(array)),
[sdk],
);

const valueDisplay = useCallback((output: { input: string }) => <code>{output.input}</code>, []);
const valueDisplay = useCallback((output: string) => <code>{output}</code>, []);

return (
<Actionable
Expand Down
4 changes: 2 additions & 2 deletions apps/web-tools/trustchain/components/AppDestroyTrustchain.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useCallback } from "react";
import { JWT, Trustchain } from "@ledgerhq/trustchain/types";
import { Actionable } from "./Actionable";
import { useSDK } from "../context";
import { useTrustchainSDK } from "../context";

export function AppDestroyTrustchain({
trustchain,
Expand All @@ -16,7 +16,7 @@ export function AppDestroyTrustchain({
setJWT: (jwt: JWT | null) => void;
setDeviceJWT: (deviceJWT: JWT | null) => void;
}) {
const sdk = useSDK();
const sdk = useTrustchainSDK();
const action = useCallback(
(trustchain: Trustchain, jwt: JWT) =>
sdk.destroyTrustchain(trustchain, jwt).then(() => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useCallback } from "react";
import { Actionable } from "./Actionable";
import { useSDK } from "../context";
import { useTrustchainSDK } from "../context";
import { runWithDevice } from "../device";

export function AppDeviceAuthenticate({
Expand All @@ -10,7 +10,7 @@ export function AppDeviceAuthenticate({
deviceJWT: { accessToken: string } | null;
setDeviceJWT: (deviceJWT: { accessToken: string } | null) => void;
}) {
const sdk = useSDK();
const sdk = useTrustchainSDK();

const action = useCallback(
() => runWithDevice(transport => sdk.authWithDevice(transport)),
Expand Down
7 changes: 4 additions & 3 deletions apps/web-tools/trustchain/components/AppEncryptUserData.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@ import { crypto } from "@ledgerhq/hw-trustchain";
import { Trustchain } from "@ledgerhq/trustchain/types";
import { Actionable } from "./Actionable";
import { Input } from "./Input";
import { useSDK } from "../context";
import { useTrustchainSDK } from "../context";

export function AppEncryptUserData({ trustchain }: { trustchain: Trustchain | null }) {
const [input, setInput] = useState<string | null>(null);
const [output, setOutput] = useState<Uint8Array | null>(null);
const sdk = useSDK();
const sdk = useTrustchainSDK();

const action = useCallback(
(trustchain: Trustchain, input: string) => sdk.encryptUserData(trustchain, { input }),
(trustchain: Trustchain, input: string) =>
sdk.encryptUserData(trustchain, new TextEncoder().encode(input)),
[sdk],
);

Expand Down
4 changes: 2 additions & 2 deletions apps/web-tools/trustchain/components/AppGetMembers.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useCallback } from "react";
import { JWT, Trustchain, TrustchainMember } from "@ledgerhq/trustchain/types";
import { Actionable } from "./Actionable";
import { useSDK } from "../context";
import { useTrustchainSDK } from "../context";

export function AppGetMembers({
jwt,
Expand All @@ -14,7 +14,7 @@ export function AppGetMembers({
members: TrustchainMember[] | null;
setMembers: (members: TrustchainMember[] | null) => void;
}) {
const sdk = useSDK();
const sdk = useTrustchainSDK();

const action = useCallback(
(jwt: JWT, trustchain: Trustchain) => sdk.getMembers(jwt, trustchain),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useCallback } from "react";
import { JWT, MemberCredentials, Trustchain } from "@ledgerhq/trustchain/types";
import { Actionable } from "./Actionable";
import { useSDK } from "../context";
import { useTrustchainSDK } from "../context";
import { runWithDevice } from "../device";

export function AppGetOrCreateTrustchain({
Expand All @@ -17,7 +17,7 @@ export function AppGetOrCreateTrustchain({
setTrustchain: (trustchain: Trustchain | null) => void;
setDeviceJWT: (deviceJWT: JWT | null) => void;
}) {
const sdk = useSDK();
const sdk = useTrustchainSDK();

const action = useCallback(
(deviceJWT: JWT, memberCredentials: MemberCredentials) =>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useCallback } from "react";
import { MemberCredentials } from "@ledgerhq/trustchain/types";
import { Actionable } from "./Actionable";
import { useSDK } from "../context";
import { useTrustchainSDK } from "../context";

export function AppInitLiveCredentials({
memberCredentials,
Expand All @@ -10,7 +10,7 @@ export function AppInitLiveCredentials({
memberCredentials: MemberCredentials | null;
setMemberCredentials: (memberCredentials: MemberCredentials | null) => void;
}) {
const sdk = useSDK();
const sdk = useTrustchainSDK();
const action = useCallback(() => sdk.initMemberCredentials(), [sdk]);

const valueDisplay = useCallback(
Expand Down
4 changes: 2 additions & 2 deletions apps/web-tools/trustchain/components/AppMemberRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { useCallback } from "react";
import { JWT, MemberCredentials, Trustchain, TrustchainMember } from "@ledgerhq/trustchain/types";
import { Actionable } from "./Actionable";
import { DisplayName } from "./IdentityManager";
import { useSDK } from "../context";
import { useTrustchainSDK } from "../context";
import { runWithDevice } from "../device";

export function AppMemberRow({
Expand All @@ -22,7 +22,7 @@ export function AppMemberRow({
setDeviceJWT: (deviceJWT: JWT | null) => void;
setMembers: (members: TrustchainMember[] | null) => void;
}) {
const sdk = useSDK();
const sdk = useTrustchainSDK();

const action = useCallback(
(deviceJWT: JWT, trustchain: Trustchain, memberCredentials: MemberCredentials) =>
Expand Down
4 changes: 2 additions & 2 deletions apps/web-tools/trustchain/components/AppQRCodeHost.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { InvalidDigitsError } from "@ledgerhq/trustchain/errors";
import { MemberCredentials, Trustchain } from "@ledgerhq/trustchain/types";
import { RenderActionable } from "./Actionable";
import QRCode from "./QRCode";
import { useSDK } from "../context";
import { useTrustchainSDK } from "../context";

export function AppQRCodeHost({
trustchain,
Expand All @@ -13,7 +13,7 @@ export function AppQRCodeHost({
trustchain: Trustchain | null;
memberCredentials: MemberCredentials | null;
}) {
const sdk = useSDK();
const sdk = useTrustchainSDK();
const [error, setError] = useState<Error | null>(null);
const [url, setUrl] = useState<string | null>(null);
const [digits, setDigits] = useState<string | null>(null);
Expand Down
4 changes: 2 additions & 2 deletions apps/web-tools/trustchain/components/AppRestoreTrustchain.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useCallback } from "react";
import { JWT, MemberCredentials, Trustchain } from "@ledgerhq/trustchain/types";
import { Actionable } from "./Actionable";
import { useSDK } from "../context";
import { useTrustchainSDK } from "../context";

export function AppRestoreTrustchain({
jwt,
Expand All @@ -14,7 +14,7 @@ export function AppRestoreTrustchain({
trustchain: Trustchain | null;
setTrustchain: (trustchain: Trustchain | null) => void;
}) {
const sdk = useSDK();
const sdk = useTrustchainSDK();
const action = useCallback(
(jwt: JWT, trustchainId: string, memberCredentials: MemberCredentials) =>
sdk.restoreTrustchain(jwt, trustchainId, memberCredentials),
Expand Down
23 changes: 23 additions & 0 deletions apps/web-tools/trustchain/components/AppSetCloudSyncAPIEnv.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import React, { useCallback, useState } from "react";
import { setEnv, getEnvDefault } from "@ledgerhq/live-env";
import { Actionable } from "./Actionable";
import useEnv from "../useEnv";
import { Input } from "./Input";

export function AppSetCloudSyncAPIEnv() {
const env = useEnv("WALLET_SYNC_API");
const [localValue, setLocalValue] = useState(env);
const action = useCallback(() => Promise.resolve(localValue), [localValue]);
return (
<Actionable
buttonTitle="Set Cloud Sync API"
inputs={[]}
action={action}
value={env}
setValue={v => setEnv("WALLET_SYNC_API", v || getEnvDefault("WALLET_SYNC_API"))}
valueDisplay={() => (
<Input type="text" value={localValue} onChange={e => setLocalValue(e.target.value)} />
)}
/>
);
}
Loading

1 comment on commit 162219e

@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' ✅ 155 txs ❌ 19 txs 💰 15 miss funds ($1,036.93) ⏲ 43min 9s

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

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

4 critical spec errors

Spec injective failed!

Error: "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!

Error: scan accounts timeout for currency Solana
❌ 19 mutation errors
necessary accounts resynced in 0.11ms
▬ Casper 2.6.3 on nanoSP 1.1.1
→ FROM undefined: 3,124.98 CSPR (59ops) (0203B56bC181780F8fb173BaFd8d483d6911282EC46d72692d0a5bbbb29ea242ed76 on 44'/506'/0'/0/2) casper_wallet#2 js:2:casper:0203B56bC181780F8fb173BaFd8d483d6911282EC46d72692d0a5bbbb29ea242ed76:casper_wallet
max spendable ~3,124.88
★ using mutation 'Send ~50%'
→ TO undefined: 0 CSPR (77ops) (02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c on 44'/506'/0'/0/0) casper_wallet#0 js:2:casper:02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c:casper_wallet
✔️ transaction 
SEND  1,562.440969522 CSPR
TO 02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c
STATUS (4.96ms)
  amount: 1,562.440969522 CSPR
  estimated fees: 0.1 CSPR
  total spent: 1,562.540969522 CSPR
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Target'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

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

- Expected  - 1
+ Received  + 1

  Object {
-   "Target": "86761345Beaa1D6e8004Cf39f5A78173642E00eDe3bd316435ACBA0dfbf2F3F7",
+   "Target": "02039ae761a635A37868CF35e6de9799Cba9fC4cDB9A3aFbbA6AB5c83291F13bbec8",
  }
(totally spent 6.1s – ends at 2024-06-18T17:16:49.394Z)
necessary accounts resynced in 1.35ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 1.13986 UMEE (0ops) (umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw on 44'/118'/5'/0/0) #5 js:2:umee:umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw: (! sum of ops 0 UMEE) 0.051424 UMEE spendable. 0.243184 UMEE delegated. 0.845256 UMEE unbonding. 
DELEGATIONS
  to umeevaloper1t6x3s6std4uw5h0epmeexuldj3jvdgmpnttf4t 0.026099 UMEE  (claimable 0.026099)
  to umeevaloper108uz380f2cq0smyescunqwz9lrk5apnzamv3r2 0.217085 UMEE  (claimable 0.217085)
UNDELEGATIONS
  from umeevaloper1tm5lt2y6sw62dptctecq9g9wjv7hwzkfpsnxjw 0.845256 UMEE

max spendable ~0.042428
★ using mutation 'claim rewards'
✔️ transaction 
CLAIMREWARD 
TO 
  0.00103 -> umeevaloper108uz380f2cq0smyescunqwz9lrk5apnzamv3r2
with fees=0.061048
  memo=LedgerLiveBot
STATUS (288ms)
  amount: 0 UMEE
  estimated fees: 0.061048 UMEE
  total spent: 0 UMEE
errors: amount NotEnoughBalance
warnings: claimReward ClaimRewardsFeesWarning
⚠️ TEST mutation must not have tx status errors
NotEnoughBalance: NotEnoughBalance
(totally spent 290ms – ends at 2024-06-18T17:16:49.401Z)
necessary accounts resynced in 0.12ms
▬ 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 'send max'
→ TO undefined: 17.3755 CRO (30ops) (cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd on 44'/394'/3'/0/0) #3 js:2:crypto_org:cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd:
✔️ transaction 
SEND MAX
TO cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd
STATUS (1.75ms)
  amount: 17.37551309 CRO
  estimated fees: 0.00005 CRO
  total spent: 17.37556309 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-18T17:16:49.403Z)
necessary accounts resynced in 0.19ms
▬ 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.64ms)
  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-18T17:16:49.406Z)
necessary accounts resynced in 0.31ms
▬ Hedera 1.0.8 on nanoS 2.1.0
→ FROM undefined: 25.6928 HBAR (337ops) (0.0.3664525 on 44/3030) hederaBip44#1 js:2:hedera:0.0.3664525:hederaBip44
max spendable ~25.6915
★ using mutation 'Send max'
→ TO undefined: 8.00721 HBAR (308ops) (0.0.3664539 on 44/3030) hederaBip44#2 js:2:hedera:0.0.3664539:hederaBip44
✔️ transaction SEND 25.69153457 HBAR
TO 0.0.3664539
STATUS (194ms)
  amount: 25.69153457 HBAR
  estimated fees: 0.00133466 HBAR
  total spent: 25.69286923 HBAR
errors: 
warnings: 
✔️ has been signed! (9.1s) 
✔️ broadcasted! (880ms) optimistic operation: 
  -25.69153457 HBAR  OUT        d4UE8CzelyFdgwVzSaWX8NskGUfVlnwGuKQ1LaW64zeOWB_l6bwBq0cWF2wGOVm5 2024-06-18T16:36
✔️ operation confirmed (10.2s): 
  -0.00134911 HBAR   OUT        d4UE8CzelyFdgwVzSaWX8NskGUfVlnwGuKQ1LaW64zeOWB_l6bwBq0cWF2wGOVm5 2024-06-18T16:36
✔️ undefined: 25.6915 HBAR (338ops) (0.0.3664525 on 44/3030) hederaBip44#1 js:2:hedera:0.0.3664525:hederaBip44(in 10.2s)
⚠️ HederaAddAccountError: HederaAddAccountError
(totally spent 1min 52s – ends at 2024-06-18T17:16:49.411Z)
necessary accounts resynced in 0.19ms
▬ 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.96472790625 VTHO (2 ops) (! sum of ops 55 VTHO)
max spendable ~0.625
★ using mutation 'move ~50% VTHO'
→ TO undefined: 3.125 VET (5ops) (0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD on 44'/818'/0'/0/1) vechain#1 js:2:vechain:0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD:vechain
✔️ transaction SEND  26.982363953125 VET TO 0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD
STATUS (1323ms)
  amount: 26.982363953125 VTHO
  estimated fees: 0.5171 VET
  total spent: 27.499463953125 VTHO
errors: 
warnings: 
⚠️ VechainAppPleaseEnableContractDataAndMultiClause: Please enable contract data in Vechain app settings
(totally spent 1474ms – ends at 2024-06-18T17:16:49.414Z)
necessary accounts resynced in 0.22ms
▬ Algorand 2.1.11 on nanoS 2.1.0
→ FROM undefined: 6.21801 ALGO (445ops) (YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE on 44'/283'/2'/0/0) #2 js:2:algorand:YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE: 3.518013 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 Yieldly: 0 YLDY (0 ops)
  TokenAccount AlgoGems: 0 GEMS (0 ops)
  TokenAccount goBTC: 0 goBTC (0 ops)
  TokenAccount goETH: 0 goETH (0 ops)
  TokenAccount goMINT: 0 goMINT (0 ops)
  TokenAccount Nimble: 0 NIMBLE (0 ops)
  TokenAccount CollecteursX: 0 CLTR (0 ops)
max spendable ~3.51701
★ using mutation 'opt-In ASA available'
→ TO undefined: 6.21801 ALGO (445ops) (YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE on 44'/283'/2'/0/0) #2 js:2:algorand:YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE:
✔️ transaction 
    OPT_IN 0 ALGO
    TO YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE
    with fees=0.001 ALGO
STATUS (308ms)
  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.2s – ends at 2024-06-18T17:16:49.427Z)
necessary accounts resynced in 0.18ms
▬ Komodo 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 19.6085 KMD (495ops) (RDkzJayYAfwwEuh9Efz44ds3w3giNzqbaa on 44'/141'/0'/0/247) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H: (! sum of ops -0.6958897 KMD)
10 UTXOs
4.34336      RHQQXvXFvPtA7viES4M7a5aHAgQyvhDeEX (change) rbf 435daa3c78705f4f17a3e24e5f96900caa5c6966fbdb917168cb220793c459c0 @1 (594382)
4.28877      RWU2cHNzwG3GsgSR2VK7pwQBdL5b6qsv5q 411b3d6c90b878eb0f20c62fc928db33754a933cbca8b867277838be9c792dec @0 (34567)
3.38014      RBBiouibogaTJyM1FqWu7PhQnAuvpfMecN f97514cb6cb4b0edcf0738d2ff4e19870418be292551d64d0e17848c10fd3148 @0 (26196)
2.77737      RWiovsUfk7ycJAXhwu2VqTNheKkqpoUSKB 61017481e720d41a28b359a69481ad16c683f9b04b10bc1409f716ef48abe59c @0 (673734)
...

max spendable ~19.6082
★ using mutation 'move ~50%'
→ TO undefined: 11.2571 KMD (463ops) (RT7yjo72rR1kYYGAWEsH6XBWSpSPZMP4cS on 44'/141'/2'/0/252) #2 js:2:komodo:v4PKUB9WZbMS4XNED8S4oAJzXQqPbfLCmNRNPW8QoETCA7opTJLFvrkm39QZAdLg8DygthREBvDRmrHDeVtEQ8C7iQDfXDSPTrzB2FAFkvgsQ9HA:
✔️ transaction 
SEND 10.2673104 KMD
TO RT7yjo72rR1kYYGAWEsH6XBWSpSPZMP4cS
with feePerByte=21 (network fees: 0=22, 1=21, 2=20)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (232ms)
TX INPUTS (5):
1.21932      RFyyvVnrYYsyW4vFgY7SsnFUDsMD5uvRkP dc667f02d971170d49c4b2b0cbb2b91dd33e73a746082512eb9b9f23e3077321@1
0.769906     RTmMfemhqFnYxvjD3wpZ4mN1cqRswHutUi c5266005e12a3ebebdaf860411b74c5065817e7d447dedbfdea0b067254741f5@1
1.48715      RGQ4eAL61ZGwLW2EaoDBKnoKp3J8gGFpjd ed044941847f99446eeb76bce1da650ebd5a111f56ab52bf965aa1d0c482fc79@1
2.77737      RWiovsUfk7ycJAXhwu2VqTNheKkqpoUSKB 61017481e720d41a28b359a69481ad16c683f9b04b10bc1409f716ef48abe59c@0
...
TX OUTPUTS (2):
10.2673      RT7yjo72rR1kYYGAWEsH6XBWSpSPZMP4cS @0 (0)
0.329657     REeUEh9u3twbVynYaHwgg43AQjZCfQZx1Z (change) @1 (0)
  amount: 10.2673104 KMD
  estimated fees: 0.00017178 KMD
  total spent: 10.26748218 KMD
errors: 
warnings: 
✔️ has been signed! (7.8s) {"operation":{"id":"js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:--OUT","hash":"","type":"OUT","senders":["RFyyvVnrYYsyW4vFgY7SsnFUDsMD5uvRkP","RTmMfemhqFnYxvjD3wpZ4mN1cqRswHutUi","RGQ4eAL61ZGwLW2EaoDBKnoKp3J8gGFpjd","RWiovsUfk7ycJAXhwu2VqTNheKkqpoUSKB","RHQQXvXFvPtA7viES4M7a5aHAgQyvhDeEX"],"recipients":["RT7yjo72rR1kYYGAWEsH6XBWSpSPZMP4cS"],"accountId":"js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-06-18T16:37:56.702Z","value":"1026748218","fee":"17178"},"signature":"0400008085202f8905217307e3239f9beb12250846a7733ed31db9b2cbb0b2c4490d1771d9027f66dc010000006b483045022100e83537280e26816f5130d0b156cf5b9aa2c9f5db2958ac4137bf7e2b5e765098022035e4fad108508aed44a624a5f2af738be2c0ddbb2473e0cbce51db9c4cdf574d012103125cb3a39d17c6f68d900d4443057cc34dd8af4c908e953b144c151bece120cdfffffffff541472567b0a0debfed7d447d7e8165504cb7110486afbdbe3e2ae1056026c5010000006a47304402206302d7f3433478589e8a7744e4bf9e15b908ab3db8f3a6a14fff5cce256de2a5022012f29d94aa6e986866469c25f0f30c2fbfd33c2404e1b2de99076250d7b8cd3401210202b04fff63b2ce691eb167d98aef56d14f1e2cf538ede43af38b6ab03d6a660bffffffff79fc82c4d0a15a96bf52ab561f115abd0e65dae1bc76eb6e44997f84414904ed010000006b483045022100cb5adfbca69d7f7c4630d6187d57571b26884acc2e0a19295db1d1ff964e2cb602204b3ad81c6a8ce37492825c479eed503199a4ffb6c26a514c62b9c648be3ae70b01210322a3d0bafe91ba754ba5fb561c95c63e66c1b3b34d8692ee651c3e28e400452affffffff9ce5ab48ef16f70914bc104bb0f983c616ad8194a659b3281ad420e781740161000000006b483045022100fec27012612bfa4ebc5240fda702caad96a3165cd2a566945dc62303acc61a1f02205d56fbcaac096de9b36c3c2cc706ed41b07cfbfc2b2e3e00fe5b8a4fc639e3480121031160affc715385abc9f4d2194d2a13773c36e3104a5c1ec1c853da191c51650affffffffc059c4930722cb687191dbfb66695caa0c90965f4ee2a3174f5f70783caa5d43010000006b483045022100f15c22b9b63a55d8e2fe7191c872e9987d53a64bd558898ebdb2794816bd6b7b02204e332cf2237f80236e8e2e5759a9f59ad15ec4bd8790873b084376801499a1b4012102395bba00416dedf6e78b1e757ecd0e05430ee79701a4bbce50b7246e179f918dffffffff0220ac323d000000001976a914c3b438335af6924f9a412aca3284b3eeba8b158f88ac5404f701000000001976a9143adeda31df63217991efd5ea5841c18534b3cf4a88acd4b47166000000000000000000000000000000"}
⚠️ TEST during broadcast
LedgerAPI4xx: -25: Missing inputs
(totally spent 8.2s – ends at 2024-06-18T17:16:49.432Z)
necessary accounts resynced in 2128ms
▬ Komodo 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 17.8878 KMD (472ops) (RSM7VU5PbMQuStjd3nonUjAwzyvqhFUBvt on 44'/141'/1'/0/234) #1 js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X: (! sum of ops 3.32993762 KMD)
17 UTXOs
4.90439      RK5ipDqn1BKy8YAaNMvMkuDtJFpKLkmJ2r c69b5e933247214dc146f336b4f0fca2684651196712fa3d58918f6813302336 @0 (670882)
2.93243      RMvjom1p21APuYLRTE1rMcd26TByGhvfYV 72217f20017574e67de283a5709b83a53a3a345cc600f1c2214239511d62b413 @0 (614669)
2.11875      RHQPQiUnrGVFnnNf3SSbgP1qf6SMNjJrdQ 29597f89c528ba0433a979abb8d69670450eeb00296f888de2be7ed6bf2c5fdc @0 (685064)
1.44362      RFFsLySjm3apjjD8E8xBacx4rc861z5iJ7 (change) cdd0a0aaa543e869bd736405d31aa6cb771d99aa1175609d704b489b6e4752c1 @2 (646580)
...

max spendable ~17.8872
★ using mutation 'optimize-size'
→ TO undefined: 19.6085 KMD (495ops) (RDkzJayYAfwwEuh9Efz44ds3w3giNzqbaa on 44'/141'/0'/0/247) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:
✔️ transaction 
SEND 11.67802069 KMD
TO RDkzJayYAfwwEuh9Efz44ds3w3giNzqbaa
with feePerByte=21 (network fees: 0=22, 1=21, 2=20)
OPTIMIZE_SIZE pick-unconfirmed
STATUS (428ms)
TX INPUTS (5):
4.90439      RK5ipDqn1BKy8YAaNMvMkuDtJFpKLkmJ2r c69b5e933247214dc146f336b4f0fca2684651196712fa3d58918f6813302336@0
2.93243      RMvjom1p21APuYLRTE1rMcd26TByGhvfYV 72217f20017574e67de283a5709b83a53a3a345cc600f1c2214239511d62b413@0
2.11875      RHQPQiUnrGVFnnNf3SSbgP1qf6SMNjJrdQ 29597f89c528ba0433a979abb8d69670450eeb00296f888de2be7ed6bf2c5fdc@0
1.40756      RDHa5yauxBMChgzMoXWjqhjuHjALxJBSz3 ed044941847f99446eeb76bce1da650ebd5a111f56ab52bf965aa1d0c482fc79@0
...
TX OUTPUTS (2):
11.678       RDkzJayYAfwwEuh9Efz44ds3w3giNzqbaa @0 (0)
0.0583582    RLEWE7n68Q464JqvgRhBJfpdpewyUDvy5L (change) @1 (0)
  amount: 11.67802069 KMD
  estimated fees: 0.00017178 KMD
  total spent: 11.67819247 KMD
errors: 
warnings: 
✔️ has been signed! (10.5s) {"operation":{"id":"js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:--OUT","hash":"","type":"OUT","senders":["RK5ipDqn1BKy8YAaNMvMkuDtJFpKLkmJ2r","RMvjom1p21APuYLRTE1rMcd26TByGhvfYV","RHQPQiUnrGVFnnNf3SSbgP1qf6SMNjJrdQ","RDHa5yauxBMChgzMoXWjqhjuHjALxJBSz3","RLsxiYktsTs7pRuKCEuK3sBW2YyFCRHGxG"],"recipients":["RDkzJayYAfwwEuh9Efz44ds3w3giNzqbaa"],"accountId":"js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-06-18T16:38:13.721Z","value":"1167819247","fee":"17178"},"signature":"0400008085202f890536233013688f91583dfa126719514668a2fcf0b436f346c14d214732935e9bc6000000006a4730440220261d2c3553171ff6ab3facfa75f968e7557cd960d312117553da5ab84478464402205e140dca1b06f3558baed9c0a1440a3fef1a31199980ab0e2e362cd6d5675a5c012102f71e1b6e78e95bc7edf18c146b2bf8aa9eafb543a1e21bd5424eeb6661399080ffffffff13b4621d51394221c2f100c65c343a3aa5839b70a583e27de6747501207f2172000000006a473044022043f3c97e3b1a24dc28feab80f326f9e4068d507574d0aa8617aa30e862ead58c02205ee1402a8f4aee453cedca15e6128854ccc5220f3c1e35f819c86c305709c2e80121026e28f0f31602b105d067020caedcbc482ac4c5856b2476e5b9d54f262a7063a2ffffffffdc5f2cbfd67ebee28d886f2900eb0e457096d6b8ab79a93304ba28c5897f5929000000006a47304402202003ca31f83dca425e139b9a75f0b75a3d683639113b8cacb4cb18bfaeb74a7402207fa00e8e3b5551b25d20a7b6401843424c32f8463962cf74fa492eb362709241012103befa28906297ac741d61ad9408c894bb3dc51ab4846c14a939d34efeee39e3e2ffffffff79fc82c4d0a15a96bf52ab561f115abd0e65dae1bc76eb6e44997f84414904ed000000006946304302204ce73f28e89705baea4c3c86aef37a35e24fbdba094e71a3a743c7b804ac4711021f7719b327c443111f37cfe1aa157e0cdd2e32bdc23da57ec94cdad7652711ad012103dc1aeff99a376d9d865e856f65524695efa2f80e412b04e7f0efc1082735df35ffffffff4f0b1a8bb20ccaf8b4286b477df14bb9bcaaddc97d8e81336730f08fd76f1275000000006b483045022100ceff93ec629efc781170e65f3f7d50e8424e201a1a27f3e28437191a5ce78b09022017c98345775a7a0a8a9bf00fc7d932fbf3597b3a87f50cdc235ca20b8f8d40700121030269b7d8d0b6a99424ac405c562e647b42fcd10fd6e6cf37e8cf563b1062e420ffffffff02d53e9b45000000001976a91431225232ab092bf7c5dafe46f9a335e6c2b7b36c88ac2e0c5900000000001976a914782749015d481ce4545b6538b7940351771fe19188ace2b47166000000000000000000000000000000"}
⚠️ TEST during broadcast
LedgerAPI4xx: -25: Missing inputs
(totally spent 11s – ends at 2024-06-18T17:16:49.485Z)
necessary accounts resynced in 1700ms
▬ Komodo 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 17.8878 KMD (472ops) (RSM7VU5PbMQuStjd3nonUjAwzyvqhFUBvt on 44'/141'/1'/0/234) #1 js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X: (! sum of ops 3.32993762 KMD)
17 UTXOs
4.90439      RK5ipDqn1BKy8YAaNMvMkuDtJFpKLkmJ2r c69b5e933247214dc146f336b4f0fca2684651196712fa3d58918f6813302336 @0 (670883)
2.93243      RMvjom1p21APuYLRTE1rMcd26TByGhvfYV 72217f20017574e67de283a5709b83a53a3a345cc600f1c2214239511d62b413 @0 (614670)
2.11875      RHQPQiUnrGVFnnNf3SSbgP1qf6SMNjJrdQ 29597f89c528ba0433a979abb8d69670450eeb00296f888de2be7ed6bf2c5fdc @0 (685065)
1.44362      RFFsLySjm3apjjD8E8xBacx4rc861z5iJ7 (change) cdd0a0aaa543e869bd736405d31aa6cb771d99aa1175609d704b489b6e4752c1 @2 (646581)
...

max spendable ~17.8872
★ using mutation 'send 1 utxo'
→ TO undefined: 19.6085 KMD (495ops) (RDkzJayYAfwwEuh9Efz44ds3w3giNzqbaa on 44'/141'/0'/0/247) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:
✔️ transaction 
SEND MAX
TO RDkzJayYAfwwEuh9Efz44ds3w3giNzqbaa
with feePerByte=21 (network fees: 0=22, 1=21, 2=20)
DEEP_OUTPUTS_FIRST pick-unconfirmed
exclude ed044941847f99446eeb76bce1da650ebd5a111f56ab52bf965aa1d0c482fc79 @0
exclude 700ba7ea84608f936eca88d23a10c7872161f12b148ea2d5b89019f11931f0c7 @1
exclude fee7f96ff28c0da1a93876ea654e001a3c142ed56cccacd053b1ba7c02c2085e @2
exclude cdd0a0aaa543e869bd736405d31aa6cb771d99aa1175609d704b489b6e4752c1 @2
STATUS (275ms)
TX INPUTS (1):
2.11875      RHQPQiUnrGVFnnNf3SSbgP1qf6SMNjJrdQ 29597f89c528ba0433a979abb8d69670450eeb00296f888de2be7ed6bf2c5fdc@0
TX OUTPUTS (1):
2.11871      RDkzJayYAfwwEuh9Efz44ds3w3giNzqbaa @0 (0)
  amount: 2.11871312 KMD
  estimated fees: 0.00004032 KMD
  total spent: 2.11875344 KMD
errors: 
warnings: 
✔️ has been signed! (3.7s) {"operation":{"id":"js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:--OUT","hash":"","type":"OUT","senders":["RHQPQiUnrGVFnnNf3SSbgP1qf6SMNjJrdQ"],"recipients":["RDkzJayYAfwwEuh9Efz44ds3w3giNzqbaa"],"accountId":"js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-06-18T16:38:25.584Z","value":"4032","fee":"4032"},"signature":"0400008085202f8901dc5f2cbfd67ebee28d886f2900eb0e457096d6b8ab79a93304ba28c5897f5929000000006a473044022047945f2bc739ee422625cc8aa4f08137281827d37858c30f6dde4462e099b61c022053d33706b3f5eac7d9a942e02b720bbd85b39e441ee252a226dd3c4b7e5cebed012103befa28906297ac741d61ad9408c894bb3dc51ab4846c14a939d34efeee39e3e2ffffffff0150e6a00c000000001976a91431225232ab092bf7c5dafe46f9a335e6c2b7b36c88acf5b47166000000000000000000000000000000"}
⚠️ TEST during broadcast
LedgerAPI4xx: -25: Missing inputs
(totally spent 4s – ends at 2024-06-18T17:16:49.490Z)
necessary accounts resynced in 1845ms
▬ Komodo 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 11.6393 KMD (432ops) (RJz9oKuLMrL18ufexTmm6TrQbRRvuHd2ws on 44'/141'/3'/0/242) #3 js:2:komodo:v4PKUB9WZbMS4XNEDBJ9e6csdTWjkQsBngGrmyPrPrwARdjCHQmEYDrU4Kq7HGhiDP6xnwdVwUp3pTCDBqPFJzzGWKwhGKyZ3R9twuUru5U57rPp: (! sum of ops -6.29177616 KMD)
10 UTXOs
4.55965      RThq3Xw3gDX9GHVVdFsGk3mdcoEuRNWFF3 (change) 411b3d6c90b878eb0f20c62fc928db33754a933cbca8b867277838be9c792dec @1 (34567)
3.05568      RB4RDQMcL34hnejL28VcQ7qHhqeSiPfyoi (change) 0af9d7edf6c8fc43454b4f955c5c35e511e9bc8a9f43a7ec9612b0339b6d2200 @2 (203184)
2.2235       RNd4T8d3hvsNnE12BNJME2h2yHCJ7UzacZ 8a18072a0264d60293f493fe665b7fae32e03815c89a32796763391198ac2eb4 @0 (591567)
0.820623     RAkQkfzDvRpSDUDbsXZhhMvTMdDnFoAxwt (change) 11d7942af8c59715020257a4df937fe8ef1f6feebebe64eae5987f1f6cfe5fba @2 (543102)
...

max spendable ~11.639
★ using mutation 'send OP_RETURN transaction'
→ TO undefined: 17.8878 KMD (472ops) (RSM7VU5PbMQuStjd3nonUjAwzyvqhFUBvt on 44'/141'/1'/0/234) #1 js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:
✔️ transaction 
SEND 0.1 KMD
TO RSM7VU5PbMQuStjd3nonUjAwzyvqhFUBvt
with feePerByte=21 (network fees: 0=22, 1=21, 2=20)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (190ms)
TX INPUTS (1):
0.193177     RA3TfN1jsaDd3mMiTKLrjDHZugzcTd4UQd c4d9dbf7be243d9a9e2cf6a866de867aa9f5b8f6606af94508ef7aed3fab9145@0
TX OUTPUTS (3):
0.1          RSM7VU5PbMQuStjd3nonUjAwzyvqhFUBvt @0 (0)
0            @1 (0)
0.0931241    RCmjPDSNxjD9wGPEGjYMbzdsf1464Nbtk2 (change) @2 (0)
  amount: 0.1 KMD
  estimated fees: 0.00005376 KMD
  total spent: 0.10005376 KMD
errors: 
warnings: 
✔️ has been signed! (6s) {"operation":{"id":"js:2:komodo:v4PKUB9WZbMS4XNEDBJ9e6csdTWjkQsBngGrmyPrPrwARdjCHQmEYDrU4Kq7HGhiDP6xnwdVwUp3pTCDBqPFJzzGWKwhGKyZ3R9twuUru5U57rPp:--OUT","hash":"","type":"OUT","senders":["RA3TfN1jsaDd3mMiTKLrjDHZugzcTd4UQd"],"recipients":["RSM7VU5PbMQuStjd3nonUjAwzyvqhFUBvt"],"accountId":"js:2:komodo:v4PKUB9WZbMS4XNEDBJ9e6csdTWjkQsBngGrmyPrPrwARdjCHQmEYDrU4Kq7HGhiDP6xnwdVwUp3pTCDBqPFJzzGWKwhGKyZ3R9twuUru5U57rPp:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-06-18T16:38:36.862Z","value":"10005376","fee":"5376"},"signature":"0400008085202f89014591ab3fed7aef0845f96a60f6b8f5a97a86de66a8f62c9e9a3d24bef7dbd9c4000000006b483045022100fcbc1fdd3784ebeb62e21a5135b48ce6b5e19334dfa74e3284bf45e6a96173730220604a0f998307d80edf21eec78d155ec11e74811bf06cbd7508a27bf0e74f50630121031b984c6763680a9adc203bf263ec45905c63c593076081e0e815eb0ef6c5d343ffffffff0380969800000000001976a914bb37f91d31d6096659fda7811b31925e44accc3988ac0000000000000000156a13636861726c6579206c6f766573206865696469a1188e00000000001976a914264e281127c1373a643f3828dcc761ee3be9cfd588acfdb47166000000000000000000000000000000"}
⚠️ TEST during broadcast
LedgerAPI4xx: -25: Missing inputs
(totally spent 6.3s – ends at 2024-06-18T17:16:49.495Z)
necessary accounts resynced in 0.10ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 12.5119 SYS (485ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:syscoin:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
max spendable ~12.5117
★ using mutation 'send max'
→ TO undefined: 0 SYS (448ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:syscoin:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
✔️ transaction 
SEND MAX
TO 0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25
STATUS (428ms)
  amount: 12.511887967156137659 SYS
  estimated fees: 0.00005879924085 SYS
  total spent: 12.511946766396987659 SYS
errors: 
warnings: 
✔️ has been signed! (2954ms) 
✔️ broadcasted! (98ms) optimistic operation: 
  -12.511946766396987659 SYS OUT        0x36ad44492cd7467f11a7f8149afce348bd710f3c5cb72264db871a309330ca8c 2024-06-18T16:42
⚠️ TEST waiting operation id to appear after broadcast
Error: could not find optimisticOperation js:2:syscoin:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:-0x36ad44492cd7467f11a7f8149afce348bd710f3c5cb72264db871a309330ca8c-OUT
(totally spent 10min 4s – ends at 2024-06-18T17:16:49.508Z)
necessary accounts resynced in 524ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 2.98076 SYS (476ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:syscoin:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
max spendable ~2.98061
★ using mutation 'move 50%'
→ TO undefined: 12.5119 SYS (485ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:syscoin:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
✔️ transaction 
SEND  1.490306521996345982 SYS
TO 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
STATUS (265ms)
  amount: 1.490306521996345982 SYS
  estimated fees: 0.000058799237238 SYS
  total spent: 1.490365321233583982 SYS
errors: 
warnings: 
✔️ has been signed! (2914ms) 
✔️ broadcasted! (121ms) optimistic operation: 
  -1.490365321233583982 SYS OUT        0x01a660c31f76b94080caa4cc00bf49d2eafae2cda74814e889f152851234ebeb 2024-06-18T16:53
✔️ operation confirmed (3min 1s): 
  -1.490365321193200982 SYS OUT        0x01a660c31f76b94080caa4cc00bf49d2eafae2cda74814e889f152851234ebeb 2024-06-18T16:53
✔️ undefined: 1.49039 SYS (477ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:syscoin:0x90bD48144e08b66490BcA9a756BDe9f004F17857:(in 3min 1s)
(in 7min 7s)
⚠️ TEST destination > account balance increased with transaction amount
Error: expect(received).toBe(expected) // Object.is equality

Expected: "14002253288393333641"
Received: "1490306522038576982"
(totally spent 10min 11s – ends at 2024-06-18T17:16:49.511Z)
necessary accounts resynced in 403ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 1.4903 SYS (487ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:syscoin:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
max spendable ~1.49017
★ using mutation 'move 50%'
→ TO undefined: 0 SYS (448ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:syscoin:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
✔️ transaction 
SEND  0.745087011974348491 SYS
TO 0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25
STATUS (290ms)
  amount: 0.745087011974348491 SYS
  estimated fees: 0.00005249924316 SYS
  total spent: 0.745139511217508491 SYS
errors: 
warnings: 
✔️ has been signed! (2872ms) 
✔️ broadcasted! (96ms) optimistic operation: 
  -0.745139511217508491 SYS OUT        0xa141cbc7650611e6effcc8159e9574c896fbf4640b6c1bb5aaa3c0a080a52fc4 2024-06-18T17:03
⚠️ TEST waiting operation id to appear after broadcast
Error: could not find optimisticOperation js:2:syscoin:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:-0xa141cbc7650611e6effcc8159e9574c896fbf4640b6c1bb5aaa3c0a080a52fc4-OUT
(totally spent 10min 4s – ends at 2024-06-18T17:16:49.514Z)
necessary accounts resynced in 0.14ms
▬ NEAR 2.0.0 on nanoS 2.1.0
→ FROM undefined: 0.444537 NEAR (66ops) (0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf on 44'/397'/0'/0'/0') nearbip44h#0 js:2:near:0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf:nearbip44h (! sum of ops 0.98067982518354365104 NEAR)
max spendable ~0.391593
★ using mutation 'Withdraw'
✔️ transaction 
WITHDRAW  0.00003244772989024753 NEAR
TO ledgerbyfigment.poolv1.near
STATUS (300ms)
  amount: 0.00003244772989024753 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-18T17:16:49.515Z)
necessary accounts resynced in 0.18ms
▬ 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 'Send max to another account'
→ TO undefined: 0.0520868 NEAR (22ops) (aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93 on 44'/397'/0'/0'/4') nearbip44h#4 js:2:near:aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93:nearbip44h
✔️ transaction 
SEND MAX
TO aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93
STATUS (698ms)
  amount: 0.39222190173708758401 NEAR
  estimated fees: 0.0008349895375 NEAR
  total spent: 0.39305689127458758401 NEAR
errors: 
warnings: amount NearRecommendUnstake
⚠️ 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.7s – ends at 2024-06-18T17:16:49.517Z)
necessary accounts resynced in 0.18ms
▬ 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 tz1KzSC1J9aBxKp7u8TUnpN8L7S65PBRkgdF
with fees=0.000184
with gasLimit=100
with storageLimit=0
(estimatedFees 0.000558)
STATUS (1041ms)
  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 61.9s – ends at 2024-06-18T17:16:49.518Z)
necessary accounts resynced in 0.09ms
▬ XRP 2.4.0 on nanoS 2.1.0
→ FROM undefined: 11.8535 XRP (200ops) (r9etPtq3oboweMPju5gdYufmvwhH2euz8z on 44'/144'/0'/0/0) #0 js:2:ripple:r9etPtq3oboweMPju5gdYufmvwhH2euz8z: (! sum of ops -6.15669 XRP)
max spendable ~1.85351
★ using mutation 'move ~50%'
→ TO undefined: 11.6452 XRP (200ops) (rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH on 44'/144'/1'/0/0) #1 js:2:ripple:rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH:
✔️ transaction 
SEND 0.947713 XRP
TO rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH
with fee=0.00001 XRP
STATUS (6.1s)
  amount: 0.947713 XRP
  estimated fees: 0.00001 XRP
  total spent: 0.947723 XRP
errors: 
warnings: 
✔️ has been signed! (4.8s) 
✔️ broadcasted! (170ms) optimistic operation: 
  -0.947713 XRP      OUT        1560A65DA1403C3D33286BF98742914BE3A5FA8A34D31D7FF77822E4AF1E23F8 2024-06-18T16:46
✔️ operation confirmed (11.1s): 
  -0.947723 XRP      OUT        1560A65DA1403C3D33286BF98742914BE3A5FA8A34D31D7FF77822E4AF1E23F8 2024-06-18T16:46
✔️ undefined: 10.9057 XRP (201ops) (r9etPtq3oboweMPju5gdYufmvwhH2euz8z on 44'/144'/0'/0/0) #0 js:2:ripple:r9etPtq3oboweMPju5gdYufmvwhH2euz8z: (! sum of ops -7.104413 XRP)(in 11.1s)
(in 4min 51s)
⚠️ TEST destination > account balance increased with transaction amount
Error: expect(received).toBe(expected) // Object.is equality

Expected: "12593007"
Received: "12593009"
(totally spent 5min 13s – ends at 2024-06-18T17:16:49.522Z)
⚠️ 44 spec hints
  • Spec Celo:
    • mutations should define a test(): Celo: Move 50% to another account, Celo: Send max to another account, Celo: Register Account, Celo: Unlock, Celo: Lock, Celo: Vote, Celo: Activate Vote, Celo: RevokeVote, Celo: Withdraw
    • mutations should define a testDestination(): Celo: Move 50% to another account, Celo: Send max to another account
    • mutation Celo: Send max to another account: unexpected status.warnings.amount = CeloAllFundsWarning: CeloAllFundsWarning – Please implement expectStatusWarnings on the mutation if expected
  • Spec dydx:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec umee:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
    • mutation claim rewards: unexpected status.warnings.claimReward = ClaimRewardsFeesWarning: ClaimRewardsFeesWarning – Please implement expectStatusWarnings on the mutation if expected
  • Spec onomy:
    • 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 coreum:
    • mutation claim rewards: unexpected status.warnings.claimReward = ClaimRewardsFeesWarning: ClaimRewardsFeesWarning – 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(): send max, move 50%
  • Spec Elrond:
    • mutations should define a testDestination(): move some ESDT
  • Spec Stacks:
    • mutations should define a testDestination(): Transfer Max, Send 50%~
  • Spec Stellar:
    • mutations should define a testDestination(): Send max XLM, move ~50% XLM
  • Spec VeChain VTHO:
    • mutations should define a testDestination(): move ~50% VTHO
  • Spec VeChain VET:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Algorand:
    • mutations should define a testDestination(): opt-In ASA available
  • Spec Bitcoin Testnet:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Bitcoin Cash:
    • mutation optimize-size: 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
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Vertcoin:
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Viacoin:
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec ZCash:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Horizen:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
  • Spec Ethereum Classic:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Arbitrum:
    • mutation move 50%: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Flare:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec RSK:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec OP Mainnet:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec OP Sepolia:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Base:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Linea Sepolia:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Blast:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Blast Sepolia:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Scroll:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Scroll Sepolia:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec NEAR:
    • mutations should define a testDestination(): Send max to another account
    • mutation Send max to another account: unexpected status.warnings.amount = NearRecommendUnstake: NearRecommendUnstake – Please implement expectStatusWarnings on the mutation if expected
  • 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,036.93) – Details of the 71 currencies
Spec (accounts) State Remaining Runs (est) funds?
Casper (8) 421 ops , 24,979 CSPR ($555.05) 💪 999+ 02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c
Celo (12) 1560 ops (+8), 17.1505 CELO ($9.56) 💪 516 0x246FFDB387F1F8c48072E1C13443540017bC71b7
osmosis (18) 10 ops (+8), 20.4951 OSMO ($10.53) 👍 441 osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l
desmos (18) 96 ops , 136.813 DSM ($0.52) 💪 999+ desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454
dydx (18) 0 ops , 0.0108299 dydx ($0.02) dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6
umee (18) 0 ops , 725.246 UMEE ($1.31) umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l
persistence (18) 954 ops , 28.7144 XPRT ($6.16) 💪 648 persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf
quicksilver (18) 58 ops , 20.8033 QCK ($0.38) 💪 999+ quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l
onomy (18) 615 ops , 1.80592 NOM ($0.18) 💪 999+ onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg
sei_network (16) 0 ops , 0.077475 SEI ($0.00) sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v
stargaze (18) 97 ops , 887.528 STARS ($10.97) 💪 733 stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu
coreum (18) 1498 ops , 41.7921 CORE ($3.77) 👍 239 core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk
injective (0) 0 ops , 🤷‍♂️ ``
Crypto org (7) 209 ops , 34.751 CRO ($3.20) 💪 999+ cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra
Elrond (8) 2372 ops (+4), 0.945043 EGLD ($26.82) 💪 999+ erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp
Hedera (5) 1703 ops (+10), 59.4187 HBAR ($3.69) 💪 999+ 0.0.3663977
InternetComputer (8) 608 ops (+4), 1.01557 ICP ($8.09) 💪 999+ f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209
Stacks (4) 509 ops (+3), 32.3692 STX ($29.08) 👍 334 SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2
Stellar (6) 2705 ops (+6), 58.9805 XLM ($5.96) 💪 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) 2185 ops (+6), 9.60461 ALGO ($3.03) 💪 999+ TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4
Bitcoin Testnet (13) 1423 ops , 0.00193076 𝚝BTC ($0.00) ⚠️ 3 tb1qqsk6rter25qfxful9dhzrtunyyaga2pvvv89vl
Bitcoin Cash (7) 3431 ops (+8), 0.047336 BCH ($17.99) 💪 754 qpr34qztx5jrhktw9jxcsc28eq7tkhk3hqdj9km9lj
Bitcoin Gold (6) 2635 ops (+6), 0.390211 BTG ($9.33) 💪 999+ ASdmmzHxTCmbcHAqvW9qSVDAUgG3rUGGmZ
Dash (7) 2818 ops (+10), 0.107791 DASH ($2.44) 💪 999+ XjDoDaSUXAR8qWevGZjcp5MEQRdBrKeMJ1
Digibyte (9) 3646 ops (+8), 443.937 DGB ($3.45) 💪 999+ dgb1q3nccd6cl3ddu64s6jmfuwfwxqpaqx03wk6kd52
DogeCoin (7) 1862 ops (+8), 28.406 DOGE ($3.40) 👍 51 DErywhANM2NfctPACWXX6rcemYF6L9gfAm
Komodo (5) 1862 ops , 60.3929 KMD ($19.99) 💪 999+ RT7yjo72rR1kYYGAWEsH6XBWSpSPZMP4cS
Litecoin (9) 3597 ops (+10), 0.342482 LTC ($24.56) 💪 999+ ltc1ql06jgn26ldu5dunmpspz345e7vw09hxz63pdfy
Peercoin (0) 0 ops , 🤷‍♂️ ``
PivX (5) 2539 ops (+8), 46.6262 PIVX ($12.94) 💪 999+ DBUCQKwAB8mcnVaCS4sov4fwxZtuasGtX9
Vertcoin (6) 2378 ops (+6), 29.1637 VTC ($1.83) 💪 999+ 39d8sF2SHTMbKnDci4Q46ACQtYdwTHxBHi
Viacoin (6) 2285 ops (+6), 40.6831 VIA ($1.05) 💪 999+ EKxSNTUWWLQ46NEvECuPAmv1LEW2D6MufD
ZCash (5) 1502 ops , 0.00368057 ZEC ($0.07) ⚠️ 2 t1SDpcaNZmbCH5TCCb5vNAh5bXs3isDtA5h
Horizen (5) 1940 ops (+4), 0.420945 ZEN ($2.56) 💪 999+ znc25Kqjvpy65kYRCTzeun4jpFpomQ6EBGw
Ethereum Classic (6) 685 ops , 0.232476 ETC ($5.32) 💪 999+ 0x7584df0780C5eB83b26aE55abBc265014f8bf897
Polygon (10) 2420 ops (+8), 18.8808 MATIC ($10.23) ⚠️ 21 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Sepolia (6) 735 ops (+6), 0.00839786 𝚝ETH ($0.00) ⚠️ 3 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Holesky (6) 709 ops (+6), 0.234535 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum (6) 250 ops (+6), 0.00563492 ETH ($19.32) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum Sepolia (6) 489 ops (+6), 0.99099 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Flare (6) 2158 ops , 4.00005 FLR ($0.10) 👍 295 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Songbird (6) 2482 ops (+6), 937.273 SGB ($8.39) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonbeam (6) 2289 ops (+6), 59.6993 GLMR ($12.80) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
RSK (5) 794 ops , 0.00030914 RBTC ($20.13) 👍 56 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Bittorent Chain (6) 2104 ops (+6), 1,491,422 BTT ($1.28) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Mainnet (5) 121 ops , 0.00286711 ETH ($28.58) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Energy Web (6) 1862 ops (+6), 7.52853 EWT ($16.65) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Astar (6) 2030 ops (+6), 328.236 ASTR ($21.76) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Metis (6) 1956 ops (+6), 0.15203 METIS ($7.86) 👍 126 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonriver (6) 1930 ops (+4), 2.23677 MOVR ($23.70) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Velas EVM (6) 506 ops (+6), 912.016 VLX ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Syscoin (6) 1973 ops (+3), 57.0767 SYS ($5.38) 💪 999+ 0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25
Polygon zkEVM Testnet (0) 0 ops , 🤷‍♂️ ``
Base (5) 249 ops , 0.00269293 ETH ($9.24) 👍 76 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Base Sepolia (6) 481 ops (+6), 0.99008 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Klaytn (6) 207 ops (+6), 8.82884 KLAY ($1.40) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Neon EVM (6) 988 ops (+4), 16.2172 NEON ($10.95) 👍 282 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Lukso (6) 883 ops (+4), 0.491041 LYX ($1.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea (6) 593 ops (+6), 0.00686548 ETH ($23.53) 👍 70 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Blast (1) 0 ops , 0 ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Blast Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Scroll (1) 0 ops , 0 ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Scroll Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
NEAR (11) 226 ops , 0.785485 NEAR ($5.76) 👍 175 0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf
Solana (0) 0 ops , 🤷‍♂️ ``
Tezos (3) 156 ops , 5.28869 XTZ ($3.85) 👍 182 tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF
XRP (4) 606 ops (+6), 14.005 XRP ($21.25) 💪 999+ r9etPtq3oboweMPju5gdYufmvwhH2euz8z
undefined: 0 CSPR (77ops) (02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c on 44'/506'/0'/0/0) casper_wallet#0 js:2:casper:02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c:casper_wallet
undefined: 0 CSPR (76ops) (02034A7c5519d553BC282F768Dca044e18746B7Be9B711f2F310c190f33B3cBC4A4F on 44'/506'/0'/0/1) casper_wallet#1 js:2:casper:02034A7c5519d553BC282F768Dca044e18746B7Be9B711f2F310c190f33B3cBC4A4F:casper_wallet
undefined: 3,124.98 CSPR (59ops) (0203B56bC181780F8fb173BaFd8d483d6911282EC46d72692d0a5bbbb29ea242ed76 on 44'/506'/0'/0/2) casper_wallet#2 js:2:casper:0203B56bC181780F8fb173BaFd8d483d6911282EC46d72692d0a5bbbb29ea242ed76:casper_wallet
undefined: 3,122.33 CSPR (75ops) (0203d14Bf1367769813E9c7233dB26DC2208cA211532a0C2B1189992dC01d4bc098E on 44'/506'/0'/0/3) casper_wallet#3 js:2:casper:0203d14Bf1367769813E9c7233dB26DC2208cA211532a0C2B1189992dC01d4bc098E:casper_wallet
undefined: 0 CSPR (60ops) (02039ae761a635A37868CF35e6de9799Cba9fC4cDB9A3aFbbA6AB5c83291F13bbec8 on 44'/506'/0'/0/4) casper_wallet#4 js:2:casper:02039ae761a635A37868CF35e6de9799Cba9fC4cDB9A3aFbbA6AB5c83291F13bbec8:casper_wallet
undefined: 0 CSPR (35ops) (02033CEac656c99270C432fd59a60102B4E807977F67C429298eA3436F2cE41A1B1b on 44'/506'/0'/0/5) casper_wallet#5 js:2:casper:02033CEac656c99270C432fd59a60102B4E807977F67C429298eA3436F2cE41A1B1b:casper_wallet
undefined: 18,731.6 CSPR (39ops) (02035aDdb3EF3863b0B44054e638F7C61F74319D5dA70B8E98FEf9ea984f7DB6EDac on 44'/506'/0'/0/6) casper_wallet#6 js:2:casper:02035aDdb3EF3863b0B44054e638F7C61F74319D5dA70B8E98FEf9ea984f7DB6EDac:casper_wallet
undefined: 0 CSPR (0ops) (0202b75FD56f06B03E675b33B0A136B6C87810C5a0435281DFe567c79596E0876Fa4 on 44'/506'/0'/0/7) casper_wallet#7 js:2:casper:0202b75FD56f06B03E675b33B0A136B6C87810C5a0435281DFe567c79596E0876Fa4:casper_wallet
undefined: 0.42114 CELO (212ops) (0x246FFDB387F1F8c48072E1C13443540017bC71b7 on 44'/52752'/0'/0/0) #0 js:2:celo:0x246FFDB387F1F8c48072E1C13443540017bC71b7:
undefined: 2.3148 CELO (169ops) (0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8 on 44'/52752'/1'/0/0) #1 js:2:celo:0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8:
undefined: 10.9075 CELO (173ops) (0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0 on 44'/52752'/2'/0/0) #2 js:2:celo:0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0:
undefined: 0.427053 CELO (126ops) (0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2 on 44'/52752'/3'/0/0) #3 js:2:celo:0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2:
undefined: 0.00802497 CELO (147ops) (0xA6EB5541E3527d07CaD4dD14E5454820DB858160 on 44'/52752'/4'/0/0) #4 js:2:celo:0xA6EB5541E3527d07CaD4dD14E5454820DB858160:
undefined: 0.014358 CELO (142ops) (0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE on 44'/52752'/5'/0/0) #5 js:2:celo:0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE:
undefined: 0.00507531 CELO (128ops) (0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc on 44'/52752'/6'/0/0) #6 js:2:celo:0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc:
undefined: 0.838051 CELO (139ops) (0xc054A142A0e8793bC860A34971C3eb549064A54a on 44'/52752'/7'/0/0) #7 js:2:celo:0xc054A142A0e8793bC860A34971C3eb549064A54a:
undefined: 0.00962457 CELO (134ops) (0x78AB368133f5Bf101849475dD4a5747E6d1A897a on 44'/52752'/8'/0/0) #8 js:2:celo:0x78AB368133f5Bf101849475dD4a5747E6d1A897a:
undefined: 2.2806 CELO (97ops) (0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8 on 44'/52752'/9'/0/0) #9 js:2:celo:0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8:
undefined: 0.00190114 CELO (93ops) (0x3f6AB52EDA4a9d38b3cf208E3fB4c3f87C53002D on 44'/52752'/10'/0/0) #10 js:2:celo:0x3f6AB52EDA4a9d38b3cf208E3fB4c3f87C53002D:
undefined: 0 CELO (0ops) (0xA07f9fb2bd5A8799081d5519897dB27B257D036D on 44'/52752'/11'/0/0) #11 js:2:celo:0xA07f9fb2bd5A8799081d5519897dB27B257D036D:
undefined: 0 OSMO (0ops) (osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l on 44'/118'/0'/0/0) #0 js:2:osmo:osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l:
undefined: 0.095946 OSMO (1ops) (osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf on 44'/118'/1'/0/0) #1 js:2:osmo:osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf:
undefined: 0.095851 OSMO (1ops) (osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv on 44'/118'/2'/0/0) #2 js:2:osmo:osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv:
undefined: 0.002544 OSMO (0ops) (osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k on 44'/118'/3'/0/0) #3 js:2:osmo:osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k:
undefined: 0 OSMO (1ops) (osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0 on 44'/118'/4'/0/0) #4 js:2:osmo:osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0:
undefined: 0.396137 OSMO (2ops) (osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw on 44'/118'/5'/0/0) #5 js:2:osmo:osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw:
undefined: 0.02123 OSMO (2ops) (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.07715 OSMO (1ops) (osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d on 44'/118'/8'/0/0) #8 js:2:osmo:osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d:
undefined: 2.27424 OSMO (0ops) (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.304606 OSMO (0ops) (osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg on 44'/118'/11'/0/0) #11 js:2:osmo:osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg:
undefined: 0.426649 OSMO (0ops) (osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m on 44'/118'/12'/0/0) #12 js:2:osmo:osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m:
undefined: 0.44953 OSMO (0ops) (osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9 on 44'/118'/13'/0/0) #13 js:2:osmo:osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9:
undefined: 1.29909 OSMO (1ops) (osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd on 44'/118'/14'/0/0) #14 js:2:osmo:osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd:
undefined: 13.3129 OSMO (0ops) (osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau on 44'/118'/15'/0/0) #15 js:2:osmo:osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau:
undefined: 1.36541 OSMO (0ops) (osmo1xr8krhp99mp9ncrz6dfgre542nv0rc8lrryjvr on 44'/118'/16'/0/0) #16 js:2:osmo:osmo1xr8krhp99mp9ncrz6dfgre542nv0rc8lrryjvr:
undefined: 0 OSMO (0ops) (osmo102w826rmvswfhs4zsv2ujhylmd92c28p6lglqe on 44'/118'/17'/0/0) #17 js:2:osmo:osmo102w826rmvswfhs4zsv2ujhylmd92c28p6lglqe:
undefined: 0.000696 DSM (0ops) (desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454 on 44'/118'/0'/0/0) #0 js:2:desmos:desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454:
undefined: 0 DSM (7ops) (desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur on 44'/118'/1'/0/0) #1 js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:
undefined: 0 DSM (5ops) (desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx on 44'/118'/2'/0/0) #2 js:2:desmos:desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx:
undefined: 0.008961 DSM (5ops) (desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu on 44'/118'/3'/0/0) #3 js:2:desmos:desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu:
undefined: 0.003139 DSM (9ops) (desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9 on 44'/118'/4'/0/0) #4 js:2:desmos:desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9:
undefined: 0.003507 DSM (12ops) (desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y on 44'/118'/5'/0/0) #5 js:2:desmos:desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y:
undefined: 0 DSM (2ops) (desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz on 44'/118'/6'/0/0) #6 js:2:desmos:desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz:
undefined: 0.00598 DSM (4ops) (desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt on 44'/118'/7'/0/0) #7 js:2:desmos:desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt:
undefined: 0 DSM (5ops) (desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8 on 44'/118'/8'/0/0) #8 js:2:desmos:desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8:
undefined: 0.03736 DSM (7ops) (desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7 on 44'/118'/9'/0/0) #9 js:2:desmos:desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7:
undefined: 0.017274 DSM (6ops) (desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted on 44'/118'/10'/0/0) #10 js:2:desmos:desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted:
undefined: 0 DSM (1ops) (desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z on 44'/118'/11'/0/0) #11 js:2:desmos:desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z:
undefined: 0.083121 DSM (4ops) (desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243 on 44'/118'/12'/0/0) #12 js:2:desmos:desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243:
undefined: 76.0653 DSM (14ops) (desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0 on 44'/118'/13'/0/0) #13 js:2:desmos:desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0:
undefined: 16.1542 DSM (3ops) (desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8 on 44'/118'/14'/0/0) #14 js:2:desmos:desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8:
undefined: 22.9362 DSM (11ops) (desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk on 44'/118'/15'/0/0) #15 js:2:desmos:desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk:
undefined: 29.6344 DSM (1ops) (desmos1xr8krhp99mp9ncrz6dfgre542nv0rc8llq6jdf on 44'/118'/16'/0/0) #16 js:2:desmos:desmos1xr8krhp99mp9ncrz6dfgre542nv0rc8llq6jdf:
undefined: 0 DSM (0ops) (desmos102w826rmvswfhs4zsv2ujhylmd92c28pxuklpn on 44'/118'/17'/0/0) #17 js:2:desmos:desmos102w826rmvswfhs4zsv2ujhylmd92c28pxuklpn:
undefined: 0.00028612 dydx (0ops) (dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6 on 44'/118'/0'/0/0) #0 js:2:dydx:dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6:
undefined: 0.00062743 dydx (0ops) (dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv on 44'/118'/1'/0/0) #1 js:2:dydx:dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv:
undefined: 0.00081036 dydx (0ops) (dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf on 44'/118'/2'/0/0) #2 js:2:dydx:dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf:
undefined: 0.00103948 dydx (0ops) (dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en on 44'/118'/3'/0/0) #3 js:2:dydx:dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en:
undefined: 0 dydx (0ops) (dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2 on 44'/118'/4'/0/0) #4 js:2:dydx:dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2:
undefined: 0.00090041 dydx (0ops) (dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt on 44'/118'/5'/0/0) #5 js:2:dydx:dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt:
undefined: 0.00123005 dydx (0ops) (dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d on 44'/118'/6'/0/0) #6 js:2:dydx:dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d:
undefined: 0.0005327 dydx (0ops) (dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky on 44'/118'/7'/0/0) #7 js:2:dydx:dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky:
undefined: 0.00108568 dydx (0ops) (dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug on 44'/118'/8'/0/0) #8 js:2:dydx:dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug:
undefined: 0.00163178 dydx (0ops) (dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73 on 44'/118'/9'/0/0) #9 js:2:dydx:dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73:
undefined: 0.00032301 dydx (0ops) (dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz on 44'/118'/10'/0/0) #10 js:2:dydx:dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz:
undefined: 0.00079267 dydx (0ops) (dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd on 44'/118'/11'/0/0) #11 js:2:dydx:dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd:
undefined: 0.00117506 dydx (0ops) (dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7 on 44'/118'/12'/0/0) #12 js:2:dydx:dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7:
undefined: 0.0133491 dydx (0ops) (dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq on 44'/118'/13'/0/0) #13 js:2:dydx:dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq:
undefined: 0.00070996 dydx (0ops) (dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg on 44'/118'/14'/0/0) #14 js:2:dydx:dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg:
undefined: 0.00090914 dydx (0ops) (dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te on 44'/118'/15'/0/0) #15 js:2:dydx:dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te:
undefined: 0 dydx (0ops) (dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x on 44'/118'/16'/0/0) #16 js:2:dydx:dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x:
undefined: 0 dydx (0ops) (dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku on 44'/118'/17'/0/0) #17 js:2:dydx:dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku:
undefined: 0 UMEE (0ops) (umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l on 44'/118'/0'/0/0) #0 js:2:umee:umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l:
undefined: 0.045691 UMEE (0ops) (umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f on 44'/118'/1'/0/0) #1 js:2:umee:umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f:
undefined: 0.023772 UMEE (0ops) (umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv on 44'/118'/2'/0/0) #2 js:2:umee:umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv:
undefined: 1.17955 UMEE (0ops) (umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak on 44'/118'/3'/0/0) #3 js:2:umee:umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak:
undefined: 0 UMEE (0ops) (umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0 on 44'/118'/4'/0/0) #4 js:2:umee:umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0:
undefined: 1.13986 UMEE (0ops) (umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw on 44'/118'/5'/0/0) #5 js:2:umee:umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw:
undefined: 0 UMEE (0ops) (umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg on 44'/118'/6'/0/0) #6 js:2:umee:umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg:
undefined: 0.488271 UMEE (0ops) (umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp on 44'/118'/7'/0/0) #7 js:2:umee:umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp:
undefined: 2.60052 UMEE (0ops) (umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd on 44'/118'/8'/0/0) #8 js:2:umee:umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd:
undefined: 61.7364 UMEE (0ops) (umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65 on 44'/118'/9'/0/0) #9 js:2:umee:umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65:
undefined: 0 UMEE (0ops) (umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28 on 44'/118'/10'/0/0) #10 js:2:umee:umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28:
undefined: 4.21109 UMEE (0ops) (umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg on 44'/118'/11'/0/0) #11 js:2:umee:umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg:
undefined: 0.206042 UMEE (0ops) (umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm on 44'/118'/12'/0/0) #12 js:2:umee:umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm:
undefined: 78.1744 UMEE (0ops) (umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29 on 44'/118'/13'/0/0) #13 js:2:umee:umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29:
undefined: 38.8135 UMEE (0ops) (umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd on 44'/118'/14'/0/0) #14 js:2:umee:umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd:
undefined: 406.017 UMEE (0ops) (umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u on 44'/118'/15'/0/0) #15 js:2:umee:umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u:
undefined: 147.869 UMEE (0ops) (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.071564 XPRT (28ops) (persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf on 44'/118'/0'/0/0) #0 js:2:persistence:persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf:
undefined: 0.000693 XPRT (43ops) (persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l on 44'/118'/1'/0/0) #1 js:2:persistence:persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l:
undefined: 0.02591 XPRT (37ops) (persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6 on 44'/118'/2'/0/0) #2 js:2:persistence:persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6:
undefined: 0.014714 XPRT (92ops) (persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq on 44'/118'/3'/0/0) #3 js:2:persistence:persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq:
undefined: 0 XPRT (26ops) (persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e on 44'/118'/4'/0/0) #4 js:2:persistence:persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e:
undefined: 0.005676 XPRT (72ops) (persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc on 44'/118'/5'/0/0) #5 js:2:persistence:persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc:
undefined: 0 XPRT (45ops) (persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7 on 44'/118'/6'/0/0) #6 js:2:persistence:persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7:
undefined: 0.469793 XPRT (120ops) (persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch on 44'/118'/7'/0/0) #7 js:2:persistence:persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch:
undefined: 0 XPRT (37ops) (persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm on 44'/118'/8'/0/0) #8 js:2:persistence:persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm:
undefined: 0.121217 XPRT (117ops) (persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz on 44'/118'/9'/0/0) #9 js:2:persistence:persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz:
undefined: 0.294179 XPRT (53ops) (persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3 on 44'/118'/10'/0/0) #10 js:2:persistence:persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3:
undefined: 0.684775 XPRT (70ops) (persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7 on 44'/118'/11'/0/0) #11 js:2:persistence:persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7:
undefined: 1.19879 XPRT (22ops) (persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd on 44'/118'/12'/0/0) #12 js:2:persistence:persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd:
undefined: 5.75145 XPRT (108ops) (persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn on 44'/118'/13'/0/0) #13 js:2:persistence:persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn:
undefined: 10.3286 XPRT (20ops) (persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m on 44'/118'/14'/0/0) #14 js:2:persistence:persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m:
undefined: 8.02486 XPRT (43ops) (persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92 on 44'/118'/15'/0/0) #15 js:2:persistence:persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92:
undefined: 2.24702 XPRT (21ops) (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.000724 QCK (0ops) (quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l on 44'/118'/0'/0/0) #0 js:2:quicksilver:quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l:
undefined: 0 QCK (7ops) (quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf on 44'/118'/1'/0/0) #1 js:2:quicksilver:quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf:
undefined: 0.003479 QCK (16ops) (quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev on 44'/118'/2'/0/0) #2 js:2:quicksilver:quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev:
undefined: 0.000654 QCK (0ops) (quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk on 44'/118'/3'/0/0) #3 js:2:quicksilver:quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk:
undefined: 0 QCK (3ops) (quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0 on 44'/118'/4'/0/0) #4 js:2:quicksilver:quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0:
undefined: 0.271507 QCK (0ops) (quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw on 44'/118'/5'/0/0) #5 js:2:quicksilver:quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw:
undefined: 0.011332 QCK (0ops) (quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug on 44'/118'/6'/0/0) #6 js:2:quicksilver:quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug:
undefined: 0 QCK (14ops) (quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p on 44'/118'/7'/0/0) #7 js:2:quicksilver:quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p:
undefined: 0.02517 QCK (5ops) (quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d on 44'/118'/8'/0/0) #8 js:2:quicksilver:quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d:
undefined: 0.177321 QCK (4ops) (quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585 on 44'/118'/9'/0/0) #9 js:2:quicksilver:quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585:
undefined: 0.014032 QCK (0ops) (quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8 on 44'/118'/10'/0/0) #10 js:2:quicksilver:quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8:
undefined: 0.610307 QCK (0ops) (quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg on 44'/118'/11'/0/0) #11 js:2:quicksilver:quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg:
undefined: 0.092481 QCK (5ops) (quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm on 44'/118'/12'/0/0) #12 js:2:quicksilver:quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm:
undefined: 7.61247 QCK (0ops) (quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9 on 44'/118'/13'/0/0) #13 js:2:quicksilver:quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9:
undefined: 0 QCK (4ops) (quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad on 44'/118'/14'/0/0) #14 js:2:quicksilver:quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad:
undefined: 3.62087 QCK (0ops) (quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju on 44'/118'/15'/0/0) #15 js:2:quicksilver:quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju:
undefined: 10.8067 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.00001593 NOM (49ops) (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.00002576 NOM (75ops) (onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp on 44'/118'/3'/0/0) #3 js:2:onomy:onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp:
undefined: 0.00000003 NOM (41ops) (onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c on 44'/118'/4'/0/0) #4 js:2:onomy:onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c:
undefined: 0.00000172 NOM (68ops) (onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he on 44'/118'/5'/0/0) #5 js:2:onomy:onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he:
undefined: 0 NOM (41ops) (onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l on 44'/118'/6'/0/0) #6 js:2:onomy:onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l:
undefined: 0.00000484 NOM (56ops) (onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k on 44'/118'/7'/0/0) #7 js:2:onomy:onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k:
undefined: 0.00000042 NOM (32ops) (onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6 on 44'/118'/8'/0/0) #8 js:2:onomy:onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6:
undefined: 0.00003345 NOM (63ops) (onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r on 44'/118'/9'/0/0) #9 js:2:onomy:onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r:
undefined: 0.00000694 NOM (16ops) (onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls on 44'/118'/10'/0/0) #10 js:2:onomy:onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls:
undefined: 0.00314142 NOM (53ops) (onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl on 44'/118'/11'/0/0) #11 js:2:onomy:onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl:
undefined: 0.0009464 NOM (15ops) (onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv on 44'/118'/12'/0/0) #12 js:2:onomy:onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv:
undefined: 0.214326 NOM (13ops) (onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj on 44'/118'/13'/0/0) #13 js:2:onomy:onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj:
undefined: 0.399647 NOM (17ops) (onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46 on 44'/118'/14'/0/0) #14 js:2:onomy:onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46:
undefined: 0.0528661 NOM (8ops) (onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t on 44'/118'/15'/0/0) #15 js:2:onomy:onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t:
undefined: 1.13529 NOM (13ops) (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: 6.41013 STARS (7ops) (stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu on 44'/118'/0'/0/0) #0 js:2:stargaze:stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu:
undefined: 68.116 STARS (14ops) (stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2 on 44'/118'/1'/0/0) #1 js:2:stargaze:stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2:
undefined: 0 STARS (5ops) (stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0 on 44'/118'/2'/0/0) #2 js:2:stargaze:stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0:
undefined: 0.215106 STARS (9ops) (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: 3.73654 STARS (4ops) (stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd on 44'/118'/5'/0/0) #5 js:2:stargaze:stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd:
undefined: 0.204773 STARS (2ops) (stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt on 44'/118'/6'/0/0) #6 js:2:stargaze:stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt:
undefined: 0.618642 STARS (7ops) (stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz on 44'/118'/7'/0/0) #7 js:2:stargaze:stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz:
undefined: 0 STARS (3ops) (stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw on 44'/118'/8'/0/0) #8 js:2:stargaze:stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw:
undefined: 3.14848 STARS (6ops) (stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h on 44'/118'/9'/0/0) #9 js:2:stargaze:stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h:
undefined: 0.130165 STARS (9ops) (stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y on 44'/118'/10'/0/0) #10 js:2:stargaze:stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y:
undefined: 7.45326 STARS (5ops) (stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet on 44'/118'/11'/0/0) #11 js:2:stargaze:stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet:
undefined: 0 STARS (3ops) (stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc on 44'/118'/12'/0/0) #12 js:2:stargaze:stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc:
undefined: 0.683077 STARS (5ops) (stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x on 44'/118'/13'/0/0) #13 js:2:stargaze:stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x:
undefined: 31.5735 STARS (2ops) (stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w on 44'/118'/14'/0/0) #14 js:2:stargaze:stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w:
undefined: 449.012 STARS (5ops) (stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql on 44'/118'/15'/0/0) #15 js:2:stargaze:stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql:
undefined: 318.893 STARS (0ops) (stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q on 44'/118'/16'/0/0) #16 js:2:stargaze:stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q:
undefined: 0 STARS (0ops) (stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6 on 44'/118'/17'/0/0) #17 js:2:stargaze:stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6:
undefined: 0 CORE (75ops) (core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk on 44'/118'/0'/0/0) #0 js:2:coreum:core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk:
undefined: 0.024863 CORE (117ops) (core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq on 44'/118'/1'/0/0) #1 js:2:coreum:core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq:
undefined: 0.028888 CORE (95ops) (core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89 on 44'/118'/2'/0/0) #2 js:2:coreum:core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89:
undefined: 0.03595 CORE (145ops) (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.006932 CORE (114ops) (core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8 on 44'/118'/5'/0/0) #5 js:2:coreum:core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8:
undefined: 0.02649 CORE (76ops) (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: 1.24916 CORE (73ops) (core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy on 44'/118'/8'/0/0) #8 js:2:coreum:core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy:
undefined: 0.040274 CORE (133ops) (core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea on 44'/118'/9'/0/0) #9 js:2:coreum:core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea:
undefined: 1.23527 CORE (68ops) (core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw on 44'/118'/10'/0/0) #10 js:2:coreum:core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw:
undefined: 0.0652 CORE (105ops) (core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p on 44'/118'/11'/0/0) #11 js:2:coreum:core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p:
undefined: 0.207478 CORE (50ops) (core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j on 44'/118'/12'/0/0) #12 js:2:coreum:core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j:
undefined: 0.143617 CORE (111ops) (core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv on 44'/118'/13'/0/0) #13 js:2:coreum:core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv:
undefined: 1.35818 CORE (47ops) (core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try on 44'/118'/14'/0/0) #14 js:2:coreum:core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try:
undefined: 22.7102 CORE (72ops) (core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4 on 44'/118'/15'/0/0) #15 js:2:coreum:core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4:
undefined: 16.5803 CORE (26ops) (core1xr8krhp99mp9ncrz6dfgre542nv0rc8lck0ea2 on 44'/118'/16'/0/0) #16 js:2:coreum:core1xr8krhp99mp9ncrz6dfgre542nv0rc8lck0ea2:
undefined: 0 CORE (0ops) (core102w826rmvswfhs4zsv2ujhylmd92c28pp2r53s on 44'/118'/17'/0/0) #17 js:2:coreum:core102w826rmvswfhs4zsv2ujhylmd92c28pp2r53s:
undefined: 17.3755 CRO (44ops) (cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra on 44'/394'/0'/0/0) #0 js:2:crypto_org:cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra:
undefined: 0 CRO (35ops) (cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl on 44'/394'/1'/0/0) #1 js:2:crypto_org:cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl:
undefined: 0 CRO (39ops) (cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2 on 44'/394'/2'/0/0) #2 js:2:crypto_org:cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2:
undefined: 17.3755 CRO (30ops) (cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd on 44'/394'/3'/0/0) #3 js:2:crypto_org:cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd:
undefined: 0 CRO (30ops) (cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l on 44'/394'/4'/0/0) #4 js:2:crypto_org:cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l:
undefined: 0 CRO (31ops) (cro1zfhcf2htapdkjlw4ffqzce7yfe6mhscd2su05p on 44'/394'/5'/0/0) #5 js:2:crypto_org:cro1zfhcf2htapdkjlw4ffqzce7yfe6mhscd2su05p:
undefined: 0 CRO (0ops) (cro1gfrsr7eerpuc0zpl4j6wp3aj55gqahtls2hj9h on 44'/394'/6'/0/0) #6 js:2:crypto_org:cro1gfrsr7eerpuc0zpl4j6wp3aj55gqahtls2hj9h:
undefined: 0 EGLD (362ops) (erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp on 44'/508'/0'/0/0) #0 js:2:elrond:erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp:
undefined: 0 EGLD (395ops) (erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6 on 44'/508'/1'/0/0) #1 js:2:elrond:erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6:
undefined: 0.0132715 EGLD (365ops) (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.931592 EGLD (329ops) (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 (230ops) (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: 9.45184 HBAR (385ops) (0.0.3663977 on 44/3030) hederaBip44#0 js:2:hedera:0.0.3663977:hederaBip44
undefined: 9.45184 HBAR (385ops) (0.0.3663977 on 44/3030) hederaBip44#0 js:2:hedera:0.0.3663977:hederaBip44
undefined: 25.6915 HBAR (338ops) (0.0.3664525 on 44/3030) hederaBip44#1 js:2:hedera:0.0.3664525:hederaBip44
undefined: 3.97842 HBAR (309ops) (0.0.3664539 on 44/3030) hederaBip44#2 js:2:hedera:0.0.3664539:hederaBip44
undefined: 0.00002491 HBAR (286ops) (0.0.3664563 on 44/3030) hederaBip44#3 js:2:hedera:0.0.3664563:hederaBip44
undefined: 0.0105939 ICP (109ops) (f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209 on 44'/223'/0'/0/0) internet_computer#0 js:2:internet_computer:04e529ca9ff4709b35af64dce4f0719e770d5e185e4ee972729b75495b27628fad0990203fe3ac7079c643a6dd23384e597c65b7bbebbf994b8304253f1bd124e4:internet_computer
undefined: 0 ICP (101ops) (6084b3d34e7d4efd544ea0c3617a816577d00feb0de0db71b560b7687e7d3c14 on 44'/223'/0'/0/1) internet_computer#1 js:2:internet_computer:0404b6a7df5dd483be4711fbdc9248af1e49b3a205334120118fe1dd9567da874d2655f681d9935b02139ffe1997c7fcb7781c04917303d90c7ea157d495ec30d3:internet_computer
undefined: 0 ICP (97ops) (ff5ed1dc2538d7a8b3158e7c9d9b05f80bc5f49f292f1ad2a59576a70bfc4721 on 44'/223'/0'/0/2) internet_computer#2 js:2:internet_computer:04c6d5dab70167c7b104904e57ee8afc84e8b4809c927ceec353a217f1402438b86bb9515e5bdbcc8f187c2c0c5f539d6459fc99c86af1244f452175fd9b736714:internet_computer
undefined: 0 ICP (105ops) (a45d0e0afb2c416464342615b6ee1902ac6895cf5e9eab2ccc184978164e9310 on 44'/223'/0'/0/3) internet_computer#3 js:2:internet_computer:040e411918ebc5963b5f89938dd674d6cb95131ce3d335957cd8efd99cce3521ea22b3f0fc53996b9ce3373a86ca57def22b89829ae905fde5d22c4522a7af5aa2:internet_computer
undefined: 0.0105939 ICP (86ops) (5084840b6ed50fa97b40c93863092770dc74f42bd2fbc742b76ec2999e789262 on 44'/223'/0'/0/4) internet_computer#4 js:2:internet_computer:046036d79bf131623410cfe77b7ccc32c923c6f8dc1b62448111328a2a791b1a7df2d1d4ca80659f3f0613e2334df370ab1c4e38c724decdf7f9f650a61e4ea090:internet_computer
undefined: 0.180109 ICP (68ops) (0ec8cbc167cf495b7800efe653586d14ee0a53ef8880c63129b180580b02a8af on 44'/223'/0'/0/5) internet_computer#5 js:2:internet_computer:04e3bde2b3aeee5ae2af7ffdd25cc416df033c04d084ac02166ee52281e81be7945b119ab171b224984a8ff45adf4cbf28a392524dbefff12edf5d2470efd43375:internet_computer
undefined: 0.81408 ICP (42ops) (1d571d508b3c8901b3c4a8fdb733f5b831b9eab4f1f7443890ae04b36117fad5 on 44'/223'/0'/0/6) internet_computer#6 js:2:internet_computer:04000cb53ebc7761d8c976856db22cebbdf438fc7b3f9568ac90788d82be9890ac74d8a8f4f5cf86f8b4ea51e251c4aebda1e33af2c32fd90cbe051e5a0ffd641d:internet_computer
undefined: 0 ICP (0ops) (49a624b4179ec33e0faaa5998246c46ca16673ad9dc0e44f0026f5061177ebfb on 44'/223'/0'/0/7) internet_computer#7 js:2:internet_computer:04be24b119ae8d9a928654291e45eb8711739b524a36b8b1ace88a4ac0ec83ebfbf43eff2650c3bed6cae4898ae56cc59117c746de408dabc99ea37a590a12632c:internet_computer
undefined: 0 STX (181ops) (SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2 on 44'/5757'/0'/0/0) #0 js:2:stacks:02d8ff937901982551807aace226a5b1eae3d8c5c89d1eae39ccab9cd1d27a9739:
undefined: 13.8305 STX (184ops) (SP3WE1A84RCG3GWKRXYMXNRVQJ8PG3VDRKE7CMPM4 on 44'/5757'/1'/0/0) #1 js:2:stacks:03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229:
undefined: 4.11919 STX (144ops) (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: 31.2985 XLM (562ops) (GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC on 44'/148'/0') sep5#0 js:2:stellar:GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC:sep5
undefined: 1.5005 XLM (553ops) (GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ on 44'/148'/1') sep5#1 js:2:stellar:GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ:sep5
undefined: 1.5005 XLM (561ops) (GA4A2FH4YYI2RXPUC3NPGZQP7XX4CEJNREB27XVX7B7D5RIA3KOLSKTI on 44'/148'/2') sep5#2 js:2:stellar:GA4A2FH4YYI2RXPUC3NPGZQP7XX4CEJNREB27XVX7B7D5RIA3KOLSKTI:sep5
undefined: 16.115 XLM (536ops) (GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM on 44'/148'/3') sep5#3 js:2:stellar:GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM:sep5
undefined: 16.0659 XLM (493ops) (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: 8.03693 ALGO (435ops) (TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4 on 44'/283'/0'/0/0) #0 js:2:algorand:TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4:
undefined: 3.1 ALGO (428ops) (RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ on 44'/283'/1'/0/0) #1 js:2:algorand:RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ:
undefined: 6.21801 ALGO (445ops) (YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE on 44'/283'/2'/0/0) #2 js:2:algorand:YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE:
undefined: 3.64666 ALGO (482ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA:
undefined: 2 ALGO (395ops) (GEPEPFCOO7TRQ3HKU5IKQPARS7DDXDHH6Y2VNMUJWH7TMLLOZ3Z6JKRQAI on 44'/283'/4'/0/0) #4 js:2:algorand:GEPEPFCOO7TRQ3HKU5IKQPARS7DDXDHH6Y2VNMUJWH7TMLLOZ3Z6JKRQAI:
undefined: 0 ALGO (0ops) (X3TNYJCHUW6UBWVEN5K2ULWMLRWRGBEUWZLR4V2XR3UDN4TWNZP3Q6EAQU on 44'/283'/5'/0/0) #5 js:2:algorand:X3TNYJCHUW6UBWVEN5K2ULWMLRWRGBEUWZLR4V2XR3UDN4TWNZP3Q6EAQU:
undefined [native segwit]: 0 𝚝BTC (183ops) (tb1qqsk6rter25qfxful9dhzrtunyyaga2pvvv89vl on 84'/1'/0'/0/79) native_segwit#0 js:2:bitcoin_testnet:tpubDCgDNn312aj5XtrdMeA9TeQbp2HkMW2a1JNw2qhRLzUaFiDAAQK3Jzh6jzHpc6Agjn68mZgPQB2ZdQzfgRgXVXDi2FVECW7p4xGuK6Pa3b8:native_segwit
undefined [native segwit]: 0 𝚝BTC (156ops) (tb1qrlys0xw3ze6yrdg0l65fhavw75sjp8w4x6epe4 on 84'/1'/1'/0/77) native_segwit#1 js:2:bitcoin_testnet:tpubDCgDNn312aj5YVQsroTmVAWSVMpx2PM7m4toPJsHUricGUh457AwMZK55f2uNVxYdKeW8qDZDngveqFFcsFTWW7eZFbnYerfsf5YAdxU3K8:native_segwit
undefined [native segwit]: 0 𝚝BTC (184ops) (tb1qy7czv898xljxfr0jyw0stp8nj2fksjlrkt0vdc on 84'/1'/2'/0/80) native_segwit#2 js:2:bitcoin_testnet:tpubDCgDNn312aj5d7zhhRFxoozQMEzDZFVWmJngmKcygstAZheV88CxrZ2KqFL8nsjZoeNKeqEHTSmjii11wcuYuchvGYqYuGTzveWepNUKPmE:native_segwit
undefined [native segwit]: 0 𝚝BTC (0ops) (tb1q6d99qx850zdfx4ch32mm3v3mc2g5mupusazw49 on 84'/1'/3'/0/0) native_segwit#3 js:2:bitcoin_testnet:tpubDCgDNn312aj5f2MgUfzseZjbXNj5ep7UH8ucWf9VvUbRC1oyUG7cjbGLoCRhc429i6pMcuMS9ZhGX2bTwnKipVSkhNak9fn2N6sVorY4FxW:native_segwit
undefined [taproot]: 0.00009319 𝚝BTC (183ops) (tb1phpf60ff7kk5t4s5hd36pr6e6jkv6uhl869gs642gmytd05tqe0as2s58w7 on 86'/1'/0'/0/86) taproot#0 js:2:bitcoin_testnet:tpubDD1s2jBEVuSpzKea6ie3HMCmkanzcfvc9BbQq8nRDUaAUJPGFi83RWFCNMartYsuxksbFR6tDmVGMaaRP7ng7uovwKT1WNjcuDW34st9R56:taproot
undefined [taproot]: 0.0006 𝚝BTC (171ops) (tb1pmyh8crjlk5qy8qn0yk2u5ggr9jqqnmll4vtn894werm4tavd5ftqnzcn0a on 86'/1'/1'/0/77) taproot#1 js:2:bitcoin_testnet:tpubDD1s2jBEVuSq13eMrn3r2tnwxfuWeBM94Dgtc4D5A6h1Jcx2kheLSgGtZroZCwFnXN4ao5PxViYSFTK57vRZnQ1RS193EETKNMmRuPTcWJH:taproot
undefined [taproot]: 0 𝚝BTC (0ops) (tb1p7t4hdtqlmpfv4vpu2vqre6elaywjvlq5yfl4jnjz9gw7lwcpjl5svzk5yz on 86'/1'/2'/0/0) taproot#2 js:2:bitcoin_testnet:tpubDD1s2jBEVuSq4ewqyyWoJYgCyvXsQ3wRkeSmKa3RW3b4BL2rfdDWzwM2WoefQcPGjetH92smctVjK4qrS89zYShy399s8MqWzhZdnCvHLfF:taproot
undefined [segwit]: 0.00015 𝚝BTC (156ops) (2N3WJiFfMhLVg8Fd1bCcwGCH3JygLhHN6U8 on 49'/1'/0'/0/76) segwit#0 js:2:bitcoin_testnet:tpubDCoPNx9aypg8jXFPWWYdpHS3MtXF5GPM3nY2UbvQSnEt8PELHAbnf2MknjprAMTYUYPNJzKCr2XSBVMp2wctdKbU1jw9MHA9cbgN7CakJQe:segwit
undefined [segwit]: 0.00021266 𝚝BTC (141ops) (2MzVC116JFYi2C3gxDJ1RnsdqAJeFVgNFHu on 49'/1'/1'/0/64) segwit#1 js:2:bitcoin_testnet:tpubDCoPNx9aypg8mbeNfcfUjuUfsXwrSmZkRseMwRxkhinEX8JjfThyhtJg6HeVWp6mF8gf6m37xqC4Q9yebR5RdtdjFcJ1Js7t8VB8Dq8Nczj:segwit
undefined [segwit]: 0 𝚝BTC (0ops) (2Mys6yQgQV1gdVTPECM5xvhUuNsiqtwSTm7 on 49'/1'/2'/0/0) segwit#2 js:2:bitcoin_testnet:tpubDCoPNx9aypg8pnB9z8yPPo7WEEeu9H1VPzq185ppKSLXDpdvXWkR75auxm6pkL6PdyRNLckMzYbZwiUui7hxFSsK5S5YHXT7pyfiG1eR9JQ:segwit
undefined [legacy]: 0.00046673 𝚝BTC (142ops) (mp25g3AMZDZ5sNNnxaquBsdz4pVqiBVqeR on 44'/1'/0'/0/86) #0 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBsPABuHGzrXmApLgBRomQx7oFzQeuQn8gpzD27asWNYMeBzanzy4ru9hPE5q1HnQJCW2VcWm2Nz4cdNRB8Eo9xKPz6LGnrxQ:
undefined [legacy]: 0.00040818 𝚝BTC (107ops) (n2dUAxPre9KjeUTnAYPmyJb2jUj3wXLqLP on 44'/1'/1'/0/83) #1 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBv5wFZcFYEhephnhXGjF8gKZJ98kGxYvtiv8xdfNVgFgGAFZFCRXwR8td9Nq8nufwfXB1iX75Ypx99d1NktaeLNc4DxmrTng:
undefined [legacy]: 0 𝚝BTC (0ops) (n2pjyyrHHws2nhUT5vULWWYvVvKdQ6itHW on 44'/1'/2'/0/0) #2 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBxB9KbDNQ4KwPmSA6cftnyvQYTQWDgApMdz2Z3YrEMvJVe7ZXz3turDky7qbyk5WJBf2FS9xk4XacpPw8tND5mkkFZRpK1im:
undefined: 0.0306321 BCH (633ops) (qpr34qztx5jrhktw9jxcsc28eq7tkhk3hqdj9km9lj on 44'/145'/0'/0/318) #0 js:2:bitcoin_cash:xpub6CYDTh442n9QYTMdQ7Uc7XDC2zCzZ5jM1m1DrWxmfQMToP2ngWZVtptKiksRoGgdcRSLDC6PgEULihbZE3SDt4ndVzoRNUEoZeTCsBUAWWP:
undefined: 0.00403028 BCH (604ops) (qqrcg7g4hwrj5f3tcldutq2jh257fs5gagf2p0jwqt on 44'/145'/1'/0/308) #1 js:2:bitcoin_cash:xpub6CYDTh442n9QaLF3Z2i5L9QENTixN9kGH5XCYh2J5UTHuu99Y2W1sxm2HcX9sQUe2xmv4r3GVmn8GdTvCsLEof448VdZEmdpfmzX7Dk3AJx:
undefined: 0.00649047 BCH (565ops) (qqhmdps72fk980qqhps9gtep5phhwcj39c6kyrpgsg on 44'/145'/2'/0/279) #2 js:2:bitcoin_cash:xpub6CYDTh442n9QdmbZ2RXVmndx8Hv2cFDKjhzANqnPkFjpcqaztmjEdhB9wiiYxJFncp8Et32XZF2YvsC6sXmDRFGEwgjVzQDinZ2xmgZuyb9:
undefined: 0 BCH (563ops) (bitcoincash:qpr2qdklkltmpmatdn9wzprgm5urjlwys5g4545llj on 44'/145'/3'/0/275) #3 js:2:bitcoin_cash:xpub6CYDTh442n9QftkdDJbR3GXhop6xxjkHdxgz9xcKkdq8Q7xF9ER8NXJicVwjXbnkBdbF7nc52wrAVhGoraVfQcsGCA2JwjWurCZQU6pNyHH:
undefined: 0.0003 BCH (534ops) (qzqt23cjkmfskgdc23vmejxah6442tcjwvmvchuadp on 44'/145'/4'/0/251) #4 js:2:bitcoin_cash:xpub6CYDTh442n9QiWxQaeXpmh16DkgpNqufRUMcj6rDqW2gF9Ronnvv9okteP6YQHZGYEojUXg8LL3kfrJzWHrfLFKKarvBgZBtSBRgqcX6w1G:
undefined: 0.00581487 BCH (532ops) (qz9t8lx9v30ml7xzce0v6lydgwuefhg6zyxx527gzp on 44'/145'/5'/0/283) #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.122541 BTG (671ops) (ASdmmzHxTCmbcHAqvW9qSVDAUgG3rUGGmZ on 49'/156'/0'/0/327) segwit#0 js:2:bitcoin_gold:xpub6DHWENEKDQW8XxvbwvAFdCTGgzmHJkx8eY8bdGrL6iLmiqmPmCEscEvf7MBSDtbZWuLcUeQP9j87rJSgMhtwpUj3JSnQDoGHG2aqRVaSn43:segwit
undefined [segwit]: 0.146777 BTG (640ops) (AMVkkufHLp1pNnkyB3jVEVsZtD4CN9ab9f on 49'/156'/1'/0/312) 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.115024 BTG (670ops) (GRTM2WoWdXz2tQAPtT7xnwVQW9KMFx1uKn on 44'/156'/0'/0/332) #0 js:2:bitcoin_gold:xpub6Cq1sXPAA8ijyqJpdR5hDVYJ7XyunpPgVpCWwPtReGJDwhqnWxBhu7wBJjbtdWHXSQiSyNDhxDXF4GmrXGatK4yDASHE3CgS3tsT41T81Dj:
undefined [legacy]: 0.00577606 BTG (654ops) (GNxm7LJg4boTty8rzWYqq4G8JxZb3LNjA1 on 44'/156'/1'/0/345) #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.00384231 DASH (493ops) (XjDoDaSUXAR8qWevGZjcp5MEQRdBrKeMJ1 on 44'/5'/0'/0/245) #0 js:2:dash:drkvjS8m2iwuqAXaxEBNS8ULFEKfoEEVNrSyzsEwioinaxb7TZ6fmP7rB3YiU3xcEoM39WoeDJdTS5sgVHQAeowB9BhdxkvDZhJErQk8AWTyaYk:
undefined: 0.00785004 DASH (467ops) (XnyaDe1i7LbgSi3XLUFTJ23dZAJFVECZR4 on 44'/5'/1'/0/215) #1 js:2:dash:drkvjS8m2iwuqAXayHufe3hHCwpvgLyxxGhMAiCSW4kjQ2jC6FKcYKqC2ePkovCh93HAt2AgXQSt4YdJG3XX1raRMbHwwJz6ezKi4yotkX7mjwb:
undefined: 0.0172127 DASH (498ops) (XwaVUet9hKMDZdUok7G8rRkWD83cQZDpvP on 44'/5'/2'/0/249) #2 js:2:dash:drkvjS8m2iwuqAXb2YSrc4u7qMoaf3UtCbF5A1gphQy6soFEDH7sHmvfZiAEzFse5Q3ycaoq6Su8iitWgNoxRriwzitNTWcwBkXrAdaf2xNXuo4:
undefined: 0.0278474 DASH (464ops) (XvkdWNne2aqApe826RWcPcBQHD8jbCfuyC on 44'/5'/3'/0/233) #3 js:2:dash:drkvjS8m2iwuqAXb4LDphtncxj3UdVEACR5JCjoccMjdxfEkEhu7oB1vpZFyajdUEhapJgwi7uUq24ys47gm3VNj4vRQbVcV5YQkrGCpUyd7hDS:
undefined: 0.0183409 DASH (449ops) (XmSgefwQPRLKhoh6RqWAh6jnAr6b36T12B on 44'/5'/4'/0/227) #4 js:2:dash:drkvjS8m2iwuqAXb7uLicFWmFdztLiHpa6PM7iTRQcYT9wX9vF565f9ZQ7ZrwYBKab7ctGrnUyyyn5zFBtBEazazVdBvneLkZ9bUjb83PMLEgpw:
undefined: 0.0326699 DASH (447ops) (XnACjuc5V6U43xbo68bz6DNq5C5auaunGz on 44'/5'/5'/0/236) #5 js:2:dash:drkvjS8m2iwuqAXbBAUgNiSVfsH5TurFQxb3bCTM84wuSY376sNUmXbTzLp6cPT8iLqD43n1GXTaHGAaemq8vEm2rwqu5bxtgemUp719HCTXW4S:
undefined: 0 DASH (0ops) (XiiyHQPZVuxXHnApv1XP2aNbz92zL8u6Hy on 44'/5'/6'/0/0) #6 js:2:dash:drkvjS8m2iwuqAXbCRvDwtZdhj7KX8KWD7NqtKJ3cmdPhKoAsfK26rcmmGGAoHdVCvsCgkkZMeyq9cxfExdrvJfzTXJFU8enhrj8pQ4vnTXXUh9:
undefined [native segwit]: 32.7187 DGB (638ops) (dgb1q3nccd6cl3ddu64s6jmfuwfwxqpaqx03wk6kd52 on 84'/20'/0'/0/305) native_segwit#0 js:2:digibyte:xpub6CW9KDgdnS4RwiFZjL1YpEbk1yYvD96EqiBXmq6xKRhe3rJJQaB78voA4DG2dJctnUeWZes6NhysTRpCmBgGxCCy39wcwRwSB4fx3Nd2AxP:native_segwit
undefined [native segwit]: 346.849 DGB (634ops) (dgb1q55rw4luh9rras8rhav5ljgy57x9h4nv5ygj7dw on 84'/20'/1'/0/311) 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]: 21.837 DGB (593ops) (SXrEuVFzhC4F4XgU6VWjs6zqKZr8DKuKYd on 49'/20'/0'/0/294) segwit#0 js:2:digibyte:xpub6CrEMM6LnNPxiDTZaMJwXTtYZXUQvvMwYb2Do892dbEYMrLEfFXZ8ygRrywE66brjMWbV948BJAbWGwV1oeyT7L57ZJykK8jVJ26UQiDVfp:segwit
undefined [segwit]: 22.7741 DGB (585ops) (STc8mDwpADT54GH2QkdkDu9wyREuFEGdhW on 49'/20'/1'/0/285) segwit#1 js:2:digibyte:xpub6CrEMM6LnNPxkr3nrjR8eEys5nHkysyjVHKAfpchrfj5Y2XEPRoiaSgAN7qtUwVxjaVZmGEnJjtRucoAf91u2W4kL8goUCZUKgGXPUgZkUY:segwit
undefined [segwit]: 0 DGB (0ops) (SZg5s18vy8EVLqNcMhvVi2TNYJeQf5crqK on 49'/20'/2'/0/0) segwit#2 js:2:digibyte:xpub6CrEMM6LnNPxmgxLuvQEz6U4j3FvXh7p8MgYFf1kA87Nm3zU6BTydBUdYrsyTF35zTbzPbDA3FudDtiaQjDs664TbtCyYaFni2GrJbk6oFr:segwit
undefined [legacy]: 19.656 DGB (610ops) (D672XvHP7SjTkMNMAiAEz1JMHJQbD9zTsY on 44'/20'/0'/0/303) #0 js:2:digibyte:xpub6Cv4emS7S9zviCwMrBM1LhC7EdKY6QgFZ7T46nwEqtmaJda4EPH7Jv19h8GfhAPNTztGNWBBxribdod3wcxXRDkLmzRBxUgyZWxMoYLDgCX:
undefined [legacy]: 0.1 DGB (586ops) (DHAChGyq81GvFmBntTh7u9G3v9h4xdczLQ on 44'/20'/1'/0/320) #1 js:2:digibyte:xpub6Cv4emS7S9zvmSxVKstTvb3QR4MYRMR1ySqUZbWc8A1vE2Y2BYw3FjLoxVtVYAeJjzR8PqEDDykAzGBUXsphL3xbgbzx6EtS2D8ikALFT52:
undefined [legacy]: 0 DGB (0ops) (DBWpWpZTMg31XMoamhZjKoSqahTVTG2qHi on 44'/20'/2'/0/0) #2 js:2:digibyte:xpub6Cv4emS7S9zvoT2jPveX3CwptyX75sUdfpgmx6DyVGme8QQit5WYE189GhbBJyPThotPBRdpQ5RaXNn8BCkmPNGCG1cirRswqvyvhhqgnAT:
undefined: 3.40329 DOGE (319ops) (DErywhANM2NfctPACWXX6rcemYF6L9gfAm on 44'/3'/0'/0/159) #0 js:2:dogecoin:dgub8sBmteCcuFFejUSqGNBcwXRVJ4ZH33Sx3vTJG1o8Q1XwFRNFgT8fAreoj59VMzuU6EJmVMW9gLc9XJSXuxBeSUEt2s2QjSbfYCKkyBvF3pz:
undefined: 1 DOGE (314ops) (DQma2PDh6kip8Fk1qaZpcKbvowcfUUBu4d on 44'/3'/1'/0/147) #1 js:2:dogecoin:dgub8sBmteCcuFFenEm7nyLHE2Zxt38inSEWx1bVAvWgAXbsHzuEHPaM4aP4J1oE2UWhoQ6cjN8rLEmuzqZHr9MyJvLE8zj527mdtweCgUBjuxj:
undefined: 4.78429 DOGE (318ops) (DC5M6tAeuBttcGVJpCuwW9DWHpymP23uQ6 on 44'/3'/2'/0/163) #2 js:2:dogecoin:dgub8sBmteCcuFFepPh2rZbmtt3RujGFHSLrQiT7cawEm8PpDRumeEWWM4tsKtqm4vUYtHSJZvsifqbKXgUMGN89Y29Kh6DMoq2JCEBPAE5BVK2:
undefined: 17.422 DOGE (326ops) (DFGxC7HyYcyey4hNj7ae2cQypBmXYdK4XM on 44'/3'/3'/0/165) #3 js:2:dogecoin:dgub8sBmteCcuFFer5KqAKz1JpoYNxNzLP5v2uStDCS6iMYMJz9qssa7cr4EeDGLuPaJ6VRGK6owP43wMFhgHtPXMe56ptKcVF7o5DqVf8mTMDz:
undefined: 0 DOGE (327ops) (D7vNJwVxC5V8eDGTWdoPon2VGQ24ogiNie on 44'/3'/4'/0/164) #4 js:2:dogecoin:dgub8sBmteCcuFFev32JBmBE5kkWA9Fz4LHryxURKDHBm8kXT2s5X3cM4eGnk5YDgbRj2cGny85CWZLtFuz4n6SNEff68ZFXZRfeMcKYjM4ZABa:
undefined: 1.72606 DOGE (258ops) (DETKnUD18BwVMmzC6i1jd92cXbAvMgpfbR on 44'/3'/5'/0/131) #5 js:2:dogecoin:dgub8sBmteCcuFFexZUo9SNmC2kEwPEUKxWo4VbEi5sZq9uAa3koQSeoUyxC5Z9XXqHq6hvYUYMvWL1iuVLnneqEfda8PdDDWPbvXggRGYDS2Yy:
undefined: 0 DOGE (0ops) (DNvgzFMvZG3k3o78cqn3y3YksWoSnC3uJ8 on 44'/3'/6'/0/0) #6 js:2:dogecoin:dgub8sBmteCcuFFf1Q45j57nYSbt99vo2P5iHSDdytuEPxtbcaRJrgTJCCJFx9AJhFHvyRNkQ8HxwQ61te2F8hhtChBWAL6RCDZEpbjvKGVRR3T:
undefined: 11.2571 KMD (463ops) (RT7yjo72rR1kYYGAWEsH6XBWSpSPZMP4cS on 44'/141'/2'/0/252) #2 js:2:komodo:v4PKUB9WZbMS4XNED8S4oAJzXQqPbfLCmNRNPW8QoETCA7opTJLFvrkm39QZAdLg8DygthREBvDRmrHDeVtEQ8C7iQDfXDSPTrzB2FAFkvgsQ9HA:
undefined: 19.6085 KMD (495ops) (RDkzJayYAfwwEuh9Efz44ds3w3giNzqbaa on 44'/141'/0'/0/247) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:
undefined: 17.8878 KMD (472ops) (RSM7VU5PbMQuStjd3nonUjAwzyvqhFUBvt on 44'/141'/1'/0/234) #1 js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:
undefined: 11.6393 KMD (432ops) (RJz9oKuLMrL18ufexTmm6TrQbRRvuHd2ws on 44'/141'/3'/0/242) #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.086796 LTC (627ops) (ltc1ql06jgn26ldu5dunmpspz345e7vw09hxz63pdfy on 84'/2'/0'/0/294) native_segwit#0 js:2:litecoin:Ltub2YLUoe8MGLizFvLnAHJhiz3rdWG8UXqi9A9smDbuwPD44WPa1rB1EwyQwzRiVFKGH4mS6b5DRE3c3S9jZ944uaGcRK2XPinZcbdmo3P2vmq:native_segwit
undefined [native segwit]: 0.0909516 LTC (580ops) (ltc1q9dted4gp69t596q3fmpx3qms6sn6wc272f9yam on 84'/2'/1'/0/280) 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.123779 LTC (619ops) (MFXGGPnJecA1Wn74XyW81NDtpFWXm6h85B on 49'/2'/0'/0/304) segwit#0 js:2:litecoin:Ltub2YDfX8FoxTFohkcgknuZr2WLrCNpq6ufHxguxyjoDWGDZ1GBUVSn5wwoD2ifjY13iERFGvauvW55p6ASVCbqiABnreHFCsV5LKps76aWDV3:segwit
undefined [segwit]: 0.00323623 LTC (585ops) (MUwDohrnUtBjW3ZoMMbf8Khpjwf86mT2g3 on 49'/2'/1'/0/298) 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.0182934 LTC (626ops) (LL5TfhqQMsF72H9cnrJohvJVzreEDQeefR on 44'/2'/0'/0/311) #0 js:2:litecoin:Ltub2YwXt3Fm1MVHeGxpcxFhFTe1FkqDdVoeRp9FRnnqGrinFxJSDjXwVTnmjK56jhq83mxWmTKprWjLXqspQCYtxJmCnwCLJUPoZhjJEYMtcFd:
undefined [legacy]: 0.0194056 LTC (560ops) (LQXmQ36Lq4rnSEM1Bu5q972qxpv4w7oSQZ on 44'/2'/1'/0/307) #1 js:2:litecoin:Ltub2YwXt3Fm1MVHgsz1XL8MM6MicGgumPzfpD1pZcsk15P4LZHiF4wpFPGvTi58u9evgMd4dV9K7cMMA532mq1HbEknZZ5UayUuRbSsM5VzptL:
undefined [legacy]: 0 LTC (0ops) (LiDx2poS1M1DwYU2zHuvKEQAAFUdpRgP59 on 44'/2'/2'/0/0) #2 js:2:litecoin:Ltub2YwXt3Fm1MVHgy4nREA2MxDT5Em3QsQv2Yu6gfGSPudxTKgcovLsh1sV3rje75uZ5eAkyJLkbHxPBFU3Wbhd2Q6XF863omV2XfWhsC2ACJ4:
undefined: 14.2102 PIVX (660ops) (DBUCQKwAB8mcnVaCS4sov4fwxZtuasGtX9 on 44'/77'/0'/0/316) #0 js:2:pivx:ToEA6mkkScBzPS3QGwz3pD9XiPf8YynSCGuC65sMGexuJ8oLkqEAZRAcR5VqKvRV5Phzid1ZG7myNKF6XtRBtVKT5JhgUpaKZtwAq3XzeH3Qnmz:
undefined: 0 PIVX (609ops) (DEKp3snbVvqu4UH14aF7vW8vzrA4jjb3ow on 44'/77'/1'/0/293) #1 js:2:pivx:ToEA6mkkScBzPS3QK9QkPuwWHUEA284HMW86PxW1zkXJAAJa9zXWJjVwBvYEt5HTwDHyDpyfC2VRj3Sy9MBegtxX3kBM1dyiPx81KcwoA8DT75c:
undefined: 5.21138 PIVX (618ops) (DSbREG8YN68vgwN5oq4h8e5s7Ep5xwmKWw on 44'/77'/2'/0/322) #2 js:2:pivx:ToEA6mkkScBzPS3QNaWms316jJrjhxFoXsKpv21fDZnZUqeqnX1FpofXYA3ARA7qSEHn2wmdd7EPMM1qJ36CiFP3Ycu6p4EMHKYgV49aAFQYdwt:
undefined: 27.2044 PIVX (652ops) (DS3imBHq6DzdevKeYD3FbJdm4XxfuBJ6gR on 44'/77'/3'/0/336) #3 js:2:pivx:ToEA6mkkScBzPS3QRXKa6QiRvZKUYefypt8wZupR6GaqD77SPLwzgmraaKbGgcirVLLXkQ6XjZJcGhoLRL2xP5ZBVjD5TUz6ZY6WkgXBpJW5rNU:
undefined: 0 PIVX (0ops) (DGvVBqdtcbSTuXgf6JjAxG5a8MSRXk76Tw on 44'/77'/4'/0/0) #4 js:2:pivx:ToEA6mkkScBzPS3QS97WZjaF1BidcB1ywJUVPvH1UAbz9BzZ1U8Uzo3zVwrmNHH18cJiwpjFEUnvCu5hqTQs5df1A7f1vBttM65ReXpJhxvKtvh:
undefined [segwit]: 2.74303 VTC (588ops) (39d8sF2SHTMbKnDci4Q46ACQtYdwTHxBHi on 49'/28'/0'/0/273) segwit#0 js:2:vertcoin:xpub6BzrB2TZiXxTtjegub5eT5QAmDtrDVNDnwj8eJJgBqgbLwXxsRQgQQoP5eCaHNyvLxFXkB2doyxytbGkUvoQtepWayC3hWgoL7DbwshW4yS:segwit
undefined [segwit]: 8.38449 VTC (609ops) (3J334QfATY5gocZDF1L87EicDYKvsxrrxe on 49'/28'/1'/0/303) 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]: 18.0351 VTC (612ops) (VgrtcGh5ozZyocJsQHydwrZDtT4UtTvASR on 44'/28'/0'/0/324) #0 js:2:vertcoin:xpub6D9ewWZRDVHmnJbjdoaFbC54UhW6iZ4k2n9tLiTPJsqp7x16bAdkGhK7yy7cnvegoJz5HwBGcoQpSv1Mp6oTDYDgHd2RPHennaNsQuBuaXR:
undefined [legacy]: 0 VTC (569ops) (VvqnPEdD4kemdq8irXcvhtDFpSuzd1ASoK on 44'/28'/1'/0/286) #1 js:2:vertcoin:xpub6D9ewWZRDVHmoTUYA4SfZTKVP9QvkovJmZ5bPbj12dgZEUb6DtS76PP144mkfCfBDsXvEFsEN7hsrbdvBA34mg78owvpVXQAuQRKmggGvGF:
undefined [legacy]: 0 VTC (0ops) (VgM8spUbqP3r1qdnswXaSrqGeMVnERAuuV on 44'/28'/2'/0/0) #2 js:2:vertcoin:xpub6D9ewWZRDVHmtBmAgSQ2HSyfeZs9ebe5iYurVh2rBbpHRpQX52u3iZPqChjvoPYUmMD1jpGeNqVCkXEridcr92DTEFhngPjieTtiPjJGGEA:
undefined [segwit]: 30.9184 VIA (577ops) (EKxSNTUWWLQ46NEvECuPAmv1LEW2D6MufD on 49'/14'/0'/0/272) segwit#0 js:2:viacoin:xpub6BnHRZZc2q3Bq7c8LWrKVaek5cChKLozvgLvD4uS52XX9qvVv1AfXtGnQqs7z1fy58DCXc7333iznM3enL4y3gAjx9bbJAhEd3f9Bf8FMAL:segwit
undefined [segwit]: 6.12058 VIA (593ops) (EMRjZTnBjZ1jSpiUqurciSpfUiqes7Vw4N on 49'/14'/1'/0/292) 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]: 2.88477 VIA (541ops) (VobFUx4NSErWDHBjheKHq9HxcUpwHRd435 on 44'/14'/0'/0/275) #0 js:2:viacoin:xpub6BqwJGyyRny96T4yirVKJ3iqL3dznXfrtohfLE5AgKButrt9PHen5v2yACKPuMZg53z5vmYkFh7NQeXotr714kgNUuuBD7HHpuZcfQpqtVB:
undefined [legacy]: 0.752916 VIA (574ops) (VsBjLeQAW28iHCyHUvNGf3qBiVKm87itcz on 44'/14'/1'/0/303) #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.0803151 ZEN (494ops) (znc25Kqjvpy65kYRCTzeun4jpFpomQ6EBGw on 44'/121'/0'/0/232) #0 js:2:zencash:xpub6C68jAb8xasfmbmg37N3W5TsYWdTb6xLCtjwz5oSVAdi6Jxzx6FeBQcQazySrCXnsGZKaT9MXB9i4Lny4AoFAVZtSy6kVExyheF7X5Msvu3:
undefined: 0.211824 ZEN (480ops) (znYSbLWchL1jfD7D48atjqnqTnjwkiW71kS on 44'/121'/1'/0/230) #1 js:2:zencash:xpub6C68jAb8xasfrBmUVvZbdXydhq15bdfePn1qhjb32azt3GkzoqBCQuRaZKPYp9T9uhr7TYCANdXanzeXfXp4qMjw7ijiPPNbBKmGRZRFeoa:
undefined: 0.00066412 ZEN (482ops) (zniZsBg7kovtpnwbedZWqwtzMqctJG2qhzA on 44'/121'/2'/0/251) #2 js:2:zencash:xpub6C68jAb8xasfsZCbDtbqPTydFZEHjfzFP75ZQyizidPdLPHNbf41HqQq8RiHMJNuXx71D15Uv9yVpxHkxicSAzKCPVqi1gCKkJTdCN6MK7Q:
undefined: 0.12813 ZEN (484ops) (zne8yxUsDDKcU9WwFvMNn7MLGgzbnJU4jdW on 44'/121'/3'/0/255) #3 js:2:zencash:xpub6C68jAb8xasfwaE1WeCTh2JhK4KMh64oUaNn2MJCpVdjBmV7cdLhW8xqAfrb8eerM3wtiwMg9sMZkjA62QMH1rMDNbr97uLKNZohEX7c1cq:
undefined: 0 ZEN (0ops) (znm8ELZShHo5gm7aQjcd3qbxT7UF8Mnzyr2 on 44'/121'/4'/0/0) #4 js:2:zencash:xpub6C68jAb8xasfwknWxgLgizrHgqJko7RdnamzFS3DzoKUaA5721xs1HE23NHHqq6LcvmKf43ncaSsz3cEZZpmCrgfK1GhrmDNHkvKfyqpZHF:
undefined: 0.0476209 ETC (159ops) (0x7584df0780C5eB83b26aE55abBc265014f8bf897 on 44'/61'/0'/0/0) #0 js:2:ethereum_classic:0x7584df0780C5eB83b26aE55abBc265014f8bf897:
undefined: 0.0475957 ETC (142ops) (0x62ab4485f7EC0a291540dA31b82BE881166cD786 on 44'/61'/1'/0/0) #1 js:2:ethereum_classic:0x62ab4485f7EC0a291540dA31b82BE881166cD786:
undefined: 0.0476114 ETC (113ops) (0x0b248ABea3Ee9e94C03bc85c37516D16C909875c on 44'/61'/2'/0/0) #2 js:2:ethereum_classic:0x0b248ABea3Ee9e94C03bc85c37516D16C909875c:
undefined: 0.0420533 ETC (140ops) (0x01530f90685821747Eab008Fc217a2411AA6433C on 44'/61'/3'/0/0) #3 js:2:ethereum_classic:0x01530f90685821747Eab008Fc217a2411AA6433C:
undefined: 0.0475946 ETC (131ops) (0xD5fa1a3014A6a24f2C17E532713eb51500AD2bE8 on 44'/61'/4'/0/0) #4 js:2:ethereum_classic:0xD5fa1a3014A6a24f2C17E532713eb51500AD2bE8:
undefined: 0 ETC (0ops) (0x234D2443790764a622430213B6eCcA33272ca575 on 44'/61'/5'/0/0) #5 js:2:ethereum_classic:0x234D2443790764a622430213B6eCcA33272ca575:
undefined: 0 MATIC (351ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:polygon:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00338563 MATIC (314ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:polygon:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0514649 MATIC (311ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:polygon:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0 MATIC (343ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:polygon:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.0509503 MATIC (298ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:polygon:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0.258712 MATIC (257ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:polygon:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.447913 MATIC (189ops) (0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E on 44'/60'/6'/0/0) #6 js:2:polygon:0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E:
undefined: 1.16772 MATIC (181ops) (0x48ec5fC762B9300e3B5e04E8ca634165240A1B15 on 44'/60'/7'/0/0) #7 js:2:polygon:0x48ec5fC762B9300e3B5e04E8ca634165240A1B15:
undefined: 16.8981 MATIC (176ops) (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.0024538 𝚝ETH (139ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00432734 𝚝ETH (171ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00001207 𝚝ETH (159ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:ethereum_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00150944 𝚝ETH (140ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.0000023 𝚝ETH (126ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:ethereum_sepolia:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:ethereum_sepolia:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00885221 𝚝ETH (156ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_holesky:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00001512 𝚝ETH (161ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_holesky:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.002936 𝚝ETH (166ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:ethereum_holesky:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0352218 𝚝ETH (137ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_holesky:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.187425 𝚝ETH (89ops) (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.00011441 ETH (57ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00158462 ETH (61ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00144777 ETH (48ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0007835 ETH (46ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00170183 ETH (38ops) (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.10301 𝚝ETH (103ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0629997 𝚝ETH (116ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00003395 𝚝ETH (120ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0401187 𝚝ETH (96ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.784818 𝚝ETH (54ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:arbitrum_sepolia:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:arbitrum_sepolia:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.793924 FLR (486ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:flare:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.804325 FLR (543ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:flare:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.800893 FLR (492ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:flare:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.796164 FLR (535ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:flare:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.804751 FLR (102ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:flare:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 FLR (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:flare:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.000525 SGB (590ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:songbird:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 35.0725 SGB (577ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:songbird:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 234.317 SGB (602ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:songbird:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 35.0742 SGB (563ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:songbird:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 632.806 SGB (150ops) (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: 13.0135 GLMR (559ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonbeam:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 33.6696 GLMR (555ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonbeam:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 6.49857 GLMR (493ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonbeam:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 6.50673 GLMR (541ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonbeam:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.002625 GLMR (141ops) (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 (484ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:bittorrent:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 222,323 BTT (515ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:bittorrent:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0 BTT (512ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:bittorrent:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 35,915.2 BTT (437ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:bittorrent:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 1,233,155 BTT (156ops) (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: 0 EWT (389ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:energy_web:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 6.23328 EWT (439ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:energy_web:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.586928 EWT (437ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:energy_web:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0 EWT (441ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:energy_web:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.708273 EWT (156ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:energy_web:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 EWT (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:energy_web:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 41.0207 ASTR (500ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:astar:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.012275 ASTR (501ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:astar:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 41.0664 ASTR (485ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:astar:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 41.0537 ASTR (418ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:astar:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 205.031 ASTR (126ops) (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 METIS (455ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:metis:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0704204 METIS (422ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:metis:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0103706 METIS (464ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:metis:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0321262 METIS (455ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:metis:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.0382942 METIS (160ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:metis:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 METIS (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:metis:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 1.11824 MOVR (420ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonriver:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00002625 MOVR (459ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonriver:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00002625 MOVR (478ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonriver:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00002625 MOVR (429ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonriver:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 1.11835 MOVR (144ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:moonriver:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 MOVR (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:moonriver:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0 VLX (101ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:velas_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 VLX (100ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:velas_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 456.008 VLX (102ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:velas_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 57.001 VLX (101ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:velas_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 399.007 VLX (102ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:velas_evm:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 VLX (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:velas_evm:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0 SYS (448ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:syscoin:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 1.49039 SYS (477ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:syscoin:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 1.4903 SYS (487ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:syscoin:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 29.072 SYS (418ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:syscoin:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 12.512 SYS (143ops) (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.014624 𝚝ETH (107ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:base_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.100889 𝚝ETH (108ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:base_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0862651 𝚝ETH (91ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:base_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.788301 𝚝ETH (73ops) (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: 0.802235 KLAY (45ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:klaytn:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 2.70741 KLAY (43ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:klaytn:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 1.65381 KLAY (44ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:klaytn:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 2.00759 KLAY (37ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:klaytn:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 1.65621 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: 5.96165 NEON (199ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:neon_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 1.01053 NEON (208ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:neon_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 7.57697 NEON (195ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:neon_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0073083 NEON (204ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:neon_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 1.62807 NEON (182ops) (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.00572371 LYX (153ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:lukso:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00001576 LYX (209ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:lukso:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.362537 LYX (190ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:lukso:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.122714 LYX (189ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:lukso:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00001305 LYX (142ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:lukso:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 LYX (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:lukso:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00067211 ETH (106ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:linea:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 ETH (117ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:linea:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0023814 ETH (145ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:linea:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00190167 ETH (119ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:linea:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00190466 ETH (106ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:linea:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:linea:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:linea_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:scroll:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:scroll_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.444537 NEAR (66ops) (0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf on 44'/397'/0'/0'/0') nearbip44h#0 js:2:near:0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf:nearbip44h
undefined: 0.0519615 NEAR (20ops) (85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798 on 44'/397'/0'/0'/1') nearbip44h#1 js:2:near:85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798:nearbip44h
undefined: 0.0520229 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.0520868 NEAR (22ops) (aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93 on 44'/397'/0'/0'/4') nearbip44h#4 js:2:near:aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93:nearbip44h
undefined: 0.0524966 NEAR (32ops) (07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce on 44'/397'/0'/0'/5') nearbip44h#5 js:2:near:07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce:nearbip44h
undefined: 0.0519883 NEAR (18ops) (bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7 on 44'/397'/0'/0'/6') nearbip44h#6 js:2:near:bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7:nearbip44h
undefined: 0.445089 NEAR (9ops) (e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2 on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2:nearbip44h
undefined: 0.0521183 NEAR (13ops) (f6c2b6371dd3f335422ea179661698a1e0db6b9cc890e7fe43b669c9f7f16f43 on 44'/397'/0'/0'/8') nearbip44h#8 js:2:near:f6c2b6371dd3f335422ea179661698a1e0db6b9cc890e7fe43b669c9f7f16f43:nearbip44h
undefined: 0 NEAR (0ops) (fe690bacc672f4ac406416f197571c8e520523112949394d18fc137871f13c2f on 44'/397'/0'/0'/9') nearbip44h#9 js:2:near:fe690bacc672f4ac406416f197571c8e520523112949394d18fc137871f13c2f:nearbip44h
undefined: 0 NEAR (0ops) (18e7e0394281c32f1247969729a703866d69008f8845a89f746da3e75970518f on 44'/397'/0'/0'/10') nearbip44h#10 js:2:near:18e7e0394281c32f1247969729a703866d69008f8845a89f746da3e75970518f:nearbip44h
undefined: 5.28869 XTZ (152ops) (tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF on 44'/1729'/0'/0') tezbox#0 js:2:tezos:0240051fc51799e60dcc8870415b87fc4fd948e71b23fdc0d9b8ac7438cf7d4708:tezbox
undefined: 0 XTZ (4ops) (tz1he4fPXP3c9fFrztYT3k7KyYuLb28arFNn on 44'/1729'/1'/0') tezbox#1 js:2:tezos:02fe3d777af5380ef0a431c4985772c9669743050cee5feff717c3c3272d7a2810:tezbox
undefined: 0 XTZ (0ops) (tz1SApkt3kmMaqNE1qtgADc6m3B49HZkFVDA on 44'/1729'/2'/0') tezbox#2 js:2:tezos:029d7bcf10737806147b22ba4578747ce4ac53e26b443c9eb1ac0e4d5bfbb8f67e:tezbox
undefined: 10.9057 XRP (201ops) (r9etPtq3oboweMPju5gdYufmvwhH2euz8z on 44'/144'/0'/0/0) #0 js:2:ripple:r9etPtq3oboweMPju5gdYufmvwhH2euz8z:
undefined: 11.2617 XRP (204ops) (rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH on 44'/144'/1'/0/0) #1 js:2:ripple:rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH:
undefined: 21.8374 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 ⏲ 43min 9s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 10.6s 29min 24s 25.6s 2min 10s 14min 38s 89.5s 83min 58s 32min 47s
Casper (7) 0.33ms 30.2s 3.27ms 7ms N/A N/A N/A N/A
Celo (11) 1041ms 45.7s 5.2s 6.8s 23.1s 27.8s 1min 48s N/A
osmosis (17) 263ms 20.7s 31ms 2264ms 29.3s 329ms 51.8s 31.2s
desmos (17) 335ms 21s 39ms 1837ms 31.1s 737ms 4.36ms N/A
dydx (17) 624ms 41.2s 4.70ms N/A N/A N/A N/A N/A
umee (17) 245ms 22.8s 26ms 2522ms 36.2s 423ms 1.40ms N/A
persistence (17) 1913ms 71.1s 15ms 12.3s 35s 2209ms 1.69ms N/A
quicksilver (17) 449ms 39.2s 27ms 2331ms 41.2s 374ms 2.15ms N/A
onomy (17) 1175ms 45.2s 11ms 6.5s 41.7s 1151ms 2.01ms N/A
sei_network (15) 321ms 22.1s 3.77ms N/A N/A N/A N/A N/A
stargaze (17) 211ms 16.2s 20ms 2059ms 31.3s 332ms 1.38ms N/A
coreum (17) 288ms 31.4s 13ms 1194ms 18.6s 336ms 1.05ms N/A
injective (0) 216ms N/A N/A N/A N/A N/A N/A N/A
Crypto org (6) 0.68ms 26.3s 1.41ms 3.39ms N/A N/A N/A N/A
Elrond (7) 359ms 56.3s 2776ms 27ms 16.1s 559ms 26.1s 22.6s
Hedera (5) 0.41ms 29.8s 339ms 733ms 24.7s 2269ms 41.4s 31.3s
InternetComputer (7) 0.39ms 7.8s 45ms 3.3s 7.6s 1091ms 21.8s 21.7s
Stacks (3) 0.37ms 19s 3.5s 4.7s 7.8s 564ms 40min 47s N/A
Stellar (5) 0.65ms 95.7s 2032ms 4s 28.7s 27.1s 32.4s N/A
VeChain VTHO (3) 0.70ms 9.2s 0.67ms 1323ms N/A N/A N/A N/A
VeChain VET (3) 0.17ms 7.3s 0.54ms N/A N/A N/A N/A N/A
Algorand (5) 2.45ms 70.9s 13ms 2029ms 48.8s 456ms 30.7s 30.7s
Bitcoin Testnet (9) 1.64ms 55.4s 55ms N/A N/A N/A N/A N/A
Bitcoin Cash (6) 0.29ms 30.3s 24ms 787ms 33.1s 427ms 46.1s 45.1s
Bitcoin Gold (4) 0.34ms 23.6s 26ms 539ms 19.5s 321ms 34.6s 33.8s
Dash (6) 0.56ms 21.1s 1.94ms 1025ms 32.2s 506ms 56.1s 66.4s
Digibyte (6) 0.21ms 25.8s 20ms 734ms 35.2s 354ms 55.8s 48.4s
DogeCoin (6) 0.15ms 15.5s 10ms 667ms 26s 399ms 42.9s 43.1s
Komodo (4) 0.28ms 18.7s 8.9s 1124ms 27.9s N/A N/A N/A
Litecoin (6) 0.27ms 16.7s 11ms 986ms 24.5s 517ms 55.9s 55.6s
Peercoin (0) 0.22ms N/A N/A N/A N/A N/A N/A N/A
PivX (4) 0.15ms 16.5s 15ms 904ms 19.2s 681ms 51.5s 49.2s
Vertcoin (4) 0.15ms 23.2s 3.25ms 748ms 17.1s 268ms 59.1s 39.8s
Viacoin (4) 0.20ms 19.9s 8ms 884ms 16.8s 273ms 39.5s 40.7s
ZCash (4) 0.19ms 7.8s 1.01ms N/A N/A N/A N/A N/A
Horizen (4) 0.19ms 10.6s 14ms 410ms 9.8s 188ms 21.8s 22.2s
Ethereum Classic (5) 66ms 15.1s 6ms N/A N/A N/A N/A N/A
Polygon (9) 118ms 19.6s 46ms 4.4s 11.9s 460ms 32.3s 30.6s
Ethereum Sepolia (5) 69ms 8.2s 12ms 5.1s 11.9s 407ms 61.4s 31.4s
Ethereum Holesky (5) 30ms 6.8s 21ms 3.4s 9.4s 540ms 1min 51s 30.7s
Arbitrum (5) 63ms 89.3s 13ms 4.2s 9.1s 1937ms 62.9s 58.1s
Arbitrum Sepolia (5) 56ms 8.4s 6ms 4s 13s 1515ms 32.1s 32.1s
Flare (5) 42ms 6.2s 1.16ms N/A N/A N/A N/A N/A
Songbird (5) 23ms 7.5s 8ms 1720ms 10.3s 414ms 31.7s 31.5s
Moonbeam (5) 49ms 96s 23ms 1410ms 10.7s 466ms 1min 54s 63.6s
RSK (4) 72ms 6.6s 0.98ms N/A N/A N/A N/A N/A
Bittorent Chain (5) 40ms 6.9s 8ms 1528ms 9.9s 459ms 32.3s 32.3s
OP Mainnet (4) 71ms 77.9s 1.63ms N/A N/A N/A N/A N/A
OP Sepolia (0) 43ms 1653ms N/A N/A N/A N/A N/A N/A
Energy Web (5) 56ms 6.5s 23ms 3.9s 11s 1222ms 33s 32.1s
Astar (5) 47ms 8.7s 35ms 4.8s 13.9s 1362ms 4min 27s 34.5s
Metis (5) 54ms 10.2s 16ms 737ms 8.8s 1175ms 54.4s 35.4s
Moonriver (5) 29ms 93.4s 14ms 783ms 5.7s 244ms 75.7s 44.1s
Velas EVM (5) 46ms 5.8s 13ms 1682ms 9.6s 3.9s 71.9s 32s
Syscoin (5) 57ms 6.7s 927ms 984ms 8.7s 316ms 3min 1s 7min 7s
Polygon zkEVM Testnet (0) 50ms N/A N/A N/A N/A N/A N/A N/A
Base (4) 56ms 67.2s 0.95ms N/A N/A N/A N/A N/A
Base Sepolia (5) 52ms 6.8s 28ms 2879ms 9.5s 742ms 31.8s 32s
Klaytn (5) 49ms 14.3s 9ms 7s 9.4s 2001ms 33.9s 33.9s
Neon EVM (5) 48ms 11.1s 2.31ms 3.5s 6.9s 1142ms 7min 33s 22.9s
Lukso (5) 29ms 3.3s 14ms 375ms 6.2s 169ms 50.5s 20.6s
Linea (5) 57ms 86.7s 15ms 3.4s 10.2s 1021ms 62.9s 57.9s
Linea Sepolia (0) 34ms 12.1s N/A N/A N/A N/A N/A N/A
Blast (0) 63ms 11.6s N/A N/A N/A N/A N/A N/A
Blast Sepolia (0) 35ms 1703ms N/A N/A N/A N/A N/A N/A
Scroll (0) 54ms 1379ms N/A N/A N/A N/A N/A N/A
Scroll Sepolia (0) 50ms 7.7s N/A N/A N/A N/A N/A N/A
NEAR (9) 1213ms 30.1s 2.32ms 997ms N/A N/A N/A N/A
Solana (0) 129ms N/A N/A N/A N/A N/A N/A N/A
Tezos (2) 228ms 6.8s 0.70ms 1041ms N/A N/A N/A N/A
XRP (3) 0.38ms 7s 1225ms 9.1s 9.2s 254ms 22.3s 5min 2s

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

Please sign in to comment.