Skip to content

Commit

Permalink
feat: solana tokens support [LIVE-12069] (#8119)
Browse files Browse the repository at this point in the history
* feat: add serialization of TokenAccount extra fields [coin-framework]

* feat: add burn operation type

* feat: enable solana spl tokens import

* feat: finish solana tokens integration into bridge [coin-solana]

* chore: update solana bridge and speculos tests

* feat: display solana tokens in LLD

* feat: display solana tokens in LLM

* chore(LLC): add token account serialization test

* chore: add changeset

* fix(LLD, LLM): token summary and device screens

* fix: non existing param used for SPL Tokens

* fix: wrong chainId for spl tokens
Used the import:cal-tokens to update only spl data

* fix: lint issue on missing break

* chore: update bridge integration test snapshot for solana

* chore: update spl token snapshot

* feat: add solana testnet and devnet in supported currencies list

* fix: spl priority fees and transaction confirmation with blockHeight

* chore: add support links

* test: fix with solana testnet and devnet addition

* chore: remove comments from review comments

* fix: wallet-api spl usage

* fix: wallet-api spl token support

* test: fix test expectation

* test: fix wrong findTokenById call and param

* test: fix missing account type

* feat: add trusted name resolution for signTransaction

* feat: update warning message for LNS

* feat: clear sign SPL token address

* fix: add error handling for older app versions and unsupported device firmware versions

* chore: updated doc

* chore: remove unused semver dep

* fix: use cal token id for spl and contractAddress instead of manual split on id to get the mint address

* fix: replace chainId in spl data by network to get the currencyId from the CAL instead of static data in code

* feat: add better error for sol

* feat: LLM better error on send validate

* test: update sol common snapshot

* fix: update following review comments

* fix: specify public_key_id to get the correct pki certificate

* fix: error or warn if wrong spl address used

* fix: error messages and add a warning specific message

* test: skip broken frozen test

* fix(solana): lld display account if enough balance and display warning if not enough fund for sending token

Signed-off-by: Stéphane Prohaszka <[email protected]>

* fix: typecheck for new solana amount fields

Signed-off-by: Stéphane Prohaszka <[email protected]>

* fix: when sending token, consider spendable balance zero as noteoungbalance

Signed-off-by: Stéphane Prohaszka <[email protected]>

---------

Signed-off-by: Stéphane Prohaszka <[email protected]>
Co-authored-by: Mikhail <[email protected]>
Co-authored-by: Stéphane Prohaszka <[email protected]>
  • Loading branch information
3 people authored Jan 28, 2025
1 parent bca2b55 commit 41b153a
Show file tree
Hide file tree
Showing 84 changed files with 2,010 additions and 340 deletions.
11 changes: 11 additions & 0 deletions .changeset/honest-dingos-unite.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
"@ledgerhq/cryptoassets": minor
"@ledgerhq/types-live": minor
"@ledgerhq/coin-solana": minor
"ledger-live-desktop": minor
"live-mobile": minor
"@ledgerhq/live-common": minor
"@ledgerhq/coin-framework": minor
---

Solana spl tokens support
2 changes: 2 additions & 0 deletions apps/cli/src/live-common-setup-base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,8 @@ setSupportedCurrencies([
"hedera",
"cardano",
"solana",
"solana_testnet",
"solana_devnet",
"osmosis",
"fantom",
"moonbeam",
Expand Down
3 changes: 3 additions & 0 deletions apps/ledger-live-desktop/src/config/urls.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ export const supportLinkByTokenType = {
trc20: "https://support.ledger.com/article/360013062159-zd",
asa: "https://support.ledger.com/article/360015896040-zd",
nfts: "https://support.ledger.com/article/4404389453841-zd",
spl: "https://support.ledger.com/article/7723954701469-zd",
};

const errors: Record<string, string> = {
Expand Down Expand Up @@ -153,6 +154,8 @@ export const urls = {
},
solana: {
staking: "https://support.ledger.com/article/4731749170461-zd",
splTokenInfo:
"https://support.ledger.com/article/Verify-Solana-Address-from-Token-Account-Address",
recipient_info: "https://support.ledger.com",
ledgerByChorusOneTC: "https://chorus.one/tos",
ledgerByFigmentTC:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ setSupportedCurrencies([
"bsc",
"polkadot",
"solana",
"solana_testnet",
"solana_devnet",
"ripple",
"litecoin",
"polygon",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { ManagerNotEnoughSpaceError, UpdateYourApp } from "@ledgerhq/errors";
import { LatestFirmwareVersionRequired, OutdatedApp } from "@ledgerhq/live-common/errors";
import { useTranslation } from "react-i18next";
import { renderError } from "~/renderer/components/DeviceAction/rendering";

Expand All @@ -22,7 +24,25 @@ const ErrorDisplay = ({
}: ErrorDisplayProps) => {
const { t } = useTranslation();

return renderError({ t, error, onRetry, withExportLogs, list, supportLink, warning, Icon });
const managerAppName =
error instanceof ManagerNotEnoughSpaceError ||
(error as unknown) instanceof OutdatedApp ||
(error as unknown) instanceof UpdateYourApp
? (error as unknown as { managerAppName: string }).managerAppName
: undefined;

return renderError({
t,
error,
onRetry,
managerAppName,
requireFirmwareUpdate: error instanceof LatestFirmwareVersionRequired,
withExportLogs,
list,
supportLink,
warning,
Icon,
});
};

export default ErrorDisplay;
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ const iconsComponent = {
UNSTAKE: IconUndelegate,
WITHDRAW_UNSTAKED: IconCoins,
UNKNOWN: IconCheck,
BURN: IconTrash,
};
class ConfirmationCheck extends PureComponent<{
marketColor: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ const TransactionConfirm = ({
parentAccount={parentAccount}
transaction={transaction}
status={status}
device={device}
/>
) : null
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@ import IconCoins from "~/renderer/icons/Coins";
import { SolanaFamily } from "./types";
import { useGetStakeLabelLocaleBased } from "~/renderer/hooks/useGetStakeLabelLocaleBased";

const AccountHeaderActions: SolanaFamily["accountHeaderManageActions"] = ({ account, source }) => {
const AccountHeaderActions: SolanaFamily["accountHeaderManageActions"] = ({
account,
parentAccount,
source,
}) => {
const dispatch = useDispatch();
const label = useGetStakeLabelLocaleBased();
const mainAccount = getMainAccount(account);
const mainAccount = getMainAccount(account, parentAccount);
const { solanaResources } = mainAccount;

const onClick = useCallback(() => {
Expand All @@ -34,6 +38,10 @@ const AccountHeaderActions: SolanaFamily["accountHeaderManageActions"] = ({ acco
}
}, [account, dispatch, source, solanaResources, mainAccount]);

if (account.type === "TokenAccount") {
return null;
}

return [
{
key: "Stake",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
import React from "react";
import { Trans } from "react-i18next";
import { SolanaAccount, SolanaTokenAccount } from "@ledgerhq/live-common/families/solana/types";
import { isTokenAccountFrozen } from "@ledgerhq/live-common/families/solana/logic";
import { SubAccount } from "@ledgerhq/types-live";

import Box from "~/renderer/components/Box";
import Alert from "~/renderer/components/Alert";
import AccountSubHeader from "../../components/AccountSubHeader/index";
export default function SolanaAccountSubHeader() {
return <AccountSubHeader family="Solana" team="Solana Labs"></AccountSubHeader>;

type Account = SolanaAccount | SolanaTokenAccount | SubAccount;

type Props = {
account: Account;
};

export default function SolanaAccountSubHeader({ account }: Props) {
return (
<>
{isTokenAccountFrozen(account) && (
<Box mb={10}>
<Alert type="warning">
<Trans i18nKey="solana.token.frozenStateWarning" />
</Alert>
</Box>
)}
<AccountSubHeader family="Solana" team="Solana Labs"></AccountSubHeader>
</>
);
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import React from "react";
import Alert from "~/renderer/components/Alert";
import { Flex } from "@ledgerhq/react-ui";
import TranslatedError from "~/renderer/components/TranslatedError";
import { Account } from "@ledgerhq/types-live";
import type { Transaction, TransactionStatus } from "@ledgerhq/live-common/families/solana/types";

type Props = {
account: Account;
updateTransaction: (updater: (t: Transaction) => Transaction) => void;
onChange: (t: Transaction) => void;
transaction: Transaction;
status: TransactionStatus;
};

/**
* SendAmountFields
*
* This component renders an alert message when the user has insufficient fund
* to complete a transaction.
*
*/
const SendAmountFields = ({ status }: Props) => {
if (!status.errors.fee) return null;
return (
<Flex>
<Alert type="warning" data-testid="insufficient-funds-warning">
<TranslatedError error={status.errors.fee} />
</Alert>
</Flex>
);
};

export default {
component: SendAmountFields,
fields: [],
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
import React, { useMemo } from "react";
import { getDeviceTransactionConfig } from "@ledgerhq/live-common/transaction/index";
import { SolanaFamily } from "./types";
import Alert from "~/renderer/components/Alert";
import { Trans } from "react-i18next";
import ConfirmTitle from "~/renderer/components/TransactionConfirm/ConfirmTitle";
import Box from "~/renderer/components/Box";
import { openURL } from "~/renderer/linking";
import { useLocalizedUrl } from "~/renderer/hooks/useLocalizedUrls";
import { urls } from "~/config/urls";
import { DeviceModelId } from "@ledgerhq/devices";
import { Link } from "@ledgerhq/react-ui";

const Title: TitleComponent = props => {
const { transaction, account, parentAccount, status, device } = props;
const transferTokenHelpUrl = useLocalizedUrl(urls.solana.splTokenInfo);

const fields = getDeviceTransactionConfig({
account,
parentAccount,
transaction,
status,
});

const typeTransaction: string | undefined = useMemo(() => {
const typeField = fields.find(field => field.label && field.label === "Type");

if (typeField && typeField.type === "text" && typeField.value) {
return typeField.value;
}
}, [fields]);

if (
transaction.model.commandDescriptor?.command.kind === "token.transfer" &&
device.modelId === DeviceModelId.nanoS
) {
return (
<Box flexDirection="column" alignItems="center" gap={4} mb={4} justifyContent="center">
<ConfirmTitle title={undefined} typeTransaction={typeTransaction} {...props} />
<Alert type="warning">
<Trans i18nKey="solana.token.transferWarning">
<Link color="palette.warning.c60" onClick={() => openURL(transferTokenHelpUrl)} />
</Trans>
</Alert>
</Box>
);
}

return <ConfirmTitle title={undefined} typeTransaction={typeTransaction} {...props} />;
};

type TransactionConfirmFields = SolanaFamily["transactionConfirmFields"];
type TitleComponent = NonNullable<NonNullable<TransactionConfirmFields>["title"]>;

const transactionConfirmFields: TransactionConfirmFields = {
title: Title,
};

export default transactionConfirmFields;
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ import AccountBalanceSummaryFooter from "./AccountBalanceSummaryFooter";
import StakeBanner from "./StakeBanner";
import { SolanaFamily } from "./types";
import operationDetails from "./operationDetails";
import sendAmountFields from "./SendAmountFields";
import transactionConfirmFields from "./TransactionConfirmFields";

const family: SolanaFamily = {
accountHeaderManageActions,
Expand All @@ -15,6 +17,8 @@ const family: SolanaFamily = {
AccountBalanceSummaryFooter,
StakeBanner,
operationDetails,
sendAmountFields,
transactionConfirmFields,
};

export default family;
1 change: 1 addition & 0 deletions apps/ledger-live-desktop/src/renderer/families/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,7 @@ export type LLDCoinFamily<
parentAccount: A | null | undefined;
transaction: T;
status: TS;
device: Device;
}>;

footer?: React.ComponentType<{
Expand Down
28 changes: 27 additions & 1 deletion apps/ledger-live-desktop/static/i18n/en/app.json
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,8 @@
"STAKE": "Staked",
"UNSTAKE": "Unstaked",
"WITHDRAW_UNSTAKED": "Withdrawn",
"SENDING": "Sending"
"SENDING": "Sending",
"BURN": "Burned"
},
"edit": {
"title": "Speed up or Cancel",
Expand Down Expand Up @@ -3758,6 +3759,10 @@
}
}
}
},
"token": {
"frozenStateWarning": "Account assets are frozen!",
"transferWarning": "To verify the recipient address for Solana tokens using a Ledger Nano S™, <0>follow these instructions.</0>"
}
},
"ethereum": {
Expand Down Expand Up @@ -6220,6 +6225,27 @@
"SolanaAccountNotFunded": {
"title": "Account not funded"
},
"SolanaTokenAccountHoldsAnotherToken": {
"title": "This associated token account holds another token"
},
"SolanaTokenAccountWarning": {
"title": "This is not a regular wallet address but an associated token account. Continue only if you know what you are doing"
},
"SolanaTokenAccountNotAllowed": {
"title": "This is a token account. Input a regular wallet address"
},
"SolanaMintAccountNotAllowed": {
"title": "This is a token address. Input a regular wallet address"
},
"SolanaAssociatedTokenAccountWillBeFunded": {
"title": "Account will be funded"
},
"SolanaTokenAccountFrozen": {
"title": "Token account assets are frozen"
},
"SolanaTokenAccounNotInitialized": {
"title": "Account not initialized"
},
"SolanaMemoIsTooLong": {
"title": "Memo is too long. Max length is {{maxLength}}"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,24 @@
"color": "#000",
"decimals": 9
},
{
"type": "CryptoCurrency",
"id": "solana_testnet",
"ticker": "SOL",
"name": "Solana testnet",
"family": "solana",
"color": "#000",
"decimals": 9
},
{
"type": "CryptoCurrency",
"id": "solana_devnet",
"ticker": "SOL",
"name": "Solana devnet",
"family": "solana",
"color": "#000",
"decimals": 9
},
{
"type": "CryptoCurrency",
"id": "ripple",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,24 @@
"color": "#000",
"decimals": 9
},
{
"type": "CryptoCurrency",
"id": "solana_testnet",
"ticker": "SOL",
"name": "Solana testnet",
"family": "solana",
"color": "#000",
"decimals": 9
},
{
"type": "CryptoCurrency",
"id": "solana_devnet",
"ticker": "SOL",
"name": "Solana devnet",
"family": "solana",
"color": "#000",
"decimals": 9
},
{
"type": "CryptoCurrency",
"id": "ripple",
Expand Down
Loading

1 comment on commit 41b153a

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

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

[Bot] Daily non-reg on develop with 'Nitrogen' ✅ 60 txs ❌ 9 txs 💰 20 miss funds ($606.61) ⏲ 17min 59s

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

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

8 critical spec errors

Spec Casper failed!

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

Spec injective failed!

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

Spec Polygon zkEVM Testnet failed!

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

Spec Klaytn failed!

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

Spec Solana failed!

Error: scan accounts timeout for currency Solana

Spec Stacks failed!

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

Spec Stellar failed!

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

Spec VeChain VTHO failed!

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

❌ 9 mutation errors
necessary accounts resynced in 0.26ms
▬ Aptos 0.6.10 on nanoSP 1.1.2
→ FROM undefined: 0.573619 APT (1ops) (0xc9ce406c17508f44ed2f1dbd62e0a0363a4335afe2e77dd9d174fffb346293be on 44'/637'/0'/0/0) #0 js:2:aptos:11fd81d9637768b091212591ba1090840b14d3349265e9ea734657c14a0f0b49:
max spendable ~0.573419
★ using mutation 'Send ~50%'
→ TO undefined: 0 APT (0ops) (0x4a0939b013ec25060d431f21f1e21a332d03cd3361ba478f86daa541ff176556 on 44'/637'/1'/0/0) #1 js:2:aptos:6e66925078c1e3c2c59078c9292aa9a77ffeb2358e55f709c6184e12f23a123f:
✔️ transaction 
SEND  0.286709
TO 0x4a0939b013ec25060d431f21f1e21a332d03cd3361ba478f86daa541ff176556
with fees=0.000999
STATUS (2510ms)
  amount: 0.28670983 APT
  estimated fees: 0.000999 APT
  total spent: 0.28770883 APT
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review","x":47,"y":29,"w":36,"h":9}
{"text":"Transaction","x":35,"y":43,"w":60,"h":9}
{"text":"Transaction Type","x":16,"y":7,"w":97,"h":12}
{"text":"Coin transfer","x":31,"y":21,"w":67,"h":9}
(totally spent 62.5s – ends at 2025-01-28T16:59:54.998Z)
necessary accounts resynced in 0.22ms
▬ Horizen 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 0.0364058 ZEN (698ops) (znU97eUMg69kgYCHCAyyCR8f2T1MFUXynNp on 44'/121'/0'/0/318) #0 js:2:zencash:xpub6C68jAb8xasfmbmg37N3W5TsYWdTb6xLCtjwz5oSVAdi6Jxzx6FeBQcQazySrCXnsGZKaT9MXB9i4Lny4AoFAVZtSy6kVExyheF7X5Msvu3:
3 UTXOs
0.0253443    znd3oE5YDGGg4um1yZBjcQmUzEfeYm4QQdq 27cc24fa365fad3f1915f8da1b9fe95cc73aea3f73055d9f326604a5f84b0aba @0 (636)
0.00589347   znaTusSfppW8pCXjtxLAFsYbJheMQBdFWxW rbf c23145f9d067115f9bdfa06d6bb150066fe4e0a757022de0c3d545e3ea3fc918 @0 (2290)
0.00516808   znc4BZprNMLUG7PBk7uqeqQHhNzfL1piBHq (change) 75e55758540ac5dd2968ea1aaaf450f3e064cbce528e33022b22f9a66191b119 @1 (578)

max spendable ~0.0363961
★ using mutation 'send OP_RETURN transaction'
→ TO undefined: 0.0797448 ZEN (673ops) (znUrNgchE7eGa1dStigLwDKVQBW7e6ztHTp on 44'/121'/3'/0/354) #3 js:2:zencash:xpub6C68jAb8xasfwaE1WeCTh2JhK4KMh64oUaNn2MJCpVdjBmV7cdLhW8xqAfrb8eerM3wtiwMg9sMZkjA62QMH1rMDNbr97uLKNZohEX7c1cq:
✔️ transaction 
SEND 0.01 ZEN
TO znUrNgchE7eGa1dStigLwDKVQBW7e6ztHTp
with feePerByte=2 (network fees: 0=3, 1=2, 2=1)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (105ms)
TX INPUTS (2):
0.00589347   znaTusSfppW8pCXjtxLAFsYbJheMQBdFWxW c23145f9d067115f9bdfa06d6bb150066fe4e0a757022de0c3d545e3ea3fc918@0
0.0253443    znd3oE5YDGGg4um1yZBjcQmUzEfeYm4QQdq 27cc24fa365fad3f1915f8da1b9fe95cc73aea3f73055d9f326604a5f84b0aba@0
TX OUTPUTS (3):
0            @0 (0)
0.01         znUrNgchE7eGa1dStigLwDKVQBW7e6ztHTp @1 (0)
0.021229     znbp5kzRMxYxifUHTrmoM7sRtf5vvTqAH2Z (change) @2 (0)
  amount: 0.01 ZEN
  estimated fees: 0.00000876 ZEN
  total spent: 0.01000876 ZEN
errors: 
warnings: 
⚠️ TransportStatusError: Ledger device: Invalid data received (0x6a80)
(totally spent 2515ms – ends at 2025-01-28T16:59:55.005Z)
necessary accounts resynced in 0.20ms
▬ Cosmos 2.36.1 on nanoS 2.1.0
→ FROM undefined: 0.085975 DSM (19ops) (desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur on 44'/118'/1'/0/0) #1 js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur: (! sum of ops -6.439867 DSM) 0.0839 DSM spendable. 0.002075 DSM delegated. 
DELEGATIONS
  to desmosvaloper1r75t9axgvcj6zxnn050n4r2tg3manmvy6n7908 0.002075 DSM  (claimable 0.002075)

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

with fees=0.000325
STATUS (6.9s)
  amount: 0.028339 DSM
  estimated fees: 0.000325 DSM
  total spent: 0.028664 DSM
errors: 
warnings: 
✔️ has been signed! (8.5s) {"operation":{"id":"js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:--OUT","hash":"","type":"OUT","senders":["desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur"],"recipients":["desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz"],"accountId":"js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:","blockHash":null,"blockHeight":null,"extra":{},"date":"2025-01-28T16:46:09.090Z","value":"28664","fee":"325","transactionSequenceNumber":129},"signature":"0a90010a8d010a1c2f636f736d6f732e62616e6b2e763162657461312e4d736753656e64126d0a2d6465736d6f73317176746e7a70747033306d617a6e6e6864673330786c326a746471327368706e6e7967787572122d6465736d6f73316e367663637061373778377879686e6b39386a7936676733726d676a6b617a78713867326a7a1a0d0a047564736d1205323833333912660a510a460a1f2f636f736d6f732e63727970746f2e736563703235366b312e5075624b657912230a2103bbdd0faa68724918e242ad33b2cbb8747bdf245b4db9bded5c52601699a714af12040a02087f18810112110a0b0a047564736d120333323510d0f7071a40877a4a1f403cc0c6c6be27fa0bfa0842f3f49bf2c02fddb43ac0f88b65a7c6b01650ddf8a1bb91225e749448d53144806096da3669b65d96a8cb65585ae9b40a"}
⚠️ TEST during broadcast
LedgerAPI4xx: must declare at least one event to search
(totally spent 16.3s – ends at 2025-01-28T16:59:55.010Z)
necessary accounts resynced in 0.23ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 1.9577 SYS (660ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:syscoin:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
max spendable ~1.9562
★ using mutation 'move 50%'
→ TO undefined: 32.4499 SYS (282ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:syscoin:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
✔️ transaction 
SEND  0.978103071821670148 SYS
TO 0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9
STATUS (238ms)
  amount: 0.978103071821670148 SYS
  estimated fees: 0.000593469424674 SYS
  total spent: 0.978696541246344148 SYS
errors: 
warnings: 
✔️ has been signed! (2967ms) 
✔️ broadcasted! (83ms) optimistic operation: 
  -0.978696541246344148 SYS OUT        0xd4dbd941380f53ece0a34b02ae779e89aad2b2ca23f7182374893f585b4273f6 2025-01-28T16:48
⚠️ TEST waiting operation id to appear after broadcast
Error: could not find optimisticOperation js:2:syscoin:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:-0xd4dbd941380f53ece0a34b02ae779e89aad2b2ca23f7182374893f585b4273f6-OUT
(totally spent 10min 4s – ends at 2025-01-28T16:59:55.014Z)
necessary accounts resynced in 0.11ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00109079 ETH (95ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892: (! sum of ops -0.00133107603751237 ETH)  TokenAccount PacMoon: 89.668802350444586624 PAC (27 ops) (! sum of ops 89.636783209228456048 PAC)
max spendable ~0.00109079
★ using mutation 'move 50%'
→ TO undefined: 0.00121951 ETH (73ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:blast:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
✔️ transaction 
SEND  0.000545396321171625 ETH
TO 0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25
STATUS (183ms)
  amount: 0.000545396321171625 ETH
  estimated fees: 0.000000000046368 ETH
  total spent: 0.000545396367539625 ETH
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (195ms) optimistic operation: 
  -0.000545396367539625 ETH OUT        0x4e267a6d2e2fda1e2161ea99ae10d68986a93f7bcc16183a27d13cf273211128 2025-01-28T16:49
(in 10min 1s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "545396415998625"
Received: "543553256295236"
(totally spent 10min 5s – ends at 2025-01-28T16:59:55.018Z)
necessary accounts resynced in 2.05ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.0500384 𝚝ETH (1ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892: (! sum of ops 0.05 𝚝ETH)
max spendable ~0.0500384
★ using mutation 'move 50%'
→ TO undefined: 0 𝚝ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:blast_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
✔️ transaction 
SEND  0.025019205205536395 𝚝ETH
TO 0x90bD48144e08b66490BcA9a756BDe9f004F17857
STATUS (561ms)
  amount: 0.025019205205536395 𝚝ETH
  estimated fees: 0.000000012825288 𝚝ETH
  total spent: 0.025019218030824395 𝚝ETH
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Amount'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Amount": "𝚝ETH 0.025019205205536395",
+   "Amount": "ETH 0.025019205205536395",
  }
(totally spent 1587ms – ends at 2025-01-28T16:59:55.108Z)
necessary accounts resynced in 0.29ms
▬ NEAR 2.2.0 on nanoS 2.1.0
→ FROM undefined: 0.44455 NEAR (66ops) (0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf on 44'/397'/0'/0'/0') nearbip44h#0 js:2:near:0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf:nearbip44h (! sum of ops 0.98067982518354365104 NEAR)
max spendable ~0.391593
★ using mutation 'Move 50% to another account'
→ TO undefined: 0.0525176 NEAR (32ops) (07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce on 44'/397'/0'/0'/5') nearbip44h#5 js:2:near:07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce:nearbip44h
✔️ transaction 
SEND  0.19579683009972547709 NEAR
TO 07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce
STATUS (720ms)
  amount: 0.19579683009972547709 NEAR
  estimated fees: 0.0008349895375 NEAR
  total spent: 0.19663181963722547709 NEAR
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Near app","x":41,"y":6,"w":48,"h":11}
{"text":"is ready","x":41,"y":17,"w":48,"h":11}
{"text":"Receiving","x":36,"y":3,"w":92,"h":11}
{"text":"Transaction...","x":26,"y":15,"w":102,"h":11}
{"text":"View header","x":29,"y":19,"w":99,"h":11}
(totally spent 60.7s – ends at 2025-01-28T16:59:55.113Z)
necessary accounts resynced in 0.13ms
▬ TezosWallet 3.0.6 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.28774
★ using mutation 'send unrevealed'
→ TO undefined: 0 XTZ (0ops) (tz1SApkt3kmMaqNE1qtgADc6m3B49HZkFVDA on 44'/1729'/2'/0') tezbox#2 js:2:tezos:029d7bcf10737806147b22ba4578747ce4ac53e26b443c9eb1ac0e4d5bfbb8f67e:tezbox
✔️ transaction 
SEND 2.643872 XTZ
TO tz1SApkt3kmMaqNE1qtgADc6m3B49HZkFVDA
with fees=0.0005
with gasLimit=600
with storageLimit=277
(estimatedFees 0.000563)
STATUS (815ms)
  amount: 2.643872 XTZ
  estimated fees: 0.000563 XTZ
  total spent: 2.644435 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.7s – ends at 2025-01-28T16:59:55.125Z)
necessary accounts resynced in 0.19ms
▬ TON 2.4.1 on nanoSP 1.1.2
→ FROM undefined: 0.0151678 TON (17ops) (UQCn-JC2p2S4NWRhqrHkuNmoziSwZ2rSYOIlq-GDUd2V0cq2 on 44'/607'/0'/0'/4'/0') ton#4 js:2:ton:00eb62bbc9b4515d20d3381b34c542c3cfdfdf1a3603eea8a25996ff01342b6a:ton (! sum of ops 0.035328945 TON)
max spendable ~0.0151678
★ using mutation 'Send ~50%'
→ TO undefined: 0 TON (47ops) (UQCgFq3YfNA6MbXU__1AX1iSOy-iS5O5iIvqVprRQINAfACO on 44'/607'/0'/0'/1'/0') ton#1 js:2:ton:160444af87a5a38726dbe60ed81906095cb3e196ea1f7d5ec1be614945346359:ton
✔️ transaction 
SEND  0.007583914 TON
TO UQCgFq3YfNA6MbXU__1AX1iSOy-iS5O5iIvqVprRQINAfACO
STATUS (2470ms)
  amount: 0.007583914 TON
  estimated fees: 0.004513536 TON
  total spent: 0.01209745 TON
errors: amount TonMinimumRequired
warnings: 
⚠️ TEST mutation must not have tx status errors
TonMinimumRequired: TonMinimumRequired
(totally spent 2475ms – ends at 2025-01-28T16:59:55.138Z)
⚠️ 27 spec hints
  • Spec Celo:
    • mutations should define a test(): Celo: Move 50% to another account
    • mutations should define a testDestination(): Celo: Move 50% to another account
  • Spec Algorand:
    • mutation move ~50%: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Bitcoin Testnet:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec ZCash:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec dydx:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec sei_network:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec xion:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Ethereum Classic:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Ethereum Sepolia:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Arbitrum:
    • mutation move 50%: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Flare:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Rootstock:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec OP Mainnet:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec OP Sepolia:
    • There are not enough accounts (1) to cover all mutations (1).
      Please increase the account target to at least 2 accounts
  • Spec Base:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Neon EVM:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Linea Sepolia:
    • There are not enough accounts (1) to cover all mutations (1).
      Please increase the account target to at least 2 accounts
  • Spec Scroll:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Scroll Sepolia:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Etherlink:
    • There are not enough accounts (1) to cover all mutations (1).
      Please increase the account target to at least 2 accounts
  • Spec ZKsync:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec ZKsync Sepolia:
    • There are not enough accounts (1) to cover all mutations (1).
      Please increase the account target to at least 2 accounts
  • Spec Icon:
    • mutations should define a testDestination(): send 50%~
  • Spec NEAR:
    • mutations should define a testDestination(): Move 50% to another account
  • Spec Tezos:
    • mutations should define a test(): send unrevealed, send revealed
  • Spec VeChain VET:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
Portfolio ($606.61) – Details of the 76 currencies
Spec (accounts) State Remaining Runs (est) funds?
Casper (0) 0 ops , 🤷‍♂️ ``
Celo (12) 2068 ops (+2), 16.2886 CELO ($8.74) 💪 999+ 0x246FFDB387F1F8c48072E1C13443540017bC71b7
Algorand (6) 3278 ops (+2), 7.44048 ALGO ($8.48) 💪 999+ TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4
Aptos (2) 1 ops , 0.573619 APT ($4.30) 💪 574 0xc9ce406c17508f44ed2f1dbd62e0a0363a4335afe2e77dd9d174fffb346293be
Bitcoin Testnet (13) 1457 ops , 0.00102278 𝚝BTC ($0.00) ⚠️ 0 tb1qva8ex44kkad8gz4m7yukmc9hdvhml29ych5esm
Bitcoin Cash (7) 4693 ops (+8), 0.0434313 BCH ($18.44) 💪 996 qqp902dx65k2tn6m7u5lzlyhz28l6s74fqf77n2zhd
Bitcoin Gold (6) 3547 ops (+8), 0.348362 BTG ($2.09) 💪 999+ AUL61mtqtWafcbRPxKERSqsHyV3MwACYkp
Dash (7) 3966 ops (+8), 0.102939 DASH ($3.35) 💪 999+ XhdcCVQwH46kmGHw4kH9ZXwquH59SE2QBx
Digibyte (9) 4968 ops (+8), 443.79 DGB ($4.87) 💪 999+ dgb1qkglz2cqxrrl5jmx906yzg6cjtm945zvzxuzqkd
DogeCoin (7) 2312 ops , 3.53936 DOGE ($1.16) ⚠️ DPMKt6FSk3UXjNya2PKQBiHj4S1W2YiFRh
Komodo (5) 2729 ops (+8), 17.4854 KMD ($3.98) 💪 999+ RREFiv7NjMwJLHcjRU5issiP9sCF5P6PKw
Litecoin (9) 4851 ops (+8), 0.339015 LTC ($38.28) 💪 999+ ltc1qj9r8yejpw8q56vhfv4aufcqm2rq08v2pzcfv2s
ZCash (5) 1502 ops , 0.00368057 ZEC ($0.16) ⚠️ 2 t1SDpcaNZmbCH5TCCb5vNAh5bXs3isDtA5h
Horizen (5) 2736 ops (+6), 0.418306 ZEN ($7.62) 💪 999+ znZg6CYHWANNq6haNXodYfaypHSEoxxPKQE
osmosis (18) 4 ops (+2), 16.0455 OSMO ($6.23) 💪 999+ osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l
desmos (18) 273 ops (+9), 144.865 DSM ($0.15) 💪 999+ desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454
dydx (18) 361 ops , 0.00957568 dydx ($0.01) ⚠️ 6 dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6
umee (18) 157 ops , 703.057 UMEE ($0.47) 💪 999+ umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l
persistence (18) 406 ops , 24.4244 XPRT ($3.45) 💪 999+ persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf
quicksilver (18) 7 ops , 19.3384 QCK ($0.12) 💪 999+ quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l
onomy (18) 410 ops , 1.80579 NOM ($0.03) 💪 999+ onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg
sei_network (16) 0 ops , 0.068109 SEI ($0.00) sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v
stargaze (18) 6 ops , 759.559 STARS ($3.10) 💪 999+ stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu
coreum (18) 2388 ops , 28.9564 CORE ($5.78) 💪 999+ core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk
injective (0) 0 ops , 🤷‍♂️ ``
mantra (18) 2 ops , 3.34232 OM ($15.78) 💪 999+ mantra1rs97j43nfyvc689y5rjvnnhrq3tes6ghshzpqh
crypto_org (14) 144 ops , 34.3023 CRO ($4.57) 💪 999+ cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra
xion (9) 60 ops , 0.087639 XION ($0.18) ⚠️ 0 xion1rs97j43nfyvc689y5rjvnnhrq3tes6ghe4j84x
zenrock (7) 27 ops , 9.87154 ROCK ($0.37) 💪 984 zen1rs97j43nfyvc689y5rjvnnhrq3tes6ghp36y0u
Elrond (8) 3260 ops (+2), 0.911345 EGLD ($25.69) 💪 999+ erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp
Ethereum Classic (6) 685 ops , 0.232476 ETC ($5.96) 💪 999+ 0x7584df0780C5eB83b26aE55abBc265014f8bf897
Polygon (10) 3106 ops (+2), 18.7877 POL ($7.62) 👍 93 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Sepolia (6) 781 ops , 0.00260545 𝚝ETH ($0.00) ⚠️ 4 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Holesky (6) 1634 ops (+2), 0.227471 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum (6) 816 ops (+2), 0.00510111 ETH ($16.03) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum Sepolia (6) 1297 ops (+2), 0.983866 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Flare (6) 2170 ops , 4.00005 FLR ($0.18) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Songbird (6) 3432 ops (+2), 936.913 SGB ($6.27) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonbeam (6) 2883 ops (+2), 58.7282 GLMR ($9.59) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Rootstock (5) 794 ops , 0.00030914 RBTC ($31.79) 👍 226 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Bittorent Chain (6) 2968 ops (+2), 1,488,231 BTT ($1.52) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Mainnet (5) 119 ops , 0.00286711 ETH ($23.88) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Energy Web (6) 2758 ops (+2), 7.52303 EWT ($9.79) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Astar (6) 2976 ops (+2), 317.041 ASTR ($15.63) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Metis (6) 127 ops (+2), 0.12779 METIS ($4.12) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonriver (6) 2508 ops (+2), 2.22429 MOVR ($20.37) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Velas EVM (6) 502 ops (+2), 911.986 VLX ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Syscoin (6) 2890 ops , 57.0336 SYS ($5.13) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Polygon zkEVM Testnet (0) 0 ops , 🤷‍♂️ ``
Base (5) 249 ops , 0.00269293 ETH ($8.48) 👍 303 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Base Sepolia (6) 1305 ops (+2), 0.977083 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Klaytn (0) 0 ops , 🤷‍♂️ ``
Neon EVM (6) 1642 ops , 13.7527 NEON ($4.02) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Lukso (6) 1823 ops (+2), 0.483266 LYX ($0.77) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea (6) 1197 ops (+2), 0.00519645 ETH ($16.31) 👍 349 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Blast (6) 433 ops (+2), 0.00887092 ETH ($27.98) 💪 999+ 0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25
Blast Sepolia (2) 1 ops , 0.0500384 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Scroll (2) 2 ops , 0.01 ETH ($36.71) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Scroll Sepolia (2) 1 ops , 0.05 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Etherlink (1) 0 ops , 0 XTZ ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
ZKsync (2) 3 ops , 0.003 ETH ($12.86) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
ZKsync Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Hedera (4) 2356 ops (+4), 38.3711 HBAR ($11.97) 💪 999+ 0.0.3663977
InternetComputer (8) 1108 ops (+2), 0.990477 ICP ($8.78) 💪 999+ f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209
Icon (8) 437 ops (+2), 9.72874 ICX ($1.52) 💪 999+ hxdd614da5f057ce32185619f98edd81445a946ea5
NEAR (11) 226 ops , 0.785485 NEAR ($5.60) 💪 877 0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf
Solana (0) 0 ops , 🤷‍♂️ ``
Stacks (0) 0 ops , 🤷‍♂️ ``
Stellar (0) 0 ops , 🤷‍♂️ ``
Tezos (3) 156 ops , 5.28869 XTZ ($5.71) 💪 911 tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF
TON (7) 165 ops , 0.0464555 TON ($0.22) ⚠️ 0 UQDL7vAIogYGacmfO0xTS1bwPEMJNh1g1Jliwq2p-qWkS1J0
VeChain VTHO (0) 0 ops , 🤷‍♂️ ``
VeChain VET (4) 19 ops , 5 VET ($0.47) ⚠️ 24 0xc4B17901FECf86932c3bb296BB00E7c6816Fd416
XRP (5) 641 ops (+2), 40.0027 XRP ($139.93) 💪 999+ r9etPtq3oboweMPju5gdYufmvwhH2euz8z
undefined: 0.0155552 CELO (277ops) (0x246FFDB387F1F8c48072E1C13443540017bC71b7 on 44'/52752'/0'/0/0) #0 js:2:celo:0x246FFDB387F1F8c48072E1C13443540017bC71b7:
undefined: 0.0606628 CELO (211ops) (0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8 on 44'/52752'/1'/0/0) #1 js:2:celo:0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8:
undefined: 0.439852 CELO (216ops) (0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0 on 44'/52752'/2'/0/0) #2 js:2:celo:0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0:
undefined: 0.798922 CELO (192ops) (0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2 on 44'/52752'/3'/0/0) #3 js:2:celo:0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2:
undefined: 0.0184768 CELO (183ops) (0xA6EB5541E3527d07CaD4dD14E5454820DB858160 on 44'/52752'/4'/0/0) #4 js:2:celo:0xA6EB5541E3527d07CaD4dD14E5454820DB858160:
undefined: 0.115658 CELO (167ops) (0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE on 44'/52752'/5'/0/0) #5 js:2:celo:0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE:
undefined: 7.97343 CELO (161ops) (0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc on 44'/52752'/6'/0/0) #6 js:2:celo:0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc:
undefined: 1.70557 CELO (178ops) (0xc054A142A0e8793bC860A34971C3eb549064A54a on 44'/52752'/7'/0/0) #7 js:2:celo:0xc054A142A0e8793bC860A34971C3eb549064A54a:
undefined: 0.00271184 CELO (182ops) (0x78AB368133f5Bf101849475dD4a5747E6d1A897a on 44'/52752'/8'/0/0) #8 js:2:celo:0x78AB368133f5Bf101849475dD4a5747E6d1A897a:
undefined: 1.79572 CELO (158ops) (0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8 on 44'/52752'/9'/0/0) #9 js:2:celo:0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8:
undefined: 3.45281 CELO (143ops) (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: 3.10456 ALGO (648ops) (TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4 on 44'/283'/0'/0/0) #0 js:2:algorand:TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4:
undefined: 10.4545 ALGO (644ops) (RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ on 44'/283'/1'/0/0) #1 js:2:algorand:RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ:
undefined: 3.13214 ALGO (669ops) (YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE on 44'/283'/2'/0/0) #2 js:2:algorand:YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE:
undefined: 3.144 ALGO (737ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA:
undefined: 2.70419 ALGO (580ops) (GEPEPFCOO7TRQ3HKU5IKQPARS7DDXDHH6Y2VNMUJWH7TMLLOZ3Z6JKRQAI on 44'/283'/4'/0/0) #4 js:2:algorand:GEPEPFCOO7TRQ3HKU5IKQPARS7DDXDHH6Y2VNMUJWH7TMLLOZ3Z6JKRQAI:
undefined: 0 ALGO (0ops) (X3TNYJCHUW6UBWVEN5K2ULWMLRWRGBEUWZLR4V2XR3UDN4TWNZP3Q6EAQU on 44'/283'/5'/0/0) #5 js:2:algorand:X3TNYJCHUW6UBWVEN5K2ULWMLRWRGBEUWZLR4V2XR3UDN4TWNZP3Q6EAQU:
undefined: 0.573619 APT (1ops) (0xc9ce406c17508f44ed2f1dbd62e0a0363a4335afe2e77dd9d174fffb346293be on 44'/637'/0'/0/0) #0 js:2:aptos:11fd81d9637768b091212591ba1090840b14d3349265e9ea734657c14a0f0b49:
undefined: 0 APT (0ops) (0x4a0939b013ec25060d431f21f1e21a332d03cd3361ba478f86daa541ff176556 on 44'/637'/1'/0/0) #1 js:2:aptos:6e66925078c1e3c2c59078c9292aa9a77ffeb2358e55f709c6184e12f23a123f:
undefined [native segwit]: 0.00011941 𝚝BTC (187ops) (tb1qva8ex44kkad8gz4m7yukmc9hdvhml29ych5esm on 84'/1'/0'/0/81) native_segwit#0 js:2:bitcoin_testnet:tpubDCgDNn312aj5XtrdMeA9TeQbp2HkMW2a1JNw2qhRLzUaFiDAAQK3Jzh6jzHpc6Agjn68mZgPQB2ZdQzfgRgXVXDi2FVECW7p4xGuK6Pa3b8:native_segwit
undefined [native segwit]: 0 𝚝BTC (164ops) (tb1qu3zymzu9syar4tkkq8g37a84349sx2vm2p6uka on 84'/1'/1'/0/81) native_segwit#1 js:2:bitcoin_testnet:tpubDCgDNn312aj5YVQsroTmVAWSVMpx2PM7m4toPJsHUricGUh457AwMZK55f2uNVxYdKeW8qDZDngveqFFcsFTWW7eZFbnYerfsf5YAdxU3K8:native_segwit
undefined [native segwit]: 0.00015 𝚝BTC (185ops) (tb1qd0pgst9gvhsgdku8tv5aenuhvf7g63ecj4rzh6 on 84'/1'/2'/0/81) native_segwit#2 js:2:bitcoin_testnet:tpubDCgDNn312aj5d7zhhRFxoozQMEzDZFVWmJngmKcygstAZheV88CxrZ2KqFL8nsjZoeNKeqEHTSmjii11wcuYuchvGYqYuGTzveWepNUKPmE:native_segwit
undefined [native segwit]: 0 𝚝BTC (0ops) (tb1q6d99qx850zdfx4ch32mm3v3mc2g5mupusazw49 on 84'/1'/3'/0/0) native_segwit#3 js:2:bitcoin_testnet:tpubDCgDNn312aj5f2MgUfzseZjbXNj5ep7UH8ucWf9VvUbRC1oyUG7cjbGLoCRhc429i6pMcuMS9ZhGX2bTwnKipVSkhNak9fn2N6sVorY4FxW:native_segwit
undefined [taproot]: 0.00015035 𝚝BTC (184ops) (tb1prx0rzeeaj8u99jfywvc34mg64yhpw4vf44nnpa0cx9gaw98gjxzqklvuqe on 86'/1'/0'/0/87) taproot#0 js:2:bitcoin_testnet:tpubDD1s2jBEVuSpzKea6ie3HMCmkanzcfvc9BbQq8nRDUaAUJPGFi83RWFCNMartYsuxksbFR6tDmVGMaaRP7ng7uovwKT1WNjcuDW34st9R56:taproot
undefined [taproot]: 0.00010077 𝚝BTC (178ops) (tb1pmhp66fc43q87ltl2h07geyfqlyszw8p7e467qdm6g72k5wn7t2yqkt8k2s on 86'/1'/1'/0/80) taproot#1 js:2:bitcoin_testnet:tpubDD1s2jBEVuSq13eMrn3r2tnwxfuWeBM94Dgtc4D5A6h1Jcx2kheLSgGtZroZCwFnXN4ao5PxViYSFTK57vRZnQ1RS193EETKNMmRuPTcWJH:taproot
undefined [taproot]: 0 𝚝BTC (0ops) (tb1p7t4hdtqlmpfv4vpu2vqre6elaywjvlq5yfl4jnjz9gw7lwcpjl5svzk5yz on 86'/1'/2'/0/0) taproot#2 js:2:bitcoin_testnet:tpubDD1s2jBEVuSq4ewqyyWoJYgCyvXsQ3wRkeSmKa3RW3b4BL2rfdDWzwM2WoefQcPGjetH92smctVjK4qrS89zYShy399s8MqWzhZdnCvHLfF:taproot
undefined [segwit]: 0.00018548 𝚝BTC (161ops) (2N9Sb3KXBURoeavoxkfSUpFEZbHrRv2cY3a on 49'/1'/0'/0/79) segwit#0 js:2:bitcoin_testnet:tpubDCoPNx9aypg8jXFPWWYdpHS3MtXF5GPM3nY2UbvQSnEt8PELHAbnf2MknjprAMTYUYPNJzKCr2XSBVMp2wctdKbU1jw9MHA9cbgN7CakJQe:segwit
undefined [segwit]: 0.00015 𝚝BTC (143ops) (2N8xuMjQfhDrtbvmb3251L3x1yGmdnt4Cvo on 49'/1'/1'/0/65) segwit#1 js:2:bitcoin_testnet:tpubDCoPNx9aypg8mbeNfcfUjuUfsXwrSmZkRseMwRxkhinEX8JjfThyhtJg6HeVWp6mF8gf6m37xqC4Q9yebR5RdtdjFcJ1Js7t8VB8Dq8Nczj:segwit
undefined [segwit]: 0 𝚝BTC (0ops) (2Mys6yQgQV1gdVTPECM5xvhUuNsiqtwSTm7 on 49'/1'/2'/0/0) segwit#2 js:2:bitcoin_testnet:tpubDCoPNx9aypg8pnB9z8yPPo7WEEeu9H1VPzq185ppKSLXDpdvXWkR75auxm6pkL6PdyRNLckMzYbZwiUui7hxFSsK5S5YHXT7pyfiG1eR9JQ:segwit
undefined [legacy]: 0.00011084 𝚝BTC (145ops) (mjYkQgDh2y2m26kDuLV4aKhEY2TievEtzZ on 44'/1'/0'/0/87) #0 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBsPABuHGzrXmApLgBRomQx7oFzQeuQn8gpzD27asWNYMeBzanzy4ru9hPE5q1HnQJCW2VcWm2Nz4cdNRB8Eo9xKPz6LGnrxQ:
undefined [legacy]: 0.00005593 𝚝BTC (110ops) (mw9wWMVC6R3WFhj6n1qyLR8hcV2Gd1DQ5B on 44'/1'/1'/0/84) #1 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBv5wFZcFYEhephnhXGjF8gKZJ98kGxYvtiv8xdfNVgFgGAFZFCRXwR8td9Nq8nufwfXB1iX75Ypx99d1NktaeLNc4DxmrTng:
undefined [legacy]: 0 𝚝BTC (0ops) (n2pjyyrHHws2nhUT5vULWWYvVvKdQ6itHW on 44'/1'/2'/0/0) #2 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBxB9KbDNQ4KwPmSA6cftnyvQYTQWDgApMdz2Z3YrEMvJVe7ZXz3turDky7qbyk5WJBf2FS9xk4XacpPw8tND5mkkFZRpK1im:
undefined: 0.00524426 BCH (851ops) (qqp902dx65k2tn6m7u5lzlyhz28l6s74fqf77n2zhd on 44'/145'/0'/0/422) #0 js:2:bitcoin_cash:xpub6CYDTh442n9QYTMdQ7Uc7XDC2zCzZ5jM1m1DrWxmfQMToP2ngWZVtptKiksRoGgdcRSLDC6PgEULihbZE3SDt4ndVzoRNUEoZeTCsBUAWWP:
undefined: 0.00228769 BCH (818ops) (qrgu29e3xrvadw4jls9w0zue9phv7468mucv7mk6m7 on 44'/145'/1'/0/414) #1 js:2:bitcoin_cash:xpub6CYDTh442n9QaLF3Z2i5L9QENTixN9kGH5XCYh2J5UTHuu99Y2W1sxm2HcX9sQUe2xmv4r3GVmn8GdTvCsLEof448VdZEmdpfmzX7Dk3AJx:
undefined: 0.00018962 BCH (785ops) (qzhgsteks9nfwtx7qdye3lar3ympvzn3mgdf53lqwq on 44'/145'/2'/0/394) #2 js:2:bitcoin_cash:xpub6CYDTh442n9QdmbZ2RXVmndx8Hv2cFDKjhzANqnPkFjpcqaztmjEdhB9wiiYxJFncp8Et32XZF2YvsC6sXmDRFGEwgjVzQDinZ2xmgZuyb9:
undefined: 0.00064265 BCH (761ops) (qz7ppmt4cvw04fzt064muk5t2jmpt0shdg7j0y47cc on 44'/145'/3'/0/372) #3 js:2:bitcoin_cash:xpub6CYDTh442n9QftkdDJbR3GXhop6xxjkHdxgz9xcKkdq8Q7xF9ER8NXJicVwjXbnkBdbF7nc52wrAVhGoraVfQcsGCA2JwjWurCZQU6pNyHH:
undefined: 0.0218423 BCH (754ops) (qzfzhef3sqzdfg2vc7w5lmajjv4as94zlqkpzekghg on 44'/145'/4'/0/355) #4 js:2:bitcoin_cash:xpub6CYDTh442n9QiWxQaeXpmh16DkgpNqufRUMcj6rDqW2gF9Ronnvv9okteP6YQHZGYEojUXg8LL3kfrJzWHrfLFKKarvBgZBtSBRgqcX6w1G:
undefined: 0.0132039 BCH (724ops) (bitcoincash:qrmvsx3uffjmmhhjxn3swel789wezfxdyqrmgs5tyk on 44'/145'/5'/0/388) #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.0398426 BTG (891ops) (AUL61mtqtWafcbRPxKERSqsHyV3MwACYkp on 49'/156'/0'/0/436) segwit#0 js:2:bitcoin_gold:xpub6DHWENEKDQW8XxvbwvAFdCTGgzmHJkx8eY8bdGrL6iLmiqmPmCEscEvf7MBSDtbZWuLcUeQP9j87rJSgMhtwpUj3JSnQDoGHG2aqRVaSn43:segwit
undefined [segwit]: 0.0363216 BTG (879ops) (AUY6JXywrk6SozZsA9CYFxpMAe8Fq6c6Mh on 49'/156'/1'/0/436) 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.21179 BTG (891ops) (GTmemKfG1DvZPrCh5uHHuWwsbcjRm17ViX on 44'/156'/0'/0/444) #0 js:2:bitcoin_gold:xpub6Cq1sXPAA8ijyqJpdR5hDVYJ7XyunpPgVpCWwPtReGJDwhqnWxBhu7wBJjbtdWHXSQiSyNDhxDXF4GmrXGatK4yDASHE3CgS3tsT41T81Dj:
undefined [legacy]: 0.0603696 BTG (886ops) (GTCAF4hXApiUCqKww6ws42s9cNpPcZJnbz on 44'/156'/1'/0/456) #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.0147724 DASH (689ops) (XhdcCVQwH46kmGHw4kH9ZXwquH59SE2QBx on 44'/5'/0'/0/342) #0 js:2:dash:drkvjS8m2iwuqAXaxEBNS8ULFEKfoEEVNrSyzsEwioinaxb7TZ6fmP7rB3YiU3xcEoM39WoeDJdTS5sgVHQAeowB9BhdxkvDZhJErQk8AWTyaYk:
undefined: 0.001 DASH (663ops) (XiMr1Y6N74EAK3Tg2wQr7QPzbmqKa9uNfR on 44'/5'/1'/0/315) #1 js:2:dash:drkvjS8m2iwuqAXayHufe3hHCwpvgLyxxGhMAiCSW4kjQ2jC6FKcYKqC2ePkovCh93HAt2AgXQSt4YdJG3XX1raRMbHwwJz6ezKi4yotkX7mjwb:
undefined: 0.0322922 DASH (676ops) (XrGb6cbFTKeyep7cCV5VPu4PHXuGmtwCeg on 44'/5'/2'/0/325) #2 js:2:dash:drkvjS8m2iwuqAXb2YSrc4u7qMoaf3UtCbF5A1gphQy6soFEDH7sHmvfZiAEzFse5Q3ycaoq6Su8iitWgNoxRriwzitNTWcwBkXrAdaf2xNXuo4:
undefined: 0.0156586 DASH (666ops) (XfGwnE9wgFbAFvwV9bZHaEz45RSj61svCV on 44'/5'/3'/0/335) #3 js:2:dash:drkvjS8m2iwuqAXb4LDphtncxj3UdVEACR5JCjoccMjdxfEkEhu7oB1vpZFyajdUEhapJgwi7uUq24ys47gm3VNj4vRQbVcV5YQkrGCpUyd7hDS:
undefined: 0.00138256 DASH (655ops) (Xp94ji4FFHeq5cWbpv1zHaeeEZL2N6B9Lm on 44'/5'/4'/0/326) #4 js:2:dash:drkvjS8m2iwuqAXb7uLicFWmFdztLiHpa6PM7iTRQcYT9wX9vF565f9ZQ7ZrwYBKab7ctGrnUyyyn5zFBtBEazazVdBvneLkZ9bUjb83PMLEgpw:
undefined: 0.0378038 DASH (617ops) (Xgc9MYcU9YjRSSMzMQjiVTEJkXk37vbxDc on 44'/5'/5'/0/336) #5 js:2:dash:drkvjS8m2iwuqAXbBAUgNiSVfsH5TurFQxb3bCTM84wuSY376sNUmXbTzLp6cPT8iLqD43n1GXTaHGAaemq8vEm2rwqu5bxtgemUp719HCTXW4S:
undefined: 0 DASH (0ops) (XiiyHQPZVuxXHnApv1XP2aNbz92zL8u6Hy on 44'/5'/6'/0/0) #6 js:2:dash:drkvjS8m2iwuqAXbCRvDwtZdhj7KX8KWD7NqtKJ3cmdPhKoAsfK26rcmmGGAoHdVCvsCgkkZMeyq9cxfExdrvJfzTXJFU8enhrj8pQ4vnTXXUh9:
undefined [native segwit]: 0.0267809 DGB (860ops) (dgb1qkglz2cqxrrl5jmx906yzg6cjtm945zvzxuzqkd on 84'/20'/0'/0/402) native_segwit#0 js:2:digibyte:xpub6CW9KDgdnS4RwiFZjL1YpEbk1yYvD96EqiBXmq6xKRhe3rJJQaB78voA4DG2dJctnUeWZes6NhysTRpCmBgGxCCy39wcwRwSB4fx3Nd2AxP:native_segwit
undefined [native segwit]: 2.19346 DGB (858ops) (dgb1qx58vmcjk6tr0zwf6mxgd3cu24qthgn8ju8s9yc on 84'/20'/1'/0/424) 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]: 12.4059 DGB (830ops) (SkUHyTd4PUyExTXsKp7pwtYgbmwmPxPDqp on 49'/20'/0'/0/410) segwit#0 js:2:digibyte:xpub6CrEMM6LnNPxiDTZaMJwXTtYZXUQvvMwYb2Do892dbEYMrLEfFXZ8ygRrywE66brjMWbV948BJAbWGwV1oeyT7L57ZJykK8jVJ26UQiDVfp:segwit
undefined [segwit]: 2.08015 DGB (806ops) (SV8Cy3zLWNtqgAbiEBQx8gARMW4vBs1z8m on 49'/20'/1'/0/396) 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]: 25.1426 DGB (825ops) (DCQNqa5uqt2RxvnqAGFpsKfNRDENAvcEaH on 44'/20'/0'/0/410) #0 js:2:digibyte:xpub6Cv4emS7S9zviCwMrBM1LhC7EdKY6QgFZ7T46nwEqtmaJda4EPH7Jv19h8GfhAPNTztGNWBBxribdod3wcxXRDkLmzRBxUgyZWxMoYLDgCX:
undefined [legacy]: 401.94 DGB (789ops) (DPz5kpDq1PbBH2QrE49FGmRUr91dPkdHmc on 44'/20'/1'/0/437) #1 js:2:digibyte:xpub6Cv4emS7S9zvmSxVKstTvb3QR4MYRMR1ySqUZbWc8A1vE2Y2BYw3FjLoxVtVYAeJjzR8PqEDDykAzGBUXsphL3xbgbzx6EtS2D8ikALFT52:
undefined [legacy]: 0 DGB (0ops) (DBWpWpZTMg31XMoamhZjKoSqahTVTG2qHi on 44'/20'/2'/0/0) #2 js:2:digibyte:xpub6Cv4emS7S9zvoT2jPveX3CwptyX75sUdfpgmx6DyVGme8QQit5WYE189GhbBJyPThotPBRdpQ5RaXNn8BCkmPNGCG1cirRswqvyvhhqgnAT:
undefined: 0.920545 DOGE (397ops) (DPMKt6FSk3UXjNya2PKQBiHj4S1W2YiFRh on 44'/3'/0'/0/197) #0 js:2:dogecoin:dgub8sBmteCcuFFejUSqGNBcwXRVJ4ZH33Sx3vTJG1o8Q1XwFRNFgT8fAreoj59VMzuU6EJmVMW9gLc9XJSXuxBeSUEt2s2QjSbfYCKkyBvF3pz:
undefined: 0.952644 DOGE (393ops) (DNm6KZDqokGsG4owh2FmUBtFPuXjZnpJgT on 44'/3'/1'/0/184) #1 js:2:dogecoin:dgub8sBmteCcuFFenEm7nyLHE2Zxt38inSEWx1bVAvWgAXbsHzuEHPaM4aP4J1oE2UWhoQ6cjN8rLEmuzqZHr9MyJvLE8zj527mdtweCgUBjuxj:
undefined: 0.233161 DOGE (381ops) (DDbnxtCqjiH9HpcGCXAJ6zM3yqWZUoz7o7 on 44'/3'/2'/0/198) #2 js:2:dogecoin:dgub8sBmteCcuFFepPh2rZbmtt3RujGFHSLrQiT7cawEm8PpDRumeEWWM4tsKtqm4vUYtHSJZvsifqbKXgUMGN89Y29Kh6DMoq2JCEBPAE5BVK2:
undefined: 0.850515 DOGE (396ops) (D8D7641JRE2rm69b8s7AoLtM2gFetEAQ5X on 44'/3'/3'/0/201) #3 js:2:dogecoin:dgub8sBmteCcuFFer5KqAKz1JpoYNxNzLP5v2uStDCS6iMYMJz9qssa7cr4EeDGLuPaJ6VRGK6owP43wMFhgHtPXMe56ptKcVF7o5DqVf8mTMDz:
undefined: 0.582498 DOGE (409ops) (DJVPzhFYmcsr2tjw9WkkUpWrCAUzCrZjqy on 44'/3'/4'/0/202) #4 js:2:dogecoin:dgub8sBmteCcuFFev32JBmBE5kkWA9Fz4LHryxURKDHBm8kXT2s5X3cM4eGnk5YDgbRj2cGny85CWZLtFuz4n6SNEff68ZFXZRfeMcKYjM4ZABa:
undefined: 0 DOGE (336ops) (DMhyaM7cxjL28LdeSTi7RjmgQazn1vboX7 on 44'/3'/5'/0/172) #5 js:2:dogecoin:dgub8sBmteCcuFFexZUo9SNmC2kEwPEUKxWo4VbEi5sZq9uAa3koQSeoUyxC5Z9XXqHq6hvYUYMvWL1iuVLnneqEfda8PdDDWPbvXggRGYDS2Yy:
undefined: 0 DOGE (0ops) (DNvgzFMvZG3k3o78cqn3y3YksWoSnC3uJ8 on 44'/3'/6'/0/0) #6 js:2:dogecoin:dgub8sBmteCcuFFf1Q45j57nYSbt99vo2P5iHSDdytuEPxtbcaRJrgTJCCJFx9AJhFHvyRNkQ8HxwQ61te2F8hhtChBWAL6RCDZEpbjvKGVRR3T:
undefined: 3.02636 KMD (706ops) (RREFiv7NjMwJLHcjRU5issiP9sCF5P6PKw on 44'/141'/0'/0/339) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:
undefined: 3.46916 KMD (718ops) (RPr5efFnLTLaDoGDB2BVmCvR8JJ4TgxDuV on 44'/141'/1'/0/352) #1 js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:
undefined: 10.9505 KMD (669ops) (RXcWvHpgyGnU2ob5gjnXKJkd4cCCSR1UTX on 44'/141'/2'/0/342) #2 js:2:komodo:v4PKUB9WZbMS4XNED8S4oAJzXQqPbfLCmNRNPW8QoETCA7opTJLFvrkm39QZAdLg8DygthREBvDRmrHDeVtEQ8C7iQDfXDSPTrzB2FAFkvgsQ9HA:
undefined: 0.0390258 KMD (636ops) (RCaeHxZ34PBeRAtFLPFed8UDGABhSQPSpP on 44'/141'/3'/0/330) #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.020378 LTC (846ops) (ltc1qj9r8yejpw8q56vhfv4aufcqm2rq08v2pzcfv2s on 84'/2'/0'/0/400) native_segwit#0 js:2:litecoin:Ltub2YLUoe8MGLizFvLnAHJhiz3rdWG8UXqi9A9smDbuwPD44WPa1rB1EwyQwzRiVFKGH4mS6b5DRE3c3S9jZ944uaGcRK2XPinZcbdmo3P2vmq:native_segwit
undefined [native segwit]: 0.00058291 LTC (809ops) (ltc1qgr0zrpx6nqg4dumm45ut0pj5nddn7khyjnvet2 on 84'/2'/1'/0/396) 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.0017455 LTC (807ops) (MXDrXvvHTpmHNCugGMxjwwEZ6k3zYqj3jm on 49'/2'/0'/0/390) segwit#0 js:2:litecoin:Ltub2YDfX8FoxTFohkcgknuZr2WLrCNpq6ufHxguxyjoDWGDZ1GBUVSn5wwoD2ifjY13iERFGvauvW55p6ASVCbqiABnreHFCsV5LKps76aWDV3:segwit
undefined [segwit]: 0.0138805 LTC (786ops) (MURsZ2DhjjeMw9cDfTMA9s1ZrFaZs8YyRb on 49'/2'/1'/0/398) segwit#1 js:2:litecoin:Ltub2YDfX8FoxTFokPftPWHCApgWFe3zeGaU4bag1Wo7HsciTTfvWhRqJvo5yULDSURkh475q8NVpZE2judnAYSmrGmSjH9cB1bUYrm6BgLEZGC:segwit
undefined [segwit]: 0 LTC (0ops) (MD2uvco48GWoQ11iYqQ4jiLfvc33b9E3b9 on 49'/2'/2'/0/0) segwit#2 js:2:litecoin:Ltub2YDfX8FoxTFopQz5yFXLXp9tVCybZ31GX9KsGYccPbFSf1qzFP2Bmq6sirajnUjcH1zhD5sHGPyH7s1KjfD4zZmo2fnq1CVcRpa5ZXZHo8t:segwit
undefined [legacy]: 0.0905114 LTC (844ops) (LYU6XWiFeQ332dW6a3xZ2f9GQnn5WTLtUY on 44'/2'/0'/0/422) #0 js:2:litecoin:Ltub2YwXt3Fm1MVHeGxpcxFhFTe1FkqDdVoeRp9FRnnqGrinFxJSDjXwVTnmjK56jhq83mxWmTKprWjLXqspQCYtxJmCnwCLJUPoZhjJEYMtcFd:
undefined [legacy]: 0.211894 LTC (759ops) (LbEBvTZ2jWD3ARStDHBKpsbpNcb5bKXZDN on 44'/2'/1'/0/415) #1 js:2:litecoin:Ltub2YwXt3Fm1MVHgsz1XL8MM6MicGgumPzfpD1pZcsk15P4LZHiF4wpFPGvTi58u9evgMd4dV9K7cMMA532mq1HbEknZZ5UayUuRbSsM5VzptL:
undefined [legacy]: 0 LTC (0ops) (LiDx2poS1M1DwYU2zHuvKEQAAFUdpRgP59 on 44'/2'/2'/0/0) #2 js:2:litecoin:Ltub2YwXt3Fm1MVHgy4nREA2MxDT5Em3QsQv2Yu6gfGSPudxTKgcovLsh1sV3rje75uZ5eAkyJLkbHxPBFU3Wbhd2Q6XF863omV2XfWhsC2ACJ4:
undefined: 0.00191538 ZEC (394ops) (t1SDpcaNZmbCH5TCCb5vNAh5bXs3isDtA5h on 44'/133'/0'/0/191) #0 js:2:zcash:xpub6CJCxQneNaGtEsc5RekCewAkzA4HmtexTwe7WEdEmduLVbfPti54Vme5gpsTrTDRB7qGUjn7LPhXitHvjrnMVDTt8LYvj7s34ZzEz6PcS8z:
undefined: 0.0002 ZEC (363ops) (t1PpjmFSysTrpUQra1fNCJJMYFGy6yrCxfu on 44'/133'/1'/0/179) #1 js:2:zcash:xpub6CJCxQneNaGtGzvpwjmx2kuAgbAwTBFFCC9TdvziUaYsPQYQ22mwaJbxvyBDLeW4gAnUBvKFeb5RznU3uxtVZp9AJQuU1Q5LsTMypXhN3dy:
undefined: 0.00156519 ZEC (359ops) (t1Z2giNqRBAcyij9iLRPEPBjaD8emFA5LCc on 44'/133'/2'/0/176) #2 js:2:zcash:xpub6CJCxQneNaGtLNBmM9y9Fm23XfXVewWuDYb5mqH1Fybr2579KAGiPfR2gsjjakYEGwFCL4Hau3C9ns24sPFM1MBrSPRKQLLVdQpiSQkSARY:
undefined: 0 ZEC (386ops) (t1YNMwj3ShjnCweX7dqho2w9rAT4PZABodm on 44'/133'/3'/0/203) #3 js:2:zcash:xpub6CJCxQneNaGtQ86kboo1yi9EsCrvQXMGKy2W6MWtMfSLxhpJQHgeLG4MLs1B6gHmYoWRC5q4CCUR4XzoBjPYAxFTHfdSfdhCWRspU2hJv1A:
undefined: 0 ZEC (0ops) (t1NCYEq5jS9TMQMVA4NeMVShuY7JFmFf89y on 44'/133'/4'/0/0) #4 js:2:zcash:xpub6CJCxQneNaGtQcwqQ4ZBYaBpHPzrTRbyU5S4ziPHtkL5iNHxRv9P7J3oJjerQuPNm3JFpz6Ktcui5Eqv5YW9PiCwYonU5E12pg1hwUAkGxh:
undefined: 0.0818528 ZEN (699ops) (znZg6CYHWANNq6haNXodYfaypHSEoxxPKQE on 44'/121'/0'/0/319) #0 js:2:zencash:xpub6C68jAb8xasfmbmg37N3W5TsYWdTb6xLCtjwz5oSVAdi6Jxzx6FeBQcQazySrCXnsGZKaT9MXB9i4Lny4AoFAVZtSy6kVExyheF7X5Msvu3:
undefined: 0.0877859 ZEN (688ops) (znWkGYy8r4MkubiuhrKCptwa43wZSmPXQBr on 44'/121'/1'/0/331) #1 js:2:zencash:xpub6C68jAb8xasfrBmUVvZbdXydhq15bdfePn1qhjb32azt3GkzoqBCQuRaZKPYp9T9uhr7TYCANdXanzeXfXp4qMjw7ijiPPNbBKmGRZRFeoa:
undefined: 0.0911039 ZEN (673ops) (znf7UcHp6oHR83DhVev1jGqS12W8tzs36cL on 44'/121'/2'/0/360) #2 js:2:zencash:xpub6C68jAb8xasfsZCbDtbqPTydFZEHjfzFP75ZQyizidPdLPHNbf41HqQq8RiHMJNuXx71D15Uv9yVpxHkxicSAzKCPVqi1gCKkJTdCN6MK7Q:
undefined: 0.157545 ZEN (676ops) (znRuYeSJHB5Aej3hKQ9NKP7jVsm4gqtrg7g on 44'/121'/3'/0/356) #3 js:2:zencash:xpub6C68jAb8xasfwaE1WeCTh2JhK4KMh64oUaNn2MJCpVdjBmV7cdLhW8xqAfrb8eerM3wtiwMg9sMZkjA62QMH1rMDNbr97uLKNZohEX7c1cq:
undefined: 0 ZEN (0ops) (znm8ELZShHo5gm7aQjcd3qbxT7UF8Mnzyr2 on 44'/121'/4'/0/0) #4 js:2:zencash:xpub6C68jAb8xasfwknWxgLgizrHgqJko7RdnamzFS3DzoKUaA5721xs1HE23NHHqq6LcvmKf43ncaSsz3cEZZpmCrgfK1GhrmDNHkvKfyqpZHF:
undefined: 0.002876 OSMO (0ops) (osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l on 44'/118'/0'/0/0) #0 js:2:osmo:osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l:
undefined: 0.006017 OSMO (0ops) (osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf on 44'/118'/1'/0/0) #1 js:2:osmo:osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf:
undefined: 0.005107 OSMO (0ops) (osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv on 44'/118'/2'/0/0) #2 js:2:osmo:osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv:
undefined: 0.000383 OSMO (0ops) (osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k on 44'/118'/3'/0/0) #3 js:2:osmo:osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k:
undefined: 0.004928 OSMO (2ops) (osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0 on 44'/118'/4'/0/0) #4 js:2:osmo:osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0:
undefined: 0.778684 OSMO (0ops) (osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw on 44'/118'/5'/0/0) #5 js:2:osmo:osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw:
undefined: 0.007699 OSMO (1ops) (osmo1n6vccpa77x7xyhnk98jy6gg3rmgjkazxuyk2ng on 44'/118'/6'/0/0) #6 js:2:osmo:osmo1n6vccpa77x7xyhnk98jy6gg3rmgjkazxuyk2ng:
undefined: 2.58652 OSMO (0ops) (osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp on 44'/118'/7'/0/0) #7 js:2:osmo:osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp:
undefined: 0.373106 OSMO (0ops) (osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d on 44'/118'/8'/0/0) #8 js:2:osmo:osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d:
undefined: 1.25523 OSMO (0ops) (osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5 on 44'/118'/9'/0/0) #9 js:2:osmo:osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5:
undefined: 0.933472 OSMO (0ops) (osmo1733g3dfzj6tulcqtvz628ypuqj0hvlrzruntc8 on 44'/118'/10'/0/0) #10 js:2:osmo:osmo1733g3dfzj6tulcqtvz628ypuqj0hvlrzruntc8:
undefined: 0.006923 OSMO (0ops) (osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg on 44'/118'/11'/0/0) #11 js:2:osmo:osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg:
undefined: 1.32104 OSMO (0ops) (osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m on 44'/118'/12'/0/0) #12 js:2:osmo:osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m:
undefined: 0.084982 OSMO (1ops) (osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9 on 44'/118'/13'/0/0) #13 js:2:osmo:osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9:
undefined: 0.391517 OSMO (0ops) (osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd on 44'/118'/14'/0/0) #14 js:2:osmo:osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd:
undefined: 5.48186 OSMO (0ops) (osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau on 44'/118'/15'/0/0) #15 js:2:osmo:osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau:
undefined: 2.87781 OSMO (0ops) (osmo1xr8krhp99mp9ncrz6dfgre542nv0rc8lrryjvr on 44'/118'/16'/0/0) #16 js:2:osmo:osmo1xr8krhp99mp9ncrz6dfgre542nv0rc8lrryjvr:
undefined: 0 OSMO (0ops) (osmo102w826rmvswfhs4zsv2ujhylmd92c28p6lglqe on 44'/118'/17'/0/0) #17 js:2:osmo:osmo102w826rmvswfhs4zsv2ujhylmd92c28p6lglqe:
undefined: 0 DSM (17ops) (desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454 on 44'/118'/0'/0/0) #0 js:2:desmos:desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454:
undefined: 0 DSM (10ops) (desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz on 44'/118'/6'/0/0) #6 js:2:desmos:desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz:
undefined: 0.136276 DSM (20ops) (desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx on 44'/118'/2'/0/0) #2 js:2:desmos:desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx:
undefined: 0.079159 DSM (22ops) (desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu on 44'/118'/3'/0/0) #3 js:2:desmos:desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu:
undefined: 0.18237 DSM (16ops) (desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9 on 44'/118'/4'/0/0) #4 js:2:desmos:desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9:
undefined: 0 DSM (1ops) (desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y on 44'/118'/5'/0/0) #5 js:2:desmos:desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y:
undefined: 0.085975 DSM (28ops) (desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur on 44'/118'/1'/0/0) #1 js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:
undefined: 0.001914 DSM (3ops) (desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt on 44'/118'/7'/0/0) #7 js:2:desmos:desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt:
undefined: 0.0475 DSM (8ops) (desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8 on 44'/118'/8'/0/0) #8 js:2:desmos:desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8:
undefined: 0.373557 DSM (18ops) (desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7 on 44'/118'/9'/0/0) #9 js:2:desmos:desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7:
undefined: 0 DSM (23ops) (desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted on 44'/118'/10'/0/0) #10 js:2:desmos:desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted:
undefined: 6.75428 DSM (3ops) (desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z on 44'/118'/11'/0/0) #11 js:2:desmos:desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z:
undefined: 1.17886 DSM (8ops) (desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243 on 44'/118'/12'/0/0) #12 js:2:desmos:desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243:
undefined: 21.2513 DSM (40ops) (desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0 on 44'/118'/13'/0/0) #13 js:2:desmos:desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0:
undefined: 47.3112 DSM (3ops) (desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8 on 44'/118'/14'/0/0) #14 js:2:desmos:desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8:
undefined: 19.4152 DSM (44ops) (desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk on 44'/118'/15'/0/0) #15 js:2:desmos:desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk:
undefined: 48.0851 DSM (9ops) (desmos1xr8krhp99mp9ncrz6dfgre542nv0rc8llq6jdf on 44'/118'/16'/0/0) #16 js:2:desmos:desmos1xr8krhp99mp9ncrz6dfgre542nv0rc8llq6jdf:
undefined: 0 DSM (0ops) (desmos102w826rmvswfhs4zsv2ujhylmd92c28pxuklpn on 44'/118'/17'/0/0) #17 js:2:desmos:desmos102w826rmvswfhs4zsv2ujhylmd92c28pxuklpn:
undefined: 0.00046992 dydx (19ops) (dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6 on 44'/118'/0'/0/0) #0 js:2:dydx:dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6:
undefined: 0.00005817 dydx (13ops) (dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv on 44'/118'/1'/0/0) #1 js:2:dydx:dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv:
undefined: 0.00113709 dydx (28ops) (dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf on 44'/118'/2'/0/0) #2 js:2:dydx:dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf:
undefined: 0.00114923 dydx (26ops) (dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en on 44'/118'/3'/0/0) #3 js:2:dydx:dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en:
undefined: 0 dydx (22ops) (dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2 on 44'/118'/4'/0/0) #4 js:2:dydx:dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2:
undefined: 0.00085659 dydx (26ops) (dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt on 44'/118'/5'/0/0) #5 js:2:dydx:dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt:
undefined: 0.00092916 dydx (19ops) (dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d on 44'/118'/6'/0/0) #6 js:2:dydx:dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d:
undefined: 0.00627605 dydx (23ops) (dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky on 44'/118'/7'/0/0) #7 js:2:dydx:dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky:
undefined: 0 dydx (10ops) (dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug on 44'/118'/8'/0/0) #8 js:2:dydx:dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug:
undefined: 0.0010178 dydx (17ops) (dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73 on 44'/118'/9'/0/0) #9 js:2:dydx:dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73:
undefined: 0 dydx (4ops) (dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz on 44'/118'/10'/0/0) #10 js:2:dydx:dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz:
undefined: 0.00060307 dydx (35ops) (dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd on 44'/118'/11'/0/0) #11 js:2:dydx:dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd:
undefined: 0.00055212 dydx (15ops) (dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7 on 44'/118'/12'/0/0) #12 js:2:dydx:dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7:
undefined: 0.00099341 dydx (34ops) (dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq on 44'/118'/13'/0/0) #13 js:2:dydx:dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq:
undefined: 0.00099731 dydx (30ops) (dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg on 44'/118'/14'/0/0) #14 js:2:dydx:dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg:
undefined: 0.00072955 dydx (34ops) (dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te on 44'/118'/15'/0/0) #15 js:2:dydx:dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te:
undefined: 0.00130597 dydx (6ops) (dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x on 44'/118'/16'/0/0) #16 js:2:dydx:dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x:
undefined: 0 dydx (0ops) (dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku on 44'/118'/17'/0/0) #17 js:2:dydx:dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku:
undefined: 0 UMEE (5ops) (umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l on 44'/118'/0'/0/0) #0 js:2:umee:umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l:
undefined: 0.009046 UMEE (16ops) (umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f on 44'/118'/1'/0/0) #1 js:2:umee:umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f:
undefined: 6.57908 UMEE (5ops) (umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv on 44'/118'/2'/0/0) #2 js:2:umee:umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv:
undefined: 0.196795 UMEE (4ops) (umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak on 44'/118'/3'/0/0) #3 js:2:umee:umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak:
undefined: 0.774693 UMEE (11ops) (umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0 on 44'/118'/4'/0/0) #4 js:2:umee:umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0:
undefined: 9.12216 UMEE (15ops) (umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw on 44'/118'/5'/0/0) #5 js:2:umee:umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw:
undefined: 0.151686 UMEE (6ops) (umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg on 44'/118'/6'/0/0) #6 js:2:umee:umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg:
undefined: 0.279868 UMEE (18ops) (umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp on 44'/118'/7'/0/0) #7 js:2:umee:umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp:
undefined: 0.376598 UMEE (11ops) (umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd on 44'/118'/8'/0/0) #8 js:2:umee:umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd:
undefined: 3.95101 UMEE (18ops) (umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65 on 44'/118'/9'/0/0) #9 js:2:umee:umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65:
undefined: 0.020952 UMEE (1ops) (umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28 on 44'/118'/10'/0/0) #10 js:2:umee:umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28:
undefined: 1.99559 UMEE (5ops) (umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg on 44'/118'/11'/0/0) #11 js:2:umee:umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg:
undefined: 1.49321 UMEE (7ops) (umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm on 44'/118'/12'/0/0) #12 js:2:umee:umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm:
undefined: 43.8008 UMEE (15ops) (umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29 on 44'/118'/13'/0/0) #13 js:2:umee:umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29:
undefined: 2.74217 UMEE (3ops) (umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd on 44'/118'/14'/0/0) #14 js:2:umee:umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd:
undefined: 518.258 UMEE (15ops) (umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u on 44'/118'/15'/0/0) #15 js:2:umee:umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u:
undefined: 115.297 UMEE (2ops) (umee1xr8krhp99mp9ncrz6dfgre542nv0rc8lew2a7r on 44'/118'/16'/0/0) #16 js:2:umee:umee1xr8krhp99mp9ncrz6dfgre542nv0rc8lew2a7r:
undefined: 0 UMEE (0ops) (umee102w826rmvswfhs4zsv2ujhylmd92c28pqjxsje on 44'/118'/17'/0/0) #17 js:2:umee:umee102w826rmvswfhs4zsv2ujhylmd92c28pqjxsje:
undefined: 0.002658 XPRT (27ops) (persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf on 44'/118'/0'/0/0) #0 js:2:persistence:persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf:
undefined: 0.003551 XPRT (12ops) (persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l on 44'/118'/1'/0/0) #1 js:2:persistence:persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l:
undefined: 0.006226 XPRT (29ops) (persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6 on 44'/118'/2'/0/0) #2 js:2:persistence:persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6:
undefined: 0.01212 XPRT (17ops) (persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq on 44'/118'/3'/0/0) #3 js:2:persistence:persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq:
undefined: 0.014806 XPRT (29ops) (persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e on 44'/118'/4'/0/0) #4 js:2:persistence:persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e:
undefined: 0.000252 XPRT (30ops) (persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc on 44'/118'/5'/0/0) #5 js:2:persistence:persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc:
undefined: 0.017877 XPRT (21ops) (persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7 on 44'/118'/6'/0/0) #6 js:2:persistence:persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7:
undefined: 0.006247 XPRT (24ops) (persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch on 44'/118'/7'/0/0) #7 js:2:persistence:persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch:
undefined: 0.022923 XPRT (20ops) (persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm on 44'/118'/8'/0/0) #8 js:2:persistence:persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm:
undefined: 0.000005 XPRT (12ops) (persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz on 44'/118'/9'/0/0) #9 js:2:persistence:persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz:
undefined: 0.033761 XPRT (18ops) (persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3 on 44'/118'/10'/0/0) #10 js:2:persistence:persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3:
undefined: 0.101425 XPRT (23ops) (persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7 on 44'/118'/11'/0/0) #11 js:2:persistence:persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7:
undefined: 0.301831 XPRT (25ops) (persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd on 44'/118'/12'/0/0) #12 js:2:persistence:persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd:
undefined: 0.238237 XPRT (48ops) (persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn on 44'/118'/13'/0/0) #13 js:2:persistence:persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn:
undefined: 5.79071 XPRT (12ops) (persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m on 44'/118'/14'/0/0) #14 js:2:persistence:persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m:
undefined: 9.25729 XPRT (48ops) (persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92 on 44'/118'/15'/0/0) #15 js:2:persistence:persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92:
undefined: 9.06123 XPRT (11ops) (persistence1xr8krhp99mp9ncrz6dfgre542nv0rc8l953354 on 44'/118'/16'/0/0) #16 js:2:persistence:persistence1xr8krhp99mp9ncrz6dfgre542nv0rc8l953354:
undefined: 0 XPRT (0ops) (persistence102w826rmvswfhs4zsv2ujhylmd92c28pugauc0 on 44'/118'/17'/0/0) #17 js:2:persistence:persistence102w826rmvswfhs4zsv2ujhylmd92c28pugauc0:
undefined: 0 QCK (0ops) (quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l on 44'/118'/0'/0/0) #0 js:2:quicksilver:quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l:
undefined: 0.003289 QCK (7ops) (quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf on 44'/118'/1'/0/0) #1 js:2:quicksilver:quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf:
undefined: 0.0005 QCK (0ops) (quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev on 44'/118'/2'/0/0) #2 js:2:quicksilver:quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev:
undefined: 0.00058 QCK (0ops) (quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk on 44'/118'/3'/0/0) #3 js:2:quicksilver:quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk:
undefined: 0.000696 QCK (0ops) (quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0 on 44'/118'/4'/0/0) #4 js:2:quicksilver:quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0:
undefined: 0.001906 QCK (0ops) (quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw on 44'/118'/5'/0/0) #5 js:2:quicksilver:quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw:
undefined: 0.000465 QCK (0ops) (quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug on 44'/118'/6'/0/0) #6 js:2:quicksilver:quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug:
undefined: 0.001033 QCK (0ops) (quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p on 44'/118'/7'/0/0) #7 js:2:quicksilver:quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p:
undefined: 0.002759 QCK (0ops) (quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d on 44'/118'/8'/0/0) #8 js:2:quicksilver:quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d:
undefined: 0.002027 QCK (0ops) (quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585 on 44'/118'/9'/0/0) #9 js:2:quicksilver:quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585:
undefined: 0.014038 QCK (0ops) (quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8 on 44'/118'/10'/0/0) #10 js:2:quicksilver:quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8:
undefined: 0.464333 QCK (0ops) (quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg on 44'/118'/11'/0/0) #11 js:2:quicksilver:quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg:
undefined: 0.1663 QCK (0ops) (quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm on 44'/118'/12'/0/0) #12 js:2:quicksilver:quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm:
undefined: 3.11842 QCK (0ops) (quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9 on 44'/118'/13'/0/0) #13 js:2:quicksilver:quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9:
undefined: 2.47317 QCK (0ops) (quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad on 44'/118'/14'/0/0) #14 js:2:quicksilver:quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad:
undefined: 4.9382 QCK (0ops) (quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju on 44'/118'/15'/0/0) #15 js:2:quicksilver:quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju:
undefined: 11.4453 QCK (0ops) (quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr on 44'/118'/16'/0/0) #16 js:2:quicksilver:quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr:
undefined: 0 QCK (0ops) (quick102w826rmvswfhs4zsv2ujhylmd92c28peqta0e on 44'/118'/17'/0/0) #17 js:2:quicksilver:quick102w826rmvswfhs4zsv2ujhylmd92c28peqta0e:
undefined: 0 NOM (24ops) (onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg on 44'/118'/0'/0/0) #0 js:2:onomy:onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg:
undefined: 0.00000205 NOM (40ops) (onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67 on 44'/118'/1'/0/0) #1 js:2:onomy:onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67:
undefined: 0 NOM (29ops) (onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m on 44'/118'/2'/0/0) #2 js:2:onomy:onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m:
undefined: 0 NOM (25ops) (onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp on 44'/118'/3'/0/0) #3 js:2:onomy:onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp:
undefined: 0 NOM (29ops) (onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c on 44'/118'/4'/0/0) #4 js:2:onomy:onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c:
undefined: 0 NOM (47ops) (onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he on 44'/118'/5'/0/0) #5 js:2:onomy:onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he:
undefined: 0.00000019 NOM (18ops) (onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l on 44'/118'/6'/0/0) #6 js:2:onomy:onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l:
undefined: 0.0000001 NOM (25ops) (onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k on 44'/118'/7'/0/0) #7 js:2:onomy:onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k:
undefined: 0.00000005 NOM (6ops) (onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6 on 44'/118'/8'/0/0) #8 js:2:onomy:onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6:
undefined: 0.0000078 NOM (50ops) (onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r on 44'/118'/9'/0/0) #9 js:2:onomy:onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r:
undefined: 0.00001168 NOM (12ops) (onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls on 44'/118'/10'/0/0) #10 js:2:onomy:onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls:
undefined: 0.00016993 NOM (37ops) (onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl on 44'/118'/11'/0/0) #11 js:2:onomy:onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl:
undefined: 0.00000208 NOM (12ops) (onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv on 44'/118'/12'/0/0) #12 js:2:onomy:onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv:
undefined: 0.21773 NOM (23ops) (onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj on 44'/118'/13'/0/0) #13 js:2:onomy:onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj:
undefined: 0.400236 NOM (12ops) (onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46 on 44'/118'/14'/0/0) #14 js:2:onomy:onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46:
undefined: 0.0528771 NOM (6ops) (onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t on 44'/118'/15'/0/0) #15 js:2:onomy:onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t:
undefined: 1.13535 NOM (15ops) (onomy1xr8krhp99mp9ncrz6dfgre542nv0rc8l3er5t5 on 44'/118'/16'/0/0) #16 js:2:onomy:onomy1xr8krhp99mp9ncrz6dfgre542nv0rc8l3er5t5:
undefined: 0 NOM (0ops) (onomy102w826rmvswfhs4zsv2ujhylmd92c28pg90e8w on 44'/118'/17'/0/0) #17 js:2:onomy:onomy102w826rmvswfhs4zsv2ujhylmd92c28pg90e8w:
undefined: 0.005246 SEI (0ops) (sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v on 44'/118'/0'/0/0) #0 js:2:sei_network:sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v:
undefined: 0.010124 SEI (0ops) (sei1qvtnzptp30maznnhdg30xl2jtdq2shpn2s5qd6 on 44'/118'/1'/0/0) #1 js:2:sei_network:sei1qvtnzptp30maznnhdg30xl2jtdq2shpn2s5qd6:
undefined: 0 SEI (0ops) (sei1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw4vusxl on 44'/118'/2'/0/0) #2 js:2:sei_network:sei1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw4vusxl:
undefined: 0.027521 SEI (0ops) (sei1hgyf054qztvmty3cayuw9nedftlhejv5xd54l9 on 44'/118'/3'/0/0) #3 js:2:sei_network:sei1hgyf054qztvmty3cayuw9nedftlhejv5xd54l9:
undefined: 0 SEI (0ops) (sei1vc7s929uh2yxyhau4wsg5th9jzedvkurwspxau on 44'/118'/4'/0/0) #4 js:2:sei_network:sei1vc7s929uh2yxyhau4wsg5th9jzedvkurwspxau:
undefined: 0 SEI (0ops) (sei1qgrd8srhvald995uvpeyncvwg7afgkmrzsj8qa on 44'/118'/5'/0/0) #5 js:2:sei_network:sei1qgrd8srhvald995uvpeyncvwg7afgkmrzsj8qa:
undefined: 0.013449 SEI (0ops) (sei1n6vccpa77x7xyhnk98jy6gg3rmgjkazxen5vrm on 44'/118'/6'/0/0) #6 js:2:sei_network:sei1n6vccpa77x7xyhnk98jy6gg3rmgjkazxen5vrm:
undefined: 0.004018 SEI (0ops) (sei1v283e7h2plllyjwgqrexv2ge5e4z252u0d2fsj on 44'/118'/7'/0/0) #7 js:2:sei_network:sei1v283e7h2plllyjwgqrexv2ge5e4z252u0d2fsj:
undefined: 0.002195 SEI (0ops) (sei1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ww5667 on 44'/118'/8'/0/0) #8 js:2:sei_network:sei1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ww5667:
undefined: 0.014582 SEI (0ops) (sei1jgk668h53gd9wn09mndq7uzgk80nr5d80upsc8 on 44'/118'/9'/0/0) #9 js:2:sei_network:sei1jgk668h53gd9wn09mndq7uzgk80nr5d80upsc8:
undefined: 0.01225 SEI (0ops) (sei1733g3dfzj6tulcqtvz628ypuqj0hvlrzxt3dg5 on 44'/118'/10'/0/0) #10 js:2:sei_network:sei1733g3dfzj6tulcqtvz628ypuqj0hvlrzxt3dg5:
undefined: 0 SEI (0ops) (sei1q09970dekm5hdku5tta7p9w6kldyyf25r76f5m on 44'/118'/11'/0/0) #11 js:2:sei_network:sei1q09970dekm5hdku5tta7p9w6kldyyf25r76f5m:
undefined: 0.005197 SEI (0ops) (sei1yhlye27fl05kg4nhmeu5d579m8ups9ewmzhvyg on 44'/118'/12'/0/0) #12 js:2:sei_network:sei1yhlye27fl05kg4nhmeu5d579m8ups9ewmzhvyg:
undefined: 0.00525 SEI (0ops) (sei1890w5jltm6wmq2jr9f9e8x4vhs5fx30qack6gk on 44'/118'/13'/0/0) #13 js:2:sei_network:sei1890w5jltm6wmq2jr9f9e8x4vhs5fx30qack6gk:
undefined: 0.003307 SEI (0ops) (sei1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap4jcxz7 on 44'/118'/14'/0/0) #14 js:2:sei_network:sei1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap4jcxz7:
undefined: 0 SEI (0ops) (sei10wwjgt3uluxt4zq4qxnkcv96nyz4cata6zw8d0 on 44'/118'/15'/0/0) #15 js:2:sei_network:sei10wwjgt3uluxt4zq4qxnkcv96nyz4cata6zw8d0:
undefined: 0.134041 STARS (0ops) (stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu on 44'/118'/0'/0/0) #0 js:2:stargaze:stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu:
undefined: 0.023931 STARS (0ops) (stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2 on 44'/118'/1'/0/0) #1 js:2:stargaze:stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2:
undefined: 0.263623 STARS (1ops) (stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0 on 44'/118'/2'/0/0) #2 js:2:stargaze:stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0:
undefined: 0.241914 STARS (0ops) (stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4 on 44'/118'/3'/0/0) #3 js:2:stargaze:stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4:
undefined: 0.000004 STARS (0ops) (stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv on 44'/118'/4'/0/0) #4 js:2:stargaze:stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv:
undefined: 0.165246 STARS (0ops) (stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd on 44'/118'/5'/0/0) #5 js:2:stargaze:stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd:
undefined: 0.077021 STARS (0ops) (stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt on 44'/118'/6'/0/0) #6 js:2:stargaze:stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt:
undefined: 0.264578 STARS (1ops) (stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz on 44'/118'/7'/0/0) #7 js:2:stargaze:stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz:
undefined: 0.147262 STARS (0ops) (stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw on 44'/118'/8'/0/0) #8 js:2:stargaze:stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw:
undefined: 0.000004 STARS (0ops) (stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h on 44'/118'/9'/0/0) #9 js:2:stargaze:stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h:
undefined: 0.113797 STARS (0ops) (stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y on 44'/118'/10'/0/0) #10 js:2:stargaze:stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y:
undefined: 0.685588 STARS (0ops) (stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet on 44'/118'/11'/0/0) #11 js:2:stargaze:stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet:
undefined: 0.192115 STARS (2ops) (stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc on 44'/118'/12'/0/0) #12 js:2:stargaze:stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc:
undefined: 105.338 STARS (1ops) (stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x on 44'/118'/13'/0/0) #13 js:2:stargaze:stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x:
undefined: 107.869 STARS (0ops) (stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w on 44'/118'/14'/0/0) #14 js:2:stargaze:stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w:
undefined: 164.713 STARS (0ops) (stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql on 44'/118'/15'/0/0) #15 js:2:stargaze:stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql:
undefined: 381.109 STARS (1ops) (stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q on 44'/118'/16'/0/0) #16 js:2:stargaze:stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q:
undefined: 0 STARS (0ops) (stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6 on 44'/118'/17'/0/0) #17 js:2:stargaze:stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6:
undefined: 0.009468 CORE (125ops) (core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk on 44'/118'/0'/0/0) #0 js:2:coreum:core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk:
undefined: 0.007217 CORE (165ops) (core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq on 44'/118'/1'/0/0) #1 js:2:coreum:core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq:
undefined: 0 CORE (170ops) (core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89 on 44'/118'/2'/0/0) #2 js:2:coreum:core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89:
undefined: 0.024213 CORE (174ops) (core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l on 44'/118'/3'/0/0) #3 js:2:coreum:core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l:
undefined: 0.033995 CORE (162ops) (core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux on 44'/118'/4'/0/0) #4 js:2:coreum:core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux:
undefined: 0.065661 CORE (171ops) (core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8 on 44'/118'/5'/0/0) #5 js:2:coreum:core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8:
undefined: 0.029522 CORE (142ops) (core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp on 44'/118'/6'/0/0) #6 js:2:coreum:core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp:
undefined: 0.089774 CORE (152ops) (core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g on 44'/118'/7'/0/0) #7 js:2:coreum:core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g:
undefined: 0.042286 CORE (125ops) (core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy on 44'/118'/8'/0/0) #8 js:2:coreum:core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy:
undefined: 0.766973 CORE (174ops) (core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea on 44'/118'/9'/0/0) #9 js:2:coreum:core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea:
undefined: 0.027605 CORE (124ops) (core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw on 44'/118'/10'/0/0) #10 js:2:coreum:core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw:
undefined: 0.085215 CORE (159ops) (core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p on 44'/118'/11'/0/0) #11 js:2:coreum:core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p:
undefined: 0.041275 CORE (88ops) (core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j on 44'/118'/12'/0/0) #12 js:2:coreum:core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j:
undefined: 0.773181 CORE (150ops) (core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv on 44'/118'/13'/0/0) #13 js:2:coreum:core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv:
undefined: 0.085356 CORE (98ops) (core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try on 44'/118'/14'/0/0) #14 js:2:coreum:core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try:
undefined: 0.304359 CORE (152ops) (core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4 on 44'/118'/15'/0/0) #15 js:2:coreum:core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4:
undefined: 26.7799 CORE (57ops) (core1xr8krhp99mp9ncrz6dfgre542nv0rc8lck0ea2 on 44'/118'/16'/0/0) #16 js:2:coreum:core1xr8krhp99mp9ncrz6dfgre542nv0rc8lck0ea2:
undefined: 0 CORE (0ops) (core102w826rmvswfhs4zsv2ujhylmd92c28pp2r53s on 44'/118'/17'/0/0) #17 js:2:coreum:core102w826rmvswfhs4zsv2ujhylmd92c28pp2r53s:
undefined: 0.017913 OM (0ops) (mantra1rs97j43nfyvc689y5rjvnnhrq3tes6ghshzpqh on 44'/118'/0'/0/0) #0 js:2:mantra:mantra1rs97j43nfyvc689y5rjvnnhrq3tes6ghshzpqh:
undefined: 0.040508 OM (0ops) (mantra1qvtnzptp30maznnhdg30xl2jtdq2shpnvh0jgp on 44'/118'/1'/0/0) #1 js:2:mantra:mantra1qvtnzptp30maznnhdg30xl2jtdq2shpnvh0jgp:
undefined: 0.016919 OM (0ops) (mantra1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnt8zry on 44'/118'/2'/0/0) #2 js:2:mantra:mantra1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnt8zry:
undefined: 0.009957 OM (0ops) (mantra1hgyf054qztvmty3cayuw9nedftlhejv5q20867 on 44'/118'/3'/0/0) #3 js:2:mantra:mantra1hgyf054qztvmty3cayuw9nedftlhejv5q20867:
undefined: 0.014598 OM (0ops) (mantra1vc7s929uh2yxyhau4wsg5th9jzedvkurgh65c8 on 44'/118'/4'/0/0) #4 js:2:mantra:mantra1vc7s929uh2yxyhau4wsg5th9jzedvkurgh65c8:
undefined: 0.000818 OM (0ops) (mantra1qgrd8srhvald995uvpeyncvwg7afgkmryhf49x on 44'/118'/5'/0/0) #5 js:2:mantra:mantra1qgrd8srhvald995uvpeyncvwg7afgkmryhf49x:
undefined: 0.000818 OM (0ops) (mantra1n6vccpa77x7xyhnk98jy6gg3rmgjkazxl507xq on 44'/118'/6'/0/0) #6 js:2:mantra:mantra1n6vccpa77x7xyhnk98jy6gg3rmgjkazxl507xq:
undefined: 0.037527 OM (0ops) (mantra1v283e7h2plllyjwgqrexv2ge5e4z252uf23m4f on 44'/118'/7'/0/0) #7 js:2:mantra:mantra1v283e7h2plllyjwgqrexv2ge5e4z252uf23m4f:
undefined: 0.000819 OM (0ops) (mantra1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gf0gl9 on 44'/118'/8'/0/0) #8 js:2:mantra:mantra1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gf0gl9:
undefined: 0.003067 OM (0ops) (mantra1jgk668h53gd9wn09mndq7uzgk80nr5d8fm6zau on 44'/118'/9'/0/0) #9 js:2:mantra:mantra1jgk668h53gd9wn09mndq7uzgk80nr5d8fm6zau:
undefined: 0.049462 OM (0ops) (mantra1733g3dfzj6tulcqtvz628ypuqj0hvlrzqv2ld0 on 44'/118'/10'/0/0) #10 js:2:mantra:mantra1733g3dfzj6tulcqtvz628ypuqj0hvlrzqv2ld0:
undefined: 1.16076 OM (0ops) (mantra1q09970dekm5hdku5tta7p9w6kldyyf259epm3q on 44'/118'/11'/0/0) #11 js:2:mantra:mantra1q09970dekm5hdku5tta7p9w6kldyyf259epm3q:
undefined: 0.218848 OM (1ops) (mantra1yhlye27fl05kg4nhmeu5d579m8ups9ewa9v7pn on 44'/118'/12'/0/0) #12 js:2:mantra:mantra1yhlye27fl05kg4nhmeu5d579m8ups9ewa9v7pn:
undefined: 0.020469 OM (0ops) (mantra1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmldgdd on 44'/118'/13'/0/0) #13 js:2:mantra:mantra1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmldgdd:
undefined: 0.579738 OM (0ops) (mantra1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn4r589 on 44'/118'/14'/0/0) #14 js:2:mantra:mantra1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn4r589:
undefined: 1.06136 OM (1ops) (mantra10wwjgt3uluxt4zq4qxnkcv96nyz4catau944g5 on 44'/118'/15'/0/0) #15 js:2:mantra:mantra10wwjgt3uluxt4zq4qxnkcv96nyz4catau944g5:
undefined: 0.198307 OM (0ops) (mantra1xr8krhp99mp9ncrz6dfgre542nv0rc8lqnaxet on 44'/118'/16'/0/0) #16 js:2:mantra:mantra1xr8krhp99mp9ncrz6dfgre542nv0rc8lqnaxet:
undefined: 0 OM (0ops) (mantra102w826rmvswfhs4zsv2ujhylmd92c28pe03t43 on 44'/118'/17'/0/0) #17 js:2:mantra:mantra102w826rmvswfhs4zsv2ujhylmd92c28pe03t43:
undefined: 0.00000004 CRO (13ops) (cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra on 44'/394'/0'/0/0) #0 js:2:crypto_org:cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra:
undefined: 0.0580447 CRO (27ops) (cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl on 44'/394'/1'/0/0) #1 js:2:crypto_org:cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl:
undefined: 1.43185 CRO (6ops) (cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2 on 44'/394'/2'/0/0) #2 js:2:crypto_org:cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2:
undefined: 1.48898 CRO (23ops) (cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd on 44'/394'/3'/0/0) #3 js:2:crypto_org:cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd:
undefined: 0.468138 CRO (16ops) (cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l on 44'/394'/4'/0/0) #4 js:2:crypto_org:cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l:
undefined: 14.5781 CRO (20ops) (cro1zfhcf2htapdkjlw4ffqzce7yfe6mhscd2su05p on 44'/394'/5'/0/0) #5 js:2:crypto_org:cro1zfhcf2htapdkjlw4ffqzce7yfe6mhscd2su05p:
undefined: 0.569947 CRO (14ops) (cro1gfrsr7eerpuc0zpl4j6wp3aj55gqahtls2hj9h on 44'/394'/6'/0/0) #6 js:2:crypto_org:cro1gfrsr7eerpuc0zpl4j6wp3aj55gqahtls2hj9h:
undefined: 2.84139 CRO (11ops) (cro1e2gxhqvvdhxnwd4k4txhegngcpudus6xq4jerk on 44'/394'/7'/0/0) #7 js:2:crypto_org:cro1e2gxhqvvdhxnwd4k4txhegngcpudus6xq4jerk:
undefined: 7.44954 CRO (6ops) (cro1rsl6f6zw3ygj4a0dj6ks8e72c0na4d2djzjfer on 44'/394'/8'/0/0) #8 js:2:crypto_org:cro1rsl6f6zw3ygj4a0dj6ks8e72c0na4d2djzjfer:
undefined: 3.49269 CRO (4ops) (cro1hguy0m603wmgs73m4ya68946e9ym392npqjt64 on 44'/394'/9'/0/0) #9 js:2:crypto_org:cro1hguy0m603wmgs73m4ya68946e9ym392npqjt64:
undefined: 0.0596492 CRO (2ops) (cro1un0mqythaxtt8eegq5ycqhry33fwk873dmxlu9 on 44'/394'/10'/0/0) #10 js:2:crypto_org:cro1un0mqythaxtt8eegq5ycqhry33fwk873dmxlu9:
undefined: 1.88694 CRO (1ops) (cro1e4x938jzzfdjt37f9vlwj005ay0x2l8r8yknfd on 44'/394'/11'/0/0) #11 js:2:crypto_org:cro1e4x938jzzfdjt37f9vlwj005ay0x2l8r8yknfd:
undefined: 0.423295 CRO (1ops) (cro163wn7llaw9e65rm5u5uz24ar0qdmk0ym7x9vrc on 44'/394'/12'/0/0) #12 js:2:crypto_org:cro163wn7llaw9e65rm5u5uz24ar0qdmk0ym7x9vrc:
undefined: 0 CRO (0ops) (cro1arktckp24j6zuwmsq7wgdjm39vsamfrwqgjm7w on 44'/394'/13'/0/0) #13 js:2:crypto_org:cro1arktckp24j6zuwmsq7wgdjm39vsamfrwqgjm7w:
undefined: 0.017971 XION (7ops) (xion1rs97j43nfyvc689y5rjvnnhrq3tes6ghe4j84x on 44'/118'/0'/0/0) #0 js:2:xion:xion1rs97j43nfyvc689y5rjvnnhrq3tes6ghe4j84x:
undefined: 0.014081 XION (6ops) (xion1qvtnzptp30maznnhdg30xl2jtdq2shpn94l5as on 44'/118'/1'/0/0) #1 js:2:xion:xion1qvtnzptp30maznnhdg30xl2jtdq2shpn94l5as:
undefined: 0 XION (6ops) (xion1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw6fhyk4 on 44'/118'/2'/0/0) #2 js:2:xion:xion1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw6fhyk4:
undefined: 0.020178 XION (17ops) (xion1hgyf054qztvmty3cayuw9nedftlhejv5fglp00 on 44'/118'/3'/0/0) #3 js:2:xion:xion1hgyf054qztvmty3cayuw9nedftlhejv5fglp00:
undefined: 0.014644 XION (7ops) (xion1vc7s929uh2yxyhau4wsg5th9jzedvkurp42jdk on 44'/118'/4'/0/0) #4 js:2:xion:xion1vc7s929uh2yxyhau4wsg5th9jzedvkurp42jdk:
undefined: 0.01082 XION (7ops) (xion1qgrd8srhvald995uvpeyncvwg7afgkmrd4ensh on 44'/118'/5'/0/0) #5 js:2:xion:xion1qgrd8srhvald995uvpeyncvwg7afgkmrd4ensh:
undefined: 0 XION (9ops) (xion1n6vccpa77x7xyhnk98jy6gg3rmgjkazxkklcn3 on 44'/118'/6'/0/0) #6 js:2:xion:xion1n6vccpa77x7xyhnk98jy6gg3rmgjkazxkklcn3:
undefined: 0.009945 XION (1ops) (xion1v283e7h2plllyjwgqrexv2ge5e4z252uqgpaqc on 44'/118'/7'/0/0) #7 js:2:xion:xion1v283e7h2plllyjwgqrexv2ge5e4z252uqgpaqc:
undefined: 0 XION (0ops) (xion1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ptlw25 on 44'/118'/8'/0/0) #8 js:2:xion:xion1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ptlw25:
undefined: 0.090412 ROCK (8ops) (zen1rs97j43nfyvc689y5rjvnnhrq3tes6ghp36y0u on 44'/118'/0'/0/0) #0 js:2:zenrock:zen1rs97j43nfyvc689y5rjvnnhrq3tes6ghp36y0u:
undefined: 1.14668 ROCK (7ops) (zen1qvtnzptp30maznnhdg30xl2jtdq2shpna3hh82 on 44'/118'/1'/0/0) #1 js:2:zenrock:zen1qvtnzptp30maznnhdg30xl2jtdq2shpna3hh82:
undefined: 0.189651 ROCK (5ops) (zen1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzdl8v0 on 44'/118'/2'/0/0) #2 js:2:zenrock:zen1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzdl8v0:
undefined: 1.89447 ROCK (2ops) (zen1hgyf054qztvmty3cayuw9nedftlhejv53vhz44 on 44'/118'/3'/0/0) #3 js:2:zenrock:zen1hgyf054qztvmty3cayuw9nedftlhejv53vhz44:
undefined: 2.05041 ROCK (2ops) (zen1vc7s929uh2yxyhau4wsg5th9jzedvkure3z3hv on 44'/118'/4'/0/0) #4 js:2:zenrock:zen1vc7s929uh2yxyhau4wsg5th9jzedvkure3z3hv:
undefined: 4.4999 ROCK (3ops) (zen1qgrd8srhvald995uvpeyncvwg7afgkmr433s2d on 44'/118'/5'/0/0) #5 js:2:zenrock:zen1qgrd8srhvald995uvpeyncvwg7afgkmr433s2d:
undefined: 0 ROCK (0ops) (zen1n6vccpa77x7xyhnk98jy6gg3rmgjkazxwjhmft on 44'/118'/6'/0/0) #6 js:2:zenrock:zen1n6vccpa77x7xyhnk98jy6gg3rmgjkazxwjhmft:
undefined: 0.0014245 EGLD (500ops) (erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp on 44'/508'/0'/0/0) #0 js:2:elrond:erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp:
undefined: 0.0591611 EGLD (534ops) (erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6 on 44'/508'/1'/0/0) #1 js:2:elrond:erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6:
undefined: 0.222887 EGLD (528ops) (erd1ql9pxrhe29cjr8qgxx3rtmh9lyax5x9dkvu3mfzrgt4e8hwk536ssl4sea on 44'/508'/2'/0/0) #2 js:2:elrond:erd1ql9pxrhe29cjr8qgxx3rtmh9lyax5x9dkvu3mfzrgt4e8hwk536ssl4sea:
undefined: 0.131199 EGLD (493ops) (erd1sjvd5mh946cty4wq0ya0d82509tc8eulxjujrad5ztfwjlhkqz0qy5yzmn on 44'/508'/3'/0/0) #3 js:2:elrond:erd1sjvd5mh946cty4wq0ya0d82509tc8eulxjujrad5ztfwjlhkqz0qy5yzmn:
undefined: 0.198054 EGLD (459ops) (erd149kzxgtymzzaddanlj02zhyhwves9wspvk8p69u325tjln5en9aqf8x8el on 44'/508'/4'/0/0) #4 js:2:elrond:erd149kzxgtymzzaddanlj02zhyhwves9wspvk8p69u325tjln5en9aqf8x8el:
undefined: 0.0825241 EGLD (417ops) (erd143yn6uvrfzjptq5g7wvzntl3fcthsxtxrp9f3dgasluj6q5n0pxq2td67n on 44'/508'/5'/0/0) #5 js:2:elrond:erd143yn6uvrfzjptq5g7wvzntl3fcthsxtxrp9f3dgasluj6q5n0pxq2td67n:
undefined: 0.216043 EGLD (329ops) (erd1nhe920dlsx8u0lg46grd82dc8vqj8wejh8u7xcdjzfr8yy8ncdtsgtgjz7 on 44'/508'/6'/0/0) #6 js:2:elrond:erd1nhe920dlsx8u0lg46grd82dc8vqj8wejh8u7xcdjzfr8yy8ncdtsgtgjz7:
undefined: 0 EGLD (0ops) (erd1w4jjugkk5rp8hn8erefltjn0xek4x60t4hzsmnkfty7930sxujtqgryqgw on 44'/508'/7'/0/0) #7 js:2:elrond:erd1w4jjugkk5rp8hn8erefltjn0xek4x60t4hzsmnkfty7930sxujtqgryqgw:
undefined: 0.0476209 ETC (159ops) (0x7584df0780C5eB83b26aE55abBc265014f8bf897 on 44'/61'/0'/0/0) #0 js:2:ethereum_classic:0x7584df0780C5eB83b26aE55abBc265014f8bf897:
undefined: 0.0475957 ETC (142ops) (0x62ab4485f7EC0a291540dA31b82BE881166cD786 on 44'/61'/1'/0/0) #1 js:2:ethereum_classic:0x62ab4485f7EC0a291540dA31b82BE881166cD786:
undefined: 0.0476114 ETC (113ops) (0x0b248ABea3Ee9e94C03bc85c37516D16C909875c on 44'/61'/2'/0/0) #2 js:2:ethereum_classic:0x0b248ABea3Ee9e94C03bc85c37516D16C909875c:
undefined: 0.0420533 ETC (140ops) (0x01530f90685821747Eab008Fc217a2411AA6433C on 44'/61'/3'/0/0) #3 js:2:ethereum_classic:0x01530f90685821747Eab008Fc217a2411AA6433C:
undefined: 0.0475946 ETC (131ops) (0xD5fa1a3014A6a24f2C17E532713eb51500AD2bE8 on 44'/61'/4'/0/0) #4 js:2:ethereum_classic:0xD5fa1a3014A6a24f2C17E532713eb51500AD2bE8:
undefined: 0 ETC (0ops) (0x234D2443790764a622430213B6eCcA33272ca575 on 44'/61'/5'/0/0) #5 js:2:ethereum_classic:0x234D2443790764a622430213B6eCcA33272ca575:
undefined: 0.0028329 POL (464ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:polygon:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00078088 POL (414ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:polygon:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0131069 POL (434ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:polygon:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.190903 POL (440ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:polygon:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.41754 POL (413ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:polygon:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0.916462 POL (297ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:polygon:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 1.49502 POL (225ops) (0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E on 44'/60'/6'/0/0) #6 js:2:polygon:0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E:
undefined: 3.2755 POL (217ops) (0x48ec5fC762B9300e3B5e04E8ca634165240A1B15 on 44'/60'/7'/0/0) #7 js:2:polygon:0x48ec5fC762B9300e3B5e04E8ca634165240A1B15:
undefined: 12.4749 POL (202ops) (0x6434189D6179FB9DE41b392ED67a85C9F63216F6 on 44'/60'/8'/0/0) #8 js:2:polygon:0x6434189D6179FB9DE41b392ED67a85C9F63216F6:
undefined: 0 POL (0ops) (0x401C9CcB29d92ee707C6271ea5126aA6c257a37E on 44'/60'/9'/0/0) #9 js:2:polygon:0x401C9CcB29d92ee707C6271ea5126aA6c257a37E:
undefined: 0.00072909 𝚝ETH (150ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00036839 𝚝ETH (181ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00044794 𝚝ETH (170ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:ethereum_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0001192 𝚝ETH (147ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00094081 𝚝ETH (133ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:ethereum_sepolia:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:ethereum_sepolia:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00268302 𝚝ETH (352ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_holesky:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0021348 𝚝ETH (356ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_holesky:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.140839 𝚝ETH (380ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:ethereum_holesky:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0166678 𝚝ETH (312ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_holesky:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.0651399 𝚝ETH (234ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:ethereum_holesky:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:ethereum_holesky:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00077146 ETH (173ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00194559 ETH (189ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0007354 ETH (155ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00160531 ETH (135ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00003938 ETH (164ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:arbitrum:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:arbitrum:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00103084 𝚝ETH (268ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00949615 𝚝ETH (312ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0075609 𝚝ETH (291ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.216056 𝚝ETH (250ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.74972 𝚝ETH (176ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:arbitrum_sepolia:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:arbitrum_sepolia:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.793924 FLR (490ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:flare:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.804325 FLR (545ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:flare:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.800893 FLR (494ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:flare:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.796164 FLR (537ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:flare:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.804751 FLR (104ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:flare:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 FLR (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:flare:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 220.966 SGB (807ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:songbird:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 220.052 SGB (789ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:songbird:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 6.45127 SGB (792ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:songbird:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 489.441 SGB (753ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:songbird:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.000525 SGB (291ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:songbird:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 SGB (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:songbird:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.760895 GLMR (666ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonbeam:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 3.02267 GLMR (681ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonbeam:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 6.06199 GLMR (626ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonbeam:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 10.278 GLMR (666ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonbeam:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 38.6035 GLMR (244ops) (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: 1,457.79 BTT (667ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:bittorrent:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 47,948.4 BTT (723ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:bittorrent:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 700,521 BTT (694ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:bittorrent:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 5,802.82 BTT (593ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:bittorrent:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 732,490 BTT (291ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:bittorrent:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 BTT (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:bittorrent:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00097436 ETH (32ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:optimism:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00095956 ETH (23ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:optimism:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00000939 ETH (33ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:optimism:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00092379 ETH (31ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:optimism:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 ETH (0ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:optimism:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:optimism_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.731367 EWT (554ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:energy_web:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.973173 EWT (641ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:energy_web:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.782185 EWT (635ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:energy_web:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 1.22411 EWT (626ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:energy_web:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 3.81217 EWT (302ops) (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: 10.0677 ASTR (710ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:astar:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 20.0505 ASTR (699ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:astar:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 49.5711 ASTR (700ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:astar:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 78.4626 ASTR (604ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:astar:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 158.872 ASTR (263ops) (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.00667676 METIS (25ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:metis:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00599174 METIS (25ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:metis:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00634241 METIS (26ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:metis:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0165522 METIS (25ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:metis:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.0921966 METIS (26ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:metis:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 METIS (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:metis:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.18702 MOVR (533ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonriver:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0896761 MOVR (577ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonriver:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.109782 MOVR (595ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonriver:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 1.60601 MOVR (560ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonriver:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.23177 MOVR (243ops) (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.841405 VLX (100ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:velas_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 108.116 VLX (101ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:velas_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 57.1519 VLX (100ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:velas_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 180.053 VLX (100ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:velas_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 565.823 VLX (101ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:velas_evm:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 VLX (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:velas_evm:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.728668 SYS (684ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:syscoin:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.652717 SYS (682ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:syscoin:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 32.4499 SYS (282ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:syscoin:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 21.2446 SYS (582ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:syscoin:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 1.9577 SYS (660ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:syscoin:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
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.00713919 𝚝ETH (282ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:base_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.038379 𝚝ETH (283ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:base_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.222787 𝚝ETH (266ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:base_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.148764 𝚝ETH (260ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:base_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.559989 𝚝ETH (214ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:base_sepolia:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:base_sepolia:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 2.68938 NEON (325ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:neon_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.396002 NEON (332ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:neon_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 8.30518 NEON (336ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:neon_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 2.0104 NEON (326ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:neon_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.351763 NEON (323ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:neon_evm:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 NEON (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:neon_evm:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00712542 LYX (358ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:lukso:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00574447 LYX (413ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:lukso:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0612431 LYX (387ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:lukso:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.124999 LYX (393ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:lukso:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.284147 LYX (272ops) (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.00090082 ETH (220ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:linea:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00084298 ETH (232ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:linea:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0016845 ETH (272ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:linea:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00089144 ETH (240ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:linea:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00086094 ETH (233ops) (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.00176491 ETH (74ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:blast:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00161665 ETH (94ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:blast:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00054355 ETH (96ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00173878 ETH (88ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:blast:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00320517 ETH (81ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:blast:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:blast:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.0500384 𝚝ETH (1ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 𝚝ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:blast_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.01 ETH (2ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:scroll:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:scroll:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.05 𝚝ETH (1ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:scroll_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 𝚝ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:scroll_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0 XTZ (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:etherlink:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.003 ETH (3ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:zksync:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:zksync:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:zksync_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 1.23939 HBAR (652ops) (0.0.3663977 on 44/3030) hederaBip44#0 js:2:hedera:0.0.3663977:hederaBip44
undefined: 1.33706 HBAR (606ops) (0.0.3664525 on 44/3030) hederaBip44#1 js:2:hedera:0.0.3664525:hederaBip44
undefined: 16.5929 HBAR (561ops) (0.0.3664539 on 44/3030) hederaBip44#2 js:2:hedera:0.0.3664539:hederaBip44
undefined: 19.2011 HBAR (537ops) (0.0.3664563 on 44/3030) hederaBip44#3 js:2:hedera:0.0.3664563:hederaBip44
undefined: 0.00017707 ICP (199ops) (f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209 on 44'/223'/0'/0/0) internet_computer#0 js:2:internet_computer:04e529ca9ff4709b35af64dce4f0719e770d5e185e4ee972729b75495b27628fad0990203fe3ac7079c643a6dd23384e597c65b7bbebbf994b8304253f1bd124e4:internet_computer
undefined: 0.00000867 ICP (176ops) (6084b3d34e7d4efd544ea0c3617a816577d00feb0de0db71b560b7687e7d3c14 on 44'/223'/0'/0/1) internet_computer#1 js:2:internet_computer:0404b6a7df5dd483be4711fbdc9248af1e49b3a205334120118fe1dd9567da874d2655f681d9935b02139ffe1997c7fcb7781c04917303d90c7ea157d495ec30d3:internet_computer
undefined: 0.00045414 ICP (184ops) (ff5ed1dc2538d7a8b3158e7c9d9b05f80bc5f49f292f1ad2a59576a70bfc4721 on 44'/223'/0'/0/2) internet_computer#2 js:2:internet_computer:04c6d5dab70167c7b104904e57ee8afc84e8b4809c927ceec353a217f1402438b86bb9515e5bdbcc8f187c2c0c5f539d6459fc99c86af1244f452175fd9b736714:internet_computer
undefined: 0.00092915 ICP (169ops) (a45d0e0afb2c416464342615b6ee1902ac6895cf5e9eab2ccc184978164e9310 on 44'/223'/0'/0/3) internet_computer#3 js:2:internet_computer:040e411918ebc5963b5f89938dd674d6cb95131ce3d335957cd8efd99cce3521ea22b3f0fc53996b9ce3373a86ca57def22b89829ae905fde5d22c4522a7af5aa2:internet_computer
undefined: 0.00025827 ICP (169ops) (5084840b6ed50fa97b40c93863092770dc74f42bd2fbc742b76ec2999e789262 on 44'/223'/0'/0/4) internet_computer#4 js:2:internet_computer:046036d79bf131623410cfe77b7ccc32c923c6f8dc1b62448111328a2a791b1a7df2d1d4ca80659f3f0613e2334df370ab1c4e38c724decdf7f9f650a61e4ea090:internet_computer
undefined: 0.00339229 ICP (125ops) (0ec8cbc167cf495b7800efe653586d14ee0a53ef8880c63129b180580b02a8af on 44'/223'/0'/0/5) internet_computer#5 js:2:internet_computer:04e3bde2b3aeee5ae2af7ffdd25cc416df033c04d084ac02166ee52281e81be7945b119ab171b224984a8ff45adf4cbf28a392524dbefff12edf5d2470efd43375:internet_computer
undefined: 0.985158 ICP (86ops) (1d571d508b3c8901b3c4a8fdb733f5b831b9eab4f1f7443890ae04b36117fad5 on 44'/223'/0'/0/6) internet_computer#6 js:2:internet_computer:04000cb53ebc7761d8c976856db22cebbdf438fc7b3f9568ac90788d82be9890ac74d8a8f4f5cf86f8b4ea51e251c4aebda1e33af2c32fd90cbe051e5a0ffd641d:internet_computer
undefined: 0 ICP (0ops) (49a624b4179ec33e0faaa5998246c46ca16673ad9dc0e44f0026f5061177ebfb on 44'/223'/0'/0/7) internet_computer#7 js:2:internet_computer:04be24b119ae8d9a928654291e45eb8711739b524a36b8b1ace88a4ac0ec83ebfbf43eff2650c3bed6cae4898ae56cc59117c746de408dabc99ea37a590a12632c:internet_computer
undefined: 0.00243888 ICX (82ops) (hxdd614da5f057ce32185619f98edd81445a946ea5 on 44'/4801368'/0'/0'/0') icon#0 js:2:icon:hxdd614da5f057ce32185619f98edd81445a946ea5:icon
undefined: 0.0112953 ICX (87ops) (hx895d4e11fae4c0d5280481752a19d819c1657f67 on 44'/4801368'/0'/0'/1') icon#1 js:2:icon:hx895d4e11fae4c0d5280481752a19d819c1657f67:icon
undefined: 0 ICX (84ops) (hx227e5543bd947e939d4f4dd3361627f3963cc7bf on 44'/4801368'/0'/0'/2') icon#2 js:2:icon:hx227e5543bd947e939d4f4dd3361627f3963cc7bf:icon
undefined: 0.00862776 ICX (59ops) (hxce13c96a270a5f5a7cfeba91273e6d726b152ea3 on 44'/4801368'/0'/0'/3') icon#3 js:2:icon:hxce13c96a270a5f5a7cfeba91273e6d726b152ea3:icon
undefined: 0.0168592 ICX (56ops) (hxc11d409cce9c51ba10497e8095802210a41a13c4 on 44'/4801368'/0'/0'/4') icon#4 js:2:icon:hxc11d409cce9c51ba10497e8095802210a41a13c4:icon
undefined: 0.119748 ICX (38ops) (hxdac11c144fd926ed044199586ccdc14df1ac7313 on 44'/4801368'/0'/0'/5') icon#5 js:2:icon:hxdac11c144fd926ed044199586ccdc14df1ac7313:icon
undefined: 9.56853 ICX (31ops) (hx793091df35b221dacb509a7b581c060478329ea2 on 44'/4801368'/0'/0'/6') icon#6 js:2:icon:hx793091df35b221dacb509a7b581c060478329ea2:icon
undefined: 0 ICX (0ops) (hxfc7ad3c322576ea4daa967f6e50200e55ad51ee5 on 44'/4801368'/0'/0'/7') icon#7 js:2:icon:hxfc7ad3c322576ea4daa967f6e50200e55ad51ee5:icon
undefined: 0.44455 NEAR (66ops) (0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf on 44'/397'/0'/0'/0') nearbip44h#0 js:2:near:0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf:nearbip44h
undefined: 0.0519692 NEAR (20ops) (85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798 on 44'/397'/0'/0'/1') nearbip44h#1 js:2:near:85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798:nearbip44h
undefined: 0.0520313 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.0520988 NEAR (22ops) (aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93 on 44'/397'/0'/0'/4') nearbip44h#4 js:2:near:aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93:nearbip44h
undefined: 0.0525176 NEAR (32ops) (07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce on 44'/397'/0'/0'/5') nearbip44h#5 js:2:near:07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce:nearbip44h
undefined: 0.0519969 NEAR (18ops) (bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7 on 44'/397'/0'/0'/6') nearbip44h#6 js:2:near:bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7:nearbip44h
undefined: 0.4451 NEAR (9ops) (e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2 on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2:nearbip44h
undefined: 0.0521346 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: 0.01009 TON (29ops) (UQDL7vAIogYGacmfO0xTS1bwPEMJNh1g1Jliwq2p-qWkS1J0 on 44'/607'/0'/0'/0'/0') ton#0 js:2:ton:3f0a4cc222f4d9b4d8bcfb5d0cb4a8908bbcb4a5e375c7ef745e6e78b780669d:ton
undefined: 0 TON (47ops) (UQCgFq3YfNA6MbXU__1AX1iSOy-iS5O5iIvqVprRQINAfACO on 44'/607'/0'/0'/1'/0') ton#1 js:2:ton:160444af87a5a38726dbe60ed81906095cb3e196ea1f7d5ec1be614945346359:ton
undefined: 0.0080161 TON (25ops) (UQCrRfsP_wKs6y2TfaBzZUzPDcH-gRignkJkeOkP3KXlParY on 44'/607'/0'/0'/2'/0') ton#2 js:2:ton:bb17bd2bb498dacdb2f2463285608bdee79f93b0300767a0729102f44cfec852:ton
undefined: 0.0131815 TON (28ops) (UQDkfo-2gm0LAN6Rs80vnTTHUtlEAn7TomCLKLhvbcw1LSHG on 44'/607'/0'/0'/3'/0') ton#3 js:2:ton:0ca11456791dafa4f1bd25138797661aaf6fa6e4d7d4606efc6757c8ef907291:ton
undefined: 0.0151678 TON (17ops) (UQCn-JC2p2S4NWRhqrHkuNmoziSwZ2rSYOIlq-GDUd2V0cq2 on 44'/607'/0'/0'/4'/0') ton#4 js:2:ton:00eb62bbc9b4515d20d3381b34c542c3cfdfdf1a3603eea8a25996ff01342b6a:ton
undefined: 0 TON (19ops) (UQA1a4iC0Zft5IaIfHEZvL9UH6XDT21vhezrmtOJGtSbMvFs on 44'/607'/0'/0'/5'/0') ton#5 js:2:ton:dedd6076377fcb492a47dba85c9cbfcec6f9b9df123355f1ac41a06890b1679b:ton
undefined: 0 TON (0ops) (UQAh3HfAveN89UPrnRe8jGWc9gGQRX6B2kY706gRUUsba10A on 44'/607'/0'/0'/6'/0') ton#6 js:2:ton:cd66d0f8aed63caa55661c8d43c5bfcf08d24e007275757711bbf3e4980d5075:ton
undefined: 0 VET (10ops) (0xc4B17901FECf86932c3bb296BB00E7c6816Fd416 on 44'/818'/0'/0/0) vechain#0 js:2:vechain:0xc4B17901FECf86932c3bb296BB00E7c6816Fd416:vechain
undefined: 2.65625 VET (7ops) (0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD on 44'/818'/0'/0/1) vechain#1 js:2:vechain:0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD:vechain
undefined: 2.34375 VET (2ops) (0x6fc5998724338CDe55Bba798273FAdcDE79c5074 on 44'/818'/0'/0/2) vechain#2 js:2:vechain:0x6fc5998724338CDe55Bba798273FAdcDE79c5074:vechain
undefined: 0 VET (0ops) (0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3 on 44'/818'/0'/0/3) vechain#3 js:2:vechain:0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3:vechain
undefined: 1.69191 XRP (201ops) (r9etPtq3oboweMPju5gdYufmvwhH2euz8z on 44'/144'/0'/0/0) #0 js:2:ripple:r9etPtq3oboweMPju5gdYufmvwhH2euz8z:
undefined: 1.05641 XRP (200ops) (rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH on 44'/144'/1'/0/0) #1 js:2:ripple:rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH:
undefined: 2.39859 XRP (200ops) (rMoFGec38toFg9ncbi9YbrYYmrP3G5exqn on 44'/144'/2'/0/0) #2 js:2:ripple:rMoFGec38toFg9ncbi9YbrYYmrP3G5exqn:
undefined: 38.8558 XRP (40ops) (rrnxW3THwB1ubsE9V78Lek6V1XYnNrodxC on 44'/144'/3'/0/0) #3 js:2:ripple:rrnxW3THwB1ubsE9V78Lek6V1XYnNrodxC:
undefined: 0 XRP (0ops) (rPX1z7bA8Mz7KQHetnwuqbEQMGApv8XKAu on 44'/144'/4'/0/0) #4 js:2:ripple:rPX1z7bA8Mz7KQHetnwuqbEQMGApv8XKAu:
Performance ⏲ 17min 59s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 12.8s 40min 29s 11.4s 52.8s 7min 8s 15.8s 13min 19s 9min 37s
Casper (0) N/A N/A N/A N/A N/A N/A N/A N/A
Celo (11) 1080ms 94.4s 3.6s 3.8s 6.3s 5.4s 12.6s N/A
Algorand (5) 0.95ms 1min 41s 2.65ms 1329ms 20.5s 142ms 10.9s 10.4s
Aptos (1) 0.27ms 17.4s 0.54ms 2510ms N/A N/A N/A N/A
Bitcoin Testnet (9) 0.17ms 2min 1s 2.23ms N/A N/A N/A N/A N/A
Bitcoin Cash (6) 2.25ms 76s 2.52ms 1261ms 31.2s 417ms 51.1s 48.4s
Bitcoin Gold (4) 0.12ms 65.5s 1.56ms 1075ms 44.4s 399ms 49.7s 50.7s
Dash (6) 0.21ms 67.1s 1.47ms 1050ms 43.2s 427ms 49.3s 48.2s
Digibyte (6) 0.17ms 75.5s 44ms 1282ms 32.3s 407ms 52.2s 50.2s
DogeCoin (6) 0.41ms 48.6s 1.62ms N/A N/A N/A N/A N/A
Komodo (4) 0.38ms 51.3s 8ms 2283ms 36.4s 514ms 47.4s 49.6s
Litecoin (6) 0.32ms 38.6s 20ms 1751ms 42.2s 417ms 50s 48s
ZCash (4) 0.32ms 19.4s 1.11ms N/A N/A N/A N/A N/A
Horizen (4) 0.40ms 16.5s 1.54ms 933ms 13.7s 420ms 35.9s 37.7s
osmosis (17) 1079ms 21.8s 4.45ms 849ms 5.1s 77ms 11.8s 10.5s
desmos (17) 1869ms 93.5s 4.8s 6.9s 8.5s N/A N/A N/A
dydx (17) 220ms 15.9s 19ms N/A N/A N/A N/A N/A
umee (17) 532ms 21.9s 51ms 1168ms 6.3s 126ms 0.37ms N/A
persistence (17) 242ms 56s 7ms 401ms 7.9s 118ms 0.24ms N/A
quicksilver (17) 499ms 54.9s 17ms 328ms 9s 37ms 0.35ms N/A
onomy (17) 342ms 31s 40ms 768ms 9.8s 92ms 0.26ms N/A
sei_network (15) 221ms 23.9s 11ms N/A N/A N/A N/A N/A
stargaze (17) 377ms 66.7s 38ms 2054ms 6.5s 103ms 0.23ms N/A
coreum (17) 155ms 55.9s 74ms 211ms 7.9s 313ms 0.20ms N/A
injective (0) 296ms N/A N/A N/A N/A N/A N/A N/A
mantra (17) 1019ms 85.6s 24ms 1917ms 4.7s 239ms 0.26ms N/A
crypto_org (13) 344ms 55.1s 21ms 661ms 4.6s 69ms 0.26ms N/A
xion (8) 210ms 21.6s 1.68ms N/A N/A N/A N/A N/A
zenrock (6) 54ms 13.1s 2.83ms 48ms 8.2s 36ms 0.47ms N/A
Elrond (7) 231ms 1min 42s 1.61ms 3.77ms 3.8s 192ms 13.2s 12.5s
Ethereum Classic (5) 79ms 25.1s 1.10ms N/A N/A N/A N/A N/A
Polygon (9) 142ms 82.4s 11ms 660ms 4s 47ms 10.4s 10.3s
Ethereum Sepolia (5) 41ms 31.8s 1.16ms N/A N/A N/A N/A N/A
Ethereum Holesky (5) 47ms 2min 21s 2.01ms 709ms 3.2s 167ms 20.2s 10.2s
Arbitrum (5) 77ms 14.3s 1.64ms 1123ms 3.5s 475ms 11.1s 11.1s
Arbitrum Sepolia (5) 112ms 17.9s 8ms 806ms 2902ms 368ms 11.5s 11.7s
Flare (5) 78ms 7.5s 2.40ms N/A N/A N/A N/A N/A
Songbird (5) 52ms 6.6s 1.34ms 174ms 3.2s 68ms 10.5s 10.6s
Moonbeam (5) 40ms 24.5s 22ms 387ms 3.9s 142ms 41.6s 11.6s
Rootstock (4) 44ms 14.6s 0.92ms N/A N/A N/A N/A N/A
Bittorent Chain (5) 36ms 13.6s 12ms 428ms 3.7s 151ms 11.8s 11.8s
OP Mainnet (4) 78ms 5.6s 15ms N/A N/A N/A N/A N/A
OP Sepolia (0) 97ms 1939ms N/A N/A N/A N/A N/A N/A
Energy Web (5) 34ms 8.2s 4.55ms 1526ms 3.3s 358ms 20.7s 11s
Astar (5) 42ms 8.7s 16ms 804ms 3.2s 226ms 1min 43s 11.2s
Metis (5) 64ms 35.2s 1.10ms 195ms 3.4s 176ms 21.7s 11.4s
Moonriver (5) 36ms 13.8s 1.41ms 301ms 3s 98ms 31.5s 12.9s
Velas EVM (5) 117ms 6s 4.14ms 593ms 3.1s 342ms 30.7s 10.8s
Syscoin (5) 42ms 4.1s 526ms 238ms 2967ms 83ms N/A N/A
Polygon zkEVM Testnet (0) 105ms N/A N/A N/A N/A N/A N/A N/A
Base (4) 164ms 6.5s 3.45ms N/A N/A N/A N/A N/A
Base Sepolia (5) 82ms 5.8s 3.95ms 888ms 6s 261ms 10.4s 10.4s
Klaytn (0) 36ms N/A N/A N/A N/A N/A N/A N/A
Neon EVM (5) 41ms 11.6s 1.66ms N/A N/A N/A N/A N/A
Lukso (5) 64ms 4.7s 9ms 168ms 4s 65ms 10.3s 10.3s
Linea (5) 52ms 15.2s 12ms 1046ms 3.6s 505ms 11.7s 11.6s
Linea Sepolia (0) 117ms 2829ms N/A N/A N/A N/A N/A N/A
Blast (5) 79ms 4.8s 599ms 183ms 3.3s 195ms N/A N/A
Blast Sepolia (1) 88ms 2392ms 2.40ms 561ms N/A N/A N/A N/A
Scroll (1) 40ms 1553ms 0.22ms N/A N/A N/A N/A N/A
Scroll Sepolia (1) 82ms 2384ms 0.24ms N/A N/A N/A N/A N/A
Etherlink (0) 96ms 1129ms N/A N/A N/A N/A N/A N/A
ZKsync (1) 84ms 2926ms 1.44ms N/A N/A N/A N/A N/A
ZKsync Sepolia (0) 94ms 1050ms N/A N/A N/A N/A N/A N/A
Hedera (4) 0.55ms 3min 53s 10ms 278ms 5.9s 769ms 22s 20.9s
InternetComputer (7) 0.44ms 13.8s 2.55ms 2487ms 4.9s 829ms 11s 10.7s
Icon (7) 0.60ms 19.1s 1318ms 828ms 703ms 120ms 14.1s N/A
NEAR (9) 1221ms 83.1s 4.35ms 720ms N/A N/A N/A N/A
Solana (0) 104ms N/A N/A N/A N/A N/A N/A N/A
Stacks (0) N/A N/A N/A N/A N/A N/A N/A N/A
Stellar (0) N/A N/A N/A N/A N/A N/A N/A N/A
Tezos (2) 172ms 9.4s 0.67ms 815ms N/A N/A N/A N/A
TON (6) 0.78ms 15.5s 4.20ms 2470ms N/A N/A N/A N/A
VeChain VTHO (0) N/A N/A N/A N/A N/A N/A N/A N/A
VeChain VET (3) 1.83ms 10.5s 0.61ms N/A N/A N/A N/A N/A
XRP (4) 0.52ms 7.9s 20ms 1847ms 3.9s 336ms 11s 12.1s

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

Please sign in to comment.