Skip to content

Commit

Permalink
Merge pull request #6793 from Zondax/fix/stacks-pending
Browse files Browse the repository at this point in the history
[Fix/stacks] Optimistic operation disappears for long running transactions
  • Loading branch information
hedi-edelbloute committed Jun 12, 2024
2 parents 434601f + d75d27b commit 68f0946
Show file tree
Hide file tree
Showing 4 changed files with 112 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .changeset/curly-donkeys-tickle.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@ledgerhq/live-common": patch
---

Add pending operations to stacks account object
61 changes: 59 additions & 2 deletions libs/ledger-live-common/src/families/stacks/bridge/utils/misc.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ import {

import { decodeAccountId } from "../../../../account";
import { fetchFullMempoolTxs, fetchNonce } from "../../bridge/utils/api";
import { DecodedSendManyFunctionArgsCV, StacksNetwork, TransactionResponse } from "./api.types";
import {
DecodedSendManyFunctionArgsCV,
MempoolTransaction,
StacksNetwork,
TransactionResponse,
} from "./api.types";
import { getCryptoCurrencyById } from "../../../../currencies";
import { encodeOperationId, encodeSubOperationId } from "../../../../operation";
import { StacksOperation } from "../../types";
Expand Down Expand Up @@ -59,14 +64,66 @@ export const getAddress = (
derivationPath: string;
} => ({ address: account.freshAddress, derivationPath: account.freshAddressPath });

const getMemo = (memoHex: string): string => {
const getMemo = (memoHex?: string): string => {
if (memoHex?.substring(0, 2) === "0x") {
return Buffer.from(memoHex.substring(2), "hex").toString().replaceAll("\x00", "");
}

return "";
};

export const mapPendingTxToOps =
(accountID: string, address: string) =>
(tx: MempoolTransaction): StacksOperation[] => {
const { sender_address, receipt_time, fee_rate, tx_id, token_transfer, tx_status, nonce } = tx;
if (tx.tx_type !== "token_transfer" || tx_status !== "pending") {
return [];
}

const memo = getMemo(token_transfer.memo);
const feeToUse = new BigNumber(fee_rate || "0");

const date = new Date(receipt_time * 1000);

const operationCommons = {
hash: tx_id,
fee: feeToUse,
accountId: accountID,
senders: [sender_address],
recipients: [token_transfer.recipient_address],
transactionSequenceNumber: nonce,
value: new BigNumber(token_transfer.amount).plus(feeToUse),
date,
extra: {
memo,
},
blockHeight: null,
blockHash: null,
};

const isSending = address === sender_address;
const isReceiving = token_transfer.recipient_address === address;

const ops: StacksOperation[] = [];
if (isSending) {
const type: OperationType = "OUT";
ops.push({
...operationCommons,
id: encodeOperationId(accountID, tx_id, type),
type,
});
} else if (isReceiving) {
const type: OperationType = "IN";
ops.push({
...operationCommons,
id: encodeOperationId(accountID, tx_id, type),
type,
});
}

return ops;
};

export const mapTxToOps =
(accountID: string, address: string) =>
(tx: TransactionResponse): StacksOperation[] => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,31 @@
import { mapTxToOps } from "./misc";
import { mapPendingTxToOps, mapTxToOps } from "./misc";
import { encodeAccountId } from "../../../../account";
import { TransactionResponse } from "./api.types";
import { fetchFullTxs } from "./api";
import { Operation } from "@ledgerhq/types-live";

const Address = "SP26AZ1JSFZQ82VH5W2NJSB2QW15EW5YKT6WMD69J";

const mempoolTransfer = {
tx_id: "0x628369d2c9b49f0ec95531fe1e6a39141573117f3dd047fca65ff5e4058fbc55",
nonce: 32,
fee_rate: "487",
sender_address: "SPNX9YY3T4GR4XDSNRVWB2MDQVCTJMP3BGT7VCZA",
sponsored: false,
post_condition_mode: "deny",
post_conditions: [],
anchor_mode: "any",
tx_status: "pending",
receipt_time: 1714554733,
receipt_time_iso: "2024-05-01T09:12:13.000Z",
tx_type: "token_transfer",
token_transfer: {
recipient_address: "SP26AZ1JSFZQ82VH5W2NJSB2QW15EW5YKT6WMD69J",
amount: "9523",
memo: "0x00000000000000000000000000000000000000000000000000000000000000000000",
},
};

const sendManyTransfer = {
tx: {
tx_id: "0x68bdba90cdbd4e2e112fd008c8c396bd4ca365e482dc68fe25c7aeb5d8eb4c3f",
Expand Down Expand Up @@ -193,3 +213,26 @@ test("convert raw transactions to live operations", async () => {
expect(operations).toBeDefined();
expect(operations.length).toBeGreaterThan(0);
});

describe("operation building from mempool raw", () => {
test("map raw mempool transaction to op", async () => {
const accountId = encodeAccountId({
type: "js",
version: "2",
currencyId: "stacks",
xpubOrAddress: "",
derivationMode: "stacks_wallet",
});

const address = "SPNX9YY3T4GR4XDSNRVWB2MDQVCTJMP3BGT7VCZA";

// Contains operations for txn of type token_transfer
const operations = [mempoolTransfer].map(mapPendingTxToOps(accountId, address)).flat();

expect(operations.length).toBe(1);
expect(operations[0].type).toBe("OUT");
expect(operations[0].internalOperations).toBeUndefined();
expect(operations[0].senders).toHaveLength(1);
expect(operations[0].recipients).toHaveLength(1);
});
});
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import BigNumber from "bignumber.js";
import { Account } from "@ledgerhq/types-live";
import { getAddressFromPublicKey } from "@stacks/transactions";
import { encodeAccountId } from "@ledgerhq/coin-framework/account/index";
import { mapTxToOps, reconciliatePublicKey } from "./bridge/utils/misc";
import { mapTxToOps, mapPendingTxToOps, reconciliatePublicKey } from "./bridge/utils/misc";
import { GetAccountShape, makeSync } from "../../bridge/jsHelpers";
import {
fetchBalances,
Expand Down Expand Up @@ -42,13 +42,15 @@ export const getAccountShape: GetAccountShape = async info => {
.minus(new BigNumber(tx.token_transfer.amount));
}

const pendingOperations = mempoolTxs.flatMap(mapPendingTxToOps(accountId, address));

const result: Partial<Account> = {
id: accountId,
xpub: pubKey,
freshAddress: address,
balance,
spendableBalance,
operations: rawTxs.flatMap(mapTxToOps(accountId, address)),
operations: pendingOperations.concat(rawTxs.flatMap(mapTxToOps(accountId, address))),
blockHeight: blockHeight.chain_tip.block_height,
};

Expand Down

2 comments on commit 68f0946

@github-actions
Copy link

Choose a reason for hiding this comment

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

[Bot] Daily non-reg on develop with 'Nitrogen' ✅ 159 txs ❌ 18 txs 💰 15 miss funds ($1,281.81) ⏲ 25min 30s

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

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

4 critical spec errors

Spec injective failed!

Error: "Error during injective synchronization: "API HTTP 429

Spec Peercoin failed!

LedgerAPI5xx: API HTTP 503

Spec Polygon zkEVM Testnet failed!

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

Spec Solana failed!

Error: scan accounts timeout for currency Solana
❌ 18 mutation errors
necessary accounts resynced in 0.13ms
▬ Casper 2.6.3 on nanoSP 1.1.1
→ FROM undefined: 3,124.98 CSPR (59ops) (0203B56bC181780F8fb173BaFd8d483d6911282EC46d72692d0a5bbbb29ea242ed76 on 44'/506'/0'/0/2) casper_wallet#2 js:2:casper:0203B56bC181780F8fb173BaFd8d483d6911282EC46d72692d0a5bbbb29ea242ed76:casper_wallet
max spendable ~3,124.88
★ using mutation 'Transfer Max'
→ TO undefined: 3,122.33 CSPR (75ops) (0203d14Bf1367769813E9c7233dB26DC2208cA211532a0C2B1189992dC01d4bc098E on 44'/506'/0'/0/3) casper_wallet#3 js:2:casper:0203d14Bf1367769813E9c7233dB26DC2208cA211532a0C2B1189992dC01d4bc098E:casper_wallet
✔️ transaction 
SEND MAX
TO 0203d14Bf1367769813E9c7233dB26DC2208cA211532a0C2B1189992dC01d4bc098E
STATUS (21ms)
  amount: 3,124.881939043 CSPR
  estimated fees: 0.1 CSPR
  total spent: 3,124.981939043 CSPR
errors: 
warnings: amount MayBlockAccount
⚠️ TEST deviceAction confirm step 'Target'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

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

- Expected  - 1
+ Received  + 1

  Object {
-   "Target": "9Fd7E509cc08b4A5d553955494A5FDdA165aeCE042428c267e68dA24Af61F0e8",
+   "Target": "02033CEac656c99270C432fd59a60102B4E807977F67C429298eA3436F2cE41A1B1b",
  }
(totally spent 4.6s – ends at 2024-06-12T17:01:49.920Z)
necessary accounts resynced in 0.15ms
▬ Crypto.orgChain 2.17.1 on nanoS 2.1.0
→ FROM undefined: 17.3755 CRO (44ops) (cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra on 44'/394'/0'/0/0) #0 js:2:crypto_org:cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra: (! sum of ops 17.37656309 CRO)
max spendable ~17.3755
★ using mutation 'move 50%'
→ TO undefined: 0 CRO (30ops) (cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l on 44'/394'/4'/0/0) #4 js:2:crypto_org:cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l:
✔️ transaction 
SEND  8.68778155 CRO
TO cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l
STATUS (3.94ms)
  amount: 8.68778155 CRO
  estimated fees: 0.00005 CRO
  total spent: 8.68783155 CRO
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"review","x":47,"y":10,"w":81,"h":11}
{"text":"Please","x":48,"y":-1,"w":80,"h":11}
{"text":"review","x":47,"y":10,"w":81,"h":11}
{"text":"Please","x":48,"y":-1,"w":80,"h":11}
{"text":"review","x":47,"y":10,"w":81,"h":11}
(totally spent 60s – ends at 2024-06-12T17:01:49.923Z)
necessary accounts resynced in 0.12ms
▬ Crypto.orgChain 2.17.1 on nanoS 2.1.0
→ FROM undefined: 17.3755 CRO (30ops) (cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd on 44'/394'/3'/0/0) #3 js:2:crypto_org:cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd: (! sum of ops 17.37636309 CRO)
max spendable ~17.3754
★ using mutation 'move 50%'
→ TO undefined: 0 CRO (30ops) (cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l on 44'/394'/4'/0/0) #4 js:2:crypto_org:cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l:
✔️ transaction 
SEND  8.68775655 CRO
TO cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l
STATUS (1.71ms)
  amount: 8.68775655 CRO
  estimated fees: 0.00005 CRO
  total spent: 8.68780655 CRO
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"review","x":47,"y":10,"w":81,"h":11}
{"text":"Please","x":48,"y":-1,"w":80,"h":11}
{"text":"review","x":47,"y":10,"w":81,"h":11}
{"text":"Please","x":48,"y":-1,"w":80,"h":11}
{"text":"review","x":47,"y":10,"w":81,"h":11}
(totally spent 60s – ends at 2024-06-12T17:01:49.929Z)
necessary accounts resynced in 0.22ms
▬ Stacks 0.23.3 on nanoSP 1.1.1
→ FROM undefined: 8.08396 STX (175ops) (SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2 on 44'/5757'/0'/0/0) #0 js:2:stacks:02d8ff937901982551807aace226a5b1eae3d8c5c89d1eae39ccab9cd1d27a9739:
max spendable ~8.0807
★ using mutation 'Transfer Max'
→ TO undefined: 24.2912 STX (177ops) (SP3WE1A84RCG3GWKRXYMXNRVQJ8PG3VDRKE7CMPM4 on 44'/5757'/1'/0/0) #1 js:2:stacks:03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229:
✔️ transaction 
SEND MAX
TO SP3WE1A84RCG3GWKRXYMXNRVQJ8PG3VDRKE7CMPM4
STATUS (1792ms)
  amount: 8.080701 STX
  estimated fees: 0.003266 STX
  total spent: 8.083967 STX
errors: 
warnings: 
✔️ has been signed! (3.9s) 
✔️ broadcasted! (302ms) optimistic operation: 
  -8.083967 STX      OUT        0x5b406dcef5a27095de4e2d0611639f63ff25bbec761da753d2347d66c598d251 2024-06-12T16:38
⚠️ LedgerAPI5xx: API HTTP 503
(totally spent 20min 58s – ends at 2024-06-12T17:01:49.932Z)
necessary accounts resynced in 0.21ms
▬ VeChain 1.1.1 on nanoSP 1.1.1
→ FROM undefined: 0.625 VET (7ops) (0xc4B17901FECf86932c3bb296BB00E7c6816Fd416 on 44'/818'/0'/0/0) vechain#0 js:2:vechain:0xc4B17901FECf86932c3bb296BB00E7c6816Fd416:vechain  TokenAccount Vethor: 53.9631084375 VTHO (2 ops) (! sum of ops 55 VTHO)
max spendable ~0.625
★ using mutation 'move all VTHO'
→ TO undefined: 1.25 VET (1ops) (0x6fc5998724338CDe55Bba798273FAdcDE79c5074 on 44'/818'/0'/0/2) vechain#2 js:2:vechain:0x6fc5998724338CDe55Bba798273FAdcDE79c5074:vechain
✔️ transaction SEND MAX TO 0x6fc5998724338CDe55Bba798273FAdcDE79c5074
STATUS (1857ms)
  amount: 53.4466484375 VTHO
  estimated fees: 0.51646 VET
  total spent: 53.9631084375 VTHO
errors: 
warnings: 
⚠️ VechainAppPleaseEnableContractDataAndMultiClause: Please enable contract data in Vechain app settings
(totally spent 1973ms – ends at 2024-06-12T17:01:49.975Z)
necessary accounts resynced in 8ms
▬ Algorand 2.1.11 on nanoS 2.1.0
→ FROM undefined: 4.38004 ALGO (475ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA: 1.780046 ALGO spendable. 
  TokenAccount Asia Reserve Currency Coin: 0 ARCC (0 ops)
  TokenAccount MESE USD Exchange Token: 0 USD-MESE (0 ops)
  TokenAccount MESE Index Fund: 0 MESX (0 ops)
  TokenAccount Micro-Microsoft: 0 M-MSFT (0 ops)
  TokenAccount Micro-Amazon: 0 M-AMZN (0 ops)
  TokenAccount Micro-Twitter: 0 M-TWTR (0 ops)
  TokenAccount Micro-Netflix: 0 M-NFLX (0 ops)
  TokenAccount Micro-Google: 0 M-GOOGL (0 ops)
  TokenAccount Micro-Apple: 0 M-AAPL (0 ops)
  TokenAccount Micro-Tesla: 0 M-TSLA (0 ops)
  TokenAccount Realio Token: 0 RIO (0 ops)
  TokenAccount realioUSD: 0 RUSD (0 ops)
  TokenAccount Liquid Mining Fund I: 0 RHO 1 (0 ops)
  TokenAccount Credit Opportunities Fund I: 0 VAL 1 (0 ops)
  TokenAccount Meld Gold: 0 MCAU (0 ops)
  TokenAccount Meld Silver: 0 MCAG (0 ops)
  TokenAccount PLANET: 0 PLANETS (0 ops)
  TokenAccount USDC: 0 USDC (0 ops)
  TokenAccount HEADLINE: 0 HDL (0 ops)
  TokenAccount AlgoGems: 0 GEMS (0 ops)
  TokenAccount Choice Coin: 0 CHOICE (0 ops)
  TokenAccount Smile Coin: 0 SMILE (0 ops)
  TokenAccount goBTC: 0 goBTC (0 ops)
  TokenAccount Nimble: 0 NIMBLE (0 ops)
  TokenAccount CollecteursX: 0 CLTR (0 ops)
max spendable ~1.77904
★ using mutation 'opt-In ASA available'
→ TO undefined: 4.38004 ALGO (475ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA:
✔️ transaction 
    OPT_IN 0 ALGO
    TO WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA
    with fees=0.001 ALGO
STATUS (322ms)
  amount: 0 ALGO
  estimated fees: 0.001 ALGO
  total spent: 0.001 ALGO
errors: 
warnings: 
✔️ has been signed! (11s) {"operation":{"id":"js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA:--OPT_IN","hash":"","type":"OPT_IN","senders":["WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA"],"recipients":["WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA"],"accountId":"js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-06-12T16:41:12.440Z","value":"1000","fee":"1000"},"signature":"82a3736967c44224983c7ecfec85b8a7cee5a9cffba8accb28653cba19cee1922680c0f3cc707599f6ae7ca88e40e6706211d1b937c1d17b65e3c3a9b4d23731c2b42ed6b725079000a374786e89a461726376c420b34373ae24f217db765ba3b45a5adf1a7cda06a8a8b15d2bde6149b0056078eaa3666565cd03e8a26676ce025dd4d6a367656eac6d61696e6e65742d76312e30a26768c420c061c4d8fc1dbdded2d7604be4568e3f6d041987ac37bde4b620b5ab39248adfa26c76ce025dd8bea3736e64c420b34373ae24f217db765ba3b45a5adf1a7cda06a8a8b15d2bde6149b0056078eaa474797065a56178666572a478616964ce0029982f"}
⚠️ TEST during broadcast
LedgerAPI4xx: TransactionPool.Remember: transaction 2MB5CRWCWD56BBAFLBDFPW4ZGVKMA2RSNX3PJBGTNZ7EIMPMVROA: asset 2725935 does not exist or has been deleted
(totally spent 11.4s – ends at 2024-06-12T17:01:49.999Z)
necessary accounts resynced in 6ms
▬ Komodo 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 16.7085 KMD (482ops) (RYB1PmcCko27A6KMvFykEkPRFoqjAuJ5dM on 44'/141'/0'/0/246) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H: (! sum of ops 2.11216532 KMD)
9 UTXOs
4.28877      RWU2cHNzwG3GsgSR2VK7pwQBdL5b6qsv5q 411b3d6c90b878eb0f20c62fc928db33754a933cbca8b867277838be9c792dec @0 (26315)
3.52855      RJwfQbCVs2iboPYZzBhoWNMqwYreHmhVzJ (change) 063170b7687f2e75737d944f6e1c3bfe0e78282d9cddaa4f910dcb07c01d88ea @2 (665488)
3.38014      RBBiouibogaTJyM1FqWu7PhQnAuvpfMecN f97514cb6cb4b0edcf0738d2ff4e19870418be292551d64d0e17848c10fd3148 @0 (17944)
2.77737      RWiovsUfk7ycJAXhwu2VqTNheKkqpoUSKB 61017481e720d41a28b359a69481ad16c683f9b04b10bc1409f716ef48abe59c @0 (665482)
...

max spendable ~16.7082
★ using mutation 'send max'
→ TO undefined: 16.3772 KMD (457ops) (RT7yjo72rR1kYYGAWEsH6XBWSpSPZMP4cS on 44'/141'/2'/0/252) #2 js:2:komodo:v4PKUB9WZbMS4XNED8S4oAJzXQqPbfLCmNRNPW8QoETCA7opTJLFvrkm39QZAdLg8DygthREBvDRmrHDeVtEQ8C7iQDfXDSPTrzB2FAFkvgsQ9HA:
✔️ transaction 
SEND MAX
TO RT7yjo72rR1kYYGAWEsH6XBWSpSPZMP4cS
with feePerByte=21 (network fees: 0=22, 1=21, 2=20)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (328ms)
TX INPUTS (9):
1.21932      RFyyvVnrYYsyW4vFgY7SsnFUDsMD5uvRkP dc667f02d971170d49c4b2b0cbb2b91dd33e73a746082512eb9b9f23e3077321@1
0.769906     RTmMfemhqFnYxvjD3wpZ4mN1cqRswHutUi c5266005e12a3ebebdaf860411b74c5065817e7d447dedbfdea0b067254741f5@1
3.52855      RJwfQbCVs2iboPYZzBhoWNMqwYreHmhVzJ 063170b7687f2e75737d944f6e1c3bfe0e78282d9cddaa4f910dcb07c01d88ea@2
2.77737      RWiovsUfk7ycJAXhwu2VqTNheKkqpoUSKB 61017481e720d41a28b359a69481ad16c683f9b04b10bc1409f716ef48abe59c@0
...
TX OUTPUTS (1):
16.7082      RT7yjo72rR1kYYGAWEsH6XBWSpSPZMP4cS @0 (0)
  amount: 16.70824267 KMD
  estimated fees: 0.00028896 KMD
  total spent: 16.70853163 KMD
errors: 
warnings: 
✔️ has been signed! (20.1s) {"operation":{"id":"js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:--OUT","hash":"","type":"OUT","senders":["RFyyvVnrYYsyW4vFgY7SsnFUDsMD5uvRkP","RTmMfemhqFnYxvjD3wpZ4mN1cqRswHutUi","RJwfQbCVs2iboPYZzBhoWNMqwYreHmhVzJ","RWiovsUfk7ycJAXhwu2VqTNheKkqpoUSKB","RQi82myW7SZvAJA6SdGwxVEghV8h6y7S7Y","RLZkX9a3vJfN6EhWQh7NcJqTsWS7KYmWtQ","RWU2cHNzwG3GsgSR2VK7pwQBdL5b6qsv5q","RBBiouibogaTJyM1FqWu7PhQnAuvpfMecN","RXkDgCXPXR6VmQdzzz5RufWpumreRH6mEv"],"recipients":["RT7yjo72rR1kYYGAWEsH6XBWSpSPZMP4cS"],"accountId":"js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-06-12T16:40:51.075Z","value":"28896","fee":"28896"},"signature":"0400008085202f8909217307e3239f9beb12250846a7733ed31db9b2cbb0b2c4490d1771d9027f66dc010000006b483045022100e38dc1004093bc577eb521a9477c9dcc63e057d1f3ff26b77d04ae55e6020109022044350cdbccc2f804e3e1e0a44b5cbeeb9e748897b75a39579a4e050043a7ff78012103125cb3a39d17c6f68d900d4443057cc34dd8af4c908e953b144c151bece120cdfffffffff541472567b0a0debfed7d447d7e8165504cb7110486afbdbe3e2ae1056026c5010000006b483045022100b3fe1edbae7b7413ea330be678fc4edba3f65726abd8e461e56b3cd2bfb151a1022030a187fe3098f2aaa6284d5879b1319a36c514ce41b36f2bed2a8385a89da71b01210202b04fff63b2ce691eb167d98aef56d14f1e2cf538ede43af38b6ab03d6a660bffffffffea881dc007cb0d914faadd9c2d28780efe3b1c6e4f947d73752e7f68b7703106020000006b483045022100b54921f8a46283f5d3eacf053816e3690b507b6465be08afa0997199811dee6902202a97c6cb93d9e84a1df93951b86b96a94a1d9814ad66ad9dcefbfdff1eadc0b601210362e9c11d11e5f8e9c4b89e930970ace673d3a0c569e6101d351cefba197c99f0ffffffff9ce5ab48ef16f70914bc104bb0f983c616ad8194a659b3281ad420e781740161000000006b483045022100d4c351723c368d8050583d0cad296ae723b67e1f0632ac47930961747ff3528302204d43d8903fac2994f08b289e891163ad5b8cfcc269072d9c6fe1a1b60fbfa9a20121031160affc715385abc9f4d2194d2a13773c36e3104a5c1ec1c853da191c51650affffffff627caddf7e129501944a6017d637fec7f56eab6bc2ff2ffde5c947817b68f561020000006b483045022100f0b2f103e6cd6f298ac84aa0381fd8d7d65b6c4a30884a9d2c9005ba2d7936ae0220195e1a4a3045eadc6f0bdc706fdb60048674d04783cb9ac478a98a8e0bfaa0d3012103df73a6f70b5914072a3c0b6bdea382f60dc2ce0420ce67fec10abb2cee1b1fdeffffffff20397a605d66f66f5a474d99844a64f2597eedd93288376e16d4480679ded681020000006b4830450221008cce60e34c346955bb885bcab483c04e6782bbcb8f3f81f9fa6d325bc97a4f8e02201af3d28a3924e8e0ab1c332c27677e2ceed44c891b44016277e16ae70ae92f1f01210319f8f0e51ea411b69c1c7ecd0970effaf62a702e884f2c98dcc284ff762ca135ffffffffec2d799cbe38782767b8a8bc3c934a7533db28c92fc6200feb78b8906c3d1b41000000006b483045022100e2bae550328c6b39bbf3a5dc1b26277393675a87ce01964b0af5f0b813beb6e5022002b04df7894ed5a88027f77cd53bfc0f2144a634a3f3894866c0152cf2fd75d201210296fe3db498f3a12e6c8784af765c2ceaf5eb00771dad5c5e6afa66ff9cc6e225ffffffff4831fd108c84170e4dd6512529be180487194effd23807cfedb0b46ccb1475f9000000006b483045022100dc87cc5f6ea2be720f89c2019e429c9765842e2d01c6ba6db1a58f974ba34355022072f3c83db75d316fc0e0ab4e1a7d025a408e8671b375de2921cb4d0512bfb53101210345a90f146fa749d372f06aeaed97bd04b2d3ab63cc73afc2c102397fb05f1c78ffffffffa4b474cfd77eb205015c519c2e1f99cd7d53ce76c5b268e13ca69618d450bc1c000000006b483045022100cd849b139a45815c608c77cfd0196f1cee0e37fdafb02efd5c8d9cdbdceee4fb02206c5e9b334a31a711105b303293091d1d17594c3650c5ffd6782ef12233846dd0012103eab3193bfc92a27325f1db68b5c14246ff6d8012df61d849809f83c2d8306a05ffffffff014bc19663000000001976a914c3b438335af6924f9a412aca3284b3eeba8b158f88ac76cc6966000000000000000000000000000000"}
⚠️ TEST during broadcast
LedgerAPI4xx: -25: Missing inputs
(totally spent 20.5s – ends at 2024-06-12T17:01:50.007Z)
necessary accounts resynced in 2288ms
▬ Komodo 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 15.6846 KMD (472ops) (RSM7VU5PbMQuStjd3nonUjAwzyvqhFUBvt on 44'/141'/1'/0/234) #1 js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X: (! sum of ops 2.21870226 KMD)
17 UTXOs
4.90439      RK5ipDqn1BKy8YAaNMvMkuDtJFpKLkmJ2r c69b5e933247214dc146f336b4f0fca2684651196712fa3d58918f6813302336 @0 (662630)
2.11875      RHQPQiUnrGVFnnNf3SSbgP1qf6SMNjJrdQ 29597f89c528ba0433a979abb8d69670450eeb00296f888de2be7ed6bf2c5fdc @0 (676812)
1.55281      R9jWaV7vJAVQDKg8DvqFvT9Cd5swx6Q3Cc (change) 89cf93a3733e9226ce898bf80d3d001dc7182f0fcf209ee9355497a3dc89bc05 @2 (567911)
1.44362      RFFsLySjm3apjjD8E8xBacx4rc861z5iJ7 (change) cdd0a0aaa543e869bd736405d31aa6cb771d99aa1175609d704b489b6e4752c1 @2 (638328)
...

max spendable ~15.6841
★ using mutation 'move ~50%'
→ TO undefined: 16.7085 KMD (482ops) (RYB1PmcCko27A6KMvFykEkPRFoqjAuJ5dM on 44'/141'/0'/0/246) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:
✔️ transaction 
SEND 7.69585734 KMD
TO RYB1PmcCko27A6KMvFykEkPRFoqjAuJ5dM
with feePerByte=21 (network fees: 0=22, 1=21, 2=20)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (241ms)
TX INPUTS (7):
0.632737     RSU33Bvh7Uk3bP8uWrgrr4HyXjM5QXSaEG 091dee54dfd214df7b961b31575bfbda2d43d340367e6d2bef73d656d72ab596@0
0.494409     RQubAeS56tMViBjAYS6RKpR4GUVVLsfBok f9dca8c5880491c4a22f524cd2135396e7bc151269748c2fd7733712d5fe8201@2
1.40756      RDHa5yauxBMChgzMoXWjqhjuHjALxJBSz3 ed044941847f99446eeb76bce1da650ebd5a111f56ab52bf965aa1d0c482fc79@0
2.11875      RHQPQiUnrGVFnnNf3SSbgP1qf6SMNjJrdQ 29597f89c528ba0433a979abb8d69670450eeb00296f888de2be7ed6bf2c5fdc@0
...
TX OUTPUTS (2):
7.69585      RYB1PmcCko27A6KMvFykEkPRFoqjAuJ5dM @0 (0)
2.64383      RLEWE7n68Q464JqvgRhBJfpdpewyUDvy5L (change) @1 (0)
  amount: 7.69585734 KMD
  estimated fees: 0.00023394 KMD
  total spent: 7.69609128 KMD
errors: 
warnings: 
✔️ has been signed! (10.4s) {"operation":{"id":"js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:--OUT","hash":"","type":"OUT","senders":["RSU33Bvh7Uk3bP8uWrgrr4HyXjM5QXSaEG","RQubAeS56tMViBjAYS6RKpR4GUVVLsfBok","RDHa5yauxBMChgzMoXWjqhjuHjALxJBSz3","RHQPQiUnrGVFnnNf3SSbgP1qf6SMNjJrdQ","RQEuJKPA9Nh97AwxxT5Y1z69W4n24DqYCh","RXVazgoCG8tMq7QFCRfAdUFzVXeAKcRZAy","RK5ipDqn1BKy8YAaNMvMkuDtJFpKLkmJ2r"],"recipients":["RYB1PmcCko27A6KMvFykEkPRFoqjAuJ5dM"],"accountId":"js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-06-12T16:41:07.410Z","value":"769609128","fee":"23394"},"signature":"0400008085202f890796b52ad756d673ef2b6d7e3640d3432ddafb5b57311b967bdf14d2df54ee1d09000000006b4830450221009d2ff9aa818350ce8bdd703b0838210e7ce74050d93c7c74479a25438631510202201bf661132e250b487cb08870fd16fbd579386ea9b42fc495625dc13dba566536012102beb19c59a78a9a4cf67f1d8294c423662157a6a1ee9fc6bf45a0d28a51521ab9ffffffff0182fed5123773d72f8c74691215bce7965313d24c522fa2c4910488c5a8dcf9020000006b483045022100aec6c544b922b6363192060163bb13a9ba208373bd7e249d33992c171dfe25b9022056e2e92ec226af91659ada070ad41961a9a400e4cc9cac60d993a7b73271d4780121027126b1cb34d00c3ac0f9b29e250ab92871db5ed81e13b969337141ca0724f345ffffffff79fc82c4d0a15a96bf52ab561f115abd0e65dae1bc76eb6e44997f84414904ed000000006b483045022100a40963e2948b15a6c17f5fecb4832d74d1334a31d0233fb5f6e866ab31cdafe40220463d314febbea780ae910f3137660405f6900edbf118c0061ec567a5ea023030012103dc1aeff99a376d9d865e856f65524695efa2f80e412b04e7f0efc1082735df35ffffffffdc5f2cbfd67ebee28d886f2900eb0e457096d6b8ab79a93304ba28c5897f5929000000006b48304502210084997feacc30afa71dfdb7ed49a4a58e8ea0b7940d98579d6452a2397b20c73502202516c8315d4069d8f5a541a99008530406f9fca96226e0c7536ce5bf200c9986012103befa28906297ac741d61ad9408c894bb3dc51ab4846c14a939d34efeee39e3e2ffffffffc7f03119f11990b8d5a28e142bf1612187c7103ad288ca6e938f6084eaa70b70010000006b483045022100f39eb0a82a831c2fc3c68f69aa994162d48417d3a3f2d7508b85d877bceb69cf022039ef22eb2b45cb13e9e8eaa3805c82663af5128277b772017b381c7a722daac101210387e2e2ae97e4772d2650e640476b3939d34a1a8dfafb02f522ca430dc707fb9effffffff8fc28a1948c3bb520507473a5c1a5b144a831ddcb9642fb919a39ba2f1fcc0f1020000006a47304402200fa3ce90ebdba57de304a5342b6bd3ee92dbb08a96b712d39b597f915aef67e602206c23bf7e8c895c96e05186184dcf7e7320da712d68a37a4b9437ebf6b4935570012102cd8d69f1c6dc88bb58b0a608cc4e2e585a2776ca1e6f562e3a9490e808b16151ffffffff36233013688f91583dfa126719514668a2fcf0b436f346c14d214732935e9bc6000000006a47304402200baabd252ab97e51eaa99c97064c8e3977c54bb609bf7a415ca3520c4d0ccadf022000f811b33c2b2a253101f6598e8cf6c1b86ee93eb1c6b7914b15ba32153e0429012102f71e1b6e78e95bc7edf18c146b2bf8aa9eafb543a1e21bd5424eeb6661399080ffffffff0246f2de2d000000001976a914fb1f7a464535d23ca012c44f2708de1291332ab288ac942bc20f000000001976a914782749015d481ce4545b6538b7940351771fe19188ac90cc6966000000000000000000000000000000"}
⚠️ TEST during broadcast
LedgerAPI4xx: -25: Missing inputs
(totally spent 10.7s – ends at 2024-06-12T17:01:50.015Z)
necessary accounts resynced in 2271ms
▬ Komodo 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 15.6846 KMD (472ops) (RSM7VU5PbMQuStjd3nonUjAwzyvqhFUBvt on 44'/141'/1'/0/234) #1 js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X: (! sum of ops 2.21870226 KMD)
17 UTXOs
4.90439      RK5ipDqn1BKy8YAaNMvMkuDtJFpKLkmJ2r c69b5e933247214dc146f336b4f0fca2684651196712fa3d58918f6813302336 @0 (662632)
2.11875      RHQPQiUnrGVFnnNf3SSbgP1qf6SMNjJrdQ 29597f89c528ba0433a979abb8d69670450eeb00296f888de2be7ed6bf2c5fdc @0 (676814)
1.55281      R9jWaV7vJAVQDKg8DvqFvT9Cd5swx6Q3Cc (change) 89cf93a3733e9226ce898bf80d3d001dc7182f0fcf209ee9355497a3dc89bc05 @2 (567913)
1.44362      RFFsLySjm3apjjD8E8xBacx4rc861z5iJ7 (change) cdd0a0aaa543e869bd736405d31aa6cb771d99aa1175609d704b489b6e4752c1 @2 (638330)
...

max spendable ~15.6841
★ using mutation 'send 1 utxo'
→ TO undefined: 16.7085 KMD (482ops) (RYB1PmcCko27A6KMvFykEkPRFoqjAuJ5dM on 44'/141'/0'/0/246) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:
✔️ transaction 
SEND MAX
TO RYB1PmcCko27A6KMvFykEkPRFoqjAuJ5dM
with feePerByte=21 (network fees: 0=22, 1=21, 2=20)
DEEP_OUTPUTS_FIRST pick-unconfirmed
exclude 29597f89c528ba0433a979abb8d69670450eeb00296f888de2be7ed6bf2c5fdc @0
exclude 091dee54dfd214df7b961b31575bfbda2d43d340367e6d2bef73d656d72ab596 @0
exclude f9dca8c5880491c4a22f524cd2135396e7bc151269748c2fd7733712d5fe8201 @2
exclude 700ba7ea84608f936eca88d23a10c7872161f12b148ea2d5b89019f11931f0c7 @1
STATUS (351ms)
TX INPUTS (1):
1.40756      RDHa5yauxBMChgzMoXWjqhjuHjALxJBSz3 ed044941847f99446eeb76bce1da650ebd5a111f56ab52bf965aa1d0c482fc79@0
TX OUTPUTS (1):
1.40752      RYB1PmcCko27A6KMvFykEkPRFoqjAuJ5dM @0 (0)
  amount: 1.407521 KMD
  estimated fees: 0.00004032 KMD
  total spent: 1.40756132 KMD
errors: 
warnings: 
✔️ has been signed! (5.6s) {"operation":{"id":"js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:--OUT","hash":"","type":"OUT","senders":["RDHa5yauxBMChgzMoXWjqhjuHjALxJBSz3"],"recipients":["RYB1PmcCko27A6KMvFykEkPRFoqjAuJ5dM"],"accountId":"js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-06-12T16:41:20.161Z","value":"4032","fee":"4032"},"signature":"0400008085202f890179fc82c4d0a15a96bf52ab561f115abd0e65dae1bc76eb6e44997f84414904ed000000006a47304402201de7a046f075f49e15389debbb3ff25d16c69aceec88f13567703666d70e69f002201468b54e0c6332bed540d2941dc193299838c6e5cb9f09c1855dfffa14ca7549012103dc1aeff99a376d9d865e856f65524695efa2f80e412b04e7f0efc1082735df35ffffffff01e4b46308000000001976a914fb1f7a464535d23ca012c44f2708de1291332ab288aca1cc6966000000000000000000000000000000"}
⚠️ TEST during broadcast
LedgerAPI4xx: -25: Missing inputs
(totally spent 6s – ends at 2024-06-12T17:01:50.020Z)
necessary accounts resynced in 1998ms
▬ Komodo 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 16.4986 KMD (440ops) (RJz9oKuLMrL18ufexTmm6TrQbRRvuHd2ws on 44'/141'/3'/0/242) #3 js:2:komodo:v4PKUB9WZbMS4XNEDBJ9e6csdTWjkQsBngGrmyPrPrwARdjCHQmEYDrU4Kq7HGhiDP6xnwdVwUp3pTCDBqPFJzzGWKwhGKyZ3R9twuUru5U57rPp: (! sum of ops -5.69084721 KMD)
12 UTXOs
4.55965      RThq3Xw3gDX9GHVVdFsGk3mdcoEuRNWFF3 (change) 411b3d6c90b878eb0f20c62fc928db33754a933cbca8b867277838be9c792dec @1 (26315)
4.41021      RSGjo2tTDtdxVFcnx7onE4ea91WpdiXzch (change) 639452c9ecb54b9884b4bdb185066a1191d284bb1e12b42204447bb3120e2791 @2 (682666)
3.05568      RB4RDQMcL34hnejL28VcQ7qHhqeSiPfyoi (change) 0af9d7edf6c8fc43454b4f955c5c35e511e9bc8a9f43a7ec9612b0339b6d2200 @2 (194932)
1.2808       RMHoTBWeTeiNE43aB72ttpX3JaXmgnJBSm 5649a9864e3f2e6cdb61786ec057b6ef31c9381eb0da311ca43eaee76a418fcf @0 (614256)
...

max spendable ~16.4982
★ using mutation 'optimize-size'
→ TO undefined: 16.7085 KMD (482ops) (RYB1PmcCko27A6KMvFykEkPRFoqjAuJ5dM on 44'/141'/0'/0/246) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:
✔️ transaction 
SEND 9.00549086 KMD
TO RYB1PmcCko27A6KMvFykEkPRFoqjAuJ5dM
with feePerByte=21 (network fees: 0=22, 1=21, 2=20)
OPTIMIZE_SIZE pick-unconfirmed
STATUS (369ms)
TX INPUTS (3):
4.55965      RThq3Xw3gDX9GHVVdFsGk3mdcoEuRNWFF3 411b3d6c90b878eb0f20c62fc928db33754a933cbca8b867277838be9c792dec@1
4.41021      RSGjo2tTDtdxVFcnx7onE4ea91WpdiXzch 639452c9ecb54b9884b4bdb185066a1191d284bb1e12b42204447bb3120e2791@2
0.0470973    RLZ1TxvB6nR8a8vUCaMTE2yz1j4ovxjLbp 97e7431098098c39162c5271b9299fad0ece8f3169bd31f7eab27bead6fcb46a@0
TX OUTPUTS (2):
9.00549      RYB1PmcCko27A6KMvFykEkPRFoqjAuJ5dM @0 (0)
0.011369     RCmjPDSNxjD9wGPEGjYMbzdsf1464Nbtk2 (change) @1 (0)
  amount: 9.00549086 KMD
  estimated fees: 0.00010962 KMD
  total spent: 9.00560048 KMD
errors: 
warnings: 
✔️ has been signed! (7.1s) {"operation":{"id":"js:2:komodo:v4PKUB9WZbMS4XNEDBJ9e6csdTWjkQsBngGrmyPrPrwARdjCHQmEYDrU4Kq7HGhiDP6xnwdVwUp3pTCDBqPFJzzGWKwhGKyZ3R9twuUru5U57rPp:--OUT","hash":"","type":"OUT","senders":["RThq3Xw3gDX9GHVVdFsGk3mdcoEuRNWFF3","RSGjo2tTDtdxVFcnx7onE4ea91WpdiXzch","RLZ1TxvB6nR8a8vUCaMTE2yz1j4ovxjLbp"],"recipients":["RYB1PmcCko27A6KMvFykEkPRFoqjAuJ5dM"],"accountId":"js:2:komodo:v4PKUB9WZbMS4XNEDBJ9e6csdTWjkQsBngGrmyPrPrwARdjCHQmEYDrU4Kq7HGhiDP6xnwdVwUp3pTCDBqPFJzzGWKwhGKyZ3R9twuUru5U57rPp:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-06-12T16:41:32.559Z","value":"900560048","fee":"10962"},"signature":"0400008085202f8903ec2d799cbe38782767b8a8bc3c934a7533db28c92fc6200feb78b8906c3d1b41010000006a473044022024923338b202bdab7da7063ae50e5efd88537556f28714052aa458926262c064022046c9b7c2d6da6846bb86930d7ec46b8ece131a86fed341801d3734c27db2bd0a012102d746a15ae8da864692014ef23e8503e61b34309c39342dd187e7a961a16c7a03ffffffff91270e12b37b440422b4121ebb84d291116a0685b1bdb484984bb5ecc9529463020000006a47304402207211b35ece99811d5ce13014198f002b91850b67e33a66b1f3bdbbfe5d9ca18b02205d607a7404f6ab6a3fdee862e1dd18b47b144306a61a92e0fb295f30c38a3181012103bf8d395e092624656166082eedb07e40f17b2a3db1eec190fa79847d94381da9ffffffff6ab4fcd6ea7bb2eaf731bd69318fce0ead9f29b971522c16398c09981043e797000000006a47304402202ede56f3db505eccb1d8e44b2a6f3f936b0728cf3038cba6029b07301eab927e02202b27b6543e2ee243ffb96f16bedee0deda296ee52a372b5c157b57d43cfc49640121032126b0ae6e8db1cc31e946e209c8e35e9fb552f95456838ab79e30257062aca3ffffffff02de49ad35000000001976a914fb1f7a464535d23ca012c44f2708de1291332ab288ac0b591100000000001976a914264e281127c1373a643f3828dcc761ee3be9cfd588acaccc6966000000000000000000000000000000"}
⚠️ TEST during broadcast
LedgerAPI4xx: -25: Missing inputs
(totally spent 7.6s – ends at 2024-06-12T17:01:50.078Z)
necessary accounts resynced in 0.30ms
▬ Viacoin 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [segwit]: 6.01002 VIA (585ops) (EZmZE7nEMuVcnxYoXqKi8gyUVLHuHF2qbJ on 49'/14'/1'/0/289) segwit#1 js:2:viacoin:xpub6BnHRZZc2q3Bv5KKzULAJs7Wp4Aa1Ht1i1HfMpFPz39ErhhzaK25gSKwbGvMLvU7gREE2N1uPJ87x9UyfbPhu6UTNbtRTq5K5EvXgktynP7:segwit
4 UTXOs
3.54834      EYLjrDUjPV7qCuQU9Rxo694eENJVdbGm4f 0e11d37acfa7dad1d825351247af628cd09783c56a8e27dfd9594d45ad22d601 @0 (0)
2.34864      EMiAcu5jqLDjveWK9krGYDRRWKCfyiGDyQ 5e9a57ead6541c5b13654bab977b6bc69f2168f6406cbb03d94b50bd479f714e @0 (3593)
0.11204      ERXpQLvbQp1QCq65UKn7qPGpBjCYSmzGoG a959feebe5ffd02ec125ca44544e9b4cae92211ec60bec5095acf9dd17701e9f @0 (0)
0.001        EeaSEzZ6498TfP44xzqcdBEdrWHWP8eRHJ 9cd68c03a53b1ae95803573ebe1e79bd385fdaa4cd998cdbce436e7782805bba @0 (0)

max spendable ~2.34731
★ using mutation 'move ~50%'
→ TO undefined [legacy]: 3.08668 VIA (564ops) (Vqdji4cUNecuWGWBc4ZLw565FAY2Ntc218 on 44'/14'/1'/0/298) #1 js:2:viacoin:xpub6BqwJGyyRny99DmxkTjWUNWFd5foEt2aUddfdaEamdB8gLsfK225ttKKiM24gZvVmUWm1tC2zJheYZ7FfJkTgCvyAz8AxVRa8TPWbmsnWMb:
✔️ transaction 
SEND 1.22913863 VIA
TO Vqdji4cUNecuWGWBc4ZLw565FAY2Ntc218
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (240ms)
TX INPUTS (1):
2.34864      EMiAcu5jqLDjveWK9krGYDRRWKCfyiGDyQ 5e9a57ead6541c5b13654bab977b6bc69f2168f6406cbb03d94b50bd479f714e@0
TX OUTPUTS (2):
1.22913      Vqdji4cUNecuWGWBc4ZLw565FAY2Ntc218 @0 (0)
1.11782      EaMExBBDYWFBgnsdgVfWgKRnswmVumXYrs (change) @1 (0)
  amount: 1.22913863 VIA
  estimated fees: 0.00167668 VIA
  total spent: 1.23081531 VIA
errors: 
warnings: 
✔️ has been signed! (3.4s) 
✔️ broadcasted! (85ms) optimistic operation: 
  -1.23081531 VIA    OUT        cad2f4e9dcd70524fd3d3176b48af09efce5d82e499f1fd6a3d6e7df8b034175 2024-06-12T16:43
✔️ operation confirmed (12.5s): 
  -2.34864431 VIA    OUT        cad2f4e9dcd70524fd3d3176b48af09efce5d82e499f1fd6a3d6e7df8b034175 2024-06-12T16:43
✔️ undefined [segwit]: 3.66138 VIA (586ops) (EZmZE7nEMuVcnxYoXqKi8gyUVLHuHF2qbJ on 49'/14'/1'/0/289) segwit#1 js:2:viacoin:xpub6BnHRZZc2q3Bv5KKzULAJs7Wp4Aa1Ht1i1HfMpFPz39ErhhzaK25gSKwbGvMLvU7gREE2N1uPJ87x9UyfbPhu6UTNbtRTq5K5EvXgktynP7:segwit
3 UTXOs
3.54834      EYLjrDUjPV7qCuQU9Rxo694eENJVdbGm4f 0e11d37acfa7dad1d825351247af628cd09783c56a8e27dfd9594d45ad22d601 @0 (0)
0.11204      ERXpQLvbQp1QCq65UKn7qPGpBjCYSmzGoG a959feebe5ffd02ec125ca44544e9b4cae92211ec60bec5095acf9dd17701e9f @0 (0)
0.001        EeaSEzZ6498TfP44xzqcdBEdrWHWP8eRHJ 9cd68c03a53b1ae95803573ebe1e79bd385fdaa4cd998cdbce436e7782805bba @0 (0)
(in 12.5s)
(in 4min 52s)
⚠️ TEST destination > account balance increased with transaction amount
Error: expect(received).toBe(expected) // Object.is equality

Expected: "543364942"
Received: "431582042"
(totally spent 5min 8s – ends at 2024-06-12T17:01:50.087Z)
necessary accounts resynced in 16ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00132953 𝚝ETH (121ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:ethereum_sepolia:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
max spendable ~0.00132953
★ using mutation 'send max'
→ TO undefined: 0.00029742 𝚝ETH (134ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
✔️ transaction 
SEND MAX
TO 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
STATUS (1446ms)
  amount: 0 𝚝ETH
  estimated fees: 0.001755527133444 𝚝ETH
  total spent: 0.001755527133444 𝚝ETH
errors: gasPrice NotEnoughGas, amount AmountRequired
warnings: 
⚠️ TEST mutation must not have tx status errors
NotEnoughGas: NotEnoughGas
(totally spent 1455ms – ends at 2024-06-12T17:01:50.090Z)
necessary accounts resynced in 0.28ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 2.44343 NEON (194ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:neon_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892: (! sum of ops 3.380172837900258027 NEON)  TokenAccount USD Coin: 0.217964 USDC (40 ops)
max spendable ~2.4308
★ using mutation 'move some ERC20 like (ERC20, BEP20, etc...)'
→ TO undefined: 2.02315 NEON (204ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:neon_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
✔️ transaction 
SEND MAX
TO 0x90bD48144e08b66490BcA9a756BDe9f004F17857
STATUS (3.2s)
  amount: 0.217964 USDC
  estimated fees: 0.01624367060145 NEON
  total spent: 0.217964 USDC
errors: 
warnings: 
✔️ has been signed! (3.5s) 
✔️ broadcasted! (305ms) optimistic operation: 
  -0.01624367060145 NEON FEES       0xa9904e419218ffc85aed79eb62f0d29ef6abdc808a934ec42cf0e7e5d73faf01 2024-06-12T16:48
    -0.217964 USDC   OUT        
⚠️ TEST waiting operation id to appear after broadcast
Error: could not find optimisticOperation js:2:neon_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:-0xa9904e419218ffc85aed79eb62f0d29ef6abdc808a934ec42cf0e7e5d73faf01-FEES
(totally spent 10min 8s – ends at 2024-06-12T17:01:50.095Z)
necessary accounts resynced in 9ms
▬ NEAR 2.0.0 on nanoS 2.1.0
→ FROM undefined: 0.444537 NEAR (66ops) (0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf on 44'/397'/0'/0'/0') nearbip44h#0 js:2:near:0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf:nearbip44h (! sum of ops 0.98067982518354365104 NEAR)
max spendable ~0.391593
★ using mutation 'Move 50% to another account'
→ TO undefined: 0.0520865 NEAR (22ops) (aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93 on 44'/397'/0'/0'/4') nearbip44h#4 js:2:near:aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93:nearbip44h
✔️ transaction 
SEND  0.1957968300997254771 NEAR
TO aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93
STATUS (641ms)
  amount: 0.1957968300997254771 NEAR
  estimated fees: 0.0008349895375 NEAR
  total spent: 0.1966318196372254771 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.6s – ends at 2024-06-12T17:01:50.109Z)
necessary accounts resynced in 0.48ms
▬ NEAR 2.0.0 on nanoS 2.1.0
→ FROM undefined: 0.445088 NEAR (9ops) (e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2 on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2:nearbip44h (! sum of ops 0.53976724470021827 NEAR)
max spendable ~0.392221
★ using mutation 'Send max to another account'
→ TO undefined: 0.052496 NEAR (32ops) (07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce on 44'/397'/0'/0'/5') nearbip44h#5 js:2:near:07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce:nearbip44h
✔️ transaction 
SEND MAX
TO 07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce
STATUS (705ms)
  amount: 0.39222190173708758401 NEAR
  estimated fees: 0.0008349895375 NEAR
  total spent: 0.39305689127458758401 NEAR
errors: 
warnings: amount NearRecommendUnstake
⚠️ Error: device action timeout. Recent events was:
{"text":"Near app","x":41,"y":6,"w":48,"h":11}
{"text":"is ready","x":41,"y":17,"w":48,"h":11}
{"text":"Receiving","x":36,"y":3,"w":92,"h":11}
{"text":"Transaction...","x":26,"y":15,"w":102,"h":11}
{"text":"View header","x":29,"y":19,"w":99,"h":11}
(totally spent 60.7s – ends at 2024-06-12T17:01:50.111Z)
necessary accounts resynced in 0.16ms
▬ TezosWallet 3.0.3 on nanoS 2.1.0
→ FROM undefined: 5.28869 XTZ (152ops) (tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF on 44'/1729'/0'/0') tezbox#0 js:2:tezos:0240051fc51799e60dcc8870415b87fc4fd948e71b23fdc0d9b8ac7438cf7d4708:tezbox
max spendable ~5.28803
★ using mutation 'delegate unrevealed'
✔️ transaction 
DELEGATE 0 XTZ
TO tz1g8vkmcde6sWKaG2NN9WKzCkDM6Rziq194
with fees=0.000184
with gasLimit=100
with storageLimit=0
(estimatedFees 0.000558)
STATUS (1405ms)
  amount: 0 XTZ
  estimated fees: 0.000558 XTZ
  total spent: 0.000558 XTZ
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review operation","x":13,"y":17,"w":107,"h":11}
{"text":"Operation (0)","x":26,"y":-1,"w":94,"h":11}
{"text":"Reveal","x":47,"y":10,"w":81,"h":11}
(totally spent 62.7s – ends at 2024-06-12T17:01:50.113Z)
necessary accounts resynced in 0.14ms
▬ XRP 2.4.0 on nanoS 2.1.0
→ FROM undefined: 12.812 XRP (200ops) (r9etPtq3oboweMPju5gdYufmvwhH2euz8z on 44'/144'/0'/0/0) #0 js:2:ripple:r9etPtq3oboweMPju5gdYufmvwhH2euz8z: (! sum of ops -0.008125 XRP)
max spendable ~2.812
★ using mutation 'move ~50%'
→ TO undefined: 20.4179 XRP (200ops) (rMoFGec38toFg9ncbi9YbrYYmrP3G5exqn on 44'/144'/2'/0/0) #2 js:2:ripple:rMoFGec38toFg9ncbi9YbrYYmrP3G5exqn:
✔️ transaction 
SEND 1.455018 XRP
TO rMoFGec38toFg9ncbi9YbrYYmrP3G5exqn
with fee=0.00001 XRP
STATUS (2431ms)
  amount: 1.455018 XRP
  estimated fees: 0.00001 XRP
  total spent: 1.455028 XRP
errors: 
warnings: 
✔️ has been signed! (4.9s) 
✔️ broadcasted! (46ms) optimistic operation: 
  -1.455018 XRP      OUT        EF5FCEECDE6F8C802D3C22E7ECF987A2F2E2E2855A50227BDD6170B3E7C0C084 2024-06-12T16:49
✔️ operation confirmed (11.1s): 
  -1.455028 XRP      OUT        EF5FCEECDE6F8C802D3C22E7ECF987A2F2E2E2855A50227BDD6170B3E7C0C084 2024-06-12T16:49
✔️ undefined: 11.3569 XRP (201ops) (r9etPtq3oboweMPju5gdYufmvwhH2euz8z on 44'/144'/0'/0/0) #0 js:2:ripple:r9etPtq3oboweMPju5gdYufmvwhH2euz8z: (! sum of ops -1.463153 XRP)(in 11.1s)
(in 4min 51s)
⚠️ TEST destination > account balance increased with transaction amount
Error: expect(received).toBe(expected) // Object.is equality

Expected: "21873002"
Received: "21873004"
(totally spent 5min 10s – ends at 2024-06-12T17:01:50.118Z)
⚠️ 41 spec hints
  • Spec Celo:
    • mutations should define a test(): Celo: Move 50% to another account, Celo: Send max to another account, Celo: Register Account, Celo: Unlock, Celo: Lock, Celo: Vote, Celo: Activate Vote, Celo: RevokeVote, Celo: Withdraw
  • Spec osmosis:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
  • Spec dydx:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec quicksilver:
    • mutation claim rewards: unexpected status.warnings.claimReward = ClaimRewardsFeesWarning: ClaimRewardsFeesWarning – Please implement expectStatusWarnings on the mutation if expected
  • Spec sei_network:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec coreum:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
  • Spec Crypto org:
    • mutations should define a test(): move 50%, send max
    • mutations should define a testDestination(): move 50%
  • Spec Elrond:
    • mutations should define a testDestination(): move some ESDT
  • Spec Stacks:
    • mutations should define a testDestination(): Transfer Max
  • Spec Stellar:
    • mutations should define a testDestination(): Send max XLM, move ~50% XLM
  • Spec VeChain VTHO:
    • mutations should define a testDestination(): move all VTHO
  • Spec VeChain VET:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Algorand:
    • mutations should define a testDestination(): opt-In ASA available
  • Spec Bitcoin Testnet:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec DogeCoin:
    • mutation optimize-size: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Komodo:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
  • Spec PivX:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Vertcoin:
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Viacoin:
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec ZCash:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Horizen:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
  • Spec Ethereum Classic:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Ethereum Sepolia:
    • mutation move 50%: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Arbitrum:
    • mutation move 50%: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Flare:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec RSK:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec OP Mainnet:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec OP Sepolia:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Base:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Linea Sepolia:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Blast:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Blast Sepolia:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Scroll:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Scroll Sepolia:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec NEAR:
    • mutations should define a testDestination(): Move 50% to another account, Send max to another account
    • mutation Send max to another account: unexpected status.warnings.amount = NearRecommendUnstake: NearRecommendUnstake – Please implement expectStatusWarnings on the mutation if expected
  • Spec Tezos:
    • mutations should define a test(): send unrevealed, send revealed, send max (non delegating), delegate unrevealed, delegate revealed, undelegate unrevealed, undelegate revealed
    • There are not enough accounts (3) to cover all mutations (7).
      Please increase the account target to at least 8 accounts
Portfolio ($1,281.81) – Details of the 71 currencies
Spec (accounts) State Remaining Runs (est) funds?
Casper (8) 421 ops , 24,979 CSPR ($661.94) 💪 999+ 02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c
Celo (12) 1536 ops (+4), 17.1879 CELO ($12.55) 💪 518 0x246FFDB387F1F8c48072E1C13443540017bC71b7
osmosis (18) 69 ops (+10), 20.1743 OSMO ($13.51) 👍 380 osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l
desmos (18) 65 ops , 137.424 DSM ($0.38) 💪 999+ desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454
dydx (18) 0 ops , 0.0108299 dydx ($0.02) dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6
umee (18) 74 ops , 725.663 UMEE ($1.34) 💪 999+ umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l
persistence (18) 873 ops , 28.8344 XPRT ($6.25) 💪 698 persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf
quicksilver (18) 519 ops , 20.8009 QCK ($0.51) 💪 999+ quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l
onomy (18) 580 ops , 1.80608 NOM ($0.21) 💪 999+ onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg
sei_network (16) 0 ops , 0.077475 SEI ($0.00) sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v
stargaze (18) 64 ops , 891.508 STARS ($11.65) 💪 742 stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu
coreum (18) 1468 ops , 42.5636 CORE ($3.95) 👍 244 core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk
injective (0) 0 ops , 🤷‍♂️ ``
Crypto org (7) 209 ops , 34.751 CRO ($3.72) 💪 999+ cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra
Elrond (8) 2350 ops (+6), 0.94596 EGLD ($33.55) 💪 999+ erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp
Hedera (4) 1294 ops (+8), 39.142 HBAR ($3.63) 💪 999+ 0.0.3663977
InternetComputer (8) 592 ops (+4), 1.01637 ICP ($10.93) 💪 999+ f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209
Stacks (4) 495 ops (+1), 32.3752 STX ($78.02) 👍 440 SP3WE1A84RCG3GWKRXYMXNRVQJ8PG3VDRKE7CMPM4
Stellar (6) 2681 ops (+6), 58.9806 XLM ($6.68) 💪 999+ GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC
VeChain VTHO (4) 13 ops , 5 VET ($0.32) ⚠️ 12 0xc4B17901FECf86932c3bb296BB00E7c6816Fd416
VeChain VET (4) 13 ops , 5 VET ($0.32) ⚠️ 12 0xc4B17901FECf86932c3bb296BB00E7c6816Fd416
Algorand (6) 2163 ops (+6), 9.61561 ALGO ($3.86) 💪 999+ TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4
Bitcoin Testnet (13) 1423 ops , 0.00193076 𝚝BTC ($0.00) ⚠️ 3 tb1qqsk6rter25qfxful9dhzrtunyyaga2pvvv89vl
Bitcoin Cash (7) 3395 ops (+8), 0.0474433 BCH ($21.94) 💪 755 qr9qzhvwmej356ztnu07yjnhdqa0tfhg3uypq6x2rc
Bitcoin Gold (6) 2609 ops (+8), 0.390629 BTG ($12.34) 💪 999+ AL2kH6bSwBFeJeV7FSrGf6GSwokypGXJ3H
Dash (7) 2780 ops (+10), 0.107948 DASH ($2.88) 💪 999+ XeQKEHEzZKYNrJPmorcp6J8Yk3ghWE4oYw
Digibyte (9) 3610 ops (+8), 443.941 DGB ($4.46) 💪 999+ dgb1qxj3dqkyqpa4f2v4dlmgrgch0mkhnec2eawvsg9
DogeCoin (7) 1830 ops (+8), 30.1299 DOGE ($4.44) 👍 54 D6qk5PTgcW2NGvXsUB5a4RtGsGqYBM4NPw
Komodo (5) 1851 ops , 65.2691 KMD ($25.80) 💪 999+ RT7yjo72rR1kYYGAWEsH6XBWSpSPZMP4cS
Litecoin (9) 3559 ops (+8), 0.342583 LTC ($27.04) 💪 999+ ltc1q5hgq7dfs6j24kvy6u2rfarhjdt2qwnu5murc7g
Peercoin (0) 0 ops , 🤷‍♂️ ``
PivX (5) 2511 ops (+6), 46.6265 PIVX ($16.01) 💪 999+ DLKgomCQFzTnwopNfQDYSVDsyVYditLhG2
Vertcoin (6) 2352 ops (+6), 29.1714 VTC ($2.12) 💪 999+ 3Bc3cp3HLsQjaadQEZJF4gV7vWG6aomJRq
Viacoin (6) 2259 ops (+8), 40.7221 VIA ($0.62) 💪 999+ EQZwzDskae7VMXmBweTzB5rZYgivhwfurJ
ZCash (5) 1502 ops , 0.00368057 ZEC ($0.09) ⚠️ 2 t1SDpcaNZmbCH5TCCb5vNAh5bXs3isDtA5h
Horizen (5) 1922 ops (+8), 0.421026 ZEN ($3.33) 💪 999+ znaRajWGmtp5y7bLJYYJB7Fe3wJmimWonjB
Ethereum Classic (6) 685 ops , 0.232476 ETC ($6.18) 💪 999+ 0x7584df0780C5eB83b26aE55abBc265014f8bf897
Polygon (10) 2363 ops (+7), 18.9068 MATIC ($12.21) ⚠️ 21 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Sepolia (6) 717 ops (+4), 0.0112019 𝚝ETH ($0.00) ⚠️ 3 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Holesky (6) 685 ops (+6), 0.234878 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum (6) 228 ops (+6), 0.00565393 ETH ($20.44) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum Sepolia (6) 465 ops (+6), 0.991399 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Flare (6) 2158 ops , 4.00005 FLR ($0.10) 👍 295 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Songbird (6) 2458 ops (+6), 937.28 SGB ($9.43) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonbeam (6) 2265 ops (+6), 59.7463 GLMR ($17.22) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
RSK (5) 794 ops , 0.00030914 RBTC ($21.52) 👍 56 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Bittorent Chain (6) 2080 ops (+6), 1,491,524 BTT ($1.59) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Mainnet (5) 121 ops , 0.00286711 ETH ($33.44) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Energy Web (6) 1838 ops (+6), 7.52863 EWT ($19.88) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Astar (6) 2006 ops (+6), 328.456 ASTR ($29.07) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Metis (6) 1932 ops (+6), 0.155306 METIS ($9.57) 👍 128 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonriver (6) 1908 ops (+6), 2.2377 MOVR ($32.16) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Velas EVM (6) 506 ops (+6), 912.017 VLX ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Syscoin (6) 1952 ops (+6), 57.0773 SYS ($9.23) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Polygon zkEVM Testnet (0) 0 ops , 🤷‍♂️ ``
Base (5) 249 ops , 0.00269293 ETH ($9.74) 👍 76 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Base Sepolia (6) 457 ops (+6), 0.990087 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Klaytn (6) 205 ops (+4), 8.83462 KLAY ($1.73) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Neon EVM (6) 970 ops (+8), 16.2563 NEON ($13.26) 👍 280 0x90bD48144e08b66490BcA9a756BDe9f004F17857
Lukso (6) 861 ops (+6), 0.491358 LYX ($1.21) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea (6) 569 ops (+6), 0.00688926 ETH ($24.89) 👍 68 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Blast (1) 0 ops , 0 ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Blast Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Scroll (1) 0 ops , 0 ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Scroll Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
NEAR (11) 226 ops , 0.785485 NEAR ($8.22) 👍 175 0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf
Solana (0) 0 ops , 🤷‍♂️ ``
Tezos (3) 156 ops , 5.28869 XTZ ($4.54) 👍 182 tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF
XRP (4) 606 ops (+6), 14.0051 XRP ($21.77) 💪 999+ r9etPtq3oboweMPju5gdYufmvwhH2euz8z
undefined: 0 CSPR (77ops) (02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c on 44'/506'/0'/0/0) casper_wallet#0 js:2:casper:02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c:casper_wallet
undefined: 0 CSPR (76ops) (02034A7c5519d553BC282F768Dca044e18746B7Be9B711f2F310c190f33B3cBC4A4F on 44'/506'/0'/0/1) casper_wallet#1 js:2:casper:02034A7c5519d553BC282F768Dca044e18746B7Be9B711f2F310c190f33B3cBC4A4F:casper_wallet
undefined: 3,124.98 CSPR (59ops) (0203B56bC181780F8fb173BaFd8d483d6911282EC46d72692d0a5bbbb29ea242ed76 on 44'/506'/0'/0/2) casper_wallet#2 js:2:casper:0203B56bC181780F8fb173BaFd8d483d6911282EC46d72692d0a5bbbb29ea242ed76:casper_wallet
undefined: 3,122.33 CSPR (75ops) (0203d14Bf1367769813E9c7233dB26DC2208cA211532a0C2B1189992dC01d4bc098E on 44'/506'/0'/0/3) casper_wallet#3 js:2:casper:0203d14Bf1367769813E9c7233dB26DC2208cA211532a0C2B1189992dC01d4bc098E:casper_wallet
undefined: 0 CSPR (60ops) (02039ae761a635A37868CF35e6de9799Cba9fC4cDB9A3aFbbA6AB5c83291F13bbec8 on 44'/506'/0'/0/4) casper_wallet#4 js:2:casper:02039ae761a635A37868CF35e6de9799Cba9fC4cDB9A3aFbbA6AB5c83291F13bbec8:casper_wallet
undefined: 0 CSPR (35ops) (02033CEac656c99270C432fd59a60102B4E807977F67C429298eA3436F2cE41A1B1b on 44'/506'/0'/0/5) casper_wallet#5 js:2:casper:02033CEac656c99270C432fd59a60102B4E807977F67C429298eA3436F2cE41A1B1b:casper_wallet
undefined: 18,731.6 CSPR (39ops) (02035aDdb3EF3863b0B44054e638F7C61F74319D5dA70B8E98FEf9ea984f7DB6EDac on 44'/506'/0'/0/6) casper_wallet#6 js:2:casper:02035aDdb3EF3863b0B44054e638F7C61F74319D5dA70B8E98FEf9ea984f7DB6EDac:casper_wallet
undefined: 0 CSPR (0ops) (0202b75FD56f06B03E675b33B0A136B6C87810C5a0435281DFe567c79596E0876Fa4 on 44'/506'/0'/0/7) casper_wallet#7 js:2:casper:0202b75FD56f06B03E675b33B0A136B6C87810C5a0435281DFe567c79596E0876Fa4:casper_wallet
undefined: 0.842434 CELO (208ops) (0x246FFDB387F1F8c48072E1C13443540017bC71b7 on 44'/52752'/0'/0/0) #0 js:2:celo:0x246FFDB387F1F8c48072E1C13443540017bC71b7:
undefined: 0.0252621 CELO (166ops) (0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8 on 44'/52752'/1'/0/0) #1 js:2:celo:0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8:
undefined: 10.9257 CELO (169ops) (0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0 on 44'/52752'/2'/0/0) #2 js:2:celo:0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0:
undefined: 0.00981044 CELO (125ops) (0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2 on 44'/52752'/3'/0/0) #3 js:2:celo:0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2:
undefined: 0.00802497 CELO (145ops) (0xA6EB5541E3527d07CaD4dD14E5454820DB858160 on 44'/52752'/4'/0/0) #4 js:2:celo:0xA6EB5541E3527d07CaD4dD14E5454820DB858160:
undefined: 4.59858 CELO (140ops) (0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE on 44'/52752'/5'/0/0) #5 js:2:celo:0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE:
undefined: 0.00507531 CELO (128ops) (0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc on 44'/52752'/6'/0/0) #6 js:2:celo:0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc:
undefined: 0.84064 CELO (135ops) (0xc054A142A0e8793bC860A34971C3eb549064A54a on 44'/52752'/7'/0/0) #7 js:2:celo:0xc054A142A0e8793bC860A34971C3eb549064A54a:
undefined: 0.00962077 CELO (134ops) (0x78AB368133f5Bf101849475dD4a5747E6d1A897a on 44'/52752'/8'/0/0) #8 js:2:celo:0x78AB368133f5Bf101849475dD4a5747E6d1A897a:
undefined: 0.0106627 CELO (93ops) (0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8 on 44'/52752'/9'/0/0) #9 js:2:celo:0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8:
undefined: 0.00190114 CELO (93ops) (0x3f6AB52EDA4a9d38b3cf208E3fB4c3f87C53002D on 44'/52752'/10'/0/0) #10 js:2:celo:0x3f6AB52EDA4a9d38b3cf208E3fB4c3f87C53002D:
undefined: 0 CELO (0ops) (0xA07f9fb2bd5A8799081d5519897dB27B257D036D on 44'/52752'/11'/0/0) #11 js:2:celo:0xA07f9fb2bd5A8799081d5519897dB27B257D036D:
undefined: 0.567 OSMO (6ops) (osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l on 44'/118'/0'/0/0) #0 js:2:osmo:osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l:
undefined: 0.135224 OSMO (6ops) (osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf on 44'/118'/1'/0/0) #1 js:2:osmo:osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf:
undefined: 0 OSMO (5ops) (osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv on 44'/118'/2'/0/0) #2 js:2:osmo:osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv:
undefined: 0.96483 OSMO (4ops) (osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k on 44'/118'/3'/0/0) #3 js:2:osmo:osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k:
undefined: 0 OSMO (0ops) (osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0 on 44'/118'/4'/0/0) #4 js:2:osmo:osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0:
undefined: 0.006449 OSMO (4ops) (osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw on 44'/118'/5'/0/0) #5 js:2:osmo:osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw:
undefined: 0.222387 OSMO (2ops) (osmo1n6vccpa77x7xyhnk98jy6gg3rmgjkazxuyk2ng on 44'/118'/6'/0/0) #6 js:2:osmo:osmo1n6vccpa77x7xyhnk98jy6gg3rmgjkazxuyk2ng:
undefined: 0.277354 OSMO (11ops) (osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp on 44'/118'/7'/0/0) #7 js:2:osmo:osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp:
undefined: 0.175126 OSMO (3ops) (osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d on 44'/118'/8'/0/0) #8 js:2:osmo:osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d:
undefined: 2.13146 OSMO (7ops) (osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5 on 44'/118'/9'/0/0) #9 js:2:osmo:osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5:
undefined: 0 OSMO (6ops) (osmo1733g3dfzj6tulcqtvz628ypuqj0hvlrzruntc8 on 44'/118'/10'/0/0) #10 js:2:osmo:osmo1733g3dfzj6tulcqtvz628ypuqj0hvlrzruntc8:
undefined: 0.006079 OSMO (0ops) (osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg on 44'/118'/11'/0/0) #11 js:2:osmo:osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg:
undefined: 0.426649 OSMO (5ops) (osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m on 44'/118'/12'/0/0) #12 js:2:osmo:osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m:
undefined: 0.316961 OSMO (5ops) (osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9 on 44'/118'/13'/0/0) #13 js:2:osmo:osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9:
undefined: 1.28183 OSMO (0ops) (osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd on 44'/118'/14'/0/0) #14 js:2:osmo:osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd:
undefined: 13.3129 OSMO (3ops) (osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau on 44'/118'/15'/0/0) #15 js:2:osmo:osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau:
undefined: 0.974419 OSMO (2ops) (osmo1xr8krhp99mp9ncrz6dfgre542nv0rc8lrryjvr on 44'/118'/16'/0/0) #16 js:2:osmo:osmo1xr8krhp99mp9ncrz6dfgre542nv0rc8lrryjvr:
undefined: 0 OSMO (0ops) (osmo102w826rmvswfhs4zsv2ujhylmd92c28p6lglqe on 44'/118'/17'/0/0) #17 js:2:osmo:osmo102w826rmvswfhs4zsv2ujhylmd92c28p6lglqe:
undefined: 0.000696 DSM (0ops) (desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454 on 44'/118'/0'/0/0) #0 js:2:desmos:desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454:
undefined: 0 DSM (4ops) (desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur on 44'/118'/1'/0/0) #1 js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:
undefined: 0 DSM (5ops) (desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx on 44'/118'/2'/0/0) #2 js:2:desmos:desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx:
undefined: 0.003213 DSM (3ops) (desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu on 44'/118'/3'/0/0) #3 js:2:desmos:desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu:
undefined: 0.007096 DSM (3ops) (desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9 on 44'/118'/4'/0/0) #4 js:2:desmos:desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9:
undefined: 0.011684 DSM (8ops) (desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y on 44'/118'/5'/0/0) #5 js:2:desmos:desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y:
undefined: 0 DSM (2ops) (desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz on 44'/118'/6'/0/0) #6 js:2:desmos:desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz:
undefined: 0.014692 DSM (2ops) (desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt on 44'/118'/7'/0/0) #7 js:2:desmos:desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt:
undefined: 0.007423 DSM (3ops) (desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8 on 44'/118'/8'/0/0) #8 js:2:desmos:desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8:
undefined: 0.029682 DSM (5ops) (desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7 on 44'/118'/9'/0/0) #9 js:2:desmos:desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7:
undefined: 0.017274 DSM (6ops) (desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted on 44'/118'/10'/0/0) #10 js:2:desmos:desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted:
undefined: 0 DSM (1ops) (desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z on 44'/118'/11'/0/0) #11 js:2:desmos:desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z:
undefined: 0.083121 DSM (4ops) (desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243 on 44'/118'/12'/0/0) #12 js:2:desmos:desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243:
undefined: 76.0648 DSM (10ops) (desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0 on 44'/118'/13'/0/0) #13 js:2:desmos:desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0:
undefined: 16.1495 DSM (1ops) (desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8 on 44'/118'/14'/0/0) #14 js:2:desmos:desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8:
undefined: 22.9375 DSM (8ops) (desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk on 44'/118'/15'/0/0) #15 js:2:desmos:desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk:
undefined: 29.6266 DSM (0ops) (desmos1xr8krhp99mp9ncrz6dfgre542nv0rc8llq6jdf on 44'/118'/16'/0/0) #16 js:2:desmos:desmos1xr8krhp99mp9ncrz6dfgre542nv0rc8llq6jdf:
undefined: 0 DSM (0ops) (desmos102w826rmvswfhs4zsv2ujhylmd92c28pxuklpn on 44'/118'/17'/0/0) #17 js:2:desmos:desmos102w826rmvswfhs4zsv2ujhylmd92c28pxuklpn:
undefined: 0.00028612 dydx (0ops) (dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6 on 44'/118'/0'/0/0) #0 js:2:dydx:dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6:
undefined: 0.00062743 dydx (0ops) (dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv on 44'/118'/1'/0/0) #1 js:2:dydx:dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv:
undefined: 0.00081036 dydx (0ops) (dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf on 44'/118'/2'/0/0) #2 js:2:dydx:dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf:
undefined: 0.00103948 dydx (0ops) (dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en on 44'/118'/3'/0/0) #3 js:2:dydx:dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en:
undefined: 0 dydx (0ops) (dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2 on 44'/118'/4'/0/0) #4 js:2:dydx:dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2:
undefined: 0.00090041 dydx (0ops) (dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt on 44'/118'/5'/0/0) #5 js:2:dydx:dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt:
undefined: 0.00123005 dydx (0ops) (dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d on 44'/118'/6'/0/0) #6 js:2:dydx:dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d:
undefined: 0.0005327 dydx (0ops) (dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky on 44'/118'/7'/0/0) #7 js:2:dydx:dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky:
undefined: 0.00108568 dydx (0ops) (dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug on 44'/118'/8'/0/0) #8 js:2:dydx:dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug:
undefined: 0.00163178 dydx (0ops) (dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73 on 44'/118'/9'/0/0) #9 js:2:dydx:dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73:
undefined: 0.00032301 dydx (0ops) (dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz on 44'/118'/10'/0/0) #10 js:2:dydx:dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz:
undefined: 0.00079267 dydx (0ops) (dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd on 44'/118'/11'/0/0) #11 js:2:dydx:dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd:
undefined: 0.00117506 dydx (0ops) (dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7 on 44'/118'/12'/0/0) #12 js:2:dydx:dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7:
undefined: 0.0133491 dydx (0ops) (dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq on 44'/118'/13'/0/0) #13 js:2:dydx:dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq:
undefined: 0.00070996 dydx (0ops) (dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg on 44'/118'/14'/0/0) #14 js:2:dydx:dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg:
undefined: 0.00090914 dydx (0ops) (dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te on 44'/118'/15'/0/0) #15 js:2:dydx:dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te:
undefined: 0 dydx (0ops) (dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x on 44'/118'/16'/0/0) #16 js:2:dydx:dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x:
undefined: 0 dydx (0ops) (dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku on 44'/118'/17'/0/0) #17 js:2:dydx:dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku:
undefined: 0.012671 UMEE (3ops) (umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l on 44'/118'/0'/0/0) #0 js:2:umee:umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l:
undefined: 0.045691 UMEE (3ops) (umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f on 44'/118'/1'/0/0) #1 js:2:umee:umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f:
undefined: 0.023772 UMEE (1ops) (umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv on 44'/118'/2'/0/0) #2 js:2:umee:umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv:
undefined: 1.17955 UMEE (5ops) (umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak on 44'/118'/3'/0/0) #3 js:2:umee:umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak:
undefined: 0 UMEE (4ops) (umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0 on 44'/118'/4'/0/0) #4 js:2:umee:umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0:
undefined: 1.08844 UMEE (5ops) (umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw on 44'/118'/5'/0/0) #5 js:2:umee:umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw:
undefined: 16.1442 UMEE (4ops) (umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg on 44'/118'/6'/0/0) #6 js:2:umee:umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg:
undefined: 0.772342 UMEE (9ops) (umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp on 44'/118'/7'/0/0) #7 js:2:umee:umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp:
undefined: 0.015269 UMEE (3ops) (umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd on 44'/118'/8'/0/0) #8 js:2:umee:umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd:
undefined: 61.9196 UMEE (7ops) (umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65 on 44'/118'/9'/0/0) #9 js:2:umee:umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65:
undefined: 0.005765 UMEE (0ops) (umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28 on 44'/118'/10'/0/0) #10 js:2:umee:umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28:
undefined: 0.16576 UMEE (10ops) (umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg on 44'/118'/11'/0/0) #11 js:2:umee:umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg:
undefined: 0.536865 UMEE (2ops) (umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm on 44'/118'/12'/0/0) #12 js:2:umee:umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm:
undefined: 78.3032 UMEE (11ops) (umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29 on 44'/118'/13'/0/0) #13 js:2:umee:umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29:
undefined: 45.16 UMEE (2ops) (umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd on 44'/118'/14'/0/0) #14 js:2:umee:umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd:
undefined: 406.132 UMEE (3ops) (umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u on 44'/118'/15'/0/0) #15 js:2:umee:umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u:
undefined: 131.586 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.10876 XPRT (54ops) (persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf on 44'/118'/0'/0/0) #0 js:2:persistence:persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf:
undefined: 0.000693 XPRT (43ops) (persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l on 44'/118'/1'/0/0) #1 js:2:persistence:persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l:
undefined: 0 XPRT (34ops) (persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6 on 44'/118'/2'/0/0) #2 js:2:persistence:persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6:
undefined: 0.062057 XPRT (99ops) (persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq on 44'/118'/3'/0/0) #3 js:2:persistence:persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq:
undefined: 0 XPRT (41ops) (persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e on 44'/118'/4'/0/0) #4 js:2:persistence:persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e:
undefined: 0.011696 XPRT (69ops) (persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc on 44'/118'/5'/0/0) #5 js:2:persistence:persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc:
undefined: 0.159445 XPRT (44ops) (persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7 on 44'/118'/6'/0/0) #6 js:2:persistence:persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7:
undefined: 0.558428 XPRT (115ops) (persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch on 44'/118'/7'/0/0) #7 js:2:persistence:persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch:
undefined: 0 XPRT (56ops) (persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm on 44'/118'/8'/0/0) #8 js:2:persistence:persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm:
undefined: 0.159911 XPRT (80ops) (persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz on 44'/118'/9'/0/0) #9 js:2:persistence:persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz:
undefined: 0.444094 XPRT (32ops) (persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3 on 44'/118'/10'/0/0) #10 js:2:persistence:persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3:
undefined: 0.714819 XPRT (44ops) (persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7 on 44'/118'/11'/0/0) #11 js:2:persistence:persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7:
undefined: 1.99535 XPRT (21ops) (persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd on 44'/118'/12'/0/0) #12 js:2:persistence:persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd:
undefined: 4.96611 XPRT (55ops) (persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn on 44'/118'/13'/0/0) #13 js:2:persistence:persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn:
undefined: 9.92334 XPRT (28ops) (persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m on 44'/118'/14'/0/0) #14 js:2:persistence:persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m:
undefined: 8.02486 XPRT (43ops) (persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92 on 44'/118'/15'/0/0) #15 js:2:persistence:persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92:
undefined: 2.24702 XPRT (15ops) (persistence1xr8krhp99mp9ncrz6dfgre542nv0rc8l953354 on 44'/118'/16'/0/0) #16 js:2:persistence:persistence1xr8krhp99mp9ncrz6dfgre542nv0rc8l953354:
undefined: 0 XPRT (0ops) (persistence102w826rmvswfhs4zsv2ujhylmd92c28pugauc0 on 44'/118'/17'/0/0) #17 js:2:persistence:persistence102w826rmvswfhs4zsv2ujhylmd92c28pugauc0:
undefined: 0.000724 QCK (6ops) (quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l on 44'/118'/0'/0/0) #0 js:2:quicksilver:quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l:
undefined: 0.000728 QCK (22ops) (quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf on 44'/118'/1'/0/0) #1 js:2:quicksilver:quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf:
undefined: 0.013289 QCK (34ops) (quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev on 44'/118'/2'/0/0) #2 js:2:quicksilver:quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev:
undefined: 0.000654 QCK (24ops) (quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk on 44'/118'/3'/0/0) #3 js:2:quicksilver:quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk:
undefined: 0 QCK (41ops) (quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0 on 44'/118'/4'/0/0) #4 js:2:quicksilver:quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0:
undefined: 0.005991 QCK (36ops) (quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw on 44'/118'/5'/0/0) #5 js:2:quicksilver:quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw:
undefined: 0 QCK (15ops) (quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug on 44'/118'/6'/0/0) #6 js:2:quicksilver:quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug:
undefined: 0.00042 QCK (21ops) (quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p on 44'/118'/7'/0/0) #7 js:2:quicksilver:quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p:
undefined: 0.129212 QCK (19ops) (quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d on 44'/118'/8'/0/0) #8 js:2:quicksilver:quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d:
undefined: 0.450265 QCK (47ops) (quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585 on 44'/118'/9'/0/0) #9 js:2:quicksilver:quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585:
undefined: 0 QCK (26ops) (quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8 on 44'/118'/10'/0/0) #10 js:2:quicksilver:quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8:
undefined: 0.577986 QCK (66ops) (quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg on 44'/118'/11'/0/0) #11 js:2:quicksilver:quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg:
undefined: 0.092481 QCK (18ops) (quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm on 44'/118'/12'/0/0) #12 js:2:quicksilver:quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm:
undefined: 7.5639 QCK (80ops) (quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9 on 44'/118'/13'/0/0) #13 js:2:quicksilver:quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9:
undefined: 0 QCK (20ops) (quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad on 44'/118'/14'/0/0) #14 js:2:quicksilver:quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad:
undefined: 3.62246 QCK (35ops) (quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju on 44'/118'/15'/0/0) #15 js:2:quicksilver:quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju:
undefined: 10.8067 QCK (9ops) (quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr on 44'/118'/16'/0/0) #16 js:2:quicksilver:quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr:
undefined: 0 QCK (0ops) (quick102w826rmvswfhs4zsv2ujhylmd92c28peqta0e on 44'/118'/17'/0/0) #17 js:2:quicksilver:quick102w826rmvswfhs4zsv2ujhylmd92c28peqta0e:
undefined: 0 NOM (19ops) (onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg on 44'/118'/0'/0/0) #0 js:2:onomy:onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg:
undefined: 0.00001593 NOM (45ops) (onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67 on 44'/118'/1'/0/0) #1 js:2:onomy:onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67:
undefined: 0 NOM (34ops) (onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m on 44'/118'/2'/0/0) #2 js:2:onomy:onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m:
undefined: 0.00000198 NOM (69ops) (onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp on 44'/118'/3'/0/0) #3 js:2:onomy:onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp:
undefined: 0 NOM (38ops) (onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c on 44'/118'/4'/0/0) #4 js:2:onomy:onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c:
undefined: 0.00000158 NOM (66ops) (onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he on 44'/118'/5'/0/0) #5 js:2:onomy:onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he:
undefined: 0.00000072 NOM (40ops) (onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l on 44'/118'/6'/0/0) #6 js:2:onomy:onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l:
undefined: 0.00000509 NOM (52ops) (onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k on 44'/118'/7'/0/0) #7 js:2:onomy:onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k:
undefined: 0.00000086 NOM (29ops) (onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6 on 44'/118'/8'/0/0) #8 js:2:onomy:onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6:
undefined: 0.00005687 NOM (58ops) (onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r on 44'/118'/9'/0/0) #9 js:2:onomy:onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r:
undefined: 0.00000694 NOM (16ops) (onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls on 44'/118'/10'/0/0) #10 js:2:onomy:onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls:
undefined: 0.00314134 NOM (50ops) (onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl on 44'/118'/11'/0/0) #11 js:2:onomy:onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl:
undefined: 0.0009464 NOM (15ops) (onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv on 44'/118'/12'/0/0) #12 js:2:onomy:onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv:
undefined: 0.214326 NOM (13ops) (onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj on 44'/118'/13'/0/0) #13 js:2:onomy:onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj:
undefined: 0.399647 NOM (16ops) (onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46 on 44'/118'/14'/0/0) #14 js:2:onomy:onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46:
undefined: 0.052866 NOM (7ops) (onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t on 44'/118'/15'/0/0) #15 js:2:onomy:onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t:
undefined: 1.13529 NOM (13ops) (onomy1xr8krhp99mp9ncrz6dfgre542nv0rc8l3er5t5 on 44'/118'/16'/0/0) #16 js:2:onomy:onomy1xr8krhp99mp9ncrz6dfgre542nv0rc8l3er5t5:
undefined: 0 NOM (0ops) (onomy102w826rmvswfhs4zsv2ujhylmd92c28pg90e8w on 44'/118'/17'/0/0) #17 js:2:onomy:onomy102w826rmvswfhs4zsv2ujhylmd92c28pg90e8w:
undefined: 0.005246 SEI (0ops) (sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v on 44'/118'/0'/0/0) #0 js:2:sei_network:sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v:
undefined: 0.010124 SEI (0ops) (sei1qvtnzptp30maznnhdg30xl2jtdq2shpn2s5qd6 on 44'/118'/1'/0/0) #1 js:2:sei_network:sei1qvtnzptp30maznnhdg30xl2jtdq2shpn2s5qd6:
undefined: 0 SEI (0ops) (sei1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw4vusxl on 44'/118'/2'/0/0) #2 js:2:sei_network:sei1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw4vusxl:
undefined: 0.027521 SEI (0ops) (sei1hgyf054qztvmty3cayuw9nedftlhejv5xd54l9 on 44'/118'/3'/0/0) #3 js:2:sei_network:sei1hgyf054qztvmty3cayuw9nedftlhejv5xd54l9:
undefined: 0 SEI (0ops) (sei1vc7s929uh2yxyhau4wsg5th9jzedvkurwspxau on 44'/118'/4'/0/0) #4 js:2:sei_network:sei1vc7s929uh2yxyhau4wsg5th9jzedvkurwspxau:
undefined: 0 SEI (0ops) (sei1qgrd8srhvald995uvpeyncvwg7afgkmrzsj8qa on 44'/118'/5'/0/0) #5 js:2:sei_network:sei1qgrd8srhvald995uvpeyncvwg7afgkmrzsj8qa:
undefined: 0.013449 SEI (0ops) (sei1n6vccpa77x7xyhnk98jy6gg3rmgjkazxen5vrm on 44'/118'/6'/0/0) #6 js:2:sei_network:sei1n6vccpa77x7xyhnk98jy6gg3rmgjkazxen5vrm:
undefined: 0.004018 SEI (0ops) (sei1v283e7h2plllyjwgqrexv2ge5e4z252u0d2fsj on 44'/118'/7'/0/0) #7 js:2:sei_network:sei1v283e7h2plllyjwgqrexv2ge5e4z252u0d2fsj:
undefined: 0 SEI (0ops) (sei1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ww5667 on 44'/118'/8'/0/0) #8 js:2:sei_network:sei1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ww5667:
undefined: 0.014582 SEI (0ops) (sei1jgk668h53gd9wn09mndq7uzgk80nr5d80upsc8 on 44'/118'/9'/0/0) #9 js:2:sei_network:sei1jgk668h53gd9wn09mndq7uzgk80nr5d80upsc8:
undefined: 0.01225 SEI (0ops) (sei1733g3dfzj6tulcqtvz628ypuqj0hvlrzxt3dg5 on 44'/118'/10'/0/0) #10 js:2:sei_network:sei1733g3dfzj6tulcqtvz628ypuqj0hvlrzxt3dg5:
undefined: 0 SEI (0ops) (sei1q09970dekm5hdku5tta7p9w6kldyyf25r76f5m on 44'/118'/11'/0/0) #11 js:2:sei_network:sei1q09970dekm5hdku5tta7p9w6kldyyf25r76f5m:
undefined: 0.005197 SEI (0ops) (sei1yhlye27fl05kg4nhmeu5d579m8ups9ewmzhvyg on 44'/118'/12'/0/0) #12 js:2:sei_network:sei1yhlye27fl05kg4nhmeu5d579m8ups9ewmzhvyg:
undefined: 0.00525 SEI (0ops) (sei1890w5jltm6wmq2jr9f9e8x4vhs5fx30qack6gk on 44'/118'/13'/0/0) #13 js:2:sei_network:sei1890w5jltm6wmq2jr9f9e8x4vhs5fx30qack6gk:
undefined: 0.014868 SEI (0ops) (sei1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap4jcxz7 on 44'/118'/14'/0/0) #14 js:2:sei_network:sei1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap4jcxz7:
undefined: 0 SEI (0ops) (sei10wwjgt3uluxt4zq4qxnkcv96nyz4cata6zw8d0 on 44'/118'/15'/0/0) #15 js:2:sei_network:sei10wwjgt3uluxt4zq4qxnkcv96nyz4cata6zw8d0:
undefined: 0.123669 STARS (4ops) (stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu on 44'/118'/0'/0/0) #0 js:2:stargaze:stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu:
undefined: 0.167655 STARS (7ops) (stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2 on 44'/118'/1'/0/0) #1 js:2:stargaze:stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2:
undefined: 0 STARS (5ops) (stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0 on 44'/118'/2'/0/0) #2 js:2:stargaze:stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0:
undefined: 0.215106 STARS (9ops) (stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4 on 44'/118'/3'/0/0) #3 js:2:stargaze:stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4:
undefined: 0.16107 STARS (11ops) (stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv on 44'/118'/4'/0/0) #4 js:2:stargaze:stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv:
undefined: 0.189282 STARS (3ops) (stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd on 44'/118'/5'/0/0) #5 js:2:stargaze:stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd:
undefined: 0 STARS (0ops) (stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt on 44'/118'/6'/0/0) #6 js:2:stargaze:stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt:
undefined: 0.618642 STARS (7ops) (stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz on 44'/118'/7'/0/0) #7 js:2:stargaze:stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz:
undefined: 0 STARS (3ops) (stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw on 44'/118'/8'/0/0) #8 js:2:stargaze:stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw:
undefined: 14.6463 STARS (2ops) (stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h on 44'/118'/9'/0/0) #9 js:2:stargaze:stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h:
undefined: 63.1167 STARS (4ops) (stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y on 44'/118'/10'/0/0) #10 js:2:stargaze:stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y:
undefined: 12.6344 STARS (1ops) (stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet on 44'/118'/11'/0/0) #11 js:2:stargaze:stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet:
undefined: 6.87588 STARS (2ops) (stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc on 44'/118'/12'/0/0) #12 js:2:stargaze:stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc:
undefined: 1.59911 STARS (3ops) (stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x on 44'/118'/13'/0/0) #13 js:2:stargaze:stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x:
undefined: 31.2991 STARS (1ops) (stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w on 44'/118'/14'/0/0) #14 js:2:stargaze:stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w:
undefined: 442.615 STARS (2ops) (stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql on 44'/118'/15'/0/0) #15 js:2:stargaze:stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql:
undefined: 318.893 STARS (0ops) (stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q on 44'/118'/16'/0/0) #16 js:2:stargaze:stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q:
undefined: 0 STARS (0ops) (stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6 on 44'/118'/17'/0/0) #17 js:2:stargaze:stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6:
undefined: 0.014357 CORE (73ops) (core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk on 44'/118'/0'/0/0) #0 js:2:coreum:core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk:
undefined: 0.024863 CORE (117ops) (core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq on 44'/118'/1'/0/0) #1 js:2:coreum:core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq:
undefined: 0.242433 CORE (92ops) (core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89 on 44'/118'/2'/0/0) #2 js:2:coreum:core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89:
undefined: 0.168968 CORE (143ops) (core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l on 44'/118'/3'/0/0) #3 js:2:coreum:core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l:
undefined: 0.016046 CORE (84ops) (core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux on 44'/118'/4'/0/0) #4 js:2:coreum:core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux:
undefined: 3.20773 CORE (113ops) (core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8 on 44'/118'/5'/0/0) #5 js:2:coreum:core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8:
undefined: 0.02649 CORE (76ops) (core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp on 44'/118'/6'/0/0) #6 js:2:coreum:core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp:
undefined: 0.001646 CORE (102ops) (core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g on 44'/118'/7'/0/0) #7 js:2:coreum:core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g:
undefined: 0 CORE (71ops) (core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy on 44'/118'/8'/0/0) #8 js:2:coreum:core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy:
undefined: 0.000445 CORE (132ops) (core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea on 44'/118'/9'/0/0) #9 js:2:coreum:core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea:
undefined: 0.11119 CORE (64ops) (core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw on 44'/118'/10'/0/0) #10 js:2:coreum:core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw:
undefined: 0.0652 CORE (105ops) (core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p on 44'/118'/11'/0/0) #11 js:2:coreum:core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p:
undefined: 0.207478 CORE (50ops) (core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j on 44'/118'/12'/0/0) #12 js:2:coreum:core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j:
undefined: 0.185867 CORE (109ops) (core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv on 44'/118'/13'/0/0) #13 js:2:coreum:core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv:
undefined: 0.539096 CORE (44ops) (core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try on 44'/118'/14'/0/0) #14 js:2:coreum:core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try:
undefined: 22.7979 CORE (68ops) (core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4 on 44'/118'/15'/0/0) #15 js:2:coreum:core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4:
undefined: 16.496 CORE (25ops) (core1xr8krhp99mp9ncrz6dfgre542nv0rc8lck0ea2 on 44'/118'/16'/0/0) #16 js:2:coreum:core1xr8krhp99mp9ncrz6dfgre542nv0rc8lck0ea2:
undefined: 0 CORE (0ops) (core102w826rmvswfhs4zsv2ujhylmd92c28pp2r53s on 44'/118'/17'/0/0) #17 js:2:coreum:core102w826rmvswfhs4zsv2ujhylmd92c28pp2r53s:
undefined: 17.3755 CRO (44ops) (cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra on 44'/394'/0'/0/0) #0 js:2:crypto_org:cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra:
undefined: 0 CRO (35ops) (cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl on 44'/394'/1'/0/0) #1 js:2:crypto_org:cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl:
undefined: 0 CRO (39ops) (cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2 on 44'/394'/2'/0/0) #2 js:2:crypto_org:cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2:
undefined: 17.3755 CRO (30ops) (cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd on 44'/394'/3'/0/0) #3 js:2:crypto_org:cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd:
undefined: 0 CRO (30ops) (cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l on 44'/394'/4'/0/0) #4 js:2:crypto_org:cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l:
undefined: 0 CRO (31ops) (cro1zfhcf2htapdkjlw4ffqzce7yfe6mhscd2su05p on 44'/394'/5'/0/0) #5 js:2:crypto_org:cro1zfhcf2htapdkjlw4ffqzce7yfe6mhscd2su05p:
undefined: 0 CRO (0ops) (cro1gfrsr7eerpuc0zpl4j6wp3aj55gqahtls2hj9h on 44'/394'/6'/0/0) #6 js:2:crypto_org:cro1gfrsr7eerpuc0zpl4j6wp3aj55gqahtls2hj9h:
undefined: 0 EGLD (361ops) (erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp on 44'/508'/0'/0/0) #0 js:2:elrond:erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp:
undefined: 0.118454 EGLD (392ops) (erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6 on 44'/508'/1'/0/0) #1 js:2:elrond:erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6:
undefined: 0.24024 EGLD (362ops) (erd1ql9pxrhe29cjr8qgxx3rtmh9lyax5x9dkvu3mfzrgt4e8hwk536ssl4sea on 44'/508'/2'/0/0) #2 js:2:elrond:erd1ql9pxrhe29cjr8qgxx3rtmh9lyax5x9dkvu3mfzrgt4e8hwk536ssl4sea:
undefined: 0 EGLD (380ops) (erd1sjvd5mh946cty4wq0ya0d82509tc8eulxjujrad5ztfwjlhkqz0qy5yzmn on 44'/508'/3'/0/0) #3 js:2:elrond:erd1sjvd5mh946cty4wq0ya0d82509tc8eulxjujrad5ztfwjlhkqz0qy5yzmn:
undefined: 0.108758 EGLD (323ops) (erd149kzxgtymzzaddanlj02zhyhwves9wspvk8p69u325tjln5en9aqf8x8el on 44'/508'/4'/0/0) #4 js:2:elrond:erd149kzxgtymzzaddanlj02zhyhwves9wspvk8p69u325tjln5en9aqf8x8el:
undefined: 0 EGLD (307ops) (erd143yn6uvrfzjptq5g7wvzntl3fcthsxtxrp9f3dgasluj6q5n0pxq2td67n on 44'/508'/5'/0/0) #5 js:2:elrond:erd143yn6uvrfzjptq5g7wvzntl3fcthsxtxrp9f3dgasluj6q5n0pxq2td67n:
undefined: 0.478279 EGLD (225ops) (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: 4.64275 HBAR (377ops) (0.0.3663977 on 44/3030) hederaBip44#0 js:2:hedera:0.0.3663977:hederaBip44
undefined: 0.00000425 HBAR (334ops) (0.0.3664525 on 44/3030) hederaBip44#1 js:2:hedera:0.0.3664525:hederaBip44
undefined: 17.4511 HBAR (301ops) (0.0.3664539 on 44/3030) hederaBip44#2 js:2:hedera:0.0.3664539:hederaBip44
undefined: 17.0437 HBAR (282ops) (0.0.3664563 on 44/3030) hederaBip44#3 js:2:hedera:0.0.3664563:hederaBip44
undefined: 0.0130649 ICP (107ops) (f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209 on 44'/223'/0'/0/0) internet_computer#0 js:2:internet_computer:04e529ca9ff4709b35af64dce4f0719e770d5e185e4ee972729b75495b27628fad0990203fe3ac7079c643a6dd23384e597c65b7bbebbf994b8304253f1bd124e4:internet_computer
undefined: 0 ICP (99ops) (6084b3d34e7d4efd544ea0c3617a816577d00feb0de0db71b560b7687e7d3c14 on 44'/223'/0'/0/1) internet_computer#1 js:2:internet_computer:0404b6a7df5dd483be4711fbdc9248af1e49b3a205334120118fe1dd9567da874d2655f681d9935b02139ffe1997c7fcb7781c04917303d90c7ea157d495ec30d3:internet_computer
undefined: 0 ICP (95ops) (ff5ed1dc2538d7a8b3158e7c9d9b05f80bc5f49f292f1ad2a59576a70bfc4721 on 44'/223'/0'/0/2) internet_computer#2 js:2:internet_computer:04c6d5dab70167c7b104904e57ee8afc84e8b4809c927ceec353a217f1402438b86bb9515e5bdbcc8f187c2c0c5f539d6459fc99c86af1244f452175fd9b736714:internet_computer
undefined: 0.00748709 ICP (101ops) (a45d0e0afb2c416464342615b6ee1902ac6895cf5e9eab2ccc184978164e9310 on 44'/223'/0'/0/3) internet_computer#3 js:2:internet_computer:040e411918ebc5963b5f89938dd674d6cb95131ce3d335957cd8efd99cce3521ea22b3f0fc53996b9ce3373a86ca57def22b89829ae905fde5d22c4522a7af5aa2:internet_computer
undefined: 0.00567781 ICP (82ops) (5084840b6ed50fa97b40c93863092770dc74f42bd2fbc742b76ec2999e789262 on 44'/223'/0'/0/4) internet_computer#4 js:2:internet_computer:046036d79bf131623410cfe77b7ccc32c923c6f8dc1b62448111328a2a791b1a7df2d1d4ca80659f3f0613e2334df370ab1c4e38c724decdf7f9f650a61e4ea090:internet_computer
undefined: 0.180109 ICP (68ops) (0ec8cbc167cf495b7800efe653586d14ee0a53ef8880c63129b180580b02a8af on 44'/223'/0'/0/5) internet_computer#5 js:2:internet_computer:04e3bde2b3aeee5ae2af7ffdd25cc416df033c04d084ac02166ee52281e81be7945b119ab171b224984a8ff45adf4cbf28a392524dbefff12edf5d2470efd43375:internet_computer
undefined: 0.809838 ICP (40ops) (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: 24.2912 STX (177ops) (SP3WE1A84RCG3GWKRXYMXNRVQJ8PG3VDRKE7CMPM4 on 44'/5757'/1'/0/0) #1 js:2:stacks:03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229:
undefined: 8.08396 STX (176ops) (SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2 on 44'/5757'/0'/0/0) #0 js:2:stacks:02d8ff937901982551807aace226a5b1eae3d8c5c89d1eae39ccab9cd1d27a9739:
undefined: 0 STX (142ops) (SPJ68NSCQSTQ1AQRY1NJ5D4WWBEPDQ6X24R56J8A on 44'/5757'/2'/0/0) #2 js:2:stacks:02319a870c0e3d22b9c0169df3bae3029a9e5593f8dabbc7e4b6a1e356edafed77:
undefined: 0 STX (0ops) (SP20VP4RY6P3WFDTFGA6A7WFK3ZNN1P305SDWPB3Q on 44'/5757'/3'/0/0) #3 js:2:stacks:02ba832a893132328c5459add91b296287a70b4cbb889eaf1e53542864a853eb8e:
undefined: 53.4898 XLM (556ops) (GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC on 44'/148'/0') sep5#0 js:2:stellar:GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC:sep5
undefined: 1.50049 XLM (551ops) (GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ on 44'/148'/1') sep5#1 js:2:stellar:GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ:sep5
undefined: 1.5005 XLM (553ops) (GA4A2FH4YYI2RXPUC3NPGZQP7XX4CEJNREB27XVX7B7D5RIA3KOLSKTI on 44'/148'/2') sep5#2 js:2:stellar:GA4A2FH4YYI2RXPUC3NPGZQP7XX4CEJNREB27XVX7B7D5RIA3KOLSKTI:sep5
undefined: 8.48933 XLM (532ops) (GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM on 44'/148'/3') sep5#3 js:2:stellar:GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM:sep5
undefined: 1.5005 XLM (489ops) (GBV2ROL25KKDSFCZC2TQPMUEN567YQHRWTRBYHCO5AKYWVIV4JKJ56AF on 44'/148'/4') sep5#4 js:2:stellar:GBV2ROL25KKDSFCZC2TQPMUEN567YQHRWTRBYHCO5AKYWVIV4JKJ56AF:sep5
undefined: 0 XLM (0ops) (GCMN2KYJPPHB4TMXXF2OZPMWVM5EQSDD76IMFOMET7YMN64VJDVHVNCM on 44'/148'/5') sep5#5 js:2:stellar:GCMN2KYJPPHB4TMXXF2OZPMWVM5EQSDD76IMFOMET7YMN64VJDVHVNCM:sep5
undefined: 0.625 VET (7ops) (0xc4B17901FECf86932c3bb296BB00E7c6816Fd416 on 44'/818'/0'/0/0) vechain#0 js:2:vechain:0xc4B17901FECf86932c3bb296BB00E7c6816Fd416:vechain
undefined: 3.125 VET (5ops) (0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD on 44'/818'/0'/0/1) vechain#1 js:2:vechain:0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD:vechain
undefined: 1.25 VET (1ops) (0x6fc5998724338CDe55Bba798273FAdcDE79c5074 on 44'/818'/0'/0/2) vechain#2 js:2:vechain:0x6fc5998724338CDe55Bba798273FAdcDE79c5074:vechain
undefined: 0 VET (0ops) (0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3 on 44'/818'/0'/0/3) vechain#3 js:2:vechain:0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3:vechain
undefined: 0.625 VET (7ops) (0xc4B17901FECf86932c3bb296BB00E7c6816Fd416 on 44'/818'/0'/0/0) vechain#0 js:2:vechain:0xc4B17901FECf86932c3bb296BB00E7c6816Fd416:vechain
undefined: 3.125 VET (5ops) (0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD on 44'/818'/0'/0/1) vechain#1 js:2:vechain:0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD:vechain
undefined: 1.25 VET (1ops) (0x6fc5998724338CDe55Bba798273FAdcDE79c5074 on 44'/818'/0'/0/2) vechain#2 js:2:vechain:0x6fc5998724338CDe55Bba798273FAdcDE79c5074:vechain
undefined: 0 VET (0ops) (0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3 on 44'/818'/0'/0/3) vechain#3 js:2:vechain:0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3:vechain
undefined: 6.49258 ALGO (428ops) (TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4 on 44'/283'/0'/0/0) #0 js:2:algorand:TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4:
undefined: 3.1 ALGO (426ops) (RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ on 44'/283'/1'/0/0) #1 js:2:algorand:RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ:
undefined: 2.7 ALGO (444ops) (YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE on 44'/283'/2'/0/0) #2 js:2:algorand:YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE:
undefined: 6.53087 ALGO (476ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA:
undefined: 4.18914 ALGO (389ops) (GEPEPFCOO7TRQ3HKU5IKQPARS7DDXDHH6Y2VNMUJWH7TMLLOZ3Z6JKRQAI on 44'/283'/4'/0/0) #4 js:2:algorand:GEPEPFCOO7TRQ3HKU5IKQPARS7DDXDHH6Y2VNMUJWH7TMLLOZ3Z6JKRQAI:
undefined: 0 ALGO (0ops) (X3TNYJCHUW6UBWVEN5K2ULWMLRWRGBEUWZLR4V2XR3UDN4TWNZP3Q6EAQU on 44'/283'/5'/0/0) #5 js:2:algorand:X3TNYJCHUW6UBWVEN5K2ULWMLRWRGBEUWZLR4V2XR3UDN4TWNZP3Q6EAQU:
undefined [native segwit]: 0 𝚝BTC (183ops) (tb1qqsk6rter25qfxful9dhzrtunyyaga2pvvv89vl on 84'/1'/0'/0/79) native_segwit#0 js:2:bitcoin_testnet:tpubDCgDNn312aj5XtrdMeA9TeQbp2HkMW2a1JNw2qhRLzUaFiDAAQK3Jzh6jzHpc6Agjn68mZgPQB2ZdQzfgRgXVXDi2FVECW7p4xGuK6Pa3b8:native_segwit
undefined [native segwit]: 0 𝚝BTC (156ops) (tb1qrlys0xw3ze6yrdg0l65fhavw75sjp8w4x6epe4 on 84'/1'/1'/0/77) native_segwit#1 js:2:bitcoin_testnet:tpubDCgDNn312aj5YVQsroTmVAWSVMpx2PM7m4toPJsHUricGUh457AwMZK55f2uNVxYdKeW8qDZDngveqFFcsFTWW7eZFbnYerfsf5YAdxU3K8:native_segwit
undefined [native segwit]: 0 𝚝BTC (184ops) (tb1qy7czv898xljxfr0jyw0stp8nj2fksjlrkt0vdc on 84'/1'/2'/0/80) native_segwit#2 js:2:bitcoin_testnet:tpubDCgDNn312aj5d7zhhRFxoozQMEzDZFVWmJngmKcygstAZheV88CxrZ2KqFL8nsjZoeNKeqEHTSmjii11wcuYuchvGYqYuGTzveWepNUKPmE:native_segwit
undefined [native segwit]: 0 𝚝BTC (0ops) (tb1q6d99qx850zdfx4ch32mm3v3mc2g5mupusazw49 on 84'/1'/3'/0/0) native_segwit#3 js:2:bitcoin_testnet:tpubDCgDNn312aj5f2MgUfzseZjbXNj5ep7UH8ucWf9VvUbRC1oyUG7cjbGLoCRhc429i6pMcuMS9ZhGX2bTwnKipVSkhNak9fn2N6sVorY4FxW:native_segwit
undefined [taproot]: 0.00009319 𝚝BTC (183ops) (tb1phpf60ff7kk5t4s5hd36pr6e6jkv6uhl869gs642gmytd05tqe0as2s58w7 on 86'/1'/0'/0/86) taproot#0 js:2:bitcoin_testnet:tpubDD1s2jBEVuSpzKea6ie3HMCmkanzcfvc9BbQq8nRDUaAUJPGFi83RWFCNMartYsuxksbFR6tDmVGMaaRP7ng7uovwKT1WNjcuDW34st9R56:taproot
undefined [taproot]: 0.0006 𝚝BTC (171ops) (tb1pmyh8crjlk5qy8qn0yk2u5ggr9jqqnmll4vtn894werm4tavd5ftqnzcn0a on 86'/1'/1'/0/77) taproot#1 js:2:bitcoin_testnet:tpubDD1s2jBEVuSq13eMrn3r2tnwxfuWeBM94Dgtc4D5A6h1Jcx2kheLSgGtZroZCwFnXN4ao5PxViYSFTK57vRZnQ1RS193EETKNMmRuPTcWJH:taproot
undefined [taproot]: 0 𝚝BTC (0ops) (tb1p7t4hdtqlmpfv4vpu2vqre6elaywjvlq5yfl4jnjz9gw7lwcpjl5svzk5yz on 86'/1'/2'/0/0) taproot#2 js:2:bitcoin_testnet:tpubDD1s2jBEVuSq4ewqyyWoJYgCyvXsQ3wRkeSmKa3RW3b4BL2rfdDWzwM2WoefQcPGjetH92smctVjK4qrS89zYShy399s8MqWzhZdnCvHLfF:taproot
undefined [segwit]: 0.00015 𝚝BTC (156ops) (2N3WJiFfMhLVg8Fd1bCcwGCH3JygLhHN6U8 on 49'/1'/0'/0/76) segwit#0 js:2:bitcoin_testnet:tpubDCoPNx9aypg8jXFPWWYdpHS3MtXF5GPM3nY2UbvQSnEt8PELHAbnf2MknjprAMTYUYPNJzKCr2XSBVMp2wctdKbU1jw9MHA9cbgN7CakJQe:segwit
undefined [segwit]: 0.00021266 𝚝BTC (141ops) (2MzVC116JFYi2C3gxDJ1RnsdqAJeFVgNFHu on 49'/1'/1'/0/64) segwit#1 js:2:bitcoin_testnet:tpubDCoPNx9aypg8mbeNfcfUjuUfsXwrSmZkRseMwRxkhinEX8JjfThyhtJg6HeVWp6mF8gf6m37xqC4Q9yebR5RdtdjFcJ1Js7t8VB8Dq8Nczj:segwit
undefined [segwit]: 0 𝚝BTC (0ops) (2Mys6yQgQV1gdVTPECM5xvhUuNsiqtwSTm7 on 49'/1'/2'/0/0) segwit#2 js:2:bitcoin_testnet:tpubDCoPNx9aypg8pnB9z8yPPo7WEEeu9H1VPzq185ppKSLXDpdvXWkR75auxm6pkL6PdyRNLckMzYbZwiUui7hxFSsK5S5YHXT7pyfiG1eR9JQ:segwit
undefined [legacy]: 0.00046673 𝚝BTC (142ops) (mp25g3AMZDZ5sNNnxaquBsdz4pVqiBVqeR on 44'/1'/0'/0/86) #0 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBsPABuHGzrXmApLgBRomQx7oFzQeuQn8gpzD27asWNYMeBzanzy4ru9hPE5q1HnQJCW2VcWm2Nz4cdNRB8Eo9xKPz6LGnrxQ:
undefined [legacy]: 0.00040818 𝚝BTC (107ops) (n2dUAxPre9KjeUTnAYPmyJb2jUj3wXLqLP on 44'/1'/1'/0/83) #1 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBv5wFZcFYEhephnhXGjF8gKZJ98kGxYvtiv8xdfNVgFgGAFZFCRXwR8td9Nq8nufwfXB1iX75Ypx99d1NktaeLNc4DxmrTng:
undefined [legacy]: 0 𝚝BTC (0ops) (n2pjyyrHHws2nhUT5vULWWYvVvKdQ6itHW on 44'/1'/2'/0/0) #2 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBxB9KbDNQ4KwPmSA6cftnyvQYTQWDgApMdz2Z3YrEMvJVe7ZXz3turDky7qbyk5WJBf2FS9xk4XacpPw8tND5mkkFZRpK1im:
undefined: 0.0218157 BCH (625ops) (qr9qzhvwmej356ztnu07yjnhdqa0tfhg3uypq6x2rc on 44'/145'/0'/0/314) #0 js:2:bitcoin_cash:xpub6CYDTh442n9QYTMdQ7Uc7XDC2zCzZ5jM1m1DrWxmfQMToP2ngWZVtptKiksRoGgdcRSLDC6PgEULihbZE3SDt4ndVzoRNUEoZeTCsBUAWWP:
undefined: 0 BCH (597ops) (bitcoincash:qrjh5hqdkealer9ey7wpg2srtjcn7xm6tyfjd0x3ua on 44'/145'/1'/0/304) #1 js:2:bitcoin_cash:xpub6CYDTh442n9QaLF3Z2i5L9QENTixN9kGH5XCYh2J5UTHuu99Y2W1sxm2HcX9sQUe2xmv4r3GVmn8GdTvCsLEof448VdZEmdpfmzX7Dk3AJx:
undefined: 0.0148167 BCH (558ops) (qr3tgupezhdjunzzz8j09d30qf5d926dqc07zf2rkt on 44'/145'/2'/0/275) #2 js:2:bitcoin_cash:xpub6CYDTh442n9QdmbZ2RXVmndx8Hv2cFDKjhzANqnPkFjpcqaztmjEdhB9wiiYxJFncp8Et32XZF2YvsC6sXmDRFGEwgjVzQDinZ2xmgZuyb9:
undefined: 0 BCH (560ops) (qpjlmfv7x8gatqv9r2zukxexdd5qq8tnwyuvkk7uxd on 44'/145'/3'/0/274) #3 js:2:bitcoin_cash:xpub6CYDTh442n9QftkdDJbR3GXhop6xxjkHdxgz9xcKkdq8Q7xF9ER8NXJicVwjXbnkBdbF7nc52wrAVhGoraVfQcsGCA2JwjWurCZQU6pNyHH:
undefined: 0.00032167 BCH (530ops) (qz0ct0atsak8uv0f8qz2tqlc4s7ufxycdsynv52xzf on 44'/145'/4'/0/249) #4 js:2:bitcoin_cash:xpub6CYDTh442n9QiWxQaeXpmh16DkgpNqufRUMcj6rDqW2gF9Ronnvv9okteP6YQHZGYEojUXg8LL3kfrJzWHrfLFKKarvBgZBtSBRgqcX6w1G:
undefined: 0.0104547 BCH (525ops) (qq52cf0pe0xupkm7nld5w4eqlwjkanrxjvyullxxhh on 44'/145'/5'/0/280) #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.0559379 BTG (661ops) (AL2kH6bSwBFeJeV7FSrGf6GSwokypGXJ3H on 49'/156'/0'/0/321) segwit#0 js:2:bitcoin_gold:xpub6DHWENEKDQW8XxvbwvAFdCTGgzmHJkx8eY8bdGrL6iLmiqmPmCEscEvf7MBSDtbZWuLcUeQP9j87rJSgMhtwpUj3JSnQDoGHG2aqRVaSn43:segwit
undefined [segwit]: 0.132671 BTG (635ops) (AGFVRZLjUGRyUrYoqAyihNurbwty9jdFGW on 49'/156'/1'/0/310) 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.0864044 BTG (665ops) (GNfijzki9h5qQvs5ssZC2V6iMTf3KA4xrv on 44'/156'/0'/0/330) #0 js:2:bitcoin_gold:xpub6Cq1sXPAA8ijyqJpdR5hDVYJ7XyunpPgVpCWwPtReGJDwhqnWxBhu7wBJjbtdWHXSQiSyNDhxDXF4GmrXGatK4yDASHE3CgS3tsT41T81Dj:
undefined [legacy]: 0.115508 BTG (648ops) (GSMVZGwWoPAsVJggNjTDFGP5keuPhK2YUU on 44'/156'/1'/0/342) #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.00057589 DASH (486ops) (XeQKEHEzZKYNrJPmorcp6J8Yk3ghWE4oYw on 44'/5'/0'/0/240) #0 js:2:dash:drkvjS8m2iwuqAXaxEBNS8ULFEKfoEEVNrSyzsEwioinaxb7TZ6fmP7rB3YiU3xcEoM39WoeDJdTS5sgVHQAeowB9BhdxkvDZhJErQk8AWTyaYk:
undefined: 0.00747009 DASH (461ops) (XqTJAeohBaBUrczz7HcRcK1X2wjA5q9oFb on 44'/5'/1'/0/213) #1 js:2:dash:drkvjS8m2iwuqAXayHufe3hHCwpvgLyxxGhMAiCSW4kjQ2jC6FKcYKqC2ePkovCh93HAt2AgXQSt4YdJG3XX1raRMbHwwJz6ezKi4yotkX7mjwb:
undefined: 0.0611178 DASH (492ops) (Xfba5Gz6vq2mdLjisdvKK6n7pbiBgJnBmP on 44'/5'/2'/0/247) #2 js:2:dash:drkvjS8m2iwuqAXb2YSrc4u7qMoaf3UtCbF5A1gphQy6soFEDH7sHmvfZiAEzFse5Q3ycaoq6Su8iitWgNoxRriwzitNTWcwBkXrAdaf2xNXuo4:
undefined: 0.0258795 DASH (456ops) (XjiNhcKoN85ExqMK1s7KENYkBjFxF4ftgr on 44'/5'/3'/0/229) #3 js:2:dash:drkvjS8m2iwuqAXb4LDphtncxj3UdVEACR5JCjoccMjdxfEkEhu7oB1vpZFyajdUEhapJgwi7uUq24ys47gm3VNj4vRQbVcV5YQkrGCpUyd7hDS:
undefined: 0.0128806 DASH (442ops) (XcNBPExVY5mvtoDiruJVkMPGYQyQXaQi3h on 44'/5'/4'/0/224) #4 js:2:dash:drkvjS8m2iwuqAXb7uLicFWmFdztLiHpa6PM7iTRQcYT9wX9vF565f9ZQ7ZrwYBKab7ctGrnUyyyn5zFBtBEazazVdBvneLkZ9bUjb83PMLEgpw:
undefined: 0 DASH (443ops) (Xqpjxect5n8S99Ho3XFpu6fqoAELDTee6U on 44'/5'/5'/0/233) #5 js:2:dash:drkvjS8m2iwuqAXbBAUgNiSVfsH5TurFQxb3bCTM84wuSY376sNUmXbTzLp6cPT8iLqD43n1GXTaHGAaemq8vEm2rwqu5bxtgemUp719HCTXW4S:
undefined: 0 DASH (0ops) (XiiyHQPZVuxXHnApv1XP2aNbz92zL8u6Hy on 44'/5'/6'/0/0) #6 js:2:dash:drkvjS8m2iwuqAXbCRvDwtZdhj7KX8KWD7NqtKJ3cmdPhKoAsfK26rcmmGGAoHdVCvsCgkkZMeyq9cxfExdrvJfzTXJFU8enhrj8pQ4vnTXXUh9:
undefined [native segwit]: 188.225 DGB (628ops) (dgb1qxj3dqkyqpa4f2v4dlmgrgch0mkhnec2eawvsg9 on 84'/20'/0'/0/299) native_segwit#0 js:2:digibyte:xpub6CW9KDgdnS4RwiFZjL1YpEbk1yYvD96EqiBXmq6xKRhe3rJJQaB78voA4DG2dJctnUeWZes6NhysTRpCmBgGxCCy39wcwRwSB4fx3Nd2AxP:native_segwit
undefined [native segwit]: 106.292 DGB (628ops) (dgb1qsjsc3gzg0whxy6d70x39qwscpa9aqjqs080jsw on 84'/20'/1'/0/309) 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]: 97.8527 DGB (588ops) (SXyVMJ25KVabCdLB4wbkr3PX81db3H8iCE on 49'/20'/0'/0/291) segwit#0 js:2:digibyte:xpub6CrEMM6LnNPxiDTZaMJwXTtYZXUQvvMwYb2Do892dbEYMrLEfFXZ8ygRrywE66brjMWbV948BJAbWGwV1oeyT7L57ZJykK8jVJ26UQiDVfp:segwit
undefined [segwit]: 0.2 DGB (578ops) (SMQRofu9pjEdRAtQ4B3nz934FLafKWF5pN on 49'/20'/1'/0/282) 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]: 51.3696 DGB (606ops) (D8dRZg6ferMiGPRXczBWDmsXRC1bQirFgp on 44'/20'/0'/0/301) #0 js:2:digibyte:xpub6Cv4emS7S9zviCwMrBM1LhC7EdKY6QgFZ7T46nwEqtmaJda4EPH7Jv19h8GfhAPNTztGNWBBxribdod3wcxXRDkLmzRBxUgyZWxMoYLDgCX:
undefined [legacy]: 0 DGB (582ops) (DAqxHXPLhp6tp8wEjcDbxZ3q3JUtcVrRX3 on 44'/20'/1'/0/318) #1 js:2:digibyte:xpub6Cv4emS7S9zvmSxVKstTvb3QR4MYRMR1ySqUZbWc8A1vE2Y2BYw3FjLoxVtVYAeJjzR8PqEDDykAzGBUXsphL3xbgbzx6EtS2D8ikALFT52:
undefined [legacy]: 0 DGB (0ops) (DBWpWpZTMg31XMoamhZjKoSqahTVTG2qHi on 44'/20'/2'/0/0) #2 js:2:digibyte:xpub6Cv4emS7S9zvoT2jPveX3CwptyX75sUdfpgmx6DyVGme8QQit5WYE189GhbBJyPThotPBRdpQ5RaXNn8BCkmPNGCG1cirRswqvyvhhqgnAT:
undefined: 5.36256 DOGE (310ops) (D6qk5PTgcW2NGvXsUB5a4RtGsGqYBM4NPw on 44'/3'/0'/0/154) #0 js:2:dogecoin:dgub8sBmteCcuFFejUSqGNBcwXRVJ4ZH33Sx3vTJG1o8Q1XwFRNFgT8fAreoj59VMzuU6EJmVMW9gLc9XJSXuxBeSUEt2s2QjSbfYCKkyBvF3pz:
undefined: 6.09685 DOGE (310ops) (DGj5asLpeJzZtt1FQ1BP9Rxg3YxhLheSiS on 44'/3'/1'/0/146) #1 js:2:dogecoin:dgub8sBmteCcuFFenEm7nyLHE2Zxt38inSEWx1bVAvWgAXbsHzuEHPaM4aP4J1oE2UWhoQ6cjN8rLEmuzqZHr9MyJvLE8zj527mdtweCgUBjuxj:
undefined: 0 DOGE (316ops) (DRuWf25CcdnnTidGYREooyLdCSe2Mi3pM9 on 44'/3'/2'/0/161) #2 js:2:dogecoin:dgub8sBmteCcuFFepPh2rZbmtt3RujGFHSLrQiT7cawEm8PpDRumeEWWM4tsKtqm4vUYtHSJZvsifqbKXgUMGN89Y29Kh6DMoq2JCEBPAE5BVK2:
undefined: 5.68891 DOGE (318ops) (DG53HQpxjXU3D3FdJDgpTSYF2HuyBeQsua on 44'/3'/3'/0/161) #3 js:2:dogecoin:dgub8sBmteCcuFFer5KqAKz1JpoYNxNzLP5v2uStDCS6iMYMJz9qssa7cr4EeDGLuPaJ6VRGK6owP43wMFhgHtPXMe56ptKcVF7o5DqVf8mTMDz:
undefined: 11.9129 DOGE (323ops) (DRbfJfaT64YsHgND7MSvigDmBPCraeTSSv on 44'/3'/4'/0/163) #4 js:2:dogecoin:dgub8sBmteCcuFFev32JBmBE5kkWA9Fz4LHryxURKDHBm8kXT2s5X3cM4eGnk5YDgbRj2cGny85CWZLtFuz4n6SNEff68ZFXZRfeMcKYjM4ZABa:
undefined: 0.666008 DOGE (253ops) (D84noayt2SNxAh41ht6AeR9e1tbX2XW2Q7 on 44'/3'/5'/0/128) #5 js:2:dogecoin:dgub8sBmteCcuFFexZUo9SNmC2kEwPEUKxWo4VbEi5sZq9uAa3koQSeoUyxC5Z9XXqHq6hvYUYMvWL1iuVLnneqEfda8PdDDWPbvXggRGYDS2Yy:
undefined: 0 DOGE (0ops) (DNvgzFMvZG3k3o78cqn3y3YksWoSnC3uJ8 on 44'/3'/6'/0/0) #6 js:2:dogecoin:dgub8sBmteCcuFFf1Q45j57nYSbt99vo2P5iHSDdytuEPxtbcaRJrgTJCCJFx9AJhFHvyRNkQ8HxwQ61te2F8hhtChBWAL6RCDZEpbjvKGVRR3T:
undefined: 16.3772 KMD (457ops) (RT7yjo72rR1kYYGAWEsH6XBWSpSPZMP4cS on 44'/141'/2'/0/252) #2 js:2:komodo:v4PKUB9WZbMS4XNED8S4oAJzXQqPbfLCmNRNPW8QoETCA7opTJLFvrkm39QZAdLg8DygthREBvDRmrHDeVtEQ8C7iQDfXDSPTrzB2FAFkvgsQ9HA:
undefined: 16.7085 KMD (482ops) (RYB1PmcCko27A6KMvFykEkPRFoqjAuJ5dM on 44'/141'/0'/0/246) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:
undefined: 15.6846 KMD (472ops) (RSM7VU5PbMQuStjd3nonUjAwzyvqhFUBvt on 44'/141'/1'/0/234) #1 js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:
undefined: 16.4986 KMD (440ops) (RJz9oKuLMrL18ufexTmm6TrQbRRvuHd2ws on 44'/141'/3'/0/242) #3 js:2:komodo:v4PKUB9WZbMS4XNEDBJ9e6csdTWjkQsBngGrmyPrPrwARdjCHQmEYDrU4Kq7HGhiDP6xnwdVwUp3pTCDBqPFJzzGWKwhGKyZ3R9twuUru5U57rPp:
undefined: 0 KMD (0ops) (RXXzA1HUyBUt3vYKgRDwktBrUxGB8nT4bN on 44'/141'/4'/0/0) #4 js:2:komodo:v4PKUB9WZbMS4XNEDFpraB4oy9vXnEDhnEWtmApcz3bN67vrQpVc1DjN5AQDZdV5dt5iXcf1BFTzfmCuAVFoFH3TsW7S8FZfkKBeBvvdLZeretiq:
undefined [native segwit]: 0 LTC (620ops) (ltc1q5hgq7dfs6j24kvy6u2rfarhjdt2qwnu5murc7g on 84'/2'/0'/0/290) native_segwit#0 js:2:litecoin:Ltub2YLUoe8MGLizFvLnAHJhiz3rdWG8UXqi9A9smDbuwPD44WPa1rB1EwyQwzRiVFKGH4mS6b5DRE3c3S9jZ944uaGcRK2XPinZcbdmo3P2vmq:native_segwit
undefined [native segwit]: 0.0672821 LTC (574ops) (ltc1q6mnaeygeyeczjgut03k03h9j30t5lrx57vxrjz on 84'/2'/1'/0/277) 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.00519358 LTC (612ops) (ME3qpFgXkRjhYVPXyiGQEh6keGXCP5tF12 on 49'/2'/0'/0/301) segwit#0 js:2:litecoin:Ltub2YDfX8FoxTFohkcgknuZr2WLrCNpq6ufHxguxyjoDWGDZ1GBUVSn5wwoD2ifjY13iERFGvauvW55p6ASVCbqiABnreHFCsV5LKps76aWDV3:segwit
undefined [segwit]: 0.105507 LTC (581ops) (MCtvGhAQ1uVydGQdsFFUGxRJBahsKGwaaq on 49'/2'/1'/0/295) 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.0540814 LTC (620ops) (LezJhG59Ay3oVBsJouchoav1dyiq5oZx3E on 44'/2'/0'/0/309) #0 js:2:litecoin:Ltub2YwXt3Fm1MVHeGxpcxFhFTe1FkqDdVoeRp9FRnnqGrinFxJSDjXwVTnmjK56jhq83mxWmTKprWjLXqspQCYtxJmCnwCLJUPoZhjJEYMtcFd:
undefined [legacy]: 0.110486 LTC (552ops) (LeyoJ3U1Q4nEvuYYfFi8gKWg8HKPGZAR2R on 44'/2'/1'/0/303) #1 js:2:litecoin:Ltub2YwXt3Fm1MVHgsz1XL8MM6MicGgumPzfpD1pZcsk15P4LZHiF4wpFPGvTi58u9evgMd4dV9K7cMMA532mq1HbEknZZ5UayUuRbSsM5VzptL:
undefined [legacy]: 0 LTC (0ops) (LiDx2poS1M1DwYU2zHuvKEQAAFUdpRgP59 on 44'/2'/2'/0/0) #2 js:2:litecoin:Ltub2YwXt3Fm1MVHgy4nREA2MxDT5Em3QsQv2Yu6gfGSPudxTKgcovLsh1sV3rje75uZ5eAkyJLkbHxPBFU3Wbhd2Q6XF863omV2XfWhsC2ACJ4:
undefined: 26.532 PIVX (653ops) (DLKgomCQFzTnwopNfQDYSVDsyVYditLhG2 on 44'/77'/0'/0/313) #0 js:2:pivx:ToEA6mkkScBzPS3QGwz3pD9XiPf8YynSCGuC65sMGexuJ8oLkqEAZRAcR5VqKvRV5Phzid1ZG7myNKF6XtRBtVKT5JhgUpaKZtwAq3XzeH3Qnmz:
undefined: 20.0755 PIVX (602ops) (DA7ZwKFYAD8nzcLseJqoTT79j6bXftQwGM on 44'/77'/1'/0/290) #1 js:2:pivx:ToEA6mkkScBzPS3QK9QkPuwWHUEA284HMW86PxW1zkXJAAJa9zXWJjVwBvYEt5HTwDHyDpyfC2VRj3Sy9MBegtxX3kBM1dyiPx81KcwoA8DT75c:
undefined: 0.0189254 PIVX (611ops) (DSYw2BKf2VgM4pfBrpPazdG6DgbX9ZcnAa on 44'/77'/2'/0/318) #2 js:2:pivx:ToEA6mkkScBzPS3QNaWms316jJrjhxFoXsKpv21fDZnZUqeqnX1FpofXYA3ARA7qSEHn2wmdd7EPMM1qJ36CiFP3Ycu6p4EMHKYgV49aAFQYdwt:
undefined: 0 PIVX (645ops) (DCZdBkHMPn95uwWgJ17uJHhv3HvPhbAyfQ on 44'/77'/3'/0/332) #3 js:2:pivx:ToEA6mkkScBzPS3QRXKa6QiRvZKUYefypt8wZupR6GaqD77SPLwzgmraaKbGgcirVLLXkQ6XjZJcGhoLRL2xP5ZBVjD5TUz6ZY6WkgXBpJW5rNU:
undefined: 0 PIVX (0ops) (DGvVBqdtcbSTuXgf6JjAxG5a8MSRXk76Tw on 44'/77'/4'/0/0) #4 js:2:pivx:ToEA6mkkScBzPS3QS97WZjaF1BidcB1ywJUVPvH1UAbz9BzZ1U8Uzo3zVwrmNHH18cJiwpjFEUnvCu5hqTQs5df1A7f1vBttM65ReXpJhxvKtvh:
undefined [segwit]: 0 VTC (581ops) (3Bc3cp3HLsQjaadQEZJF4gV7vWG6aomJRq on 49'/28'/0'/0/269) segwit#0 js:2:vertcoin:xpub6BzrB2TZiXxTtjegub5eT5QAmDtrDVNDnwj8eJJgBqgbLwXxsRQgQQoP5eCaHNyvLxFXkB2doyxytbGkUvoQtepWayC3hWgoL7DbwshW4yS:segwit
undefined [segwit]: 11.9204 VTC (603ops) (3KFc1qyBysT2Kjx3PVLhhhZp9NGwdvTFGk on 49'/28'/1'/0/300) segwit#1 js:2:vertcoin:xpub6BzrB2TZiXxTxPQdQWrnTLvxXgdvSncCsqYsUPHn93hfzzmNtKh89FH4W9qxzH2GHVhcvowEtcNHLBJMvaRfTPhAMgghoEFrjX8XMVgrTGf:segwit
undefined [segwit]: 0 VTC (0ops) (37sUZu9kBZk9uH1SxV1asosooyiHhbC7rd on 49'/28'/2'/0/0) segwit#2 js:2:vertcoin:xpub6BzrB2TZiXxU1HxVHfXBofkeE1JNTetYETWhdsEuPc7giYWWWsFTx8oYHvGYRCHXrczxA7iqAFTQpCAfyLqnzvTZgz25S5bDCr3aEgNLbHV:segwit
undefined [legacy]: 8.51527 VTC (603ops) (VwP1nBfgz23KnkW6bhiqFqqbgV9M8za1bS on 44'/28'/0'/0/319) #0 js:2:vertcoin:xpub6D9ewWZRDVHmnJbjdoaFbC54UhW6iZ4k2n9tLiTPJsqp7x16bAdkGhK7yy7cnvegoJz5HwBGcoQpSv1Mp6oTDYDgHd2RPHennaNsQuBuaXR:
undefined [legacy]: 8.73336 VTC (565ops) (Vm8YMH29fPEffpsW4jrSjBGaTVw7WCuvR4 on 44'/28'/1'/0/285) #1 js:2:vertcoin:xpub6D9ewWZRDVHmoTUYA4SfZTKVP9QvkovJmZ5bPbj12dgZEUb6DtS76PP144mkfCfBDsXvEFsEN7hsrbdvBA34mg78owvpVXQAuQRKmggGvGF:
undefined [legacy]: 0 VTC (0ops) (VgM8spUbqP3r1qdnswXaSrqGeMVnERAuuV on 44'/28'/2'/0/0) #2 js:2:vertcoin:xpub6D9ewWZRDVHmtBmAgSQ2HSyfeZs9ebe5iYurVh2rBbpHRpQX52u3iZPqChjvoPYUmMD1jpGeNqVCkXEridcr92DTEFhngPjieTtiPjJGGEA:
undefined [segwit]: 29.6869 VIA (570ops) (EQZwzDskae7VMXmBweTzB5rZYgivhwfurJ on 49'/14'/0'/0/268) segwit#0 js:2:viacoin:xpub6BnHRZZc2q3Bq7c8LWrKVaek5cChKLozvgLvD4uS52XX9qvVv1AfXtGnQqs7z1fy58DCXc7333iznM3enL4y3gAjx9bbJAhEd3f9Bf8FMAL:segwit
undefined [segwit]: 3.66138 VIA (586ops) (EZmZE7nEMuVcnxYoXqKi8gyUVLHuHF2qbJ on 49'/14'/1'/0/289) segwit#1 js:2:viacoin:xpub6BnHRZZc2q3Bv5KKzULAJs7Wp4Aa1Ht1i1HfMpFPz39ErhhzaK25gSKwbGvMLvU7gREE2N1uPJ87x9UyfbPhu6UTNbtRTq5K5EvXgktynP7:segwit
undefined [segwit]: 0 VIA (0ops) (ELsKYe4RMf5PjAh6ebwSwPhX7kJikrPS1B on 49'/14'/2'/0/0) segwit#2 js:2:viacoin:xpub6BnHRZZc2q3BwqXyrx8ZAntahSP89Z6HxVaWASEYswBqqKzmBigsCndsB57zZcYDVMbmE2mWbgRMV8AYgxfZKQgfoasrKvg4ex1zz3xX29x:segwit
undefined [legacy]: 1.93144 VIA (537ops) (Vek4XGQx796pQL3PJmLX5VN3HNgdPjTK9Z on 44'/14'/0'/0/273) #0 js:2:viacoin:xpub6BqwJGyyRny96T4yirVKJ3iqL3dznXfrtohfLE5AgKButrt9PHen5v2yACKPuMZg53z5vmYkFh7NQeXotr714kgNUuuBD7HHpuZcfQpqtVB:
undefined [legacy]: 4.31225 VIA (566ops) (VuPDudN8kWvit7jEX5NbK68ESBfcsUDjUn on 44'/14'/1'/0/299) #1 js:2:viacoin:xpub6BqwJGyyRny99DmxkTjWUNWFd5foEt2aUddfdaEamdB8gLsfK225ttKKiM24gZvVmUWm1tC2zJheYZ7FfJkTgCvyAz8AxVRa8TPWbmsnWMb:
undefined [legacy]: 0 VIA (0ops) (Veeew6qhNE8XmE8pzfQygq223k1k5jxF63 on 44'/14'/2'/0/0) #2 js:2:viacoin:xpub6BqwJGyyRny9AaT939M5Mdnm5g2a3ZTj42bFNtYcmWz793oRxGodSi7sY42Uk62AtGMzdMuJqttJpKX1Yu6FxfggF1TU4whZhCnPbyZRKx5:
undefined: 0.00191538 ZEC (394ops) (t1SDpcaNZmbCH5TCCb5vNAh5bXs3isDtA5h on 44'/133'/0'/0/191) #0 js:2:zcash:xpub6CJCxQneNaGtEsc5RekCewAkzA4HmtexTwe7WEdEmduLVbfPti54Vme5gpsTrTDRB7qGUjn7LPhXitHvjrnMVDTt8LYvj7s34ZzEz6PcS8z:
undefined: 0.0002 ZEC (363ops) (t1PpjmFSysTrpUQra1fNCJJMYFGy6yrCxfu on 44'/133'/1'/0/179) #1 js:2:zcash:xpub6CJCxQneNaGtGzvpwjmx2kuAgbAwTBFFCC9TdvziUaYsPQYQ22mwaJbxvyBDLeW4gAnUBvKFeb5RznU3uxtVZp9AJQuU1Q5LsTMypXhN3dy:
undefined: 0.00156519 ZEC (359ops) (t1Z2giNqRBAcyij9iLRPEPBjaD8emFA5LCc on 44'/133'/2'/0/176) #2 js:2:zcash:xpub6CJCxQneNaGtLNBmM9y9Fm23XfXVewWuDYb5mqH1Fybr2579KAGiPfR2gsjjakYEGwFCL4Hau3C9ns24sPFM1MBrSPRKQLLVdQpiSQkSARY:
undefined: 0 ZEC (386ops) (t1YNMwj3ShjnCweX7dqho2w9rAT4PZABodm on 44'/133'/3'/0/203) #3 js:2:zcash:xpub6CJCxQneNaGtQ86kboo1yi9EsCrvQXMGKy2W6MWtMfSLxhpJQHgeLG4MLs1B6gHmYoWRC5q4CCUR4XzoBjPYAxFTHfdSfdhCWRspU2hJv1A:
undefined: 0 ZEC (0ops) (t1NCYEq5jS9TMQMVA4NeMVShuY7JFmFf89y on 44'/133'/4'/0/0) #4 js:2:zcash:xpub6CJCxQneNaGtQcwqQ4ZBYaBpHPzrTRbyU5S4ziPHtkL5iNHxRv9P7J3oJjerQuPNm3JFpz6Ktcui5Eqv5YW9PiCwYonU5E12pg1hwUAkGxh:
undefined: 0.257836 ZEN (489ops) (znaRajWGmtp5y7bLJYYJB7Fe3wJmimWonjB on 44'/121'/0'/0/230) #0 js:2:zencash:xpub6C68jAb8xasfmbmg37N3W5TsYWdTb6xLCtjwz5oSVAdi6Jxzx6FeBQcQazySrCXnsGZKaT9MXB9i4Lny4AoFAVZtSy6kVExyheF7X5Msvu3:
undefined: 0.156707 ZEN (473ops) (znYb8NRG8EDYEwqaaZT6u4zq5oMNbnYg8dy on 44'/121'/1'/0/226) #1 js:2:zencash:xpub6C68jAb8xasfrBmUVvZbdXydhq15bdfePn1qhjb32azt3GkzoqBCQuRaZKPYp9T9uhr7TYCANdXanzeXfXp4qMjw7ijiPPNbBKmGRZRFeoa:
undefined: 0.00645906 ZEN (479ops) (zncz1ptxS1dsniaFWmtvRi15RnzLwVjcqPc on 44'/121'/2'/0/250) #2 js:2:zencash:xpub6C68jAb8xasfsZCbDtbqPTydFZEHjfzFP75ZQyizidPdLPHNbf41HqQq8RiHMJNuXx71D15Uv9yVpxHkxicSAzKCPVqi1gCKkJTdCN6MK7Q:
undefined: 0 ZEN (481ops) (znTvdQV4WkdcjGyc72vQHYWBAvNW1uV5sE9 on 44'/121'/3'/0/253) #3 js:2:zencash:xpub6C68jAb8xasfwaE1WeCTh2JhK4KMh64oUaNn2MJCpVdjBmV7cdLhW8xqAfrb8eerM3wtiwMg9sMZkjA62QMH1rMDNbr97uLKNZohEX7c1cq:
undefined: 0 ZEN (0ops) (znm8ELZShHo5gm7aQjcd3qbxT7UF8Mnzyr2 on 44'/121'/4'/0/0) #4 js:2:zencash:xpub6C68jAb8xasfwknWxgLgizrHgqJko7RdnamzFS3DzoKUaA5721xs1HE23NHHqq6LcvmKf43ncaSsz3cEZZpmCrgfK1GhrmDNHkvKfyqpZHF:
undefined: 0.0476209 ETC (159ops) (0x7584df0780C5eB83b26aE55abBc265014f8bf897 on 44'/61'/0'/0/0) #0 js:2:ethereum_classic:0x7584df0780C5eB83b26aE55abBc265014f8bf897:
undefined: 0.0475957 ETC (142ops) (0x62ab4485f7EC0a291540dA31b82BE881166cD786 on 44'/61'/1'/0/0) #1 js:2:ethereum_classic:0x62ab4485f7EC0a291540dA31b82BE881166cD786:
undefined: 0.0476114 ETC (113ops) (0x0b248ABea3Ee9e94C03bc85c37516D16C909875c on 44'/61'/2'/0/0) #2 js:2:ethereum_classic:0x0b248ABea3Ee9e94C03bc85c37516D16C909875c:
undefined: 0.0420533 ETC (140ops) (0x01530f90685821747Eab008Fc217a2411AA6433C on 44'/61'/3'/0/0) #3 js:2:ethereum_classic:0x01530f90685821747Eab008Fc217a2411AA6433C:
undefined: 0.0475946 ETC (131ops) (0xD5fa1a3014A6a24f2C17E532713eb51500AD2bE8 on 44'/61'/4'/0/0) #4 js:2:ethereum_classic:0xD5fa1a3014A6a24f2C17E532713eb51500AD2bE8:
undefined: 0 ETC (0ops) (0x234D2443790764a622430213B6eCcA33272ca575 on 44'/61'/5'/0/0) #5 js:2:ethereum_classic:0x234D2443790764a622430213B6eCcA33272ca575:
undefined: 0 MATIC (343ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:polygon:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00338563 MATIC (310ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:polygon:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.857269 MATIC (302ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:polygon:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0 MATIC (334ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:polygon:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 MATIC (288ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:polygon:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 MATIC (249ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:polygon:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.292338 MATIC (185ops) (0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E on 44'/60'/6'/0/0) #6 js:2:polygon:0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E:
undefined: 0.853572 MATIC (176ops) (0x48ec5fC762B9300e3B5e04E8ca634165240A1B15 on 44'/60'/7'/0/0) #7 js:2:polygon:0x48ec5fC762B9300e3B5e04E8ca634165240A1B15:
undefined: 16.8981 MATIC (176ops) (0x6434189D6179FB9DE41b392ED67a85C9F63216F6 on 44'/60'/8'/0/0) #8 js:2:polygon:0x6434189D6179FB9DE41b392ED67a85C9F63216F6:
undefined: 0 MATIC (0ops) (0x401C9CcB29d92ee707C6271ea5126aA6c257a37E on 44'/60'/9'/0/0) #9 js:2:polygon:0x401C9CcB29d92ee707C6271ea5126aA6c257a37E:
undefined: 0.00029742 𝚝ETH (134ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00242902 𝚝ETH (168ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00333975 𝚝ETH (157ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:ethereum_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00129828 𝚝ETH (137ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00132953 𝚝ETH (121ops) (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.0114142 𝚝ETH (149ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_holesky:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0212618 𝚝ETH (156ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_holesky:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0212199 𝚝ETH (160ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:ethereum_holesky:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00000778 𝚝ETH (133ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_holesky:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.180875 𝚝ETH (87ops) (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.00014328 ETH (53ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00223065 ETH (56ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00152671 ETH (42ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00158232 ETH (43ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.0001675 ETH (34ops) (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.11242 𝚝ETH (97ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00017726 𝚝ETH (107ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0469061 𝚝ETH (116ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0469796 𝚝ETH (91ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.784818 𝚝ETH (54ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:arbitrum_sepolia:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:arbitrum_sepolia:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.793924 FLR (486ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:flare:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.804325 FLR (543ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:flare:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.800893 FLR (492ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:flare:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.796164 FLR (535ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:flare:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.804751 FLR (102ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:flare:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 FLR (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:flare:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 68.8086 SGB (589ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:songbird:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 34.4058 SGB (569ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:songbird:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.000525 SGB (597ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:songbird:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 509.558 SGB (558ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:songbird:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 324.504 SGB (145ops) (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: 17.3553 GLMR (553ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonbeam:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 6.00172 GLMR (551ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonbeam:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.002625 GLMR (490ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonbeam:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 7.79352 GLMR (532ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonbeam:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 28.5839 GLMR (139ops) (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: 37,611.8 BTT (483ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:bittorrent:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 BTT (510ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:bittorrent:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 365,812 BTT (503ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:bittorrent:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 354,068 BTT (431ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:bittorrent:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 733,999 BTT (153ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:bittorrent:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 BTT (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:bittorrent:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00097436 ETH (32ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:optimism:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00095956 ETH (23ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:optimism:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00000939 ETH (34ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:optimism:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00092379 ETH (32ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:optimism:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 ETH (0ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:optimism:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:optimism_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 3.10116 EWT (384ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:energy_web:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 1.59436 EWT (430ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:energy_web:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0 EWT (435ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:energy_web:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0 EWT (435ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:energy_web:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 2.83308 EWT (154ops) (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: 42.3523 ASTR (494ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:astar:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 82.532 ASTR (496ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:astar:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 203.496 ASTR (479ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:astar:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.012275 ASTR (414ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:astar:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.0122928 ASTR (123ops) (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.0318044 METIS (449ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:metis:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0245598 METIS (415ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:metis:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0103706 METIS (464ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:metis:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0877527 METIS (449ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:metis:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 METIS (155ops) (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.215439 MOVR (413ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonriver:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.646227 MOVR (458ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonriver:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00002625 MOVR (473ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonriver:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00002625 MOVR (425ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonriver:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 1.37587 MOVR (139ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:moonriver:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 MOVR (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:moonriver:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0 VLX (100ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:velas_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 798.014 VLX (103ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:velas_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0 VLX (100ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:velas_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 114.002 VLX (102ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:velas_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 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: 8.94223 SYS (479ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:syscoin:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 2.98077 SYS (473ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:syscoin:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 14.536 SYS (445ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:syscoin:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 14.5361 SYS (415ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:syscoin:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 16.0819 SYS (140ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:syscoin:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 SYS (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:syscoin:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00079068 ETH (69ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:base:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00080929 ETH (74ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:base:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00061445 ETH (52ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:base:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00047849 ETH (54ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:base:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 ETH (0ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:base:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0.0393233 𝚝ETH (97ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:base_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.110762 𝚝ETH (102ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:base_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0678365 𝚝ETH (101ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:base_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0678364 𝚝ETH (87ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:base_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.704328 𝚝ETH (70ops) (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.34182 KLAY (46ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:klaytn:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.86472 KLAY (42ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:klaytn:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 5.62492 KLAY (43ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:klaytn:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00105 KLAY (36ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:klaytn:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00105 KLAY (38ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:klaytn:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 KLAY (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:klaytn:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 2.02315 NEON (205ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:neon_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 5.63094 NEON (197ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:neon_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 2.94814 NEON (189ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:neon_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00689515 NEON (199ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:neon_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 5.63275 NEON (180ops) (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.00001425 LYX (151ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:lukso:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0204618 LYX (205ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:lukso:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0252461 LYX (185ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:lukso:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0253074 LYX (183ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:lukso:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.420243 LYX (137ops) (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.001343 ETH (105ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:linea:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 ETH (113ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:linea:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00134667 ETH (137ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:linea:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00155707 ETH (110ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:linea:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00263544 ETH (104ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:linea:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:linea:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:linea_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:scroll:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:scroll_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.444537 NEAR (66ops) (0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf on 44'/397'/0'/0'/0') nearbip44h#0 js:2:near:0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf:nearbip44h
undefined: 0.0519613 NEAR (20ops) (85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798 on 44'/397'/0'/0'/1') nearbip44h#1 js:2:near:85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798:nearbip44h
undefined: 0.0520227 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.0520865 NEAR (22ops) (aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93 on 44'/397'/0'/0'/4') nearbip44h#4 js:2:near:aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93:nearbip44h
undefined: 0.052496 NEAR (32ops) (07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce on 44'/397'/0'/0'/5') nearbip44h#5 js:2:near:07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce:nearbip44h
undefined: 0.051988 NEAR (18ops) (bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7 on 44'/397'/0'/0'/6') nearbip44h#6 js:2:near:bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7:nearbip44h
undefined: 0.445088 NEAR (9ops) (e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2 on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2:nearbip44h
undefined: 0.0521178 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: 17.3447 XRP (202ops) (r9etPtq3oboweMPju5gdYufmvwhH2euz8z on 44'/144'/0'/0/0) #0 js:2:ripple:r9etPtq3oboweMPju5gdYufmvwhH2euz8z:
undefined: 10.7751 XRP (200ops) (rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH on 44'/144'/1'/0/0) #1 js:2:ripple:rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH:
undefined: 15.8852 XRP (204ops) (rMoFGec38toFg9ncbi9YbrYYmrP3G5exqn on 44'/144'/2'/0/0) #2 js:2:ripple:rMoFGec38toFg9ncbi9YbrYYmrP3G5exqn:
undefined: 0 XRP (0ops) (rrnxW3THwB1ubsE9V78Lek6V1XYnNrodxC on 44'/144'/3'/0/0) #3 js:2:ripple:rrnxW3THwB1ubsE9V78Lek6V1XYnNrodxC:
Performance ⏲ 25min 30s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 10.9s 29min 59s 23.8s 2min 17s 15min 32s 69s 47min 53s 32min 37s
Casper (7) 0.33ms 32.3s 1.76ms 25ms N/A N/A N/A N/A
Celo (11) 976ms 50.4s 17ms 5.9s 15s 18.5s 51.9s N/A
osmosis (17) 289ms 26.4s 25ms 3.7s 41.4s 509ms 73.5s 31.1s
desmos (17) 251ms 27.9s 12ms 2385ms 31.1s 670ms 1.55ms N/A
dydx (17) 1025ms 43.8s 7ms N/A N/A N/A N/A N/A
umee (17) 268ms 25.6s 18ms 2010ms 25.2s 267ms 1.13ms N/A
persistence (17) 1003ms 50.1s 15ms 7.7s 42.5s 1229ms 7ms N/A
quicksilver (17) 358ms 27s 55ms 1951ms 38s 309ms 2.25ms N/A
onomy (17) 1081ms 43.1s 41ms 6.8s 38.4s 1012ms 1.72ms N/A
sei_network (15) 276ms 23.2s 9ms N/A N/A N/A N/A N/A
stargaze (17) 266ms 17.3s 10ms 2049ms 30.7s 331ms 1.14ms N/A
coreum (17) 453ms 27.3s 15ms 1584ms 29.5s 577ms 1.73ms N/A
injective (0) 249ms N/A N/A N/A N/A N/A N/A N/A
Crypto org (6) 0.62ms 23.7s 1.46ms 6ms N/A N/A N/A N/A
Elrond (7) 258ms 57.3s 2683ms 29ms 26.6s 791ms 38.1s 35.5s
Hedera (4) 0.39ms 16.6s 10ms 908ms 21.3s 1316ms 42.1s 41.7s
InternetComputer (7) 0.31ms 8.8s 10ms 3.3s 10.5s 1237ms 61.2s 21.3s
Stacks (3) 0.37ms 20.3s 4.7s 1792ms 3.9s 302ms N/A N/A
Stellar (5) 0.67ms 1min 44s 2291ms 4.5s 30.1s 15.4s 32.4s N/A
VeChain VTHO (3) 0.67ms 11s 0.79ms 1857ms N/A N/A N/A N/A
VeChain VET (3) 0.15ms 9.6s 4.43ms N/A N/A N/A N/A N/A
Algorand (5) 0.85ms 57.7s 245ms 1890ms 58s 356ms 30.7s 30.8s
Bitcoin Testnet (9) 0.51ms 48.4s 6ms N/A N/A N/A N/A N/A
Bitcoin Cash (6) 0.50ms 24.6s 1.71ms 908ms 29.4s 375ms 46.4s 60.8s
Bitcoin Gold (4) 0.63ms 22.9s 1.48ms 935ms 28.9s 461ms 45.5s 51.1s
Dash (6) 0.28ms 22.9s 15ms 1343ms 32.9s 521ms 55.3s 60.4s
Digibyte (6) 0.22ms 28.8s 9ms 695ms 34.4s 484ms 46.9s 55.9s
DogeCoin (6) 0.24ms 19.1s 11ms 807ms 26.1s 387ms 46.9s 43.7s
Komodo (4) 0.17ms 17.9s 8.6s 1288ms 43.2s N/A N/A N/A
Litecoin (6) 0.40ms 20.7s 36ms 714ms 27.6s 450ms 48.8s 45.4s
Peercoin (0) 0.20ms N/A N/A N/A N/A N/A N/A N/A
PivX (4) 0.22ms 27.5s 1.13ms 801ms 17.2s 285ms 37.9s 37.5s
Vertcoin (4) 0.21ms 40.4s 4.71ms 717ms 18.7s 328ms 56.3s 36.9s
Viacoin (4) 0.18ms 37.8s 2069ms 1003ms 22.1s 458ms 50.9s 5min 30s
ZCash (4) 0.21ms 15.7s 0.97ms N/A N/A N/A N/A N/A
Horizen (4) 0.36ms 13.2s 2.17ms 746ms 17s 1116ms 44.3s 55.4s
Ethereum Classic (5) 159ms 19.5s 8ms N/A N/A N/A N/A N/A
Polygon (9) 219ms 24.6s 13ms 11.2s 10.4s 285ms 31.6s 33.3s
Ethereum Sepolia (5) 45ms 6.2s 18ms 3.7s 6.9s 260ms 40.6s 20.6s
Ethereum Holesky (5) 28ms 7s 11ms 3.5s 11.7s 292ms 81.4s 30.8s
Arbitrum (5) 78ms 75.9s 25ms 4.4s 10.5s 1739ms 58s 64s
Arbitrum Sepolia (5) 35ms 6.4s 14ms 3.9s 10.6s 1667ms 32s 32s
Flare (5) 31ms 6.3s 7ms N/A N/A N/A N/A N/A
Songbird (5) 36ms 6.1s 38ms 3.1s 10s 516ms 32.2s 31.5s
Moonbeam (5) 47ms 94.9s 13ms 2766ms 9.4s 392ms 2min 12s 63.1s
RSK (4) 73ms 8.9s 2.01ms N/A N/A N/A N/A N/A
Bittorent Chain (5) 43ms 8.8s 12ms 1537ms 9.4s 454ms 32.1s 32.2s
OP Mainnet (4) 80ms 78.4s 1.37ms N/A N/A N/A N/A N/A
OP Sepolia (0) 60ms 2038ms N/A N/A N/A N/A N/A N/A
Energy Web (5) 44ms 6.2s 21ms 3.9s 10s 2002ms 32.8s 32.9s
Astar (5) 67ms 7.9s 22ms 3.4s 9.9s 941ms 3min 13s 33s
Metis (5) 58ms 8.2s 1.90ms 658ms 8.7s 1123ms 93.7s 33.7s
Moonriver (5) 41ms 94.6s 19ms 1447ms 9.4s 333ms 2min 12s 62.9s
Velas EVM (5) 91ms 5.6s 14ms 1729ms 8.2s 3.5s 61.8s 31.9s
Syscoin (5) 44ms 4.3s 18ms 1510ms 9.6s 323ms 13min 33s 31.5s
Polygon zkEVM Testnet (0) 47ms N/A N/A N/A N/A N/A N/A N/A
Base (4) 88ms 77.1s 7ms N/A N/A N/A N/A N/A
Base Sepolia (5) 38ms 5.9s 16ms 2975ms 10s 1064ms 31.7s 31.7s
Klaytn (5) 64ms 11.3s 13ms 4.8s 6.5s 1292ms 22.9s 22.7s
Neon EVM (5) 50ms 19.3s 1922ms 11.3s 13s 3.7s 2min 17s 35.5s
Lukso (5) 32ms 4s 23ms 533ms 9.4s 168ms 31.1s 30.9s
Linea (5) 46ms 89.3s 3.77ms 3.6s 9.6s 1129ms 52.4s 62.7s
Linea Sepolia (0) 56ms 12.5s N/A N/A N/A N/A N/A N/A
Blast (0) 50ms 11.6s N/A N/A N/A N/A N/A N/A
Blast Sepolia (0) 39ms 1963ms N/A N/A N/A N/A N/A N/A
Scroll (0) 50ms 1626ms N/A N/A N/A N/A N/A N/A
Scroll Sepolia (0) 46ms 2302ms N/A N/A N/A N/A N/A N/A
NEAR (9) 1377ms 31s 16ms 1346ms N/A N/A N/A N/A
Solana (0) 743ms N/A N/A N/A N/A N/A N/A N/A
Tezos (2) 178ms 7.4s 1.27ms 1405ms N/A N/A N/A N/A
XRP (3) 0.40ms 8s 721ms 5.4s 9.2s 178ms 22.3s 5min 2s

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

@github-actions
Copy link

Choose a reason for hiding this comment

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

[Bot] Weekly non-reg on develop with 'Oxygen' ✅ 27 txs ❌ 9 txs 💰 2 miss funds ($457.81) ⏲ 32min 32s

✅ 8 specs are successful: axelar, cosmos, Tron, Qtum, Decred, cardano, Binance Smart Chain, Fantom
❌ 3 specs have problems: Filecoin, Avalanche C-Chain, Polygon zkEVM
💰 2 specs may miss funds: Cronos, Boba

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

3 critical spec errors

Spec secret_network failed!

Error: timeout of 60000ms exceeded

Spec Telos failed!

TypeError: Cannot read properties of undefined (reading 'map')

Spec Polkadot failed!

TransportStatusError: Ledger device: CLA_NOT_SUPPORTED (0x6e00)
❌ 9 mutation errors
necessary accounts resynced in 0.13ms
▬ Filecoin 0.24.2 on nanoSP 1.1.1
→ FROM undefined [bip44]: 0.616356 FIL (25ops) (f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq on 44'/461'/1'/0/0) filecoinBIP44#1 js:2:filecoin:f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq:filecoinBIP44 (! sum of ops 0.616356356693009588 FIL)
max spendable ~0.616356
★ using mutation 'Send 50%~'
→ TO undefined [bip44]: 0 FIL (18ops) (f1boo3wjm5yjpvkbi4s3k2rykpvmf235ivkbj3kbq on 44'/461'/5'/0/0) filecoinBIP44#5 js:2:filecoin:f1boo3wjm5yjpvkbi4s3k2rykpvmf235ivkbj3kbq:filecoinBIP44
✔️ transaction 
SEND  0.321873212572549139 FIL
TO f1boo3wjm5yjpvkbi4s3k2rykpvmf235ivkbj3kbq
STATUS (404ms)
  amount: 0.321873212572549139 FIL
  estimated fees: 0.000000304562227116 FIL
  total spent: 0.321873517134776255 FIL
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Value'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Value": "0.321873212572549139",
+   "Value": "FIL 0.321873212572549139",
  }
(totally spent 1693ms – ends at 2024-06-13T06:06:00.810Z)
necessary accounts resynced in 0.53ms
▬ Filecoin 0.24.2 on nanoSP 1.1.1
→ FROM undefined [bip44]: 0.618741 FIL (15ops) (f1fuauxwtdo23jotlxu3cueskwbzoecdcz4ltkozq on 44'/461'/3'/0/0) filecoinBIP44#3 js:2:filecoin:f1fuauxwtdo23jotlxu3cueskwbzoecdcz4ltkozq:filecoinBIP44 (! sum of ops 0.618741388161637256 FIL)
max spendable ~0.618741
★ using mutation 'Transfer Max'
→ TO undefined [bip44]: 0.616356 FIL (25ops) (f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq on 44'/461'/1'/0/0) filecoinBIP44#1 js:2:filecoin:f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq:filecoinBIP44
✔️ transaction 
SEND MAX
TO f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq
STATUS (459ms)
  amount: 0.618741088531321772 FIL
  estimated fees: 0.00000029963031546 FIL
  total spent: 0.618741388161637232 FIL
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Value'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Value": "0.618741088531321772",
+   "Value": "FIL 0.618741088531321772",
  }
(totally spent 2679ms – ends at 2024-06-13T06:06:00.816Z)
necessary accounts resynced in 0.17ms
▬ Filecoin 0.24.2 on nanoSP 1.1.1
→ FROM undefined [bip44]: 0.180483 FIL (18ops) (f14ggrsuc7i5q2yj5tcqlcuyy3fneiapyywnwcw2q on 44'/461'/4'/0/0) filecoinBIP44#4 js:2:filecoin:f14ggrsuc7i5q2yj5tcqlcuyy3fneiapyywnwcw2q:filecoinBIP44 (! sum of ops 0.180483650098951852 FIL)
max spendable ~0.180483
★ using mutation 'Send small to eth address'
✔️ transaction 
SEND  0.0000000000000001 FIL
TO 0x689c9b3232210aa9b84ef444d0ef35d11102ad1f
STATUS (621ms)
  amount: 0.0000000000000001 FIL
  estimated fees: 0.00000022711406676 FIL
  total spent: 0.00000022711406686 FIL
errors: 
warnings: 
⚠️ Error: 27012 - Data is invalid : ExpertModeRequired
(totally spent 725ms – ends at 2024-06-13T06:06:00.819Z)
necessary accounts resynced in 0.15ms
▬ Avalanche 0.8.0 on nanoS 2.1.0
→ FROM undefined: 0.197694 AVAX (47ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:avalanche_c_chain:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
max spendable ~0.197694
★ using mutation 'move 50%'
→ TO undefined: 1.04727 AVAX (7ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:avalanche_c_chain:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
✔️ transaction 
SEND  0.098847130306627838 AVAX
TO 0x8C63f5be03552E332A8a1e122c58d7b306d81679
STATUS (969ms)
  amount: 0.098847130306627838 AVAX
  estimated fees: 0.000588 AVAX
  total spent: 0.099435130306627838 AVAX
errors: 
warnings: 
⚠️ TransportStatusError: Ledger device: UNKNOWN_ERROR (0x6984)
(totally spent 1147ms – ends at 2024-06-13T06:06:00.833Z)
necessary accounts resynced in 0.15ms
▬ Avalanche 0.8.0 on nanoS 2.1.0
→ FROM undefined: 0.197119 AVAX (46ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:avalanche_c_chain:0x2141e8D44753FC7720C471233740c133D79459fC:
max spendable ~0.197119
★ using mutation 'move 50%'
→ TO undefined: 1.04727 AVAX (7ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:avalanche_c_chain:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
✔️ transaction 
SEND  0.098559662178169838 AVAX
TO 0x8C63f5be03552E332A8a1e122c58d7b306d81679
STATUS (844ms)
  amount: 0.098559662178169838 AVAX
  estimated fees: 0.000588 AVAX
  total spent: 0.099147662178169838 AVAX
errors: 
warnings: 
⚠️ TransportStatusError: Ledger device: UNKNOWN_ERROR (0x6984)
(totally spent 912ms – ends at 2024-06-13T06:06:00.835Z)
necessary accounts resynced in 0.16ms
▬ Avalanche 0.8.0 on nanoS 2.1.0
→ FROM undefined: 0.401714 AVAX (32ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:avalanche_c_chain:0x714908e42B5A11eF11578F243052c9E60f1485e6:
max spendable ~0.401714
★ using mutation 'send max'
→ TO undefined: 0.197694 AVAX (47ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:avalanche_c_chain:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND MAX
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (992ms)
  amount: 0.401126319308853994 AVAX
  estimated fees: 0.000588 AVAX
  total spent: 0.401714319308853994 AVAX
errors: 
warnings: 
⚠️ TransportStatusError: Ledger device: UNKNOWN_ERROR (0x6984)
(totally spent 1103ms – ends at 2024-06-13T06:06:00.859Z)
necessary accounts resynced in 0.14ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00357378 ETH (63ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2: (! sum of ops 0.003516469579691438 ETH)
max spendable ~0.00357378
★ using mutation 'move 50%'
→ TO undefined: 0.0142784 ETH (60ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
✔️ transaction 
SEND  0.001786891627744219 ETH
TO 0x2141e8D44753FC7720C471233740c133D79459fC
STATUS (304ms)
  amount: 0.001786891627744219 ETH
  estimated fees: 0.000003696 ETH
  total spent: 0.001790587627744219 ETH
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (147ms) optimistic operation: 
  -0.001790587627744219 ETH OUT        0xcdf9524e5d9350538cc48dfb48b8c9430050eb8cd54e2ccbfb2e2ac87a9e573c 2024-06-13T05:35
(in 10min 1s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "1783195627744219"
Received: "1784422815244219"
(totally spent 10min 4s – ends at 2024-06-13T06:06:00.868Z)
necessary accounts resynced in 5.9s
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00119318 ETH (60ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0: (! sum of ops 0.000965458910519312 ETH)
max spendable ~0.00119318
★ using mutation 'move 50%'
→ TO undefined: 0.00000101 ETH (45ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
✔️ transaction 
SEND  0.000596592193556656 ETH
TO 0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd
STATUS (272ms)
  amount: 0.000596592193556656 ETH
  estimated fees: 0.000003507 ETH
  total spent: 0.000600099193556656 ETH
errors: 
warnings: 
✔️ has been signed! (3.6s) 
✔️ broadcasted! (134ms) optimistic operation: 
  -0.000600099193556656 ETH OUT        0x3959479081651d5c047c6d1c739d83545406d6ae6972c9f5ea657a998bbe3746 2024-06-13T05:45
(in 10min 1s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "593085193556656"
Received: "594249627155656"
(totally spent 10min 5s – ends at 2024-06-13T06:06:00.901Z)
necessary accounts resynced in 5.9s
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00178442 ETH (64ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2: (! sum of ops 0.001725881951947219 ETH)
max spendable ~0.00178442
★ using mutation 'send max'
→ TO undefined: 0.00059424 ETH (61ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
✔️ transaction 
SEND MAX
TO 0xF4816c59cd8e24eEd9c5570D026C2396336119A0
STATUS (409ms)
  amount: 0.001781209815244219 ETH
  estimated fees: 0.000003213 ETH
  total spent: 0.001784422815244219 ETH
errors: 
warnings: 
✔️ has been signed! (3.2s) 
✔️ broadcasted! (149ms) optimistic operation: 
  -0.001784422815244219 ETH OUT        0x05f75533eb3fa34445bb270e5aca501a4cfbc10f97563ea0d7a1bf57a35819a4 2024-06-13T05:55
(in 10min 1s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "0"
Received: "1054265625000"
(totally spent 10min 5s – ends at 2024-06-13T06:06:00.910Z)
⚠️ 11 spec hints
  • Spec cosmos:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
  • Spec Filecoin:
    • mutations should define a test(): Send small to f4 address, Send small to eth address, Send 50%~, Transfer Max
    • mutations should define a testDestination(): Transfer Max
    • mutations should NOT define a testDestination() because there are no 'destination' sibling account found: Send small to eth address
  • Spec Qtum:
    • mutation move ~50%: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Decred:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
    • mutation optimize-size: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Cronos:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Boba:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
Details of the 36 mutations

Spec axelar (15)

Spec axelar found 15 Axelar accounts (preload: 339ms). Will use Cosmos 2.35.22 on nanoS 2.1.0
undefined: 1.14567 AXL (3ops) (axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g on 44'/118'/0'/0/0) #0 js:2:axelar:axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g:
undefined: 1.43287 AXL (8ops) (axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64 on 44'/118'/1'/0/0) #1 js:2:axelar:axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64:
undefined: 0.567504 AXL (5ops) (axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha:
undefined: 0.009551 AXL (9ops) (axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5:
undefined: 0.01014 AXL (3ops) (axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f on 44'/118'/4'/0/0) #4 js:2:axelar:axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f:
undefined: 5.27732 AXL (14ops) (axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx on 44'/118'/5'/0/0) #5 js:2:axelar:axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx:
undefined: 0 AXL (3ops) (axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa on 44'/118'/6'/0/0) #6 js:2:axelar:axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa:
undefined: 0.049973 AXL (5ops) (axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8 on 44'/118'/7'/0/0) #7 js:2:axelar:axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8:
undefined: 1.6083 AXL (6ops) (axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z on 44'/118'/8'/0/0) #8 js:2:axelar:axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z:
undefined: 0 AXL (11ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84:
undefined: 0.012971 AXL (2ops) (axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37 on 44'/118'/10'/0/0) #10 js:2:axelar:axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37:
undefined: 0.701378 AXL (6ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu:
undefined: 0.650106 AXL (4ops) (axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll on 44'/118'/12'/0/0) #12 js:2:axelar:axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll:
undefined: 5.87864 AXL (3ops) (axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35 on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35:
undefined: 0 AXL (0ops) (axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk on 44'/118'/14'/0/0) #14 js:2:axelar:axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk:
necessary accounts resynced in 0.12ms
▬ Cosmos 2.35.22 on nanoS 2.1.0
→ FROM undefined: 1.14567 AXL (3ops) (axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g on 44'/118'/0'/0/0) #0 js:2:axelar:axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g: 1.145674 AXL spendable. 

max spendable ~1.13867
★ using mutation 'send max'
→ TO undefined: 0 AXL (3ops) (axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa on 44'/118'/6'/0/0) #6 js:2:axelar:axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa:
✔️ transaction 
SEND MAX
TO axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa

with fees=0.00618
STATUS (567ms)
  amount: 1.139494 AXL
  estimated fees: 0.00618 AXL
  total spent: 1.145674 AXL
errors: 
warnings: 
✔️ has been signed! (4.8s) 
✔️ broadcasted! (106ms) optimistic operation: 
  -1.145674 AXL      OUT        D09008946A4958FF1747EF746851F362F20DD5D0CFFE9FAD23666D591882C9BA 2024-06-13T05:34
✔️ operation confirmed (0.72ms): 
  -1.145674 AXL      OUT        D09008946A4958FF1747EF746851F362F20DD5D0CFFE9FAD23666D591882C9BA 2024-06-13T05:34
✔️ undefined: 1.14567 AXL (3ops) (axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g on 44'/118'/0'/0/0) #0 js:2:axelar:axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g: 1.145674 AXL spendable. 
✔️ destination operation 
  ? -1145674         OUT        D09008946A4958FF1747EF746851F362F20DD5D0CFFE9FAD23666D591882C9BA 2024-06-13T05:34

necessary accounts resynced in 0.17ms
▬ Cosmos 2.35.22 on nanoS 2.1.0
→ FROM undefined: 1.43287 AXL (8ops) (axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64 on 44'/118'/1'/0/0) #1 js:2:axelar:axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64: (! sum of ops -0.762127 AXL) 1.431157 AXL spendable. 0.001715 AXL delegated. 
DELEGATIONS
  to axelarvaloper1p7mwnz6s834ym4w6c8rdsgqysyklygdm8dfylq 0.00047 AXL 
  to axelarvaloper1sn4v8rp9j587uvrex4z9jw9frplv05vnxk92zs 0.000297 AXL  (claimable 0.000297)
  to axelarvaloper148skr4d5vy6c9728zkf7cff9e5eykgwka3rvm7 0.000948 AXL  (claimable 0.000948)

max spendable ~1.42415
★ using mutation 'send some'
→ TO undefined: 0.012971 AXL (2ops) (axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37 on 44'/118'/10'/0/0) #10 js:2:axelar:axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37:
✔️ transaction 
SEND  0.516134 AXL
TO axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37

with fees=0.006199
  memo=LedgerLiveBot
STATUS (433ms)
  amount: 0.516134 AXL
  estimated fees: 0.006199 AXL
  total spent: 0.522333 AXL
errors: 
warnings: 
✔️ has been signed! (4.7s) 
✔️ broadcasted! (293ms) optimistic operation: 
  -0.522333 AXL      OUT        555FB4BE8B7D06C9298A28D7CF59969AC395D30ECF7950607ACB9B270DF8F57F 2024-06-13T05:34
✔️ operation confirmed (0.30ms): 
  -0.522333 AXL      OUT        555FB4BE8B7D06C9298A28D7CF59969AC395D30ECF7950607ACB9B270DF8F57F 2024-06-13T05:34
✔️ undefined: 1.43287 AXL (8ops) (axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64 on 44'/118'/1'/0/0) #1 js:2:axelar:axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64: (! sum of ops -0.762127 AXL) 1.431157 AXL spendable. 0.001715 AXL delegated. 
DELEGATIONS
  to axelarvaloper1p7mwnz6s834ym4w6c8rdsgqysyklygdm8dfylq 0.00047 AXL 
  to axelarvaloper1sn4v8rp9j587uvrex4z9jw9frplv05vnxk92zs 0.000297 AXL  (claimable 0.000297)
  to axelarvaloper148skr4d5vy6c9728zkf7cff9e5eykgwka3rvm7 0.000948 AXL  (claimable 0.000948)
✔️ destination operation 
  ? -522333          OUT        555FB4BE8B7D06C9298A28D7CF59969AC395D30ECF7950607ACB9B270DF8F57F 2024-06-13T05:34

necessary accounts resynced in 9ms
▬ Cosmos 2.35.22 on nanoS 2.1.0
→ FROM undefined: 0.567504 AXL (5ops) (axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha: (! sum of ops -0.103579 AXL) 0.567504 AXL spendable. 

max spendable ~0.560512
★ using mutation 'send some'
→ TO undefined: 0.01014 AXL (3ops) (axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f on 44'/118'/4'/0/0) #4 js:2:axelar:axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f:
✔️ transaction 
SEND  0.238401 AXL
TO axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f

with fees=0.006195
  memo=LedgerLiveBot
STATUS (434ms)
  amount: 0.238401 AXL
  estimated fees: 0.006195 AXL
  total spent: 0.244596 AXL
errors: 
warnings: 
✔️ has been signed! (4.7s) 
✔️ broadcasted! (54ms) optimistic operation: 
  -0.244596 AXL      OUT        B49B699B256A094E34C1EA81A3A7E8F964E3024C59442EB30C660BB194A9A322 2024-06-13T05:34
✔️ operation confirmed (0.37ms): 
  -0.244596 AXL      OUT        B49B699B256A094E34C1EA81A3A7E8F964E3024C59442EB30C660BB194A9A322 2024-06-13T05:34
✔️ undefined: 0.567504 AXL (5ops) (axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha: (! sum of ops -0.103579 AXL) 0.567504 AXL spendable. 
✔️ destination operation 
  ? -244596          OUT        B49B699B256A094E34C1EA81A3A7E8F964E3024C59442EB30C660BB194A9A322 2024-06-13T05:34

necessary accounts resynced in 0.33ms
▬ Cosmos 2.35.22 on nanoS 2.1.0
→ FROM undefined: 5.27732 AXL (14ops) (axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx on 44'/118'/5'/0/0) #5 js:2:axelar:axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx: (! sum of ops 4.237804 AXL) 5.254382 AXL spendable. 0.022946 AXL delegated. 
DELEGATIONS
  to axelarvaloper1sdxevhsud70v2j9svgf4fx8203e80cqnexz8px 0.022946 AXL  (claimable 0.022946)
REDELEGATIONS
  from axelarvaloper13s44uvtzf578zjze9eqeh0mnemj60pwn83frcp to axelarvaloper1sdxevhsud70v2j9svgf4fx8203e80cqnexz8px 0.003713 AXL

max spendable ~5.24738
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.02349 AXL
TO 
  0.02349 -> axelarvaloper18q7zct93jczw8eh7euwys56lsudm8tp67g65uf
with fees=0.011861
  memo=LedgerLiveBot
STATUS (482ms)
  amount: 0.02349 AXL
  estimated fees: 0.011861 AXL
  total spent: 0.035351 AXL
errors: 
warnings: 
✔️ has been signed! (5.4s) 
✔️ broadcasted! (52ms) optimistic operation: 
  -0.035351 AXL      DELEGATE   3788FE2ECBE25B3CE3D8707D9B6252CE817CFF9C1ABFE869709CCC8B18394B95 2024-06-13T05:34
    to axelarvaloper18q7zct93jczw8eh7euwys56lsudm8tp67g65uf 0.02349 AXL     
✔️ operation confirmed (0.37ms): 
  -0.035351 AXL      DELEGATE   3788FE2ECBE25B3CE3D8707D9B6252CE817CFF9C1ABFE869709CCC8B18394B95 2024-06-13T05:34
    to axelarvaloper18q7zct93jczw8eh7euwys56lsudm8tp67g65uf 0.02349 AXL     
✔️ undefined: 5.27732 AXL (14ops) (axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx on 44'/118'/5'/0/0) #5 js:2:axelar:axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx: (! sum of ops 4.237804 AXL) 5.254382 AXL spendable. 0.022946 AXL delegated. 
DELEGATIONS
  to axelarvaloper1sdxevhsud70v2j9svgf4fx8203e80cqnexz8px 0.022946 AXL  (claimable 0.022946)
REDELEGATIONS
  from axelarvaloper13s44uvtzf578zjze9eqeh0mnemj60pwn83frcp to axelarvaloper1sdxevhsud70v2j9svgf4fx8203e80cqnexz8px 0.003713 AXL

necessary accounts resynced in 0.37ms
▬ Cosmos 2.35.22 on nanoS 2.1.0
→ FROM undefined: 0.701378 AXL (6ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu: (! sum of ops -0.189696 AXL) 0.699318 AXL spendable. 0.00206 AXL delegated. 
DELEGATIONS
  to axelarvaloper126yfkvn7lx280ccg2lnxty0n2ldzz6xnve3smx 0.00206 AXL  (claimable 0.00206)

max spendable ~0.692326
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.00206 -> axelarvaloper126yfkvn7lx280ccg2lnxty0n2ldzz6xnve3smx
with fees=0.015185
  memo=LedgerLiveBot
STATUS (362ms)
  amount: 0 AXL
  estimated fees: 0.015185 AXL
  total spent: 0.015185 AXL
errors: 
warnings: 
✔️ has been signed! (5.8s) 
✔️ broadcasted! (57ms) optimistic operation: 
  -0.015185 AXL      UNDELEGATE 01F8F50606FEC9F3052339749968DBED7C7E9E00D6741A49C6ABCC1087D24FA1 2024-06-13T05:34
    to axelarvaloper126yfkvn7lx280ccg2lnxty0n2ldzz6xnve3smx 0.00206 AXL     
✔️ operation confirmed (0.28ms): 
  -0.015185 AXL      UNDELEGATE 01F8F50606FEC9F3052339749968DBED7C7E9E00D6741A49C6ABCC1087D24FA1 2024-06-13T05:34
    to axelarvaloper126yfkvn7lx280ccg2lnxty0n2ldzz6xnve3smx 0.00206 AXL     
✔️ undefined: 0.701378 AXL (6ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu: (! sum of ops -0.189696 AXL) 0.699318 AXL spendable. 0.00206 AXL delegated. 
DELEGATIONS
  to axelarvaloper126yfkvn7lx280ccg2lnxty0n2ldzz6xnve3smx 0.00206 AXL  (claimable 0.00206)


Spec cosmos (13)

Spec cosmos found 13 Cosmos accounts (preload: 228ms). Will use Cosmos 2.35.22 on nanoS 2.1.0
undefined: 0 ATOM (33ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf:
undefined: 0.003896 ATOM (31ops) (cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935 on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935:
undefined: 0.068867 ATOM (27ops) (cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu:
undefined: 0.026125 ATOM (44ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4:
undefined: 0.002476 ATOM (19ops) (cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg:
undefined: 0.004739 ATOM (40ops) (cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8 on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8:
undefined: 1.40834 ATOM (17ops) (cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu on 44'/118'/6'/0/0) #6 js:2:cosmos:cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu:
undefined: 3.19447 ATOM (24ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x:
undefined: 2.07193 ATOM (8ops) (cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r:
undefined: 0.034516 ATOM (4ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5:
undefined: 0.014837 ATOM (2ops) (cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l on 44'/118'/10'/0/0) #10 js:2:cosmos:cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l:
undefined: 3.31074 ATOM (1ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca:
undefined: 0 ATOM (0ops) (cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57 on 44'/118'/12'/0/0) #12 js:2:cosmos:cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57:
necessary accounts resynced in 0.20ms
▬ Cosmos 2.35.22 on nanoS 2.1.0
→ FROM undefined: 0.068867 ATOM (27ops) (cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu: 0.068867 ATOM spendable. 

max spendable ~0.067007
★ using mutation 'send some'
→ TO undefined: 0 ATOM (33ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf:
✔️ transaction 
SEND  0.04385 ATOM
TO cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf

with fees=0.001861
STATUS (679ms)
  amount: 0.04385 ATOM
  estimated fees: 0.001861 ATOM
  total spent: 0.045711 ATOM
errors: 
warnings: 
✔️ has been signed! (3.9s) 
✔️ broadcasted! (111ms) optimistic operation: 
  -0.045711 ATOM     OUT        6694AB24CC27F8B59D8E3544294AC3995F0928C83C80F9A1C45890A1D62BADD9 2024-06-13T05:34
✔️ operation confirmed (20.5s): 
  -0.045711 ATOM     OUT        6694AB24CC27F8B59D8E3544294AC3995F0928C83C80F9A1C45890A1D62BADD9 2024-06-13T05:34
✔️ undefined: 0.023156 ATOM (28ops) (cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu: 0.023156 ATOM spendable. 
(in 20.5s)
✔️ destination operation 
  +0.04385 ATOM      IN         6694AB24CC27F8B59D8E3544294AC3995F0928C83C80F9A1C45890A1D62BADD9 2024-06-13T05:34
(in 10.5s)

necessary accounts resynced in 0.17ms
▬ Cosmos 2.35.22 on nanoS 2.1.0
→ FROM undefined: 1.40834 ATOM (17ops) (cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu on 44'/118'/6'/0/0) #6 js:2:cosmos:cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu: 1.408346 ATOM spendable. 

max spendable ~1.40648
★ using mutation 'send some'
→ TO undefined: 0.026125 ATOM (44ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4:
✔️ transaction 
SEND  0.835248 ATOM
TO cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4

with fees=0.001866
STATUS (670ms)
  amount: 0.835248 ATOM
  estimated fees: 0.001866 ATOM
  total spent: 0.837114 ATOM
errors: 
warnings: 
✔️ has been signed! (4.4s) 
✔️ broadcasted! (2918ms) optimistic operation: 
  -0.837114 ATOM     OUT        705B2C23B205E82FF388E8D3D8A362D526E0EF5BE0712DBD7706B7590F346842 2024-06-13T05:34
✔️ operation confirmed (20.5s): 
  -0.837114 ATOM     OUT        705B2C23B205E82FF388E8D3D8A362D526E0EF5BE0712DBD7706B7590F346842 2024-06-13T05:34
✔️ undefined: 0.571232 ATOM (18ops) (cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu on 44'/118'/6'/0/0) #6 js:2:cosmos:cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu: 0.571232 ATOM spendable. 
(in 20.5s)
✔️ destination operation 
  +0.835248 ATOM     IN         705B2C23B205E82FF388E8D3D8A362D526E0EF5BE0712DBD7706B7590F346842 2024-06-13T05:34
(in 30.6s)

necessary accounts resynced in 10ms
▬ Cosmos 2.35.22 on nanoS 2.1.0
→ FROM undefined: 3.19447 ATOM (24ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x: (! sum of ops 3.207868 ATOM) 3.141624 ATOM spendable. 0.045519 ATOM delegated. 0.007328 ATOM unbonding. 
DELEGATIONS
  to cosmosvaloper1cgh5ksjwy2sd407lyre4l3uj2fdrqhpkzp06e6 0.009724 ATOM  (claimable 0.009724)
  to cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm 0.035795 ATOM  (claimable 0.035795)
UNDELEGATIONS
  from cosmosvaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2ztve7q 0.007328 ATOM
REDELEGATIONS
  from cosmosvaloper1et77usu8q2hargvyusl4qzryev8x8t9wwqkxfs to cosmosvaloper1cgh5ksjwy2sd407lyre4l3uj2fdrqhpkzp06e6 0.009624 ATOM

max spendable ~3.13975
★ using mutation 'send max'
→ TO undefined: 0.04385 ATOM (34ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf:
✔️ transaction 
SEND MAX
TO cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf

with fees=0.001773
STATUS (667ms)
  amount: 3.139851 ATOM
  estimated fees: 0.001773 ATOM
  total spent: 3.141624 ATOM
errors: 
warnings: amount RecommendUndelegation
✔️ has been signed! (4.5s) 
✔️ broadcasted! (1691ms) optimistic operation: 
  -3.141624 ATOM     OUT        ACEBC9A4DC5CDD47DF671771391F984A00B84F0278DE86DDE12D1D0D0B4BB505 2024-06-13T05:35
✔️ operation confirmed (10.7s): 
  -3.141624 ATOM     OUT        ACEBC9A4DC5CDD47DF671771391F984A00B84F0278DE86DDE12D1D0D0B4BB505 2024-06-13T05:35
✔️ undefined: 0.052847 ATOM (25ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x: (! sum of ops 0.066244 ATOM) 0 ATOM spendable. 0.045519 ATOM delegated. 0.007328 ATOM unbonding. 
DELEGATIONS
  to cosmosvaloper1cgh5ksjwy2sd407lyre4l3uj2fdrqhpkzp06e6 0.009724 ATOM  (claimable 0.009724)
  to cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm 0.035795 ATOM  (claimable 0.035795)
UNDELEGATIONS
  from cosmosvaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2ztve7q 0.007328 ATOM
REDELEGATIONS
  from cosmosvaloper1et77usu8q2hargvyusl4qzryev8x8t9wwqkxfs to cosmosvaloper1cgh5ksjwy2sd407lyre4l3uj2fdrqhpkzp06e6 0.009624 ATOM
(in 10.7s)
✔️ destination operation 
  +3.139851 ATOM     IN         ACEBC9A4DC5CDD47DF671771391F984A00B84F0278DE86DDE12D1D0D0B4BB505 2024-06-13T05:35
(in 10.6s)

necessary accounts resynced in 0.24ms
▬ Cosmos 2.35.22 on nanoS 2.1.0
→ FROM undefined: 3.31074 ATOM (1ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca: 3.310746 ATOM spendable. 

max spendable ~3.30865
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.079153 ATOM
TO 
  0.079153 -> cosmosvaloper1d0aup392g3enru7eash83sedqclaxvp7fzh6gk
with fees=0.008133
  memo=LedgerLiveBot
STATUS (934ms)
  amount: 0.079153 ATOM
  estimated fees: 0.008133 ATOM
  total spent: 0.087286 ATOM
errors: 
warnings: 
✔️ has been signed! (3.6s) 
✔️ broadcasted! (105ms) optimistic operation: 
  -0.087286 ATOM     DELEGATE   C96D39DBEB7491EB766E199E4387BBAD5478371C55BD6EC6CDC7EBCBFC77A1E7 2024-06-13T05:36
    to cosmosvaloper1d0aup392g3enru7eash83sedqclaxvp7fzh6gk 0.079153 ATOM   
✔️ operation confirmed (10.4s): 
  -0.008133 ATOM     DELEGATE   C96D39DBEB7491EB766E199E4387BBAD5478371C55BD6EC6CDC7EBCBFC77A1E7 2024-06-13T05:36
    to cosmosvaloper1d0aup392g3enru7eash83sedqclaxvp7fzh6gk 0.079153 ATOM   
✔️ undefined: 3.30261 ATOM (2ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca: 3.22346 ATOM spendable. 0.079153 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper1d0aup392g3enru7eash83sedqclaxvp7fzh6gk 0.079153 ATOM  (claimable 0.079153)
(in 10.4s)


Spec secret_network (failed)


Spec Filecoin (13)

Spec Filecoin found 13 Filecoin accounts. Will use Filecoin 0.24.2 on nanoSP 1.1.1
undefined [bip44]: 0.616356 FIL (25ops) (f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq on 44'/461'/1'/0/0) filecoinBIP44#1 js:2:filecoin:f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq:filecoinBIP44
undefined [bip44]: 0 FIL (20ops) (f12zihhoc242uejpqswezsm4c7a2n2d3nqygvyeqi on 44'/461'/2'/0/0) filecoinBIP44#2 js:2:filecoin:f12zihhoc242uejpqswezsm4c7a2n2d3nqygvyeqi:filecoinBIP44
undefined [bip44]: 0.618741 FIL (15ops) (f1fuauxwtdo23jotlxu3cueskwbzoecdcz4ltkozq on 44'/461'/3'/0/0) filecoinBIP44#3 js:2:filecoin:f1fuauxwtdo23jotlxu3cueskwbzoecdcz4ltkozq:filecoinBIP44
undefined [bip44]: 0.180483 FIL (18ops) (f14ggrsuc7i5q2yj5tcqlcuyy3fneiapyywnwcw2q on 44'/461'/4'/0/0) filecoinBIP44#4 js:2:filecoin:f14ggrsuc7i5q2yj5tcqlcuyy3fneiapyywnwcw2q:filecoinBIP44
undefined [bip44]: 0 FIL (18ops) (f1boo3wjm5yjpvkbi4s3k2rykpvmf235ivkbj3kbq on 44'/461'/5'/0/0) filecoinBIP44#5 js:2:filecoin:f1boo3wjm5yjpvkbi4s3k2rykpvmf235ivkbj3kbq:filecoinBIP44
undefined [bip44]: 0 FIL (6ops) (f1bw4zwsefo5rwk3t536tq6wlgdhivrt5ucmdttji on 44'/461'/6'/0/0) filecoinBIP44#6 js:2:filecoin:f1bw4zwsefo5rwk3t536tq6wlgdhivrt5ucmdttji:filecoinBIP44
undefined [third-party]: 0 FIL (24ops) (f1oqqfytyqkxiuu4k7qtsjurmyfddjfsvpvr7dv7y on 44'/461'/0'/0/0) glif#0 js:2:filecoin:f1oqqfytyqkxiuu4k7qtsjurmyfddjfsvpvr7dv7y:glif
undefined [third-party]: 0 FIL (0ops) (f17ag6fgxl3nnooho4vhthp634njria2dyhwzlg2i on 44'/461'/0'/0/1) glif#1 js:2:filecoin:f17ag6fgxl3nnooho4vhthp634njria2dyhwzlg2i:glif
undefined [third-party]: 0 FIL (0ops) (f1j424bboftp37f7hhy3rybhi24at6lnlhcs6tapy on 44'/461'/0'/0/2) glif#2 js:2:filecoin:f1j424bboftp37f7hhy3rybhi24at6lnlhcs6tapy:glif
undefined [third-party]: 0 FIL (0ops) (f142x56fmpwbtrllzpgqaeicdzye27yrftomuzmva on 44'/461'/0'/0/3) glif#3 js:2:filecoin:f142x56fmpwbtrllzpgqaeicdzye27yrftomuzmva:glif
undefined [third-party]: 0 FIL (0ops) (f1iuq2mwan24jpiwwt3smsnsz4kcgvua2dbsjsnmi on 44'/461'/0'/0/4) glif#4 js:2:filecoin:f1iuq2mwan24jpiwwt3smsnsz4kcgvua2dbsjsnmi:glif
undefined [third-party]: 0 FIL (0ops) (f13psrixi44a5b4kvpxhj4xu7efxns5zpwpedrdpi on 44'/461'/0'/0/5) glif#5 js:2:filecoin:f13psrixi44a5b4kvpxhj4xu7efxns5zpwpedrdpi:glif
undefined [third-party]: 0 FIL (0ops) (f17cwsrt44zvzwwdxjrwautrkbdzoakayizpdyoay on 44'/461'/0'/0/6) glif#6 js:2:filecoin:f17cwsrt44zvzwwdxjrwautrkbdzoakayizpdyoay:glif
necessary accounts resynced in 0.13ms
▬ Filecoin 0.24.2 on nanoSP 1.1.1
→ FROM undefined [bip44]: 0.616356 FIL (25ops) (f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq on 44'/461'/1'/0/0) filecoinBIP44#1 js:2:filecoin:f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq:filecoinBIP44 (! sum of ops 0.616356356693009588 FIL)
max spendable ~0.616356
★ using mutation 'Send 50%~'
→ TO undefined [bip44]: 0 FIL (18ops) (f1boo3wjm5yjpvkbi4s3k2rykpvmf235ivkbj3kbq on 44'/461'/5'/0/0) filecoinBIP44#5 js:2:filecoin:f1boo3wjm5yjpvkbi4s3k2rykpvmf235ivkbj3kbq:filecoinBIP44
✔️ transaction 
SEND  0.321873212572549139 FIL
TO f1boo3wjm5yjpvkbi4s3k2rykpvmf235ivkbj3kbq
STATUS (404ms)
  amount: 0.321873212572549139 FIL
  estimated fees: 0.000000304562227116 FIL
  total spent: 0.321873517134776255 FIL
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Value'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Value": "0.321873212572549139",
+   "Value": "FIL 0.321873212572549139",
  }
(totally spent 1693ms – ends at 2024-06-13T06:06:01.156Z)
necessary accounts resynced in 0.53ms
▬ Filecoin 0.24.2 on nanoSP 1.1.1
→ FROM undefined [bip44]: 0.618741 FIL (15ops) (f1fuauxwtdo23jotlxu3cueskwbzoecdcz4ltkozq on 44'/461'/3'/0/0) filecoinBIP44#3 js:2:filecoin:f1fuauxwtdo23jotlxu3cueskwbzoecdcz4ltkozq:filecoinBIP44 (! sum of ops 0.618741388161637256 FIL)
max spendable ~0.618741
★ using mutation 'Transfer Max'
→ TO undefined [bip44]: 0.616356 FIL (25ops) (f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq on 44'/461'/1'/0/0) filecoinBIP44#1 js:2:filecoin:f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq:filecoinBIP44
✔️ transaction 
SEND MAX
TO f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq
STATUS (459ms)
  amount: 0.618741088531321772 FIL
  estimated fees: 0.00000029963031546 FIL
  total spent: 0.618741388161637232 FIL
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Value'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Value": "0.618741088531321772",
+   "Value": "FIL 0.618741088531321772",
  }
(totally spent 2679ms – ends at 2024-06-13T06:06:01.187Z)
necessary accounts resynced in 0.17ms
▬ Filecoin 0.24.2 on nanoSP 1.1.1
→ FROM undefined [bip44]: 0.180483 FIL (18ops) (f14ggrsuc7i5q2yj5tcqlcuyy3fneiapyywnwcw2q on 44'/461'/4'/0/0) filecoinBIP44#4 js:2:filecoin:f14ggrsuc7i5q2yj5tcqlcuyy3fneiapyywnwcw2q:filecoinBIP44 (! sum of ops 0.180483650098951852 FIL)
max spendable ~0.180483
★ using mutation 'Send small to eth address'
✔️ transaction 
SEND  0.0000000000000001 FIL
TO 0x689c9b3232210aa9b84ef444d0ef35d11102ad1f
STATUS (621ms)
  amount: 0.0000000000000001 FIL
  estimated fees: 0.00000022711406676 FIL
  total spent: 0.00000022711406686 FIL
errors: 
warnings: 
⚠️ Error: 27012 - Data is invalid : ExpertModeRequired
(totally spent 725ms – ends at 2024-06-13T06:06:01.200Z)

Spec Tron (8)

Spec Tron found 8 Tron accounts (preload: 44.1s). Will use Tron 0.5.0 on nanoSP 1.1.1
undefined: 0.000002 TRX (50ops) (TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1 on 44'/195'/0'/0/0) #0 js:2:tron:TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1:
undefined: 30 TRX (66ops) (TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L on 44'/195'/1'/0/0) #1 js:2:tron:TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L:
undefined: 174 TRX (69ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:
undefined: 279.219 TRX (35ops) (TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN on 44'/195'/3'/0/0) #3 js:2:tron:TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN:
undefined: 0.000001 TRX (22ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
undefined: 22.1709 TRX (7ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:
undefined: 238.01 TRX (4ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
undefined: 0 TRX (0ops) (TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1 on 44'/195'/7'/0/0) #7 js:2:tron:TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1:
necessary accounts resynced in 0.36ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 279.219 TRX (35ops) (TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN on 44'/195'/3'/0/0) #3 js:2:tron:TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN:
max spendable ~278.219
★ using mutation 'send max to another account'
→ TO undefined: 0.000002 TRX (50ops) (TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1 on 44'/195'/0'/0/0) #0 js:2:tron:TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1:
✔️ transaction 
SEND MAX 
TO TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1
STATUS (1052ms)
  amount: 279.219004 TRX
  estimated fees: 0 TRX
  total spent: 279.219004 TRX
errors: 
warnings: 
✔️ has been signed! (3.5s) 
✔️ broadcasted! (102ms) optimistic operation: 
  -279.219004 TRX    OUT        eb5b1346a273467a03e87417c3b4c1dab4658d38f44385f7dbecce42efc6a4ce 2024-06-13T05:34
✔️ operation confirmed (11.3s): 
  -279.219004 TRX    OUT        eb5b1346a273467a03e87417c3b4c1dab4658d38f44385f7dbecce42efc6a4ce 2024-06-13T05:34
✔️ undefined: 0 TRX (36ops) (TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN on 44'/195'/3'/0/0) #3 js:2:tron:TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN:(in 11.3s)
✔️ destination operation 
  +279.219004 TRX    IN         eb5b1346a273467a03e87417c3b4c1dab4658d38f44385f7dbecce42efc6a4ce 2024-06-13T05:34
(in 11.3s)

necessary accounts resynced in 0.17ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 22.1709 TRX (7ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:
max spendable ~21.1709
★ using mutation 'move 50% to another account'
→ TO undefined: 0 TRX (36ops) (TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN on 44'/195'/3'/0/0) #3 js:2:tron:TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN:
✔️ transaction 
SEND  10.585456 TRX 
TO TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN
STATUS (1039ms)
  amount: 10.585456 TRX
  estimated fees: 0 TRX
  total spent: 10.585456 TRX
errors: 
warnings: 
✔️ has been signed! (2771ms) 
✔️ broadcasted! (155ms) optimistic operation: 
  -10.585456 TRX     OUT        4df2263f31ecf8abca13a27bccf7f2af59e3bdf275303088efc45f7ca8b16b54 2024-06-13T05:35
✔️ operation confirmed (11.1s): 
  -10.585456 TRX     OUT        4df2263f31ecf8abca13a27bccf7f2af59e3bdf275303088efc45f7ca8b16b54 2024-06-13T05:35
✔️ undefined: 11.5854 TRX (8ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:(in 11.1s)
✔️ destination operation 
  +10.585456 TRX     IN         4df2263f31ecf8abca13a27bccf7f2af59e3bdf275303088efc45f7ca8b16b54 2024-06-13T05:35
(in 11.1s)

necessary accounts resynced in 0.23ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 238.01 TRX (4ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
max spendable ~237.01
★ using mutation 'move 50% to another account'
→ TO undefined: 0.000001 TRX (22ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
✔️ transaction 
SEND  118.505245 TRX 
TO TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF
STATUS (995ms)
  amount: 118.505245 TRX
  estimated fees: 0 TRX
  total spent: 118.505245 TRX
errors: 
warnings: 
✔️ has been signed! (3.6s) 
✔️ broadcasted! (187ms) optimistic operation: 
  -118.505245 TRX    OUT        141a8c8a24dbb0bf290a120d9c8d341a82e199e147ac93c8df2d196275dd1624 2024-06-13T05:35
✔️ operation confirmed (11.1s): 
  -118.505245 TRX    OUT        141a8c8a24dbb0bf290a120d9c8d341a82e199e147ac93c8df2d196275dd1624 2024-06-13T05:35
✔️ undefined: 119.505 TRX (5ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:(in 11.1s)
✔️ destination operation 
  +118.505245 TRX    IN         141a8c8a24dbb0bf290a120d9c8d341a82e199e147ac93c8df2d196275dd1624 2024-06-13T05:35
(in 11.1s)


Spec Qtum (6)

Spec Qtum found 6 Qtum accounts. Will use Qtum 2.1.0-rc on nanoS 2.1.0
undefined [segwit]: 2.09191 QTUM (80ops) (MKd4r9A8L4RQguAmTG9hVYTNVXBCPWjfCy on 49'/88'/0'/0/41) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
undefined [segwit]: 0 QTUM (71ops) (MKVSHdj9XaJcvomRwAR25m8yDUdAAjJDkK on 49'/88'/1'/0/34) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
undefined [segwit]: 0 QTUM (0ops) (MR3A49zXnWaH7Vhm7YKeiaREazdKZxie6r on 49'/88'/2'/0/0) segwit#2 js:2:qtum:xpub6BvfSTHRWubyX78dqB3tVcgps5JtUKukFsbkwrxQhEvBr2UmTUjNEdcZRvmBb6PczEcKUrnVvQvQ2BafHcw1wBkqbVLzNyEN912tNDDd8M9:segwit
undefined [legacy]: 0.0304206 QTUM (77ops) (QLvZJwpShs7YR18fAN83ddwhxaYddiphmU on 44'/88'/0'/0/41) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
undefined [legacy]: 0.499384 QTUM (63ops) (Qhfuovr4g6QcY1dW7hakPSrvjMBF1dUGHS on 44'/88'/1'/0/29) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
undefined [legacy]: 0 QTUM (0ops) (QXwMM27e61jr6M9TBrEfWiab9j7RPdRB5L on 44'/88'/2'/0/0) #2 js:2:qtum:xpub6DA2jGUBMLR6Nxr6vXgCpqQCa5xbmtGAsPuDpqkQSqH8WwwgHVfBhyYS3vEmEUqUjXHV5WU1zRLF8dhFfDjaonsgn687DWbbdA4kX9gg1UZ:
necessary accounts resynced in 6ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [segwit]: 2.09191 QTUM (80ops) (MKd4r9A8L4RQguAmTG9hVYTNVXBCPWjfCy on 49'/88'/0'/0/41) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
6 UTXOs
0.90761      M7zax6LtT2VzHEBZpSyc5oDxVqkdSRKZGS (change) bbf6120549e171f07de8170f1fe15bfbaa5bacda12b476042b5d42fb4b4bfb80 @1 (18897)
0.708453     MJ5J57ZUCmyo88QDAwSthfCiQXk1FvrDLH b528487ad96b1ab7e83c063db763dadf92758bf44c20317e24a5dcf2fb68791c @0 (18896)
0.319748     MT4mKsHd1hWfFSGBd3eK5KfdFYE4LgtYKd (change) rbf 71043620dc7c9c5281eae0ad85365f24b7e6320fccfa39948ebe36755cf3adaf @1 (37797)
0.154101     MHSXRMHnPzF8k6XNce1p3msvfMxRiecxkW ccf85528d5aec65fbf835a85fbe2c5008ef6441a72182482e25ec64cc60269e5 @0 (18892)
...

max spendable ~2.08607
★ using mutation 'send 1 utxo'
→ TO undefined [legacy]: 0.499384 QTUM (63ops) (Qhfuovr4g6QcY1dW7hakPSrvjMBF1dUGHS on 44'/88'/1'/0/29) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
✔️ transaction 
SEND MAX
TO Qhfuovr4g6QcY1dW7hakPSrvjMBF1dUGHS
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed
exclude b528487ad96b1ab7e83c063db763dadf92758bf44c20317e24a5dcf2fb68791c @0
exclude ecd8da56ee3af66248b5f2d99d6548eeb388204e9b153e37410dd30f1d6e094a @0
exclude 378b969d17966f63df2ee64a7d2c2dc41ec76e333af80e0ac6718e47c0e50e0a @0
exclude 71043620dc7c9c5281eae0ad85365f24b7e6320fccfa39948ebe36755cf3adaf @1
STATUS (206ms)
TX INPUTS (1):
0.90761      M7zax6LtT2VzHEBZpSyc5oDxVqkdSRKZGS bbf6120549e171f07de8170f1fe15bfbaa5bacda12b476042b5d42fb4b4bfb80@1
TX OUTPUTS (1):
0.906258     Qhfuovr4g6QcY1dW7hakPSrvjMBF1dUGHS @0 (0)
  amount: 0.90625888 QTUM
  estimated fees: 0.00135135 QTUM
  total spent: 0.90761023 QTUM
errors: 
warnings: 
✔️ has been signed! (5.4s) 
✔️ broadcasted! (108ms) optimistic operation: 
  -0.00135135 QTUM   OUT        352717ffc5808c7b9a4fd5b30fdf7f304b9cc8f331815f8a0eb12ca78c0503c9 2024-06-13T05:34
✔️ operation confirmed (10.3s): 
  -0.90761023 QTUM   OUT        352717ffc5808c7b9a4fd5b30fdf7f304b9cc8f331815f8a0eb12ca78c0503c9 2024-06-13T05:34
✔️ undefined [segwit]: 1.1843 QTUM (81ops) (MKd4r9A8L4RQguAmTG9hVYTNVXBCPWjfCy on 49'/88'/0'/0/41) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
5 UTXOs
0.708453     MJ5J57ZUCmyo88QDAwSthfCiQXk1FvrDLH b528487ad96b1ab7e83c063db763dadf92758bf44c20317e24a5dcf2fb68791c @0 (18896)
0.319748     MT4mKsHd1hWfFSGBd3eK5KfdFYE4LgtYKd (change) rbf 71043620dc7c9c5281eae0ad85365f24b7e6320fccfa39948ebe36755cf3adaf @1 (37797)
0.154101     MHSXRMHnPzF8k6XNce1p3msvfMxRiecxkW ccf85528d5aec65fbf835a85fbe2c5008ef6441a72182482e25ec64cc60269e5 @0 (18892)
0.001        MTyTfGQw4eHm5e1PMipv1Qjz8EsDXxzTmg ecd8da56ee3af66248b5f2d99d6548eeb388204e9b153e37410dd30f1d6e094a @0 (18894)
...
(in 10.3s)
✔️ destination operation 
  +0.90625888 QTUM   IN         352717ffc5808c7b9a4fd5b30fdf7f304b9cc8f331815f8a0eb12ca78c0503c9 2024-06-13T05:34
(in 10.3s)

necessary accounts resynced in 0.14ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [legacy]: 0.0304206 QTUM (77ops) (QLvZJwpShs7YR18fAN83ddwhxaYddiphmU on 44'/88'/0'/0/41) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
1 UTXOs
0.0304206    QTrfVgVhVxyXPrVBuS8SaKpWWhcB2pDyx9 (change) ecd8da56ee3af66248b5f2d99d6548eeb388204e9b153e37410dd30f1d6e094a @2 (18894)

max spendable ~0.0284987
★ using mutation 'move ~50%'
→ TO undefined [segwit]: 0 QTUM (71ops) (MKVSHdj9XaJcvomRwAR25m8yDUdAAjJDkK on 49'/88'/1'/0/34) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
✔️ transaction 
SEND 0.01466857 QTUM
TO MKVSHdj9XaJcvomRwAR25m8yDUdAAjJDkK
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (144ms)
TX INPUTS (1):
0.0304206    QTrfVgVhVxyXPrVBuS8SaKpWWhcB2pDyx9 ecd8da56ee3af66248b5f2d99d6548eeb388204e9b153e37410dd30f1d6e094a@2
TX OUTPUTS (2):
0.0146685    MKVSHdj9XaJcvomRwAR25m8yDUdAAjJDkK @0 (0)
0.0135298    QfBVnoSxMhwaqzfDqHa7RTRAwCe1fk2RUS (change) @1 (0)
  amount: 0.01466857 QTUM
  estimated fees: 0.00222222 QTUM
  total spent: 0.01689079 QTUM
errors: 
warnings: feeTooHigh FeeTooHigh
✔️ has been signed! (5.8s) 
✔️ broadcasted! (142ms) optimistic operation: 
  -0.01689079 QTUM   OUT        89020b6856b894a81af285fcf9190b152ee985e6c72231c76da7e5df39d54237 2024-06-13T05:34
✔️ operation confirmed (10.4s): 
  -0.01689079 QTUM   OUT        89020b6856b894a81af285fcf9190b152ee985e6c72231c76da7e5df39d54237 2024-06-13T05:34
✔️ undefined [legacy]: 0.0135298 QTUM (78ops) (QLvZJwpShs7YR18fAN83ddwhxaYddiphmU on 44'/88'/0'/0/41) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
1 UTXOs
0.0135298    QfBVnoSxMhwaqzfDqHa7RTRAwCe1fk2RUS (change) 89020b6856b894a81af285fcf9190b152ee985e6c72231c76da7e5df39d54237 @1 (0)
(in 10.4s)
✔️ destination operation 
  +0.01466857 QTUM   IN         89020b6856b894a81af285fcf9190b152ee985e6c72231c76da7e5df39d54237 2024-06-13T05:34
(in 10.5s)

necessary accounts resynced in 0.16ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [legacy]: 1.40564 QTUM (64ops) (QfqNZrCfMSoZms6Dj2t7BVD2nSxn63eaMW on 44'/88'/1'/0/30) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
3 UTXOs
0.906258     Qhfuovr4g6QcY1dW7hakPSrvjMBF1dUGHS 352717ffc5808c7b9a4fd5b30fdf7f304b9cc8f331815f8a0eb12ca78c0503c9 @0 (0)
0.345049     QUvg3cjjjH5TUDbreU219f6fXW7D3wu1NC bbf6120549e171f07de8170f1fe15bfbaa5bacda12b476042b5d42fb4b4bfb80 @0 (18897)
0.154334     QXQAx7rjVr2FvgUDzsoU9zEKmU6RXMTcP2 (change) ccf85528d5aec65fbf835a85fbe2c5008ef6441a72182482e25ec64cc60269e5 @1 (18892)

max spendable ~0.49598
★ using mutation 'send OP_RETURN transaction'
→ TO undefined [segwit]: 0.0146685 QTUM (72ops) (MDYu4JAmLxaHd9e98NTTNrd5vcMb8ZuRci on 49'/88'/1'/0/35) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
✔️ transaction 
SEND 0.001 QTUM
TO MDYu4JAmLxaHd9e98NTTNrd5vcMb8ZuRci
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (94ms)
TX INPUTS (1):
0.345049     QUvg3cjjjH5TUDbreU219f6fXW7D3wu1NC bbf6120549e171f07de8170f1fe15bfbaa5bacda12b476042b5d42fb4b4bfb80@0
TX OUTPUTS (3):
0.001        MDYu4JAmLxaHd9e98NTTNrd5vcMb8ZuRci @0 (0)
0            @1 (0)
0.341527     QgFBp5f9MurbKqQY6zWajiz2rWucPizjWj (change) @2 (0)
  amount: 0.001 QTUM
  estimated fees: 0.00252252 QTUM
  total spent: 0.00352252 QTUM
errors: 
warnings: feeTooHigh FeeTooHigh
✔️ has been signed! (6.8s) 
✔️ broadcasted! (393ms) optimistic operation: 
  -0.00352252 QTUM   OUT        222c78be1ba9801da267414c60add50190ea2d32092c7527b9ca44bed6232443 2024-06-13T05:34
✔️ operation confirmed (10.4s): 
  -0.00352252 QTUM   OUT        222c78be1ba9801da267414c60add50190ea2d32092c7527b9ca44bed6232443 2024-06-13T05:34
✔️ undefined [legacy]: 1.40212 QTUM (65ops) (QfqNZrCfMSoZms6Dj2t7BVD2nSxn63eaMW on 44'/88'/1'/0/30) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
3 UTXOs
0.906258     Qhfuovr4g6QcY1dW7hakPSrvjMBF1dUGHS 352717ffc5808c7b9a4fd5b30fdf7f304b9cc8f331815f8a0eb12ca78c0503c9 @0 (0)
0.341527     QgFBp5f9MurbKqQY6zWajiz2rWucPizjWj (change) 222c78be1ba9801da267414c60add50190ea2d32092c7527b9ca44bed6232443 @2 (0)
0.154334     QXQAx7rjVr2FvgUDzsoU9zEKmU6RXMTcP2 (change) ccf85528d5aec65fbf835a85fbe2c5008ef6441a72182482e25ec64cc60269e5 @1 (18893)
(in 10.4s)
✔️ destination operation 
  +0.001 QTUM        IN         222c78be1ba9801da267414c60add50190ea2d32092c7527b9ca44bed6232443 2024-06-13T05:34
(in 10.3s)


Spec Decred (5)

Spec Decred found 5 Decred accounts. Will use Decred 1.3.14 on nanoS 2.1.0
undefined: 0.627869 DCR (64ops) (Dsc2SNha3LQxaDVrbsnYrjfhLcTYRSFwwDo on 44'/42'/0'/0/31) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
undefined: 0.293807 DCR (71ops) (DsgPYZryqhNpe86eV8g14GoQrPdmD3tmM3W on 44'/42'/1'/0/37) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
undefined: 0.0003 DCR (60ops) (DsnYWDCH9ponBt2xBeyZhrsn71mrUHHVkZb on 44'/42'/2'/0/31) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
undefined: 0.363533 DCR (51ops) (DsmUQx7nbZPdGezypQZXePehcw3Bu5HwCH1 on 44'/42'/3'/0/24) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
undefined: 0 DCR (0ops) (DskCZ4d3mZkXwLxAEjx2sEM121SFimdgvSv on 44'/42'/4'/0/0) #4 js:2:decred:dpubZEswmUQs2uoMffXvbjYzmFKAA8qiVoRpBd8QwvJKFgG4HaLsEf3yq9JdFJHzvmMqTKUybT8NPDs16zti7N3ehBSQmxZQB76h8MsWKLZDFAX:
necessary accounts resynced in 0.30ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.627869 DCR (64ops) (Dsc2SNha3LQxaDVrbsnYrjfhLcTYRSFwwDo on 44'/42'/0'/0/31) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
3 UTXOs
0.584558     DshC5YTuF9HFtJXLzmYXdmg6xjT728GKbEZ (change) 0eccba8eaa88a453eea69d5406b8172752edfe0cbb152033b31818f9871aed6f @1 (4025)
0.0329527    Dskq4vHd6pUTdzwL5mdzoH3UMeAbv42Hyqy (change) e6ffeacb80b3fc094b627140a6fdbdfb156235e9a302b256885e66bac93f8d2e @2 (2019)
0.0103588    DsgnXFcdAuLMF9HEWkNhJX3YigQLo4XXi68 65311107ce0675baed7b6bac755001b1fd811edc5062c380b3f08fad09cdf899 @0 (6070)

max spendable ~0.62781
★ using mutation 'send max'
→ TO undefined: 0.293807 DCR (71ops) (DsgPYZryqhNpe86eV8g14GoQrPdmD3tmM3W on 44'/42'/1'/0/37) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
✔️ transaction 
SEND MAX
TO DsgPYZryqhNpe86eV8g14GoQrPdmD3tmM3W
with feePerByte=11 (network fees: 0=12, 1=11, 2=10)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (284ms)
TX INPUTS (3):
0.0103588    DsgnXFcdAuLMF9HEWkNhJX3YigQLo4XXi68 65311107ce0675baed7b6bac755001b1fd811edc5062c380b3f08fad09cdf899@0
0.584558     DshC5YTuF9HFtJXLzmYXdmg6xjT728GKbEZ 0eccba8eaa88a453eea69d5406b8172752edfe0cbb152033b31818f9871aed6f@1
0.0329527    Dskq4vHd6pUTdzwL5mdzoH3UMeAbv42Hyqy e6ffeacb80b3fc094b627140a6fdbdfb156235e9a302b256885e66bac93f8d2e@2
TX OUTPUTS (1):
0.62781      DsgPYZryqhNpe86eV8g14GoQrPdmD3tmM3W @0 (0)
  amount: 0.62781007 DCR
  estimated fees: 0.00005984 DCR
  total spent: 0.62786991 DCR
errors: 
warnings: 
✔️ has been signed! (8.7s) 
✔️ broadcasted! (88ms) optimistic operation: 
  -0.00005984 DCR    OUT        9d934a4f49af2785d9fd917b529693e645485a52a3e097b13b94cee35faf6a8c 2024-06-13T05:34
✔️ operation confirmed (10.6s): 
  -0.62786991 DCR    OUT        9d934a4f49af2785d9fd917b529693e645485a52a3e097b13b94cee35faf6a8c 2024-06-13T05:34
✔️ undefined: 0 DCR (65ops) (Dsc2SNha3LQxaDVrbsnYrjfhLcTYRSFwwDo on 44'/42'/0'/0/31) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
0 UTXOs
(in 10.6s)
✔️ destination operation 
  +0.62781007 DCR    IN         9d934a4f49af2785d9fd917b529693e645485a52a3e097b13b94cee35faf6a8c 2024-06-13T05:34
(in 10.5s)

necessary accounts resynced in 7ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.921617 DCR (72ops) (DsfURY9tG8U1u7HBWir9PZCNptxhg2ttZbG on 44'/42'/1'/0/38) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
3 UTXOs
0.62781      DsgPYZryqhNpe86eV8g14GoQrPdmD3tmM3W 9d934a4f49af2785d9fd917b529693e645485a52a3e097b13b94cee35faf6a8c @0 (0)
0.293707     DsWFwPvzMa7TmugnoWPHJJmErswMj31oNeJ 15474eb642def566ba4b20474242656d5db7d1456ba3bf5a5eb88a94b302b13f @0 (2019)
0.0001       DsTdu3RRdNQRAhapvwdM8Ak7mGhUZi4Ycsn b34410dfd272e06e970e76c5bb162fa96fb6ac480599a6746d85abea649e5afe @0 (6070)

max spendable ~0.293766
★ using mutation 'send 1 utxo'
→ TO undefined: 0 DCR (65ops) (Dsc2SNha3LQxaDVrbsnYrjfhLcTYRSFwwDo on 44'/42'/0'/0/31) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
✔️ transaction 
SEND MAX
TO Dsc2SNha3LQxaDVrbsnYrjfhLcTYRSFwwDo
with feePerByte=11 (network fees: 0=12, 1=11, 2=10)
DEEP_OUTPUTS_FIRST pick-unconfirmed
exclude b34410dfd272e06e970e76c5bb162fa96fb6ac480599a6746d85abea649e5afe @0
exclude 9d934a4f49af2785d9fd917b529693e645485a52a3e097b13b94cee35faf6a8c @0
STATUS (350ms)
TX INPUTS (1):
0.293707     DsWFwPvzMa7TmugnoWPHJJmErswMj31oNeJ 15474eb642def566ba4b20474242656d5db7d1456ba3bf5a5eb88a94b302b13f@0
TX OUTPUTS (1):
0.293684     Dsc2SNha3LQxaDVrbsnYrjfhLcTYRSFwwDo @0 (0)
  amount: 0.29368408 DCR
  estimated fees: 0.00002376 DCR
  total spent: 0.29370784 DCR
errors: 
warnings: 
✔️ has been signed! (3.2s) 
✔️ broadcasted! (81ms) optimistic operation: 
  -0.00002376 DCR    OUT        b1abb7ff1e57e9ff275f52e38d92d38797dc774771095d5b7aeda785f603135b 2024-06-13T05:34
✔️ operation confirmed (10.6s): 
  -0.29370784 DCR    OUT        b1abb7ff1e57e9ff275f52e38d92d38797dc774771095d5b7aeda785f603135b 2024-06-13T05:34
✔️ undefined: 0.62791 DCR (73ops) (DsfURY9tG8U1u7HBWir9PZCNptxhg2ttZbG on 44'/42'/1'/0/38) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
2 UTXOs
0.62781      DsgPYZryqhNpe86eV8g14GoQrPdmD3tmM3W 9d934a4f49af2785d9fd917b529693e645485a52a3e097b13b94cee35faf6a8c @0 (0)
0.0001       DsTdu3RRdNQRAhapvwdM8Ak7mGhUZi4Ycsn b34410dfd272e06e970e76c5bb162fa96fb6ac480599a6746d85abea649e5afe @0 (6070)
(in 10.6s)
✔️ destination operation 
  +0.29368408 DCR    IN         b1abb7ff1e57e9ff275f52e38d92d38797dc774771095d5b7aeda785f603135b 2024-06-13T05:34
(in 10.6s)

necessary accounts resynced in 0.24ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.0003 DCR (60ops) (DsnYWDCH9ponBt2xBeyZhrsn71mrUHHVkZb on 44'/42'/2'/0/31) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
3 UTXOs
0.0001       DsTKDwyLG6NDns5dt3A6Fo8gj6864ArW2FD babc4af2ca64e461f6571228fb76ef40a50c763309f2ac2aa4cde00fb3f4434e @0 (12086)
0.0001       DsU7CB4ae9cWWM4vaauo5DymBbA2w1FjVaS 77838a59bc0bce7c09a50bb51bdc960b31975bc8bc0a345dcfb2fcec4acc754b @0 (10108)
0.0001       DsZ1Q8UtAEgx3SRJi7ETBaSDhMpGM1XbfTN e6ffeacb80b3fc094b627140a6fdbdfb156235e9a302b256885e66bac93f8d2e @0 (2019)

max spendable ~0.00024104
★ using mutation 'optimize-size'
→ TO undefined: 0.62791 DCR (73ops) (DsfURY9tG8U1u7HBWir9PZCNptxhg2ttZbG on 44'/42'/1'/0/38) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
✔️ transaction 
SEND 0.00014927 DCR
TO DsfURY9tG8U1u7HBWir9PZCNptxhg2ttZbG
with feePerByte=11 (network fees: 0=12, 1=11, 2=10)
OPTIMIZE_SIZE pick-unconfirmed
STATUS (364ms)
TX INPUTS (2):
0.0001       DsU7CB4ae9cWWM4vaauo5DymBbA2w1FjVaS 77838a59bc0bce7c09a50bb51bdc960b31975bc8bc0a345dcfb2fcec4acc754b@0
0.0001       DsTKDwyLG6NDns5dt3A6Fo8gj6864ArW2FD babc4af2ca64e461f6571228fb76ef40a50c763309f2ac2aa4cde00fb3f4434e@0
TX OUTPUTS (1):
0.00014927   DsfURY9tG8U1u7HBWir9PZCNptxhg2ttZbG @0 (0)
  amount: 0.00014927 DCR
  estimated fees: 0.00005073 DCR
  total spent: 0.0002 DCR
errors: 
warnings: feeTooHigh FeeTooHigh
✔️ has been signed! (5.5s) 
✔️ broadcasted! (104ms) optimistic operation: 
  -0.0002 DCR        OUT        4435cd5f436d4a5de976851570fc27c4d7596a4270cac9fa5cb8ecbfda244dfc 2024-06-13T05:34
✔️ operation confirmed (10.6s): 
  -0.0002 DCR        OUT        4435cd5f436d4a5de976851570fc27c4d7596a4270cac9fa5cb8ecbfda244dfc 2024-06-13T05:34
✔️ undefined: 0.0001 DCR (61ops) (DsnYWDCH9ponBt2xBeyZhrsn71mrUHHVkZb on 44'/42'/2'/0/31) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
1 UTXOs
0.0001       DsZ1Q8UtAEgx3SRJi7ETBaSDhMpGM1XbfTN e6ffeacb80b3fc094b627140a6fdbdfb156235e9a302b256885e66bac93f8d2e @0 (2019)
(in 10.6s)
✔️ destination operation 
  +0.00014927 DCR    IN         4435cd5f436d4a5de976851570fc27c4d7596a4270cac9fa5cb8ecbfda244dfc 2024-06-13T05:35
(in 10.5s)

necessary accounts resynced in 0.16ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.363533 DCR (51ops) (DsmUQx7nbZPdGezypQZXePehcw3Bu5HwCH1 on 44'/42'/3'/0/24) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
2 UTXOs
0.279956     Dsa7eqKFPakVhbY2FutifD6TAgYp7DrtwrR (change) 15474eb642def566ba4b20474242656d5db7d1456ba3bf5a5eb88a94b302b13f @1 (2019)
0.083577     DsmyXFokHHE9W1AMqc4nKCbgVqed9dmXnCn ed21d88e7bc01d4c97b80e7a98fff271a9e3c74d28f4ea9b89c13dd7b4e0bb63 @0 (2019)

max spendable ~0.363492
★ using mutation 'send OP_RETURN transaction'
→ TO undefined: 0.628059 DCR (74ops) (DscYyB6agnFTVAZeuDw3mHx8BDgTKGhUNiA on 44'/42'/1'/0/39) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
✔️ transaction 
SEND 0.0001 DCR
TO DscYyB6agnFTVAZeuDw3mHx8BDgTKGhUNiA
with feePerByte=11 (network fees: 0=12, 1=11, 2=10)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (200ms)
TX INPUTS (1):
0.279956     Dsa7eqKFPakVhbY2FutifD6TAgYp7DrtwrR 15474eb642def566ba4b20474242656d5db7d1456ba3bf5a5eb88a94b302b13f@1
TX OUTPUTS (3):
0.0001       DscYyB6agnFTVAZeuDw3mHx8BDgTKGhUNiA @0 (0)
0            @1 (0)
0.279823     DsjdUqxzj8d42Hr9xVwS262dN5roxuPPuC7 (change) @2 (0)
  amount: 0.0001 DCR
  estimated fees: 0.00003256 DCR
  total spent: 0.00013256 DCR
errors: 
warnings: feeTooHigh FeeTooHigh
✔️ has been signed! (8.7s) 
✔️ broadcasted! (77ms) optimistic operation: 
  -0.00013256 DCR    OUT        487f5dd3630514f09f1e3c921decf8414e82a285abe67f18eb9d62bafe1f1ffd 2024-06-13T05:35
✔️ operation confirmed (20.6s): 
  -0.00013256 DCR    OUT        487f5dd3630514f09f1e3c921decf8414e82a285abe67f18eb9d62bafe1f1ffd 2024-06-13T05:35
✔️ undefined: 0.3634 DCR (52ops) (DsmUQx7nbZPdGezypQZXePehcw3Bu5HwCH1 on 44'/42'/3'/0/24) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
2 UTXOs
0.279823     DsjdUqxzj8d42Hr9xVwS262dN5roxuPPuC7 (change) 487f5dd3630514f09f1e3c921decf8414e82a285abe67f18eb9d62bafe1f1ffd @2 (0)
0.083577     DsmyXFokHHE9W1AMqc4nKCbgVqed9dmXnCn ed21d88e7bc01d4c97b80e7a98fff271a9e3c74d28f4ea9b89c13dd7b4e0bb63 @0 (2019)
(in 20.6s)
✔️ destination operation 
  +0.0001 DCR        IN         487f5dd3630514f09f1e3c921decf8414e82a285abe67f18eb9d62bafe1f1ffd 2024-06-13T05:35
(in 10.7s)


Spec cardano (7)

Spec cardano found 7 Cardano accounts. Will use CardanoADA 6.1.2 on nanoSP 1.1.1
undefined: 59.3534 ADA (23ops) (addr1q9kklcauhgmn3qqy0vhl0tneh2qg3cqhhc93a6cj3p0gnz8gyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamqqkykqr on 1852'/1815'/0'/0/7) cardano#0 js:2:cardano:48a07defdc5ada36fba94b85950c6c880f69e1aa6d421726e6d553183ca944320ecbe00d9bfb0aeced28e6b1968946872c4731144f65dfc9e8b0e7a1e3e09d63:cardano
undefined: 0 ADA (13ops) (addr1qy22u3xdkfk5ecf59dhjjc7z2t994q3jsus8k3856rv7kjufrskn7ypejlf3veluvp9s6u6asv5g30zpp8da8ruspxcq4q2c00 on 1852'/1815'/1'/0/2) cardano#1 js:2:cardano:8df239d936f6b05481f4019f5df43c2a06dacb27eb206c57f4368a27bac9ee7cbd82ee51eb8800886c0dc38f1aee6eb019602a4e422719fc2fe1383144957103:cardano
undefined: 0 ADA (18ops) (addr1q8vhqq8xskpfv4utlnwc656k2kyl7pyx2ylz5y26k9gt6s7tc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3qw4f8ee on 1852'/1815'/2'/0/6) cardano#2 js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano
undefined: 0 ADA (7ops) (addr1qx760d530pxu69a35luuvv9ylewxahm9n0agvr2pu2tz0mm39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqn56zvm on 1852'/1815'/3'/0/2) cardano#3 js:2:cardano:1f25a285e568b7e9a252e8a2230c6942ede5509b259f7eabacb3142fc94a9788cf7d5657d0319a1d9c99edd64af866a83ab91f778194757e0795f0da3f206fed:cardano
undefined: 0 ADA (3ops) (addr1q9cs53n4qmmz3xn4m05cfkqka2k5ej7sr3n7gr4z9rr0l2rnw705dqyfukptc3cnnp4wjqqpa3t4f3hm5pzy3pvcsy8sxlwy22 on 1852'/1815'/4'/0/1) cardano#4 js:2:cardano:fcd6e9e7d868432fa838de77306145dc6812424cb6834f5e73ed40a11ecb8f5c44d4184dfcf201c962c00c015cbb909dfdd0693f58b461a243c183e4fd8236b5:cardano
undefined: 41.1558 ADA (2ops) (addr1q88n76g3dx3w0vqtkp5dx8kgdxjrdkk6e79sn7m8aqyv7zgyzpm3l37j0792lql0jdkm4twhd5vzvptccwncksdfazeq5zjf0k on 1852'/1815'/5'/0/1) cardano#5 js:2:cardano:b6acd2a5a89635b75418215e6b153f3c1d6d3597bc767b2458a42b19bb384d49a1493a89a8381c36e64ea4b6ea22f5cd99cac97a0a6653d5d346ceffbbbe99ed:cardano
undefined: 0 ADA (0ops) (addr1q9nue3h5y9ct7j04yzgp828z80n9tvdlmytha0hq6klu9zj5jsy50zjdsvtn930t9rspyvwfr9e4kkagmggflzec8cjq7xqj36 on 1852'/1815'/6'/0/0) cardano#6 js:2:cardano:e0576116d690cadac40fa0c3265e4efceaca261b9ef737f32d35629c299a0147053d9d5ace97f7a602a51e4fe0a3dfb95f88dfe82677f5b0c52c2eb26e1ac87e:cardano
necessary accounts resynced in 0.15ms
▬ CardanoADA 6.1.2 on nanoSP 1.1.1
→ FROM undefined: 59.3534 ADA (23ops) (addr1q9kklcauhgmn3qqy0vhl0tneh2qg3cqhhc93a6cj3p0gnz8gyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamqqkykqr on 1852'/1815'/0'/0/7) cardano#0 js:2:cardano:48a07defdc5ada36fba94b85950c6c880f69e1aa6d421726e6d553183ca944320ecbe00d9bfb0aeced28e6b1968946872c4731144f65dfc9e8b0e7a1e3e09d63:cardano (! sum of ops 51.221601 ADA)
max spendable ~59.182
★ using mutation 'undelegate'
✔️ transaction 
  UNDELEGATE 
STATUS (74ms)
  amount: 0 ADA
  estimated fees: 0.171309 ADA
  total spent: 0.171309 ADA
errors: 
warnings: 
✔️ has been signed! (23s) 
✔️ broadcasted! (273ms) optimistic operation: 
  -0.171309 ADA      UNDELEGATE 43a1888504a58c4bee68be523f3cecc388eea576e518f67e6f51c08bc5d0879a 2024-06-13T05:36
✔️ operation confirmed (2min 10s): 
  -0.171309 ADA      UNDELEGATE 43a1888504a58c4bee68be523f3cecc388eea576e518f67e6f51c08bc5d0879a 2024-06-13T05:36
✔️ undefined: 61.182 ADA (24ops) (addr1q9kklcauhgmn3qqy0vhl0tneh2qg3cqhhc93a6cj3p0gnz8gyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamqqkykqr on 1852'/1815'/0'/0/7) cardano#0 js:2:cardano:48a07defdc5ada36fba94b85950c6c880f69e1aa6d421726e6d553183ca944320ecbe00d9bfb0aeced28e6b1968946872c4731144f65dfc9e8b0e7a1e3e09d63:cardano (! sum of ops 51.050292 ADA)(in 2min 10s)

necessary accounts resynced in 0.25ms
▬ CardanoADA 6.1.2 on nanoSP 1.1.1
→ FROM undefined: 41.1558 ADA (2ops) (addr1q88n76g3dx3w0vqtkp5dx8kgdxjrdkk6e79sn7m8aqyv7zgyzpm3l37j0792lql0jdkm4twhd5vzvptccwncksdfazeq5zjf0k on 1852'/1815'/5'/0/1) cardano#5 js:2:cardano:b6acd2a5a89635b75418215e6b153f3c1d6d3597bc767b2458a42b19bb384d49a1493a89a8381c36e64ea4b6ea22f5cd99cac97a0a6653d5d346ceffbbbe99ed:cardano
max spendable ~40.9906
★ using mutation 'move ~50%'
→ TO undefined: 0 ADA (18ops) (addr1q8vhqq8xskpfv4utlnwc656k2kyl7pyx2ylz5y26k9gt6s7tc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3qw4f8ee on 1852'/1815'/2'/0/6) cardano#2 js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano
✔️ transaction 
  SEND  20.577947 ADA
TO addr1q8vhqq8xskpfv4utlnwc656k2kyl7pyx2ylz5y26k9gt6s7tc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3qw4f8ee
STATUS (136ms)
  amount: 20.577947 ADA
  estimated fees: 0.170913 ADA
  total spent: 20.74886 ADA
errors: 
warnings: 
✔️ has been signed! (18.9s) 
✔️ broadcasted! (268ms) optimistic operation: 
  -20.74886 ADA      OUT        9224c6552eeab6c97ac60e6e8ed5eb1e499a3ebebd189d578a66f31c0815c002 2024-06-13T05:38
✔️ operation confirmed (50.5s): 
  -20.74886 ADA      OUT        9224c6552eeab6c97ac60e6e8ed5eb1e499a3ebebd189d578a66f31c0815c002 2024-06-13T05:38
✔️ undefined: 20.407 ADA (3ops) (addr1q88n76g3dx3w0vqtkp5dx8kgdxjrdkk6e79sn7m8aqyv7zgyzpm3l37j0792lql0jdkm4twhd5vzvptccwncksdfazeq5zjf0k on 1852'/1815'/5'/0/1) cardano#5 js:2:cardano:b6acd2a5a89635b75418215e6b153f3c1d6d3597bc767b2458a42b19bb384d49a1493a89a8381c36e64ea4b6ea22f5cd99cac97a0a6653d5d346ceffbbbe99ed:cardano(in 50.5s)
✔️ destination operation 
  +20.577947 ADA     IN         9224c6552eeab6c97ac60e6e8ed5eb1e499a3ebebd189d578a66f31c0815c002 2024-06-13T05:38
(in 10.4s)


Spec Avalanche C-Chain (10)

Spec Avalanche C-Chain found 10 Avalanche C-Chain accounts (preload: 113ms). Will use Avalanche 0.8.0 on nanoS 2.1.0
undefined: 0.197694 AVAX (47ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:avalanche_c_chain:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0 AVAX (51ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:avalanche_c_chain:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.197119 AVAX (46ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:avalanche_c_chain:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0 AVAX (36ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:avalanche_c_chain:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0.401714 AVAX (32ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:avalanche_c_chain:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0 AVAX (22ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:avalanche_c_chain:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 0.768479 AVAX (4ops) (0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1 on 44'/60'/6'/0/0) #6 js:2:avalanche_c_chain:0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1:
undefined: 0.213583 AVAX (5ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:avalanche_c_chain:0x636462506a431eC48598C1b3FBBc6279860DF70C:
undefined: 1.04727 AVAX (7ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:avalanche_c_chain:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
undefined: 0 AVAX (0ops) (0x0558aBA03367Cb1452AC701557460b00f8452CA8 on 44'/60'/9'/0/0) #9 js:2:avalanche_c_chain:0x0558aBA03367Cb1452AC701557460b00f8452CA8:
necessary accounts resynced in 0.15ms
▬ Avalanche 0.8.0 on nanoS 2.1.0
→ FROM undefined: 0.197694 AVAX (47ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:avalanche_c_chain:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
max spendable ~0.197694
★ using mutation 'move 50%'
→ TO undefined: 1.04727 AVAX (7ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:avalanche_c_chain:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
✔️ transaction 
SEND  0.098847130306627838 AVAX
TO 0x8C63f5be03552E332A8a1e122c58d7b306d81679
STATUS (969ms)
  amount: 0.098847130306627838 AVAX
  estimated fees: 0.000588 AVAX
  total spent: 0.099435130306627838 AVAX
errors: 
warnings: 
⚠️ TransportStatusError: Ledger device: UNKNOWN_ERROR (0x6984)
(totally spent 1147ms – ends at 2024-06-13T06:06:01.899Z)
necessary accounts resynced in 0.15ms
▬ Avalanche 0.8.0 on nanoS 2.1.0
→ FROM undefined: 0.197119 AVAX (46ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:avalanche_c_chain:0x2141e8D44753FC7720C471233740c133D79459fC:
max spendable ~0.197119
★ using mutation 'move 50%'
→ TO undefined: 1.04727 AVAX (7ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:avalanche_c_chain:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
✔️ transaction 
SEND  0.098559662178169838 AVAX
TO 0x8C63f5be03552E332A8a1e122c58d7b306d81679
STATUS (844ms)
  amount: 0.098559662178169838 AVAX
  estimated fees: 0.000588 AVAX
  total spent: 0.099147662178169838 AVAX
errors: 
warnings: 
⚠️ TransportStatusError: Ledger device: UNKNOWN_ERROR (0x6984)
(totally spent 912ms – ends at 2024-06-13T06:06:01.926Z)
necessary accounts resynced in 0.16ms
▬ Avalanche 0.8.0 on nanoS 2.1.0
→ FROM undefined: 0.401714 AVAX (32ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:avalanche_c_chain:0x714908e42B5A11eF11578F243052c9E60f1485e6:
max spendable ~0.401714
★ using mutation 'send max'
→ TO undefined: 0.197694 AVAX (47ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:avalanche_c_chain:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND MAX
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (992ms)
  amount: 0.401126319308853994 AVAX
  estimated fees: 0.000588 AVAX
  total spent: 0.401714319308853994 AVAX
errors: 
warnings: 
⚠️ TransportStatusError: Ledger device: UNKNOWN_ERROR (0x6984)
(totally spent 1103ms – ends at 2024-06-13T06:06:01.935Z)

Spec Binance Smart Chain (10)

Spec Binance Smart Chain found 10 Binance Smart Chain accounts (preload: 166ms). Will use BinanceSmartChain 1.10.4 on nanoS 2.1.0
undefined: 0.00768018 BNB (90ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:bsc:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.00330544 BNB (98ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0 BNB (87ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:bsc:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.00891621 BNB (97ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0 BNB (98ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:bsc:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0.00761718 BNB (75ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:bsc:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 0.0442247 BNB (89ops) (0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1 on 44'/60'/6'/0/0) #6 js:2:bsc:0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1:
undefined: 0.0361197 BNB (66ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
undefined: 0.0113492 BNB (54ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
undefined: 0 BNB (0ops) (0x0558aBA03367Cb1452AC701557460b00f8452CA8 on 44'/60'/9'/0/0) #9 js:2:bsc:0x0558aBA03367Cb1452AC701557460b00f8452CA8:
necessary accounts resynced in 0.11ms
▬ BinanceSmartChain 1.10.4 on nanoS 2.1.0
→ FROM undefined: 0.00768018 BNB (90ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:bsc:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
max spendable ~0.00768018
★ using mutation 'send max'
→ TO undefined: 0.0442247 BNB (89ops) (0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1 on 44'/60'/6'/0/0) #6 js:2:bsc:0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1:
✔️ transaction 
SEND MAX
TO 0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1
STATUS (1053ms)
  amount: 0.007617181644072866 BNB
  estimated fees: 0.000063000000042 BNB
  total spent: 0.007680181644114866 BNB
errors: 
warnings: 
✔️ has been signed! (4.6s) 
✔️ broadcasted! (101ms) optimistic operation: 
  -0.007680181644114866 BNB OUT        0x9c2e1d6d305b07527cf7c9a0761f773c75447e3dcc2033116a4fec1a0d8bf45e 2024-06-13T05:34
✔️ operation confirmed (10.2s): 
  -0.007680181644114866 BNB OUT        0x9c2e1d6d305b07527cf7c9a0761f773c75447e3dcc2033116a4fec1a0d8bf45e 2024-06-13T05:34
✔️ undefined: 0 BNB (91ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:bsc:0x731477De13B323A0cA90C1FE194EA5A0412937c2:(in 10.2s)
✔️ destination operation 
  +0.007617181644072866 BNB IN         0x9c2e1d6d305b07527cf7c9a0761f773c75447e3dcc2033116a4fec1a0d8bf45e 2024-06-13T05:34
(in 10.2s)

necessary accounts resynced in 0.21ms
▬ BinanceSmartChain 1.10.4 on nanoS 2.1.0
→ FROM undefined: 0.00891621 BNB (97ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
max spendable ~0.00891621
★ using mutation 'move 50%'
→ TO undefined: 0.00330544 BNB (98ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
✔️ transaction 
SEND  0.004458109939078398 BNB
TO 0xF4816c59cd8e24eEd9c5570D026C2396336119A0
STATUS (889ms)
  amount: 0.004458109939078398 BNB
  estimated fees: 0.000063000000042 BNB
  total spent: 0.004521109939120398 BNB
errors: 
warnings: 
✔️ has been signed! (4.5s) 
✔️ broadcasted! (98ms) optimistic operation: 
  -0.004521109939120398 BNB OUT        0x6f5212b1e45bb9d9ac9c0a701b9fed1717844f49baf40a609a507bcd843b2d4f 2024-06-13T05:34
✔️ operation confirmed (10.2s): 
  -0.004521109939120398 BNB OUT        0x6f5212b1e45bb9d9ac9c0a701b9fed1717844f49baf40a609a507bcd843b2d4f 2024-06-13T05:34
✔️ undefined: 0.0043951 BNB (98ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:(in 10.2s)
✔️ destination operation 
  +0.004458109939078398 BNB IN         0x6f5212b1e45bb9d9ac9c0a701b9fed1717844f49baf40a609a507bcd843b2d4f 2024-06-13T05:34
(in 10.2s)

necessary accounts resynced in 0.23ms
▬ BinanceSmartChain 1.10.4 on nanoS 2.1.0
→ FROM undefined: 0.00761718 BNB (75ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:bsc:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
max spendable ~0.00761718
★ using mutation 'move 50%'
→ TO undefined: 0 BNB (98ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:bsc:0x714908e42B5A11eF11578F243052c9E60f1485e6:
✔️ transaction 
SEND  0.003808590822036433 BNB
TO 0x714908e42B5A11eF11578F243052c9E60f1485e6
STATUS (899ms)
  amount: 0.003808590822036433 BNB
  estimated fees: 0.000063000000042 BNB
  total spent: 0.003871590822078433 BNB
errors: 
warnings: 
✔️ has been signed! (3.9s) 
✔️ broadcasted! (96ms) optimistic operation: 
  -0.003871590822078433 BNB OUT        0x2257a1a85256f86dc74d1f1868d53b3b4035b023358a8663965bd42dd2b631bf 2024-06-13T05:34
✔️ operation confirmed (10.3s): 
  -0.003871590822078433 BNB OUT        0x2257a1a85256f86dc74d1f1868d53b3b4035b023358a8663965bd42dd2b631bf 2024-06-13T05:34
✔️ undefined: 0.00374559 BNB (76ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:bsc:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:(in 10.3s)
✔️ destination operation 
  +0.003808590822036433 BNB IN         0x2257a1a85256f86dc74d1f1868d53b3b4035b023358a8663965bd42dd2b631bf 2024-06-13T05:34
(in 10.2s)


Spec Cronos (6)

Spec Cronos found 6 Cronos accounts (preload: 53ms). Will use Ethereum 1.10.3 on nanoS 2.1.0
undefined: 0.105 CRO (143ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:cronos:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 1.17124 CRO (183ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:cronos:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 1.37452 CRO (154ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:cronos:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 1.4986 CRO (127ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:cronos:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0.937713 CRO (18ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:cronos:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0 CRO (0ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:cronos:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:

Spec Fantom (6)

Spec Fantom found 6 Fantom accounts (preload: 68ms). Will use Ethereum 1.10.3 on nanoS 2.1.0
undefined: 8.27129 FTM (62ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.0003901 FTM (68ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 3.06877 FTM (68ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 6.13661 FTM (60ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 31.6092 FTM (23ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:fantom:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0 FTM (0ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:fantom:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
necessary accounts resynced in 1.42ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 8.27129 FTM (62ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
max spendable ~8.26921
★ using mutation 'move 50%'
→ TO undefined: 31.6092 FTM (23ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:fantom:0x714908e42B5A11eF11578F243052c9E60f1485e6:
✔️ transaction 
SEND  4.13460624496800282 FTM
TO 0x714908e42B5A11eF11578F243052c9E60f1485e6
STATUS (299ms)
  amount: 4.13460624496800282 FTM
  estimated fees: 0.000826920340218 FTM
  total spent: 4.13543316530822082 FTM
errors: 
warnings: 
✔️ has been signed! (3.2s) 
✔️ broadcasted! (88ms) optimistic operation: 
  -4.13543316530822082 FTM OUT        0xe0bbf9c1406db90809d536dd9fed581c48f9a6d04b6ba59fbd7345afd4f53bd1 2024-06-13T05:36
✔️ operation confirmed (21s): 
  -4.13502792324453282 FTM OUT        0xe0bbf9c1406db90809d536dd9fed581c48f9a6d04b6ba59fbd7345afd4f53bd1 2024-06-13T05:36
✔️ undefined: 4.13627 FTM (63ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:(in 21s)
✔️ destination operation 
  +4.13460624496800282 FTM IN         0xe0bbf9c1406db90809d536dd9fed581c48f9a6d04b6ba59fbd7345afd4f53bd1 2024-06-13T05:36
(in 21s)

necessary accounts resynced in 3.00ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 3.06877 FTM (68ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:
max spendable ~3.06668
★ using mutation 'send max'
→ TO undefined: 0.0003901 FTM (68ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
✔️ transaction 
SEND MAX
TO 0xF4816c59cd8e24eEd9c5570D026C2396336119A0
STATUS (479ms)
  amount: 3.067946913614791 FTM
  estimated fees: 0.000826214813802 FTM
  total spent: 3.068773128428593 FTM
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (170ms) optimistic operation: 
  -3.068773128428593 FTM OUT        0x6b824d3945b06d45d32df14ccb1de95921006057fa32b7f690d30d4a485ba75c 2024-06-13T05:37
✔️ operation confirmed (16s): 
  -3.068367886364905 FTM OUT        0x6b824d3945b06d45d32df14ccb1de95921006057fa32b7f690d30d4a485ba75c 2024-06-13T05:37
✔️ undefined: 0.00040524 FTM (69ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:(in 16s)
✔️ destination operation 
  +3.067946913614791 FTM IN         0x6b824d3945b06d45d32df14ccb1de95921006057fa32b7f690d30d4a485ba75c 2024-06-13T05:37
(in 21s)

necessary accounts resynced in 0.27ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 6.13661 FTM (60ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
max spendable ~6.13453
★ using mutation 'move 50%'
→ TO undefined: 35.7438 FTM (24ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:fantom:0x714908e42B5A11eF11578F243052c9E60f1485e6:
✔️ transaction 
SEND  3.0672664505195175 FTM
TO 0x714908e42B5A11eF11578F243052c9E60f1485e6
STATUS (319ms)
  amount: 3.0672664505195175 FTM
  estimated fees: 0.000825591956742 FTM
  total spent: 3.0680920424762595 FTM
errors: 
warnings: 
✔️ has been signed! (3.9s) 
✔️ broadcasted! (172ms) optimistic operation: 
  -3.0680920424762595 FTM OUT        0xfe4443a8124d6609e5e6731bae4b3297a493ce11f72c86c6424ae927539e14e7 2024-06-13T05:37
✔️ operation confirmed (21s): 
  -3.0676868004125715 FTM OUT        0xfe4443a8124d6609e5e6731bae4b3297a493ce11f72c86c6424ae927539e14e7 2024-06-13T05:37
✔️ undefined: 3.06892 FTM (61ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:(in 21s)
✔️ destination operation 
  +3.0672664505195175 FTM IN         0xfe4443a8124d6609e5e6731bae4b3297a493ce11f72c86c6424ae927539e14e7 2024-06-13T05:37
(in 21s)


Spec Boba (failed)

Spec Boba found 1 Boba accounts (preload: 28ms). Will use Ethereum 1.10.3 on nanoS 2.1.0
undefined: 0 ETH (0ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:boba:0x731477De13B323A0cA90C1FE194EA5A0412937c2:

This SEED does not have Boba. Please send funds to 0x731477De13B323A0cA90C1FE194EA5A0412937c2

Spec Telos (failed)


Spec Polygon zkEVM (3)

Spec Polygon zkEVM found 5 Polygon zkEVM accounts (preload: 41ms). Will use Ethereum 1.10.3 on nanoS 2.1.0
undefined: 0.00357378 ETH (63ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.00119318 ETH (60ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.0142784 ETH (60ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.00000101 ETH (45ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0 ETH (0ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:polygon_zk_evm:0x714908e42B5A11eF11578F243052c9E60f1485e6:
necessary accounts resynced in 0.14ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00357378 ETH (63ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2: (! sum of ops 0.003516469579691438 ETH)
max spendable ~0.00357378
★ using mutation 'move 50%'
→ TO undefined: 0.0142784 ETH (60ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
✔️ transaction 
SEND  0.001786891627744219 ETH
TO 0x2141e8D44753FC7720C471233740c133D79459fC
STATUS (304ms)
  amount: 0.001786891627744219 ETH
  estimated fees: 0.000003696 ETH
  total spent: 0.001790587627744219 ETH
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (147ms) optimistic operation: 
  -0.001790587627744219 ETH OUT        0xcdf9524e5d9350538cc48dfb48b8c9430050eb8cd54e2ccbfb2e2ac87a9e573c 2024-06-13T05:35
(in 10min 1s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "1783195627744219"
Received: "1784422815244219"
(totally spent 10min 4s – ends at 2024-06-13T06:06:02.090Z)
necessary accounts resynced in 5.9s
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00119318 ETH (60ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0: (! sum of ops 0.000965458910519312 ETH)
max spendable ~0.00119318
★ using mutation 'move 50%'
→ TO undefined: 0.00000101 ETH (45ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
✔️ transaction 
SEND  0.000596592193556656 ETH
TO 0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd
STATUS (272ms)
  amount: 0.000596592193556656 ETH
  estimated fees: 0.000003507 ETH
  total spent: 0.000600099193556656 ETH
errors: 
warnings: 
✔️ has been signed! (3.6s) 
✔️ broadcasted! (134ms) optimistic operation: 
  -0.000600099193556656 ETH OUT        0x3959479081651d5c047c6d1c739d83545406d6ae6972c9f5ea657a998bbe3746 2024-06-13T05:45
(in 10min 1s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "593085193556656"
Received: "594249627155656"
(totally spent 10min 5s – ends at 2024-06-13T06:06:02.104Z)
necessary accounts resynced in 5.9s
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00178442 ETH (64ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2: (! sum of ops 0.001725881951947219 ETH)
max spendable ~0.00178442
★ using mutation 'send max'
→ TO undefined: 0.00059424 ETH (61ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
✔️ transaction 
SEND MAX
TO 0xF4816c59cd8e24eEd9c5570D026C2396336119A0
STATUS (409ms)
  amount: 0.001781209815244219 ETH
  estimated fees: 0.000003213 ETH
  total spent: 0.001784422815244219 ETH
errors: 
warnings: 
✔️ has been signed! (3.2s) 
✔️ broadcasted! (149ms) optimistic operation: 
  -0.001784422815244219 ETH OUT        0x05f75533eb3fa34445bb270e5aca501a4cfbc10f97563ea0d7a1bf57a35819a4 2024-06-13T05:55
(in 10min 1s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "0"
Received: "1054265625000"
(totally spent 10min 5s – ends at 2024-06-13T06:06:02.107Z)

Spec Polkadot (failed)


Details of the 36 uncovered mutations

Spec axelar (2)

  • redelegate: balance is too low for redelegate (6), none can redelegate (4)
  • claim rewards: balance is too low for claim rewards (6), no delegation to claim (4)

Spec cosmos (3)

  • undelegate: balance is too low (6), already enough delegations (3)
  • redelegate: balance is too low for redelegate (7), none can redelegate (2)
  • claim rewards: balance is too low for claim rewards (6), no delegation to claim (3)

Spec secret_network (6)

  • send some:
  • send max:
  • delegate new validators:
  • undelegate:
  • redelegate:
  • claim rewards:

Spec Filecoin (1)

  • Send small to f4 address: balance is too low (10)

Spec Qtum (2)

  • optimize-size: balance is too low (3)
  • send max: balance is too low (3)

Spec Decred (1)

  • move ~50%: balance is too low (1)

Spec cardano (4)

  • move ~10% token: balance is too low (5)
  • send max: balance is too low (5)
  • delegate to pool: balance is too low (5)
  • redelegate to pool: balance is too low (5)

Spec Binance Smart Chain (1)

  • move some ERC20 like (ERC20, BEP20, etc...): bsc balance is too low (4), no erc20 account (3)

Spec Cronos (3)

  • move 50%: cronos balance is too low (6)
  • send max: cronos balance is too low (6)
  • move some ERC20 like (ERC20, BEP20, etc...): cronos balance is too low (6)

Spec Fantom (1)

  • move some ERC20 like (ERC20, BEP20, etc...): fantom balance is too low (2), no erc20 account (1)

Spec Boba (3)

  • move 50%:
  • send max:
  • move some ERC20 like (ERC20, BEP20, etc...):

Spec Telos (2)

  • move 50%:
  • send max:

Spec Polkadot (7)

  • send 50%~:
  • send max:
  • bond - bondExtra:
  • unbond:
  • rebond:
  • nominate:
  • withdraw:
Portfolio ($457.81) – Details of the 16 currencies
Spec (accounts) State Remaining Runs (est) funds?
axelar (15) 82 ops , 17.3177 AXL ($13.07) 👍 182 axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g
cosmos (13) 257 ops (+7), 10.0617 ATOM ($77.36) 👍 206 cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf
secret_network (0) 0 ops , 🤷‍♂️ ``
Filecoin (13) 126 ops , 1.41558 FIL ($7.70) 💪 999+ f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq
Tron (8) 262 ops (+9), 539.4 TRX ($86.98) 💪 999+ TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1
Qtum (6) 297 ops (+6), 2.62171 QTUM ($7.95) 👍 207 MKd4r9A8L4RQguAmTG9hVYTNVXBCPWjfCy
Decred (5) 254 ops (+8), 1.28551 DCR ($23.24) 💪 999+ DsSTAgeTxj9YBAP4eGXto1MENbP4poeF2Wt
cardano (7) 69 ops (+3), 100.509 ADA ($44.14) 👍 93 addr1q9kklcauhgmn3qqy0vhl0tneh2qg3cqhhc93a6cj3p0gnz8gyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamqqkykqr
Avalanche C-Chain (10) 250 ops , 2.82586 AVAX ($91.98) 💪 553 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Binance Smart Chain (10) 760 ops (+6), 0.119212 BNB ($72.55) 👍 81 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Cronos (6) 625 ops , 5.08708 CRO ($0.55) ⚠️ 11 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Fantom (6) 287 ops (+6), 49.0863 FTM ($32.29) 💪 999+ 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Boba (1) 0 ops , 0 ETH ($0.00) 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Telos (0) 0 ops , 🤷‍♂️ ``
Polygon zkEVM (5) 232 ops (+4), 0.0190464 ETH ($0.00) 👍 214 0x2141e8D44753FC7720C471233740c133D79459fC
Polkadot (0) 0 ops , 🤷‍♂️ ``
undefined: 1.14567 AXL (3ops) (axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g on 44'/118'/0'/0/0) #0 js:2:axelar:axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g:
undefined: 1.43287 AXL (8ops) (axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64 on 44'/118'/1'/0/0) #1 js:2:axelar:axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64:
undefined: 0.567504 AXL (5ops) (axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha:
undefined: 0.009551 AXL (9ops) (axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5:
undefined: 0.01014 AXL (3ops) (axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f on 44'/118'/4'/0/0) #4 js:2:axelar:axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f:
undefined: 5.27732 AXL (14ops) (axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx on 44'/118'/5'/0/0) #5 js:2:axelar:axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx:
undefined: 0 AXL (3ops) (axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa on 44'/118'/6'/0/0) #6 js:2:axelar:axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa:
undefined: 0.049973 AXL (5ops) (axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8 on 44'/118'/7'/0/0) #7 js:2:axelar:axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8:
undefined: 1.6083 AXL (6ops) (axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z on 44'/118'/8'/0/0) #8 js:2:axelar:axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z:
undefined: 0 AXL (11ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84:
undefined: 0.012971 AXL (2ops) (axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37 on 44'/118'/10'/0/0) #10 js:2:axelar:axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37:
undefined: 0.701378 AXL (6ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu:
undefined: 0.650106 AXL (4ops) (axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll on 44'/118'/12'/0/0) #12 js:2:axelar:axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll:
undefined: 5.87864 AXL (3ops) (axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35 on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35:
undefined: 0 AXL (0ops) (axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk on 44'/118'/14'/0/0) #14 js:2:axelar:axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk:
undefined: 3.1837 ATOM (35ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf:
undefined: 0.003896 ATOM (31ops) (cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935 on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935:
undefined: 0.023156 ATOM (28ops) (cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu:
undefined: 0.861373 ATOM (45ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4:
undefined: 0.002476 ATOM (19ops) (cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg:
undefined: 0.004739 ATOM (40ops) (cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8 on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8:
undefined: 0.571232 ATOM (18ops) (cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu on 44'/118'/6'/0/0) #6 js:2:cosmos:cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu:
undefined: 0.052847 ATOM (25ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x:
undefined: 2.07193 ATOM (8ops) (cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r:
undefined: 0.034516 ATOM (4ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5:
undefined: 0.014837 ATOM (2ops) (cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l on 44'/118'/10'/0/0) #10 js:2:cosmos:cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l:
undefined: 3.30261 ATOM (2ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca:
undefined: 0 ATOM (0ops) (cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57 on 44'/118'/12'/0/0) #12 js:2:cosmos:cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57:
undefined [bip44]: 0.616356 FIL (25ops) (f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq on 44'/461'/1'/0/0) filecoinBIP44#1 js:2:filecoin:f1a57ukatezm5aiuahhdrip3eyf7hzoj73u3ieyrq:filecoinBIP44
undefined [bip44]: 0 FIL (20ops) (f12zihhoc242uejpqswezsm4c7a2n2d3nqygvyeqi on 44'/461'/2'/0/0) filecoinBIP44#2 js:2:filecoin:f12zihhoc242uejpqswezsm4c7a2n2d3nqygvyeqi:filecoinBIP44
undefined [bip44]: 0.618741 FIL (15ops) (f1fuauxwtdo23jotlxu3cueskwbzoecdcz4ltkozq on 44'/461'/3'/0/0) filecoinBIP44#3 js:2:filecoin:f1fuauxwtdo23jotlxu3cueskwbzoecdcz4ltkozq:filecoinBIP44
undefined [bip44]: 0.180483 FIL (18ops) (f14ggrsuc7i5q2yj5tcqlcuyy3fneiapyywnwcw2q on 44'/461'/4'/0/0) filecoinBIP44#4 js:2:filecoin:f14ggrsuc7i5q2yj5tcqlcuyy3fneiapyywnwcw2q:filecoinBIP44
undefined [bip44]: 0 FIL (18ops) (f1boo3wjm5yjpvkbi4s3k2rykpvmf235ivkbj3kbq on 44'/461'/5'/0/0) filecoinBIP44#5 js:2:filecoin:f1boo3wjm5yjpvkbi4s3k2rykpvmf235ivkbj3kbq:filecoinBIP44
undefined [bip44]: 0 FIL (6ops) (f1bw4zwsefo5rwk3t536tq6wlgdhivrt5ucmdttji on 44'/461'/6'/0/0) filecoinBIP44#6 js:2:filecoin:f1bw4zwsefo5rwk3t536tq6wlgdhivrt5ucmdttji:filecoinBIP44
undefined [third-party]: 0 FIL (24ops) (f1oqqfytyqkxiuu4k7qtsjurmyfddjfsvpvr7dv7y on 44'/461'/0'/0/0) glif#0 js:2:filecoin:f1oqqfytyqkxiuu4k7qtsjurmyfddjfsvpvr7dv7y:glif
undefined [third-party]: 0 FIL (0ops) (f17ag6fgxl3nnooho4vhthp634njria2dyhwzlg2i on 44'/461'/0'/0/1) glif#1 js:2:filecoin:f17ag6fgxl3nnooho4vhthp634njria2dyhwzlg2i:glif
undefined [third-party]: 0 FIL (0ops) (f1j424bboftp37f7hhy3rybhi24at6lnlhcs6tapy on 44'/461'/0'/0/2) glif#2 js:2:filecoin:f1j424bboftp37f7hhy3rybhi24at6lnlhcs6tapy:glif
undefined [third-party]: 0 FIL (0ops) (f142x56fmpwbtrllzpgqaeicdzye27yrftomuzmva on 44'/461'/0'/0/3) glif#3 js:2:filecoin:f142x56fmpwbtrllzpgqaeicdzye27yrftomuzmva:glif
undefined [third-party]: 0 FIL (0ops) (f1iuq2mwan24jpiwwt3smsnsz4kcgvua2dbsjsnmi on 44'/461'/0'/0/4) glif#4 js:2:filecoin:f1iuq2mwan24jpiwwt3smsnsz4kcgvua2dbsjsnmi:glif
undefined [third-party]: 0 FIL (0ops) (f13psrixi44a5b4kvpxhj4xu7efxns5zpwpedrdpi on 44'/461'/0'/0/5) glif#5 js:2:filecoin:f13psrixi44a5b4kvpxhj4xu7efxns5zpwpedrdpi:glif
undefined [third-party]: 0 FIL (0ops) (f17cwsrt44zvzwwdxjrwautrkbdzoakayizpdyoay on 44'/461'/0'/0/6) glif#6 js:2:filecoin:f17cwsrt44zvzwwdxjrwautrkbdzoakayizpdyoay:glif
undefined: 279.219 TRX (53ops) (TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1 on 44'/195'/0'/0/0) #0 js:2:tron:TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1:
undefined: 30 TRX (66ops) (TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L on 44'/195'/1'/0/0) #1 js:2:tron:TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L:
undefined: 174 TRX (69ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:
undefined: 10.5854 TRX (37ops) (TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN on 44'/195'/3'/0/0) #3 js:2:tron:TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN:
undefined: 118.505 TRX (24ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
undefined: 11.5854 TRX (8ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:
undefined: 119.505 TRX (5ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
undefined: 0 TRX (0ops) (TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1 on 44'/195'/7'/0/0) #7 js:2:tron:TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1:
undefined [segwit]: 1.1843 QTUM (81ops) (MKd4r9A8L4RQguAmTG9hVYTNVXBCPWjfCy on 49'/88'/0'/0/41) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
undefined [segwit]: 0.0156685 QTUM (73ops) (MGFShUKsBKDSfYnqSrnt97aGDiRYGXLCHo on 49'/88'/1'/0/36) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
undefined [segwit]: 0 QTUM (0ops) (MR3A49zXnWaH7Vhm7YKeiaREazdKZxie6r on 49'/88'/2'/0/0) segwit#2 js:2:qtum:xpub6BvfSTHRWubyX78dqB3tVcgps5JtUKukFsbkwrxQhEvBr2UmTUjNEdcZRvmBb6PczEcKUrnVvQvQ2BafHcw1wBkqbVLzNyEN912tNDDd8M9:segwit
undefined [legacy]: 0.0135298 QTUM (78ops) (QLvZJwpShs7YR18fAN83ddwhxaYddiphmU on 44'/88'/0'/0/41) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
undefined [legacy]: 1.40212 QTUM (65ops) (QfqNZrCfMSoZms6Dj2t7BVD2nSxn63eaMW on 44'/88'/1'/0/30) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
undefined [legacy]: 0 QTUM (0ops) (QXwMM27e61jr6M9TBrEfWiab9j7RPdRB5L on 44'/88'/2'/0/0) #2 js:2:qtum:xpub6DA2jGUBMLR6Nxr6vXgCpqQCa5xbmtGAsPuDpqkQSqH8WwwgHVfBhyYS3vEmEUqUjXHV5WU1zRLF8dhFfDjaonsgn687DWbbdA4kX9gg1UZ:
undefined: 0.293684 DCR (66ops) (DsSTAgeTxj9YBAP4eGXto1MENbP4poeF2Wt on 44'/42'/0'/0/32) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
undefined: 0.628159 DCR (75ops) (Dsdr7syBDL1iHQde4h8sm7A6DmeqDBohhLE on 44'/42'/1'/0/40) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
undefined: 0.0001 DCR (61ops) (DsnYWDCH9ponBt2xBeyZhrsn71mrUHHVkZb on 44'/42'/2'/0/31) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
undefined: 0.3634 DCR (52ops) (DsmUQx7nbZPdGezypQZXePehcw3Bu5HwCH1 on 44'/42'/3'/0/24) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
undefined: 0 DCR (0ops) (DskCZ4d3mZkXwLxAEjx2sEM121SFimdgvSv on 44'/42'/4'/0/0) #4 js:2:decred:dpubZEswmUQs2uoMffXvbjYzmFKAA8qiVoRpBd8QwvJKFgG4HaLsEf3yq9JdFJHzvmMqTKUybT8NPDs16zti7N3ehBSQmxZQB76h8MsWKLZDFAX:
undefined: 61.182 ADA (24ops) (addr1q9kklcauhgmn3qqy0vhl0tneh2qg3cqhhc93a6cj3p0gnz8gyf2nkgrrlvjz49cn9cqr4el6y74l85d0z3jfj75gmamqqkykqr on 1852'/1815'/0'/0/7) cardano#0 js:2:cardano:48a07defdc5ada36fba94b85950c6c880f69e1aa6d421726e6d553183ca944320ecbe00d9bfb0aeced28e6b1968946872c4731144f65dfc9e8b0e7a1e3e09d63:cardano
undefined: 0 ADA (13ops) (addr1qy22u3xdkfk5ecf59dhjjc7z2t994q3jsus8k3856rv7kjufrskn7ypejlf3veluvp9s6u6asv5g30zpp8da8ruspxcq4q2c00 on 1852'/1815'/1'/0/2) cardano#1 js:2:cardano:8df239d936f6b05481f4019f5df43c2a06dacb27eb206c57f4368a27bac9ee7cbd82ee51eb8800886c0dc38f1aee6eb019602a4e422719fc2fe1383144957103:cardano
undefined: 20.5779 ADA (19ops) (addr1q8jr0lg8nzwa2zg9f4g4jjcl8kxfv9lx07flju4gth0vkgwtc30l4fqzh779m3zzng9wvt7hslxk8nlzuayzmq30wr3qg98ftl on 1852'/1815'/2'/0/7) cardano#2 js:2:cardano:063fce040e4d37e55e6fdfcf3297b7a9ae972cdf1f5171450e261c31d0842df1809375a1dde24858b3c9b2c0cf5f004543cd25d1999a13f3d4a0368b82f65e78:cardano
undefined: 0 ADA (7ops) (addr1qx760d530pxu69a35luuvv9ylewxahm9n0agvr2pu2tz0mm39pcanj7trg6svak6a87advvu2t4gswp33cweu3n43jcqn56zvm on 1852'/1815'/3'/0/2) cardano#3 js:2:cardano:1f25a285e568b7e9a252e8a2230c6942ede5509b259f7eabacb3142fc94a9788cf7d5657d0319a1d9c99edd64af866a83ab91f778194757e0795f0da3f206fed:cardano
undefined: 0 ADA (3ops) (addr1q9cs53n4qmmz3xn4m05cfkqka2k5ej7sr3n7gr4z9rr0l2rnw705dqyfukptc3cnnp4wjqqpa3t4f3hm5pzy3pvcsy8sxlwy22 on 1852'/1815'/4'/0/1) cardano#4 js:2:cardano:fcd6e9e7d868432fa838de77306145dc6812424cb6834f5e73ed40a11ecb8f5c44d4184dfcf201c962c00c015cbb909dfdd0693f58b461a243c183e4fd8236b5:cardano
undefined: 20.407 ADA (3ops) (addr1q88n76g3dx3w0vqtkp5dx8kgdxjrdkk6e79sn7m8aqyv7zgyzpm3l37j0792lql0jdkm4twhd5vzvptccwncksdfazeq5zjf0k on 1852'/1815'/5'/0/1) cardano#5 js:2:cardano:b6acd2a5a89635b75418215e6b153f3c1d6d3597bc767b2458a42b19bb384d49a1493a89a8381c36e64ea4b6ea22f5cd99cac97a0a6653d5d346ceffbbbe99ed:cardano
undefined: 0 ADA (0ops) (addr1q9nue3h5y9ct7j04yzgp828z80n9tvdlmytha0hq6klu9zj5jsy50zjdsvtn930t9rspyvwfr9e4kkagmggflzec8cjq7xqj36 on 1852'/1815'/6'/0/0) cardano#6 js:2:cardano:e0576116d690cadac40fa0c3265e4efceaca261b9ef737f32d35629c299a0147053d9d5ace97f7a602a51e4fe0a3dfb95f88dfe82677f5b0c52c2eb26e1ac87e:cardano
undefined: 0.197694 AVAX (47ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:avalanche_c_chain:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0 AVAX (51ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:avalanche_c_chain:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.197119 AVAX (46ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:avalanche_c_chain:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0 AVAX (36ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:avalanche_c_chain:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0.401714 AVAX (32ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:avalanche_c_chain:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0 AVAX (22ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:avalanche_c_chain:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 0.768479 AVAX (4ops) (0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1 on 44'/60'/6'/0/0) #6 js:2:avalanche_c_chain:0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1:
undefined: 0.213583 AVAX (5ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:avalanche_c_chain:0x636462506a431eC48598C1b3FBBc6279860DF70C:
undefined: 1.04727 AVAX (7ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:avalanche_c_chain:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
undefined: 0 AVAX (0ops) (0x0558aBA03367Cb1452AC701557460b00f8452CA8 on 44'/60'/9'/0/0) #9 js:2:avalanche_c_chain:0x0558aBA03367Cb1452AC701557460b00f8452CA8:
undefined: 0 BNB (91ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:bsc:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.00776355 BNB (99ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0 BNB (87ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:bsc:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.0043951 BNB (98ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0.00380859 BNB (99ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:bsc:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0.00374559 BNB (76ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:bsc:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 0.0518418 BNB (90ops) (0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1 on 44'/60'/6'/0/0) #6 js:2:bsc:0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1:
undefined: 0.0361197 BNB (66ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
undefined: 0.0113492 BNB (54ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
undefined: 0 BNB (0ops) (0x0558aBA03367Cb1452AC701557460b00f8452CA8 on 44'/60'/9'/0/0) #9 js:2:bsc:0x0558aBA03367Cb1452AC701557460b00f8452CA8:
undefined: 0.105 CRO (143ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:cronos:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 1.17124 CRO (183ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:cronos:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 1.37452 CRO (154ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:cronos:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 1.4986 CRO (127ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:cronos:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0.937713 CRO (18ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:cronos:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0 CRO (0ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:cronos:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 4.13627 FTM (63ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 3.06833 FTM (69ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.00040524 FTM (69ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 3.06892 FTM (61ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 38.8111 FTM (25ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:fantom:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0 FTM (0ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:fantom:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 0 ETH (0ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:boba:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.0160653 ETH (61ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.0005976 ETH (46ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0.00178442 ETH (64ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.00059424 ETH (61ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0 ETH (0ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:polygon_zk_evm:0x714908e42B5A11eF11578F243052c9E60f1485e6:
Performance ⏲ 32min 32s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 52.1s 8min 56s 12s 19.4s 2min 51s 8.5s 7min 29s 4min 23s
axelar (14) 339ms 25.4s 22ms 2278ms 25.4s 563ms 2.04ms N/A
cosmos (12) 228ms 25.4s 20ms 2950ms 16.3s 4.8s 62.1s 51.7s
secret_network (0) N/A N/A N/A N/A N/A N/A N/A N/A
Filecoin (7) 0.27ms 36.9s 2.76ms 1483ms N/A N/A N/A N/A
Tron (7) 44.1s 15.3s 14ms 3.1s 9.9s 444ms 33.5s 33.5s
Qtum (4) 0.32ms 14.1s 7ms 444ms 18s 643ms 31.1s 31.2s
Decred (4) 0.32ms 15.1s 9ms 1198ms 26.1s 350ms 52.3s 42.4s
cardano (6) 0.38ms 2min 7s 21ms 211ms 41.9s 541ms 3min 1s 10.4s
Avalanche C-Chain (9) 113ms 15.3s 12ms 2804ms N/A N/A N/A N/A
Binance Smart Chain (9) 166ms 17.6s 7ms 2841ms 13s 295ms 30.7s 30.6s
Cronos (5) 53ms 2min 20s 1.50ms N/A N/A N/A N/A N/A
Fantom (5) 68ms 92.4s 18ms 1096ms 10.4s 430ms 58s 63.1s
Boba (0) 28ms 2777ms N/A N/A N/A N/A N/A N/A
Telos (0) 37ms N/A N/A N/A N/A N/A N/A N/A
Polygon zkEVM (4) 41ms 8.9s 11.8s 986ms 9.9s 430ms N/A N/A
Polkadot (0) 7s N/A N/A N/A N/A N/A N/A N/A

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

Please sign in to comment.