Skip to content

Commit

Permalink
[Coin Fmk] Simplify use of SignerContext (#6844)
Browse files Browse the repository at this point in the history
* feat: simplify SignerContext generic signature

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

* chore: changeset

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

* chore: missing Algorand optimisation

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

* fix: lint issue

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

---------

Signed-off-by: Stéphane Prohaszka <[email protected]>
  • Loading branch information
sprohaszka-ledger committed May 13, 2024
1 parent 9c9af22 commit f19960f
Show file tree
Hide file tree
Showing 24 changed files with 92 additions and 141 deletions.
11 changes: 11 additions & 0 deletions .changeset/old-snakes-hide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
"@ledgerhq/coin-framework": minor
"@ledgerhq/coin-algorand": patch
"@ledgerhq/coin-polkadot": patch
"@ledgerhq/coin-solana": patch
"@ledgerhq/coin-near": patch
"@ledgerhq/coin-evm": patch
"@ledgerhq/live-common": patch
---

Simplify SignerContext generic signature
2 changes: 1 addition & 1 deletion libs/coin-framework/src/signer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
// The transport is passed to the method provided and then closed.
// So we can't keep an instance depending on the transport, as it will usefull outside of the `job`.
export type PassthroughFn<T, U> = (signer: T) => Promise<U>;
export type SignerContext<T, U> = (deviceId: string, fn: PassthroughFn<T, U>) => Promise<U>;
export type SignerContext<T> = <U>(deviceId: string, fn: PassthroughFn<T, U>) => Promise<U>;
12 changes: 4 additions & 8 deletions libs/coin-modules/coin-algorand/src/bridge/js.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,9 @@ import {
toOperationExtraRaw,
} from "../serialization";
import type { Transaction } from "../types";
import { AlgorandAddress, AlgorandSignature, AlgorandSigner } from "../signer";
import { AlgorandSigner } from "../signer";

export function buildCurrencyBridge(
signerContext: SignerContext<AlgorandSigner, AlgorandAddress | AlgorandSignature>,
): CurrencyBridge {
export function buildCurrencyBridge(signerContext: SignerContext<AlgorandSigner>): CurrencyBridge {
const getAddress = resolver(signerContext);

const scanAccounts = makeScanAccounts({
Expand All @@ -44,7 +42,7 @@ export function buildCurrencyBridge(
}

export function buildAccountBridge(
signerContext: SignerContext<AlgorandSigner, AlgorandAddress | AlgorandSignature>,
signerContext: SignerContext<AlgorandSigner>,
): AccountBridge<Transaction> {
const getAddress = resolver(signerContext);

Expand All @@ -70,9 +68,7 @@ export function buildAccountBridge(
};
}

export function createBridges(
signerContext: SignerContext<AlgorandSigner, AlgorandAddress | AlgorandSignature>,
) {
export function createBridges(signerContext: SignerContext<AlgorandSigner>) {
return {
currencyBridge: buildCurrencyBridge(signerContext),
accountBridge: buildAccountBridge(signerContext),
Expand Down
10 changes: 3 additions & 7 deletions libs/coin-modules/coin-algorand/src/hw-getAddress.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
import { GetAddressFn } from "@ledgerhq/coin-framework/bridge/getAddressWrapper";
import { SignerContext } from "@ledgerhq/coin-framework/signer";
import { GetAddressOptions } from "@ledgerhq/coin-framework/derivation";
import { AlgorandAddress, AlgorandSignature, AlgorandSigner } from "./signer";
import { AlgorandSigner } from "./signer";

const resolver = (
signerContext: SignerContext<AlgorandSigner, AlgorandAddress | AlgorandSignature>,
): GetAddressFn => {
const resolver = (signerContext: SignerContext<AlgorandSigner>): GetAddressFn => {
return async (deviceId: string, { path, verify }: GetAddressOptions) => {
const r = (await signerContext(deviceId, signer =>
signer.getAddress(path, verify || false),
)) as AlgorandAddress;
const r = await signerContext(deviceId, signer => signer.getAddress(path, verify || false));
return {
address: r.address,
publicKey: r.publicKey,
Expand Down
10 changes: 4 additions & 6 deletions libs/coin-modules/coin-algorand/src/js-signOperation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,15 @@ import { SignerContext } from "@ledgerhq/coin-framework/signer";
import { BigNumber } from "bignumber.js";
import { Observable } from "rxjs";
import { buildTransactionPayload, encodeToBroadcast, encodeToSign } from "./buildTransaction";
import type { AlgorandAddress, AlgorandSignature, AlgorandSigner } from "./signer";
import type { AlgorandSigner } from "./signer";
import type { Transaction, AlgorandOperation } from "./types";
import { encodeOperationId } from "@ledgerhq/coin-framework/operation";

/**
* Sign Transaction with Ledger hardware
*/
export const buildSignOperation =
(
signerContext: SignerContext<AlgorandSigner, AlgorandAddress | AlgorandSignature>,
): SignOperationFnSignature<Transaction> =>
(signerContext: SignerContext<AlgorandSigner>): SignOperationFnSignature<Transaction> =>
({
account,
transaction,
Expand All @@ -45,9 +43,9 @@ export const buildSignOperation =

o.next({ type: "device-signature-requested" });

const { signature } = (await signerContext(deviceId, signer =>
const { signature } = await signerContext(deviceId, signer =>
signer.sign(freshAddressPath, toSign),
)) as AlgorandSignature;
);

if (cancelled) return;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import eip55 from "eip55";
import { getCryptoCurrencyById } from "@ledgerhq/cryptoassets/currencies";
import type { EvmAddress, EvmSignature, EvmSigner } from "../../types/signer";
import type { EvmSigner } from "../../types/signer";
import resolver from "../../hw-getAddress";

const address = "0xc3f95102D5c8F2c83e49Ce3Acfb905eDfb7f37dE";
Expand All @@ -10,10 +10,7 @@ const spy = jest.fn().mockImplementation(async () =>
address: address.toLowerCase(),
}),
);
const mockSignerFactory = (
_: string,
fn: (signer: EvmSigner) => Promise<EvmAddress | EvmSignature>,
): Promise<EvmAddress | EvmSignature> =>
const mockSignerFactory = <T>(_: string, fn: (signer: EvmSigner) => Promise<T>): Promise<T> =>
fn({
getAddress: spy,
} as any);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Account } from "@ledgerhq/types-live";
import { CryptoCurrency } from "@ledgerhq/types-cryptoassets";
import { SignerContext } from "@ledgerhq/coin-framework/signer";
import { getCryptoCurrencyById, listCryptoCurrencies } from "@ledgerhq/cryptoassets";
import type { EvmAddress, EvmSignature, EvmSigner } from "../../types/signer";
import type { EvmSigner } from "../../types/signer";
import { buildSignOperation, applyEIP155 } from "../../signOperation";
import { Transaction as EvmTransaction } from "../../types";
import { makeAccount } from "../fixtures/common.fixtures";
Expand Down Expand Up @@ -44,9 +44,9 @@ const transactionEIP1559: EvmTransaction = {

const estimatedFees = getEstimatedFees(transactionEIP1559);

const mockSignerContext: SignerContext<EvmSigner, EvmAddress | EvmSignature> = (
const mockSignerContext: SignerContext<EvmSigner> = <T>(
_: string,
fn: (signer: EvmSigner) => Promise<EvmAddress | EvmSignature>,
fn: (signer: EvmSigner) => Promise<T>,
) => {
return fn({
setLoadConfig: jest.fn(),
Expand Down
10 changes: 4 additions & 6 deletions libs/coin-modules/coin-evm/src/bridge/js.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
import { SignerContext } from "@ledgerhq/coin-framework/signer";
import type { AccountBridge, Bridge, CurrencyBridge } from "@ledgerhq/types-live";
import getAddressWrapper from "@ledgerhq/coin-framework/bridge/getAddressWrapper";
import type { EvmAddress, EvmSignature, EvmSigner } from "../types/signer";
import type { EvmSigner } from "../types/signer";
import type { Transaction as EvmTransaction } from "../types/index";
import { estimateMaxSpendable } from "../estimateMaxSpendable";
import { getTransactionStatus } from "../getTransactionStatus";
Expand All @@ -21,9 +21,7 @@ import { broadcast } from "../broadcast";
import resolver from "../hw-getAddress";
import { setCoinConfig, type CoinConfig } from "../config";

export function buildCurrencyBridge(
signerContext: SignerContext<EvmSigner, EvmAddress | EvmSignature>,
): CurrencyBridge {
export function buildCurrencyBridge(signerContext: SignerContext<EvmSigner>): CurrencyBridge {
const getAddress = resolver(signerContext);

const scanAccounts = makeScanAccounts({
Expand All @@ -43,7 +41,7 @@ export function buildCurrencyBridge(
}

export function buildAccountBridge(
signerContext: SignerContext<EvmSigner, EvmAddress | EvmSignature>,
signerContext: SignerContext<EvmSigner>,
): AccountBridge<EvmTransaction> {
const getAddress = resolver(signerContext);

Expand All @@ -64,7 +62,7 @@ export function buildAccountBridge(
}

export function createBridges(
signerContext: SignerContext<EvmSigner, EvmAddress | EvmSignature>,
signerContext: SignerContext<EvmSigner>,
coinConfig: CoinConfig,
): Bridge<EvmTransaction> {
setCoinConfig(coinConfig);
Expand Down
10 changes: 4 additions & 6 deletions libs/coin-modules/coin-evm/src/hw-getAddress.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,13 @@ import eip55 from "eip55";
import { SignerContext } from "@ledgerhq/coin-framework/signer";
import { GetAddressOptions } from "@ledgerhq/coin-framework/derivation";
import { GetAddressFn } from "@ledgerhq/coin-framework/bridge/getAddressWrapper";
import { EvmAddress, EvmSignature, EvmSigner } from "./types/signer";
import { EvmSigner } from "./types/signer";

const resolver = (
signerContext: SignerContext<EvmSigner, EvmAddress | EvmSignature>,
): GetAddressFn => {
const resolver = (signerContext: SignerContext<EvmSigner>): GetAddressFn => {
return async (deviceId: string, { path, verify, currency }: GetAddressOptions) => {
const { address, publicKey, chainCode } = (await signerContext(deviceId, signer =>
const { address, publicKey, chainCode } = await signerContext(deviceId, signer =>
signer.getAddress(path, verify, false, currency?.ethereumLikeInfo?.chainId.toString()),
)) as EvmAddress;
);

return {
address: eip55.encode(address),
Expand Down
4 changes: 2 additions & 2 deletions libs/coin-modules/coin-evm/src/hw-signMessage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ethers } from "ethers";
import { SignerContext } from "@ledgerhq/coin-framework/signer";
import { isEIP712Message } from "@ledgerhq/evm-tools/message/EIP712/index";
import { Account, AnyMessage, DeviceId, TypedEvmMessage } from "@ledgerhq/types-live";
import { EvmSignature, EvmSigner } from "./types/signer";
import { EvmSigner } from "./types/signer";

export const prepareMessageToSign = ({ message }: { message: string }): TypedEvmMessage => {
const parsedMessage = ((): string | Record<string, unknown> => {
Expand Down Expand Up @@ -37,7 +37,7 @@ export const prepareMessageToSign = ({ message }: { message: string }): TypedEvm
};

export const signMessage =
(signerContext: SignerContext<EvmSigner, EvmSignature>) =>
(signerContext: SignerContext<EvmSigner>) =>
async (
deviceId: DeviceId,
account: Account,
Expand Down
6 changes: 2 additions & 4 deletions libs/coin-modules/coin-evm/src/signOperation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { SignerContext } from "@ledgerhq/coin-framework/signer";
import { isNFTActive } from "@ledgerhq/coin-framework/nft/support";
import type { LoadConfig, ResolutionConfig } from "@ledgerhq/hw-app-eth/lib/services/types";
import { buildOptimisticOperation } from "./buildOptimisticOperation";
import { EvmAddress, EvmSignature, EvmSigner } from "./types/signer";
import { EvmSignature, EvmSigner } from "./types/signer";
import { prepareForSignOperation } from "./prepareTransaction";
import { getSerializedTransaction } from "./transaction";
import { Transaction } from "./types";
Expand Down Expand Up @@ -45,9 +45,7 @@ export const applyEIP155 = (vAsHex: string, chainId: number): number => {
* Sign Transaction with Ledger hardware
*/
export const buildSignOperation =
(
signerContext: SignerContext<EvmSigner, EvmAddress | EvmSignature>,
): SignOperationFnSignature<Transaction> =>
(signerContext: SignerContext<EvmSigner>): SignOperationFnSignature<Transaction> =>
({
account,
deviceId,
Expand Down
10 changes: 4 additions & 6 deletions libs/coin-modules/coin-near/src/bridge/js.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,10 @@ import broadcast from "../js-broadcast";
import estimateMaxSpendable from "../js-estimateMaxSpendable";
import { preload, hydrate, getPreloadStrategy } from "../preload";
import { assignToAccountRaw, assignFromAccountRaw } from "../serialization";
import { NearAddress, NearSignature, NearSigner } from "../signer";
import { NearSigner } from "../signer";
import { NearCoinConfig, setCoinConfig } from "../config";

export function buildCurrencyBridge(
signerContext: SignerContext<NearSigner, NearAddress | NearSignature>,
): CurrencyBridge {
export function buildCurrencyBridge(signerContext: SignerContext<NearSigner>): CurrencyBridge {
const getAddress = resolver(signerContext);

const scanAccounts = makeScanAccounts({
Expand All @@ -38,7 +36,7 @@ export function buildCurrencyBridge(
}

export function buildAccountBridge(
signerContext: SignerContext<NearSigner, NearAddress | NearSignature>,
signerContext: SignerContext<NearSigner>,
): AccountBridge<Transaction> {
const getAddress = resolver(signerContext);

Expand All @@ -61,7 +59,7 @@ export function buildAccountBridge(
}

export function createBridges(
signerContext: SignerContext<NearSigner, NearAddress | NearSignature>,
signerContext: SignerContext<NearSigner>,
coinConfig: NearCoinConfig,
) {
setCoinConfig(coinConfig);
Expand Down
10 changes: 3 additions & 7 deletions libs/coin-modules/coin-near/src/hw-getAddress.ts
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
import { GetAddressFn } from "@ledgerhq/coin-framework/bridge/getAddressWrapper";
import { SignerContext } from "@ledgerhq/coin-framework/signer";
import { GetAddressOptions } from "@ledgerhq/coin-framework/derivation";
import { NearAddress, NearSignature, NearSigner } from "./signer";
import { NearSigner } from "./signer";

const resolver = (
signerContext: SignerContext<NearSigner, NearAddress | NearSignature>,
): GetAddressFn => {
const resolver = (signerContext: SignerContext<NearSigner>): GetAddressFn => {
return async (deviceId: string, { path, verify }: GetAddressOptions) => {
const r = (await signerContext(deviceId, signer =>
signer.getAddress(path, verify || false),
)) as NearAddress;
const r = await signerContext(deviceId, signer => signer.getAddress(path, verify || false));
return {
address: r.address,
publicKey: r.publicKey,
Expand Down
14 changes: 6 additions & 8 deletions libs/coin-modules/coin-near/src/js-signOperation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import type {
} from "@ledgerhq/types-live";
import { encodeOperationId } from "@ledgerhq/coin-framework/operation";
import { buildTransaction } from "./js-buildTransaction";
import { NearAddress, NearSignature, NearSigner } from "./signer";
import { NearSigner } from "./signer";
import { SignerContext } from "@ledgerhq/coin-framework/signer";

const buildOptimisticOperation = (
Expand Down Expand Up @@ -61,9 +61,7 @@ const buildOptimisticOperation = (
* Sign Transaction with Ledger hardware
*/
export const buildSignOperation =
(
signerContext: SignerContext<NearSigner, NearAddress | NearSignature>,
): SignOperationFnSignature<Transaction> =>
(signerContext: SignerContext<NearSigner>): SignOperationFnSignature<Transaction> =>
({
account,
transaction,
Expand All @@ -81,14 +79,14 @@ export const buildSignOperation =
throw new FeeNotLoaded();
}

const { publicKey } = (await signerContext(deviceId, signer =>
const { publicKey } = await signerContext(deviceId, signer =>
signer.getAddress(account.freshAddressPath),
)) as NearAddress;
);
const unsigned = await buildTransaction(account, transaction, publicKey);

const response = (await signerContext(deviceId, signer =>
const response = await signerContext(deviceId, signer =>
signer.signTransaction(unsigned.encode(), account.freshAddressPath),
)) as NearSignature;
);

const signedTransaction = new nearAPI.transactions.SignedTransaction({
transaction: unsigned,
Expand Down
17 changes: 4 additions & 13 deletions libs/coin-modules/coin-polkadot/src/bridge/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,7 @@ import {
} from "@ledgerhq/coin-framework/bridge/jsHelpers";
import { SignerContext } from "@ledgerhq/coin-framework/signer";
import type { AccountBridge, CurrencyBridge } from "@ledgerhq/types-live";
import {
PolkadotSigner,
type PolkadotAddress,
type PolkadotSignature,
type Transaction,
} from "../types";
import { PolkadotSigner, type Transaction } from "../types";
import signerGetAddress from "../signer";
import broadcast from "./broadcast";
import createTransaction from "./createTransaction";
Expand All @@ -29,9 +24,7 @@ import {
} from "./serialization";
import { getPreloadStrategy, hydrate, preload } from "./preload";

function buildCurrencyBridge(
signerContext: SignerContext<PolkadotSigner, PolkadotAddress | PolkadotSignature>,
): CurrencyBridge {
function buildCurrencyBridge(signerContext: SignerContext<PolkadotSigner>): CurrencyBridge {
const getAddress = signerGetAddress(signerContext);

const scanAccounts = makeScanAccounts({
Expand All @@ -48,7 +41,7 @@ function buildCurrencyBridge(
}

function buildAccountBridge(
signerContext: SignerContext<PolkadotSigner, PolkadotAddress | PolkadotSignature>,
signerContext: SignerContext<PolkadotSigner>,
): AccountBridge<Transaction> {
const getAddress = signerGetAddress(signerContext);

Expand All @@ -73,9 +66,7 @@ function buildAccountBridge(
};
}

export function createBridges(
signerContext: SignerContext<PolkadotSigner, PolkadotAddress | PolkadotSignature>,
) {
export function createBridges(signerContext: SignerContext<PolkadotSigner>) {
return {
currencyBridge: buildCurrencyBridge(signerContext),
accountBridge: buildAccountBridge(signerContext),
Expand Down
Loading

1 comment on commit f19960f

@github-actions
Copy link

Choose a reason for hiding this comment

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

[Bot] Daily non-reg on develop with 'Nitrogen' ✅ 155 txs ❌ 33 txs 💰 10 miss funds ($1,324.65) ⏲ 35min 22s

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

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

3 critical spec errors

Spec injective failed!

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

Spec Polygon zkEVM Testnet failed!

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

Spec Solana failed!

NetworkError: request to https://solana.coin.ledger.com/ failed, reason: Socket timeout
❌ 33 mutation errors
necessary accounts resynced in 0.28ms
▬ Cosmos 2.35.20 on nanoS 2.1.0
→ FROM undefined: 0.821791 OSMO (0ops) (osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k on 44'/118'/3'/0/0) #3 js:2:osmo:osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k: (! sum of ops 0 OSMO) 0.82128 OSMO spendable. 0.000464 OSMO delegated. 0.000047 OSMO unbonding. 
DELEGATIONS
  to osmovaloper1u2wsa88eh738mk35a3cncgu7lc6cqf74jdl50x 0.000464 OSMO  (claimable 0.000464)
UNDELEGATIONS
  from osmovaloper1f7jtv9sd3g9jay64zrydfqh7l3eqdzgs289m8u 0.000047 OSMO

max spendable ~0.818872
★ using mutation 'send max'
→ TO undefined: 0 OSMO (0ops) (osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp on 44'/118'/7'/0/0) #7 js:2:osmo:osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp:
✔️ transaction 
SEND MAX
TO osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp

with fees=0.00201
STATUS (380ms)
  amount: 0.81927 OSMO
  estimated fees: 0.00201 OSMO
  total spent: 0.82128 OSMO
errors: 
warnings: amount RecommendUndelegation
✔️ has been signed! (5.8s) 
✔️ broadcasted! (58ms) optimistic operation: 
  -0.82128 OSMO      OUT        ED48F24BC7860DC7D790D8B430652AAF517788BDE9DFEED5DFA8518A2145CA48 2024-05-13T16:34
⚠️ TEST waiting operation id to appear after broadcast
Error: could not find optimisticOperation js:2:osmo:osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k:-ED48F24BC7860DC7D790D8B430652AAF517788BDE9DFEED5DFA8518A2145CA48-OUT
(totally spent 8min 7s – ends at 2024-05-13T17:08:49.984Z)
necessary accounts resynced in 0.24ms
▬ Cosmos 2.35.20 on nanoS 2.1.0
→ FROM undefined: 0.262813 OSMO (0ops) (osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw on 44'/118'/5'/0/0) #5 js:2:osmo:osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw: (! sum of ops 0 OSMO) 0.254715 OSMO spendable. 0.007004 OSMO delegated. 0.001094 OSMO unbonding. 
DELEGATIONS
  to osmovaloper1xk23a255qm4kn6gdezr6jm7zmupn23t3pqjjn6 0.000555 OSMO  (claimable 0.000555)
  to osmovaloper1j7euyj85fv2jugejrktj540emh9353ltnz0lvc 0.000197 OSMO  (claimable 0.000197)
  to osmovaloper1u5v0m74mql5nzfx2yh43s2tke4mvzghr6m2n5t 0.006252 OSMO  (claimable 0.006252)
UNDELEGATIONS
  from osmovaloper1fdratlcgy56etxd07n03vcfm20m4mff8qzn2p3 0.001015 OSMO
  from osmovaloper1j7euyj85fv2jugejrktj540emh9353ltnz0lvc 0.000079 OSMO
REDELEGATIONS
  from osmovaloper1gp957czryfgyvxwn3tfnyy2f0t9g2p4phpkatp to osmovaloper1u5v0m74mql5nzfx2yh43s2tke4mvzghr6m2n5t 0.005742 OSMO
  from osmovaloper16vnsrhxsyamf4f4eln6g587qwwd39fte2m2ysc to osmovaloper1u5v0m74mql5nzfx2yh43s2tke4mvzghr6m2n5t 0.000184 OSMO

max spendable ~0.252308
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.000555 -> osmovaloper1xk23a255qm4kn6gdezr6jm7zmupn23t3pqjjn6
with fees=0.011332
  memo=LedgerLiveBot
STATUS (418ms)
  amount: 0 OSMO
  estimated fees: 0.011332 OSMO
  total spent: 0.011332 OSMO
errors: 
warnings: 
✔️ has been signed! (7.7s) 
✔️ broadcasted! (73ms) optimistic operation: 
  -0.011332 OSMO     UNDELEGATE 9DE3D98362AC7E2BD5177CB27CFD426C76D3FA38A26CA1B084603C9384241C02 2024-05-13T16:42
    to osmovaloper1xk23a255qm4kn6gdezr6jm7zmupn23t3pqjjn6 0.000555 OSMO   
⚠️ TEST waiting operation id to appear after broadcast
Error: could not find optimisticOperation js:2:osmo:osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw:-9DE3D98362AC7E2BD5177CB27CFD426C76D3FA38A26CA1B084603C9384241C02-UNDELEGATE
(totally spent 8min 9s – ends at 2024-05-13T17:08:50.027Z)
necessary accounts resynced in 0.34ms
▬ Cosmos 2.35.20 on nanoS 2.1.0
→ FROM undefined: 0.296238 OSMO (0ops) (osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5 on 44'/118'/9'/0/0) #9 js:2:osmo:osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5: (! sum of ops 0 OSMO) 0.273388 OSMO spendable. 0.021425 OSMO delegated. 0.001425 OSMO unbonding. 
DELEGATIONS
  to osmovaloper1rcp29q3hpd246n6qak7jluqep4v006cd8q9sme 0.021267 OSMO  (claimable 0.021267)
  to osmovaloper1e8238v24qccht9mqc2w0r4luq462yxttfpaeam 0.000158 OSMO  (claimable 0.000158)
UNDELEGATIONS
  from osmovaloper1yxg83zcuwfwvyagdzh3a8p45cgqxtrsg2segqf 0.001425 OSMO
REDELEGATIONS
  from osmovaloper1yxg83zcuwfwvyagdzh3a8p45cgqxtrsg2segqf to osmovaloper1rcp29q3hpd246n6qak7jluqep4v006cd8q9sme 0.005799 OSMO
  from osmovaloper16x4vlh65q5yqa3ghyxs3d9f3mgdz8t2z20ap0r to osmovaloper1rcp29q3hpd246n6qak7jluqep4v006cd8q9sme 0.003156 OSMO

max spendable ~0.270981
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.000547 OSMO
TO 
  0.000547 -> osmovaloper1gy0nyn2hscxxayj2pdyu8axmfvv75nnvhc079s
with fees=0.005232
  memo=LedgerLiveBot
STATUS (494ms)
  amount: 0.000547 OSMO
  estimated fees: 0.005232 OSMO
  total spent: 0.005779 OSMO
errors: 
warnings: 
✔️ has been signed! (3.8s) 
✔️ broadcasted! (62ms) optimistic operation: 
  -0.005779 OSMO     DELEGATE   B22A084540698D97BCE0E333340F9F6123C30B2C8CFFB7A4BFFD89E05BD901BB 2024-05-13T16:50
    to osmovaloper1gy0nyn2hscxxayj2pdyu8axmfvv75nnvhc079s 0.000547 OSMO   
⚠️ TEST waiting operation id to appear after broadcast
Error: could not find optimisticOperation js:2:osmo:osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5:-B22A084540698D97BCE0E333340F9F6123C30B2C8CFFB7A4BFFD89E05BD901BB-DELEGATE
(totally spent 8min 5s – ends at 2024-05-13T17:08:50.124Z)
necessary accounts resynced in 0.20ms
▬ Cosmos 2.35.20 on nanoS 2.1.0
→ FROM undefined: 0.632875 OSMO (0ops) (osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m on 44'/118'/12'/0/0) #12 js:2:osmo:osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m: (! sum of ops 0 OSMO) 0.632875 OSMO spendable. 

max spendable ~0.630468
★ using mutation 'send some'
→ TO undefined: 4.64265 OSMO (0ops) (osmo1xr8krhp99mp9ncrz6dfgre542nv0rc8lrryjvr on 44'/118'/16'/0/0) #16 js:2:osmo:osmo1xr8krhp99mp9ncrz6dfgre542nv0rc8lrryjvr:
✔️ transaction 
SEND  0.305214 OSMO
TO osmo1xr8krhp99mp9ncrz6dfgre542nv0rc8lrryjvr

with fees=0.002013
STATUS (369ms)
  amount: 0.305214 OSMO
  estimated fees: 0.002013 OSMO
  total spent: 0.307227 OSMO
errors: 
warnings: 
✔️ has been signed! (3.6s) 
✔️ broadcasted! (66ms) optimistic operation: 
  -0.307227 OSMO     OUT        3F195E5BE9BE4926F07BB1FAB922B4C4F5439E14BCD087E50AE2F9E6CAEAC0C9 2024-05-13T16:58
⚠️ TEST waiting operation id to appear after broadcast
Error: could not find optimisticOperation js:2:osmo:osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m:-3F195E5BE9BE4926F07BB1FAB922B4C4F5439E14BCD087E50AE2F9E6CAEAC0C9-OUT
(totally spent 8min 4s – ends at 2024-05-13T17:08:50.178Z)
necessary accounts resynced in 0.21ms
▬ Cosmos 2.35.20 on nanoS 2.1.0
→ FROM undefined: 0.011231 DSM (3ops) (desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9 on 44'/118'/4'/0/0) #4 js:2:desmos:desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9: 0.011231 DSM spendable. 

max spendable ~0.011006
★ using mutation 'send some'
→ TO undefined: 0.197069 DSM (7ops) (desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7 on 44'/118'/9'/0/0) #9 js:2:desmos:desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7:
✔️ transaction 
SEND  0.006497 DSM
TO desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7

with fees=0.000177
STATUS (575ms)
  amount: 0.006497 DSM
  estimated fees: 0.000177 DSM
  total spent: 0.006674 DSM
errors: 
warnings: 
✔️ has been signed! (5.1s) {"operation":{"id":"js:2:desmos:desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9:--OUT","hash":"","type":"OUT","senders":["desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9"],"recipients":["desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7"],"accountId":"js:2:desmos:desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-05-13T16:34:25.099Z","value":"6674","fee":"177","transactionSequenceNumber":47},"signature":"0a8f010a8c010a1c2f636f736d6f732e62616e6b2e763162657461312e4d736753656e64126c0a2d6465736d6f73317663377339323975683279787968617534777367357468396a7a6564766b7572687961717639122d6465736d6f73316a676b363638683533676439776e30396d6e647137757a676b38306e723564386b67616b66371a0c0a047564736d12043634393712650a500a460a1f2f636f736d6f732e63727970746f2e736563703235366b312e5075624b657912230a2102daec21a135057605e8914cffbcd77dcd36e4e9c13adb46f406fb398dfa89c77e12040a02087f182f12110a0b0a047564736d12033137371081a6041a40849ca4321c300a76b200a18c33360c52472b130d557adbfae936c63edc75e22b7623d3061222e042775fc9ade4c312ab3cb805efc02f5bfb31da4aff5ed117e1"}
⚠️ TEST during broadcast
Error: socket hang up
(totally spent 5.7s – ends at 2024-05-13T17:08:50.182Z)
necessary accounts resynced in 0.33ms
▬ Cosmos 2.35.20 on nanoS 2.1.0
→ FROM undefined: 0.00157953 dydx (0ops) (dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt on 44'/118'/5'/0/0) #5 js:2:dydx:dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt: (! sum of ops 0 dydx) 0.00120446958688139 dydx spendable. 0.000112542897459896 dydx delegated. 0.0002625196478329 dydx unbonding. 
DELEGATIONS
  to dydxvaloper1ql40pjftdwl6qtmgk0fn0r02spvss96enayy3q 0.000112542897459896 dydx  (claimable 0.000112542897459896)
UNDELEGATIONS
  from dydxvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qvjutn2 0.000175194062560031 dydx
  from dydxvaloper1k2mlt4akhddh8gz9r3227ruuaestgdczx60vqk 0.000087325585272869 dydx
REDELEGATIONS
  from dydxvaloper1gffkd68xcnfpzcsplf0fsuetxkysunud6a900w to dydxvaloper1ql40pjftdwl6qtmgk0fn0r02spvss96enayy3q 0.000013952922612374 dydx

max spendable ~0
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.000032716580220351 dydx
TO 
  0.000032716580220351 -> dydxvaloper1rlz9vehk0e6d72u4gvghtfee0274lmuwumlvj8
with fees=0.00229682
  memo=LedgerLiveBot
STATUS (3.6s)
  amount: 0.000032716580220351 dydx
  estimated fees: 0.002296825 dydx
  total spent: 0.002329541580220351 dydx
errors: amount NotEnoughBalance
warnings: 
⚠️ TEST mutation must not have tx status errors
NotEnoughBalance: NotEnoughBalance
(totally spent 3.6s – ends at 2024-05-13T17:08:50.216Z)
necessary accounts resynced in 0.22ms
▬ Cosmos 2.35.20 on nanoS 2.1.0
→ FROM undefined: 0.00213418 dydx (0ops) (dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky on 44'/118'/7'/0/0) #7 js:2:dydx:dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky: (! sum of ops 0 dydx) 0.00165388404784614 dydx spendable. 0.00013538893701224 dydx delegated. 0.000344912678823088 dydx unbonding. 
DELEGATIONS
  to dydxvaloper1y29mkku4zqz8phrxc8zgu7jfnw504leqdwvzzg 0.000051033384888392 dydx  (claimable 0.000051033384888392)
  to dydxvaloper1jvct2ck9hptwyzrr0umfvwxed7n9nhhj0wfmdf 0.000084355552123848 dydx  (claimable 0.000084355552123848)
UNDELEGATIONS
  from dydxvaloper1jvct2ck9hptwyzrr0umfvwxed7n9nhhj0wfmdf 0.000000353804257948 dydx
  from dydxvaloper1ql40pjftdwl6qtmgk0fn0r02spvss96enayy3q 0.00034455887456514 dydx

max spendable ~0.000362
★ using mutation 'claim rewards'
✔️ transaction 
CLAIMREWARD 
TO 
  0.000000000011873109 -> dydxvaloper1y29mkku4zqz8phrxc8zgu7jfnw504leqdwvzzg
with fees=0.00212121
  memo=LedgerLiveBot
STATUS (751ms)
  amount: 0 dydx
  estimated fees: 0.0021212125 dydx
  total spent: 0 dydx
errors: amount NotEnoughBalance
warnings: claimReward ClaimRewardsFeesWarning
⚠️ TEST mutation must not have tx status errors
NotEnoughBalance: NotEnoughBalance
(totally spent 757ms – ends at 2024-05-13T17:08:50.318Z)
necessary accounts resynced in 1.58ms
▬ Cosmos 2.35.20 on nanoS 2.1.0
→ FROM undefined: 0.00151551 dydx (0ops) (dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73 on 44'/118'/9'/0/0) #9 js:2:dydx:dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73: (! sum of ops 0 dydx) 0.000659587149338984 dydx spendable. 0.000855932105792402 dydx delegated. 
DELEGATIONS
  to dydxvaloper160n4rwm854v06ppkly2pt0zc9rpwlm5y2gjyqf 0.000855932105792402 dydx  (claimable 0.000855932105792402)
REDELEGATIONS
  from dydxvaloper1mwhwf9rqh64ktr8t8xnz37nhg7vvy42ec56jwe to dydxvaloper160n4rwm854v06ppkly2pt0zc9rpwlm5y2gjyqf 0.000078627620139103 dydx

max spendable ~0
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.000008604888610911 dydx
TO 
  0.000008604888610911 -> dydxvaloper1ql40pjftdwl6qtmgk0fn0r02spvss96enayy3q
with fees=0.0022407
  memo=LedgerLiveBot
STATUS (3.1s)
  amount: 0.000008604888610911 dydx
  estimated fees: 0.0022407 dydx
  total spent: 0.002249304888610911 dydx
errors: amount NotEnoughBalance
warnings: 
⚠️ TEST mutation must not have tx status errors
NotEnoughBalance: NotEnoughBalance
(totally spent 3.1s – ends at 2024-05-13T17:08:50.345Z)
necessary accounts resynced in 6ms
▬ Cosmos 2.35.20 on nanoS 2.1.0
→ FROM undefined: 0.00244536 dydx (0ops) (dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd on 44'/118'/11'/0/0) #11 js:2:dydx:dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd: (! sum of ops 0 dydx) 0.002228877185788926 dydx spendable. 0.000216485636550436 dydx unbonding. 
UNDELEGATIONS
  from dydxvaloper154u397hzffmpk6xyt2fnrx6l0fzwzmplgws2fs 0.000059751154444707 dydx
  from dydxvaloper15xgxv2j45uc4er8z9tfz5m0f0e74ymv6xj9l9d 0.000156734482105729 dydx

max spendable ~0.00092402
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.000013442522138491 dydx
TO 
  0.000013442522138491 -> dydxvaloper1a9lm6t9qalz53jrp0q6p50q2cxeqnwsh48g3tt
with fees=0.00235475
  memo=LedgerLiveBot
STATUS (3.2s)
  amount: 0.000013442522138491 dydx
  estimated fees: 0.00235475 dydx
  total spent: 0.002368192522138491 dydx
errors: amount NotEnoughBalance
warnings: 
⚠️ TEST mutation must not have tx status errors
NotEnoughBalance: NotEnoughBalance
(totally spent 3.2s – ends at 2024-05-13T17:08:50.486Z)
necessary accounts resynced in 0.25ms
▬ Cosmos 2.35.20 on nanoS 2.1.0
→ FROM undefined: 0.0185791 dydx (0ops) (dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq on 44'/118'/13'/0/0) #13 js:2:dydx:dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq: (! sum of ops 0 dydx) 0.001221234895173349 dydx spendable. 0.012768432741822677 dydx delegated. 0.004589527798530726 dydx unbonding. 
DELEGATIONS
  to dydxvaloper1nwtp8t5vl86zdm5ag85st5czv7d0kscq2zzvgl 0.000226667636418577 dydx  (claimable 0.000226667636418577)
  to dydxvaloper1a4mcl5d6h2ak4hn6nj8vg8vtew6t3mnwzd4sqn 0.0125417651054041 dydx  (claimable 0.0125417651054041)
UNDELEGATIONS
  from dydxvaloper1ywm48fet6n4jgrenl6dsuzprrgxv3pd89n97zt 0.004532120435129555 dydx
  from dydxvaloper1rqhxemv6e5x43uny8qdyq78zneuk49pe5gkltz 0.000057407363401171 dydx
REDELEGATIONS
  from dydxvaloper1nwtp8t5vl86zdm5ag85st5czv7d0kscq2zzvgl to dydxvaloper1a4mcl5d6h2ak4hn6nj8vg8vtew6t3mnwzd4sqn 0.000279842156921226 dydx

max spendable ~0
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.000001962341071216 dydx
TO 
  0.000001962341071216 -> dydxvaloper1y29mkku4zqz8phrxc8zgu7jfnw504leqdwvzzg
with fees=0.00216083
  memo=LedgerLiveBot
STATUS (3.2s)
  amount: 0.000001962341071216 dydx
  estimated fees: 0.0021608375 dydx
  total spent: 0.002162799841071216 dydx
errors: amount NotEnoughBalance
warnings: 
⚠️ TEST mutation must not have tx status errors
NotEnoughBalance: NotEnoughBalance
(totally spent 3.2s – ends at 2024-05-13T17:08:50.514Z)
necessary accounts resynced in 0.38ms
▬ Crypto.orgChain 2.17.1 on nanoS 2.1.0
→ FROM undefined: 17.3755 CRO (44ops) (cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra on 44'/394'/0'/0/0) #0 js:2:crypto_org:cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra: (! sum of ops 17.37656309 CRO)
max spendable ~17.3755
★ using mutation 'send max'
→ TO undefined: 17.3755 CRO (30ops) (cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd on 44'/394'/3'/0/0) #3 js:2:crypto_org:cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd:
✔️ transaction 
SEND MAX
TO cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd
STATUS (2.80ms)
  amount: 17.37551309 CRO
  estimated fees: 0.00005 CRO
  total spent: 17.37556309 CRO
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"review","x":47,"y":10,"w":81,"h":11}
{"text":"Please","x":48,"y":-1,"w":80,"h":11}
{"text":"review","x":47,"y":10,"w":81,"h":11}
{"text":"Please","x":48,"y":-1,"w":80,"h":11}
{"text":"review","x":47,"y":10,"w":81,"h":11}
(totally spent 60s – ends at 2024-05-13T17:08:50.579Z)
necessary accounts resynced in 0.65ms
▬ 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 (39ops) (cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2 on 44'/394'/2'/0/0) #2 js:2:crypto_org:cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2:
✔️ transaction 
SEND  8.68775655 CRO
TO cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2
STATUS (0.67ms)
  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-05-13T17:08:50.582Z)
necessary accounts resynced in 0.30ms
▬ Hedera 1.0.8 on nanoS 2.1.0
→ FROM undefined: 15.7608 HBAR (239ops) (0.0.3664563 on 44/3030) hederaBip44#3 js:2:hedera:0.0.3664563:hederaBip44
max spendable ~15.7598
★ using mutation 'Send max'
→ TO undefined: 4.59802 HBAR (253ops) (0.0.3664539 on 44/3030) hederaBip44#2 js:2:hedera:0.0.3664539:hederaBip44
✔️ transaction SEND 15.75989496 HBAR
TO 0.0.3664539
STATUS (216ms)
  amount: 15.75989496 HBAR
  estimated fees: 0.00090685 HBAR
  total spent: 15.76080181 HBAR
errors: 
warnings: 
✔️ has been signed! (5.7s) 
✔️ broadcasted! (300ms) optimistic operation: 
  -15.75989496 HBAR  OUT        zdmyy-T5iC1tHoFxQDaajl_dUHL5gWFuuA-_MyX4ZDp4kzvyr-I6k1kIVNwikepI 2024-05-13T16:36
✔️ operation confirmed (10.4s): 
  -0.00092334 HBAR   OUT        zdmyy-T5iC1tHoFxQDaajl_dUHL5gWFuuA-_MyX4ZDp4kzvyr-I6k1kIVNwikepI 2024-05-13T16:37
✔️ undefined: 15.7598 HBAR (240ops) (0.0.3664563 on 44/3030) hederaBip44#3 js:2:hedera:0.0.3664563:hederaBip44(in 10.4s)
(in 4min 51s)
⚠️ TEST destination account should receive an operation (by tx hash)
Invariant Violation: no operation found with hash zdmyy-T5iC1tHoFxQDaajl_dUHL5gWFuuA-_MyX4ZDp4kzvyr-I6k1kIVNwikepI
(totally spent 5min 8s – ends at 2024-05-13T17:08:50.605Z)
necessary accounts resynced in 3.2s
▬ Stacks 0.23.3 on nanoSP 1.1.1
→ FROM undefined: 10.0547 STX (145ops) (SP3WE1A84RCG3GWKRXYMXNRVQJ8PG3VDRKE7CMPM4 on 44'/5757'/1'/0/0) #1 js:2:stacks:03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229:
max spendable ~10.0542
★ using mutation 'Send 50%~'
→ TO undefined: 22.687 STX (110ops) (SPJ68NSCQSTQ1AQRY1NJ5D4WWBEPDQ6X24R56J8A on 44'/5757'/2'/0/0) #2 js:2:stacks:02319a870c0e3d22b9c0169df3bae3029a9e5593f8dabbc7e4b6a1e356edafed77:
✔️ transaction 
SEND  4.81326 STX
TO SPJ68NSCQSTQ1AQRY1NJ5D4WWBEPDQ6X24R56J8A
STATUS (2212ms)
  amount: 4.81326 STX
  estimated fees: 0.000522 STX
  total spent: 4.813782 STX
errors: 
warnings: 
✔️ has been signed! (2686ms) 
✔️ broadcasted! (341ms) optimistic operation: 
  -4.813782 STX      OUT        0x1f12fcae50ca1564346a0945cd30bb45938ebfa1b358493a8d957feb41e85307 2024-05-13T16:49
⚠️ LedgerAPI4xx: API rate limit exceeded
(totally spent 2min 7s – ends at 2024-05-13T17:08:50.678Z)
necessary accounts resynced in 0.12ms
▬ 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.28775
★ using mutation 'send max (non delegating)'
→ TO undefined: 0 XTZ (0ops) (tz1SApkt3kmMaqNE1qtgADc6m3B49HZkFVDA on 44'/1729'/2'/0') tezbox#2 js:2:tezos:029d7bcf10737806147b22ba4578747ce4ac53e26b443c9eb1ac0e4d5bfbb8f67e:tezbox
✔️ transaction 
SEND MAX
TO tz1SApkt3kmMaqNE1qtgADc6m3B49HZkFVDA
with fees=0.000575
with gasLimit=701
with storageLimit=257
(estimatedFees 0.000949)
STATUS (894ms)
  amount: 5.2235 XTZ
  estimated fees: 0.000949 XTZ
  total spent: 5.224449 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 62s – ends at 2024-05-13T17:08:50.686Z)
necessary accounts resynced in 0.24ms
▬ 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.9550080625 VTHO (2 ops) (! sum of ops 55 VTHO)
max spendable ~0.625
★ using mutation 'move ~50% VTHO'
→ TO undefined: 3.125 VET (5ops) (0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD on 44'/818'/0'/0/1) vechain#1 js:2:vechain:0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD:vechain
✔️ transaction SEND  26.97750403125 VET TO 0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD
STATUS (1105ms)
  amount: 26.97750403125 VTHO
  estimated fees: 0.5171 VET
  total spent: 27.49460403125 VTHO
errors: 
warnings: 
⚠️ VechainAppPleaseEnableContractDataAndMultiClause: Please enable contract data in Vechain app settings
(totally spent 1147ms – ends at 2024-05-13T17:08:50.700Z)
necessary accounts resynced in 0.22ms
▬ BitcoinTest 2.1.1 on nanoS 2.1.0
→ FROM undefined [legacy]: 0.0325138 𝚝BTC (101ops) (n2nNXGtKFf2z4ZuuY8AWHXkg5Gzf7eoJWz on 44'/1'/1'/0/81) #1 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBv5wFZcFYEhephnhXGjF8gKZJ98kGxYvtiv8xdfNVgFgGAFZFCRXwR8td9Nq8nufwfXB1iX75Ypx99d1NktaeLNc4DxmrTng:
7 UTXOs
0.0106174    mofsdv8ZazGaqZsJLVmnn3seQZNRj29pZP 7f27ec8f54f2e5e51937394a82fd4fb412289b1115473b34df84dba0ffc13938 @0 (826)
0.00862618   muT8AhVD6RYEsEJusguDLCvrxCCAmWRi7S (change) ea742722f9026a170e6dca41362d237592ef2cb39376bcd4e542c64451025a96 @2 (4711)
0.00757898   mjzTy1B7ZKbCzyU9zsJeyqCnD1cFprVjaX fe58ce13b91df8b21ce05854e89d2e4315530a621d2ef106966ef6403ac92061 @0 (821)
0.00284907   n25Hwq7BEAXHrC86nWMsWoSstQEiUPsKTd 39aa6447d9ac3031dbc8363892cb76ddf8efe877fe443a9cd6866e92a553c1ed @0 (6231)
...

max spendable ~0.026455
★ using mutation 'send 1 utxo'
→ TO undefined [native segwit]: 0.00007499 𝚝BTC (177ops) (tb1qgere6vgytp643rn0wgv5ws04j88ckagkdxr3tz on 84'/1'/0'/0/75) native_segwit#0 js:2:bitcoin_testnet:tpubDCgDNn312aj5XtrdMeA9TeQbp2HkMW2a1JNw2qhRLzUaFiDAAQK3Jzh6jzHpc6Agjn68mZgPQB2ZdQzfgRgXVXDi2FVECW7p4xGuK6Pa3b8:native_segwit
✔️ transaction 
SEND MAX
TO tb1qgere6vgytp643rn0wgv5ws04j88ckagkdxr3tz
with feePerByte=561 (network fees: 0=1052, 1=561, 2=71)
DEEP_OUTPUTS_FIRST pick-unconfirmed
exclude ea742722f9026a170e6dca41362d237592ef2cb39376bcd4e542c64451025a96 @2
exclude 39aa6447d9ac3031dbc8363892cb76ddf8efe877fe443a9cd6866e92a553c1ed @0
exclude 713f5c87aa5bc9814c63256b01969d2b9938540ecb134023149b82446909a95a @0
exclude bc4ac396190be86e093ed7eb74c1b1c2e240aa8be8d57b0664120255e52fd919 @0
STATUS (101ms)
TX INPUTS (0):

TX OUTPUTS (0):

  amount: 0 𝚝BTC
  estimated fees: 0 𝚝BTC
  total spent: 0 𝚝BTC
errors: amount NotEnoughBalance
warnings: 
⚠️ TEST mutation must not have tx status errors
NotEnoughBalance: NotEnoughBalance
(totally spent 111ms – ends at 2024-05-13T17:08:50.715Z)
necessary accounts resynced in 0.27ms
▬ Komodo 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 3.04444 KMD (483ops) (RWU2cHNzwG3GsgSR2VK7pwQBdL5b6qsv5q on 44'/141'/0'/0/243) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H: (! sum of ops -9.92629449 KMD)
4 UTXOs
1.32346      RHfgSiyYDRDcopbtKxtSJ7VzwBZqWweywY (change) rbf 7f754318e40c18f7d0ec066c4f7c040cef58de9f86af07d2f09b9c75386fe446 @1 (635092)
1.21932      RFyyvVnrYYsyW4vFgY7SsnFUDsMD5uvRkP (change) dc667f02d971170d49c4b2b0cbb2b91dd33e73a746082512eb9b9f23e3077321 @1 (640858)
0.373454     RSfnXY3GV9vRVH5HANJX3pTyyssB8K6PW4 aedcd31accd4a550cb83326345cabdcd36873844a536200af84123dec645eff4 @0 (16716)
0.128187     RQi82myW7SZvAJA6SdGwxVEghV8h6y7S7Y (change) 61f5687b8147c9e5fd2fffc26bab6ef5c7fe37d617604a940195127edfad7c62 @2 (616680)

max spendable ~3.0443
★ using mutation 'move ~50%'
→ TO undefined: 6.14204 KMD (464ops) (RT7yjo72rR1kYYGAWEsH6XBWSpSPZMP4cS on 44'/141'/2'/0/252) #2 js:2:komodo:v4PKUB9WZbMS4XNED8S4oAJzXQqPbfLCmNRNPW8QoETCA7opTJLFvrkm39QZAdLg8DygthREBvDRmrHDeVtEQ8C7iQDfXDSPTrzB2FAFkvgsQ9HA:
✔️ transaction 
SEND 1.55808884 KMD
TO RT7yjo72rR1kYYGAWEsH6XBWSpSPZMP4cS
with feePerByte=21 (network fees: 0=22, 1=21, 2=20)
DEEP_OUTPUTS_FIRST pick-unconfirmed RBF-enabled
STATUS (301ms)
TX INPUTS (2):
1.21932      RFyyvVnrYYsyW4vFgY7SsnFUDsMD5uvRkP dc667f02d971170d49c4b2b0cbb2b91dd33e73a746082512eb9b9f23e3077321@1
1.32346      RHfgSiyYDRDcopbtKxtSJ7VzwBZqWweywY 7f754318e40c18f7d0ec066c4f7c040cef58de9f86af07d2f09b9c75386fe446@1
TX OUTPUTS (2):
1.55808      RT7yjo72rR1kYYGAWEsH6XBWSpSPZMP4cS rbf @0 (0)
0.984631     REeUEh9u3twbVynYaHwgg43AQjZCfQZx1Z (change) rbf @1 (0)
  amount: 1.55808884 KMD
  estimated fees: 0.00007854 KMD
  total spent: 1.55816738 KMD
errors: 
warnings: 
✔️ has been signed! (6.3s) {"operation":{"id":"js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:--OUT","hash":"","type":"OUT","senders":["RFyyvVnrYYsyW4vFgY7SsnFUDsMD5uvRkP","RHfgSiyYDRDcopbtKxtSJ7VzwBZqWweywY"],"recipients":["RT7yjo72rR1kYYGAWEsH6XBWSpSPZMP4cS"],"accountId":"js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-05-13T16:39:35.772Z","value":"155816738","fee":"7854"},"signature":"0400008085202f8902217307e3239f9beb12250846a7733ed31db9b2cbb0b2c4490d1771d9027f66dc010000006a47304402204f19410531cdad66477d66705212f9faf65cf7cd16e8fd38c5a5e8639e3a57e202204e65f3d43e8a674b53bb3c7b0e08dd9a45cfcd4703a307784f656d2d7aba1162012103125cb3a39d17c6f68d900d4443057cc34dd8af4c908e953b144c151bece120cd0000000046e46f38759c9bf0d207af869fde58ef0c047c4f6c06ecd0f7180ce41843757f010000006b483045022100e0117919906308b193b6ce25334d5505aaa5fdf8090b452baa408d5d8f47a43e02207a57d34d1650f06a2fe286ec6522f5a877619a5f249a9154dd5f08e22e0cd9430121029462e060eba92b9819a5dcdea6d6e7e72885efed0e01fb700fa647f731b70e22000000000274744909000000001976a914c3b438335af6924f9a412aca3284b3eeba8b158f88acb46dde05000000001976a9143adeda31df63217991efd5ea5841c18534b3cf4a88ac383f4266000000000000000000000000000000"}
⚠️ TEST during broadcast
LedgerAPI4xx: -26: 64: non-final
(totally spent 6.7s – ends at 2024-05-13T17:08:50.787Z)
necessary accounts resynced in 2880ms
▬ Komodo 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 23.4628 KMD (469ops) (RLsxiYktsTs7pRuKCEuK3sBW2YyFCRHGxG on 44'/141'/1'/0/233) #1 js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X: (! sum of ops 5.61492889 KMD)
17 UTXOs
4.90439      RK5ipDqn1BKy8YAaNMvMkuDtJFpKLkmJ2r c69b5e933247214dc146f336b4f0fca2684651196712fa3d58918f6813302336 @0 (620968)
3.5855       RXcqLpmRhTcTGhfBFPwaNxPk2cXSe5zfet 537f5318463474c3bc3706a7efba807ce59d4f5a67e521c43b38efe17b0b70b1 @0 (605248)
3.42733      RJYUNhYfLeawQkt3A2ryDYq9agfmzjix7x 6c61b3b60aa904083b49b43086074e18efe0edb619aaf948f972d28fedc06f6a @0 (94388)
2.93243      RMvjom1p21APuYLRTE1rMcd26TByGhvfYV 72217f20017574e67de283a5709b83a53a3a345cc600f1c2214239511d62b413 @0 (564755)
...

max spendable ~23.4622
★ using mutation 'send OP_RETURN transaction'
→ TO undefined: 20.8596 KMD (433ops) (RLZ1TxvB6nR8a8vUCaMTE2yz1j4ovxjLbp on 44'/141'/3'/0/241) #3 js:2:komodo:v4PKUB9WZbMS4XNEDBJ9e6csdTWjkQsBngGrmyPrPrwARdjCHQmEYDrU4Kq7HGhiDP6xnwdVwUp3pTCDBqPFJzzGWKwhGKyZ3R9twuUru5U57rPp:
✔️ transaction 
SEND 0.1 KMD
TO RLZ1TxvB6nR8a8vUCaMTE2yz1j4ovxjLbp
with feePerByte=21 (network fees: 0=22, 1=21, 2=20)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (193ms)
TX INPUTS (1):
0.151441     RX1PYkdb41pvnzsupS2muBdEjENcWYuTNZ 4698a70b5d08fa61645a9c7eb85f4a57df17b30256947bd0d532d98a16bff3cf@0
TX OUTPUTS (3):
0.1          RLZ1TxvB6nR8a8vUCaMTE2yz1j4ovxjLbp @0 (0)
0            @1 (0)
0.0513878    RMUgg5dFGyksDCByiinsKFnSmLRNFnW3uo (change) @2 (0)
  amount: 0.1 KMD
  estimated fees: 0.00005376 KMD
  total spent: 0.10005376 KMD
errors: 
warnings: 
✔️ has been signed! (6.8s) {"operation":{"id":"js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:--OUT","hash":"","type":"OUT","senders":["RX1PYkdb41pvnzsupS2muBdEjENcWYuTNZ"],"recipients":["RLZ1TxvB6nR8a8vUCaMTE2yz1j4ovxjLbp"],"accountId":"js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-05-13T16:39:49.279Z","value":"10005376","fee":"5376"},"signature":"0400008085202f8901cff3bf168ad932d5d07b945602b317df574a5fb87e9c5a6461fa085d0ba79846000000006a47304402200dfb4785ae7105ecb095e94288b1652f3d343e36e61803415dcd08ea05bfb6c502205e9a44f6b2dc60e3cacb77b8b18a3a09b8b63648ca9f48c1007d1684c58aaf180121031ae2faf1d76d56531672d8a34c3298345f1b1631fab3e52fd9b90b6c0dfa9483ffffffff0380969800000000001976a9147ba72e05104a313522d5521de1d1dc73020e944988ac0000000000000000156a13636861726c6579206c6f7665732068656964695e694e00000000001976a91485cdf4a7006292842267990c9226428cf59156e688ac453f4266000000000000000000000000000000"}
⚠️ TEST during broadcast
LedgerAPI4xx: -25: Missing inputs
(totally spent 7s – ends at 2024-05-13T17:08:50.822Z)
necessary accounts resynced in 2044ms
▬ Komodo 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 3.04444 KMD (483ops) (RWU2cHNzwG3GsgSR2VK7pwQBdL5b6qsv5q on 44'/141'/0'/0/243) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H: (! sum of ops -9.92629449 KMD)
4 UTXOs
1.32346      RHfgSiyYDRDcopbtKxtSJ7VzwBZqWweywY (change) rbf 7f754318e40c18f7d0ec066c4f7c040cef58de9f86af07d2f09b9c75386fe446 @1 (635093)
1.21932      RFyyvVnrYYsyW4vFgY7SsnFUDsMD5uvRkP (change) dc667f02d971170d49c4b2b0cbb2b91dd33e73a746082512eb9b9f23e3077321 @1 (640859)
0.373454     RSfnXY3GV9vRVH5HANJX3pTyyssB8K6PW4 aedcd31accd4a550cb83326345cabdcd36873844a536200af84123dec645eff4 @0 (16717)
0.128187     RQi82myW7SZvAJA6SdGwxVEghV8h6y7S7Y (change) 61f5687b8147c9e5fd2fffc26bab6ef5c7fe37d617604a940195127edfad7c62 @2 (616681)

max spendable ~3.0443
★ using mutation 'optimize-size'
→ TO undefined: 23.4628 KMD (469ops) (RLsxiYktsTs7pRuKCEuK3sBW2YyFCRHGxG on 44'/141'/1'/0/233) #1 js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:
✔️ transaction 
SEND 1.67551258 KMD
TO RLsxiYktsTs7pRuKCEuK3sBW2YyFCRHGxG
with feePerByte=21 (network fees: 0=22, 1=21, 2=20)
OPTIMIZE_SIZE pick-unconfirmed
STATUS (576ms)
TX INPUTS (2):
1.32346      RHfgSiyYDRDcopbtKxtSJ7VzwBZqWweywY 7f754318e40c18f7d0ec066c4f7c040cef58de9f86af07d2f09b9c75386fe446@1
0.373454     RSfnXY3GV9vRVH5HANJX3pTyyssB8K6PW4 aedcd31accd4a550cb83326345cabdcd36873844a536200af84123dec645eff4@0
TX OUTPUTS (2):
1.67551      RLsxiYktsTs7pRuKCEuK3sBW2YyFCRHGxG @0 (0)
0.0213331    REeUEh9u3twbVynYaHwgg43AQjZCfQZx1Z (change) @1 (0)
  amount: 1.67551258 KMD
  estimated fees: 0.00007854 KMD
  total spent: 1.67559112 KMD
errors: 
warnings: 
✔️ has been signed! (8.3s) {"operation":{"id":"js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:--OUT","hash":"","type":"OUT","senders":["RHfgSiyYDRDcopbtKxtSJ7VzwBZqWweywY","RSfnXY3GV9vRVH5HANJX3pTyyssB8K6PW4"],"recipients":["RLsxiYktsTs7pRuKCEuK3sBW2YyFCRHGxG"],"accountId":"js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-05-13T16:40:04.556Z","value":"167559112","fee":"7854"},"signature":"0400008085202f890246e46f38759c9bf0d207af869fde58ef0c047c4f6c06ecd0f7180ce41843757f010000006b483045022100ef8efc159b75fe116aeca0bb862020e0d5ff069c13c58098706dd9656d15b6cf02201731763d5fe67fa9effbba4ce0b1f4a0084f5d9cb14fae9093c6b9251753a5390121029462e060eba92b9819a5dcdea6d6e7e72885efed0e01fb700fa647f731b70e22fffffffff4ef45c6de2341f80a2036a544388736cdbdca45633283cb50a5d4cc1ad3dcae000000006a4730440220546db3d8b4ee71e8bebc1af92aac15de64b82cb5001b843f58cc9ccc7204bc40022053c4ec7d42c8615b9163fda379fd7234241c174ce4a26ebfd4aaabcd01bf79a50121034f8df579050f4558c567fb92e7377db1d78fb5a0569e8818f3bdb5a89d44994dffffffff021aa1fc09000000001976a9147f3cc9e551c1b9ec05a92eb71389914d4ba23e4188ac478d2000000000001976a9143adeda31df63217991efd5ea5841c18534b3cf4a88ac533f4266000000000000000000000000000000"}
⚠️ TEST during broadcast
LedgerAPI4xx: -25: Missing inputs
(totally spent 9s – ends at 2024-05-13T17:08:50.900Z)
necessary accounts resynced in 2448ms
▬ Komodo 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 3.04444 KMD (483ops) (RWU2cHNzwG3GsgSR2VK7pwQBdL5b6qsv5q on 44'/141'/0'/0/243) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H: (! sum of ops -9.92629449 KMD)
4 UTXOs
1.32346      RHfgSiyYDRDcopbtKxtSJ7VzwBZqWweywY (change) rbf 7f754318e40c18f7d0ec066c4f7c040cef58de9f86af07d2f09b9c75386fe446 @1 (635093)
1.21932      RFyyvVnrYYsyW4vFgY7SsnFUDsMD5uvRkP (change) dc667f02d971170d49c4b2b0cbb2b91dd33e73a746082512eb9b9f23e3077321 @1 (640859)
0.373454     RSfnXY3GV9vRVH5HANJX3pTyyssB8K6PW4 aedcd31accd4a550cb83326345cabdcd36873844a536200af84123dec645eff4 @0 (16717)
0.128187     RQi82myW7SZvAJA6SdGwxVEghV8h6y7S7Y (change) 61f5687b8147c9e5fd2fffc26bab6ef5c7fe37d617604a940195127edfad7c62 @2 (616681)

max spendable ~3.0443
★ using mutation 'send 1 utxo'
→ TO undefined: 23.4628 KMD (469ops) (RLsxiYktsTs7pRuKCEuK3sBW2YyFCRHGxG on 44'/141'/1'/0/233) #1 js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:
✔️ transaction 
SEND MAX
TO RLsxiYktsTs7pRuKCEuK3sBW2YyFCRHGxG
with feePerByte=21 (network fees: 0=22, 1=21, 2=20)
DEEP_OUTPUTS_FIRST pick-unconfirmed
exclude dc667f02d971170d49c4b2b0cbb2b91dd33e73a746082512eb9b9f23e3077321 @1
exclude 61f5687b8147c9e5fd2fffc26bab6ef5c7fe37d617604a940195127edfad7c62 @2
exclude aedcd31accd4a550cb83326345cabdcd36873844a536200af84123dec645eff4 @0
STATUS (487ms)
TX INPUTS (1):
1.32346      RHfgSiyYDRDcopbtKxtSJ7VzwBZqWweywY 7f754318e40c18f7d0ec066c4f7c040cef58de9f86af07d2f09b9c75386fe446@1
TX OUTPUTS (1):
1.32342      RLsxiYktsTs7pRuKCEuK3sBW2YyFCRHGxG @0 (0)
  amount: 1.32342951 KMD
  estimated fees: 0.00004032 KMD
  total spent: 1.32346983 KMD
errors: 
warnings: 
✔️ has been signed! (6.8s) {"operation":{"id":"js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:--OUT","hash":"","type":"OUT","senders":["RHfgSiyYDRDcopbtKxtSJ7VzwBZqWweywY"],"recipients":["RLsxiYktsTs7pRuKCEuK3sBW2YyFCRHGxG"],"accountId":"js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-05-13T16:40:19.256Z","value":"4032","fee":"4032"},"signature":"0400008085202f890146e46f38759c9bf0d207af869fde58ef0c047c4f6c06ecd0f7180ce41843757f010000006a473044022059f9f9c80b26d60c62f9c3eca4663a94d0f6ddddc6b9e750774138200166e47c022057b6a64539720372160b5bc120fd3858799ead227064a73c0a4fbeff1334f1580121029462e060eba92b9819a5dcdea6d6e7e72885efed0e01fb700fa647f731b70e22ffffffff01a764e307000000001976a9147f3cc9e551c1b9ec05a92eb71389914d4ba23e4188ac633f4266000000000000000000000000000000"}
⚠️ TEST during broadcast
LedgerAPI4xx: -25: Missing inputs
(totally spent 7.3s – ends at 2024-05-13T17:08:50.916Z)
necessary accounts resynced in 0.25ms
▬ Horizen 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 0.26935 ZEN (433ops) (znZU3JWCHuF871rEzySVjmReG2rLe54Zcem on 44'/121'/1'/0/206) #1 js:2:zencash:xpub6C68jAb8xasfrBmUVvZbdXydhq15bdfePn1qhjb32azt3GkzoqBCQuRaZKPYp9T9uhr7TYCANdXanzeXfXp4qMjw7ijiPPNbBKmGRZRFeoa:
2 UTXOs
0.16159      znWLTWJDD5rujXBubEGqp28X67eBHiz8wLY rbf d562404f7fab2c9ce0e2265cce7017ab868e08942600130506ac08c606ac61b1 @0 (1714)
0.107759     znpRAYFqdstEmfGFMYuEkKHy66rF3BzyLmL 6920025dc7a9ae74edd464ca8913bfdc009dcb8a404152197b30c6195f73a828 @0 (1714)

max spendable ~0.269343
★ using mutation 'send OP_RETURN transaction'
→ TO undefined: 0 ZEN (442ops) (znRLSz1EauUygLPuo9TsTergQmVJ9c8gwQ4 on 44'/121'/0'/0/205) #0 js:2:zencash:xpub6C68jAb8xasfmbmg37N3W5TsYWdTb6xLCtjwz5oSVAdi6Jxzx6FeBQcQazySrCXnsGZKaT9MXB9i4Lny4AoFAVZtSy6kVExyheF7X5Msvu3:
✔️ transaction 
SEND 0.01 ZEN
TO znRLSz1EauUygLPuo9TsTergQmVJ9c8gwQ4
with feePerByte=2 (network fees: 0=3, 1=2, 2=1)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (116ms)
TX INPUTS (1):
0.16159      znWLTWJDD5rujXBubEGqp28X67eBHiz8wLY d562404f7fab2c9ce0e2265cce7017ab868e08942600130506ac08c606ac61b1@0
TX OUTPUTS (3):
0.01         znRLSz1EauUygLPuo9TsTergQmVJ9c8gwQ4 @0 (0)
0            @1 (0)
0.151583     znmozmyJsPbqpmeCzCbAU9rPkPrETnMZVLb (change) @2 (0)
  amount: 0.01 ZEN
  estimated fees: 0.00000664 ZEN
  total spent: 0.01000664 ZEN
errors: 
warnings: 
✔️ has been signed! (5.6s) {"operation":{"id":"js:2:zencash:xpub6C68jAb8xasfrBmUVvZbdXydhq15bdfePn1qhjb32azt3GkzoqBCQuRaZKPYp9T9uhr7TYCANdXanzeXfXp4qMjw7ijiPPNbBKmGRZRFeoa:--OUT","hash":"","type":"OUT","senders":["znWLTWJDD5rujXBubEGqp28X67eBHiz8wLY"],"recipients":["znRLSz1EauUygLPuo9TsTergQmVJ9c8gwQ4"],"accountId":"js:2:zencash:xpub6C68jAb8xasfrBmUVvZbdXydhq15bdfePn1qhjb32azt3GkzoqBCQuRaZKPYp9T9uhr7TYCANdXanzeXfXp4qMjw7ijiPPNbBKmGRZRFeoa:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-05-13T16:41:22.793Z","value":"1000664","fee":"664"},"signature":"0100000001b161ac06c608ac060513002694088e86ab1770ce5c26e2e09c2cab7f4f4062d5000000006b483045022100ec8d5e0bd126ecc6ecfb8363d95605a2effcc6ab2dd4d0eaa15ed68e906640160220220fdbfa16186dce45dca5373cfcfaf17c735e3ca43b5732065a2589a9473eae0121037c5ce8b62a589691a3f17ca08d0b6d03a628d46c88ca3ccabab9a3ee882e3782ffffffff0340420f00000000003f76a91402bfb1e57b7158540d1424693c8fb45d802688da88ac209ec9845acb02fab24e1c0368b3b517c1a4488fba97f0e3459ac053ea0100000003c01f02b40000000000000000156a13636861726c6579206c6f7665732068656964697b4ce700000000003f76a914e357fb09e9b8f0435e76aad9719e8f53968d3ba488ac209ec9845acb02fab24e1c0368b3b517c1a4488fba97f0e3459ac053ea0100000003c01f02b400000000"}
⚠️ TEST during broadcast
LedgerAPI4xx: An exception occurred during transaction send: 68: op-checkblockatheight-needed
(totally spent 6.1s – ends at 2024-05-13T17:08:50.979Z)
necessary accounts resynced in 0.32ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00323492 𝚝ETH (120ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:ethereum_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
max spendable ~0.00323492
★ using mutation 'move 50%'
→ TO undefined: 0.0227831 𝚝ETH (98ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
✔️ transaction 
SEND  0.001617464979843003 𝚝ETH
TO 0xe404f128644459C5A0F6FAc6824AdA8F94798c8f
STATUS (1074ms)
  amount: 0.001617464979843003 𝚝ETH
  estimated fees: 0.006610224113199 𝚝ETH
  total spent: 0.008227689093042003 𝚝ETH
errors: gasPrice NotEnoughGas, amount NotEnoughBalance
warnings: feeTooHigh FeeTooHigh
⚠️ TEST mutation must not have tx status errors
NotEnoughGas: NotEnoughGas
(totally spent 1096ms – ends at 2024-05-13T17:08:50.984Z)
necessary accounts resynced in 0.29ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00233847 𝚝ETH (128ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_holesky:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
max spendable ~0.00233847
★ using mutation 'move 50%'
→ TO undefined: 0.00323982 𝚝ETH (111ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_holesky:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
✔️ transaction 
SEND  0.001169237591398951 𝚝ETH
TO 0xe404f128644459C5A0F6FAc6824AdA8F94798c8f
STATUS (1122ms)
  amount: 0.001169237591398951 𝚝ETH
  estimated fees: 0.000157964430309 𝚝ETH
  total spent: 0.001327202021707951 𝚝ETH
errors: 
warnings: feeTooHigh FeeTooHigh
✔️ has been signed! (5.1s) {"operation":{"id":"js:2:ethereum_holesky:0x90bD48144e08b66490BcA9a756BDe9f004F17857:--OUT","hash":"","type":"OUT","senders":["0x90bD48144e08b66490BcA9a756BDe9f004F17857"],"recipients":["0xe404f128644459C5A0F6FAc6824AdA8F94798c8f"],"accountId":"js:2:ethereum_holesky:0x90bD48144e08b66490BcA9a756BDe9f004F17857:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-05-13T16:42:31.208Z","value":"1327202021707951","fee":"157964430309000","transactionSequenceNumber":72,"transactionRaw":{"amount":"1169237591398951","recipient":"0xe404f128644459C5A0F6FAc6824AdA8F94798c8f","useAllAmount":false,"family":"evm","mode":"send","chainId":17000,"nonce":72,"gasLimit":"21000","feesStrategy":"medium","type":2,"maxFeePerGas":"7522115729","maxPriorityFeePerGas":"685998933"}},"signature":"0x02f874824268488428e383558501c05a609182520894e404f128644459c5a0f6fac6824ada8f94798c8f8704276a574b1a2780c001a0084ddaa0236af1651ef26c2a52a1fd7b50f0d356f107ce8dcac7a4edfb676caba050deb9f446e913d9670b5e49faa98e64b03185f5687378d6058b5fc36052391f"}
⚠️ TEST during broadcast
LedgerAPI4xx: An exception occurred during transaction send: INTERNAL_ERROR: blobs limit in txpool is full (-32000)
(totally spent 7s – ends at 2024-05-13T17:08:50.996Z)
necessary accounts resynced in 0.27ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00233847 𝚝ETH (128ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_holesky:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
max spendable ~0.00233847
★ using mutation 'move 50%'
→ TO undefined: 0.00011561 𝚝ETH (116ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_holesky:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
✔️ transaction 
SEND  0.001169237591398951 𝚝ETH
TO 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
STATUS (1030ms)
  amount: 0.001169237591398951 𝚝ETH
  estimated fees: 0.000157964430309 𝚝ETH
  total spent: 0.001327202021707951 𝚝ETH
errors: 
warnings: feeTooHigh FeeTooHigh
✔️ has been signed! (3.5s) {"operation":{"id":"js:2:ethereum_holesky:0x90bD48144e08b66490BcA9a756BDe9f004F17857:--OUT","hash":"","type":"OUT","senders":["0x90bD48144e08b66490BcA9a756BDe9f004F17857"],"recipients":["0x60A4E7657D8df28594ac4A06CDe01E18E948a892"],"accountId":"js:2:ethereum_holesky:0x90bD48144e08b66490BcA9a756BDe9f004F17857:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-05-13T16:42:42.647Z","value":"1327202021707951","fee":"157964430309000","transactionSequenceNumber":72,"transactionRaw":{"amount":"1169237591398951","recipient":"0x60A4E7657D8df28594ac4A06CDe01E18E948a892","useAllAmount":false,"family":"evm","mode":"send","chainId":17000,"nonce":72,"gasLimit":"21000","feesStrategy":"medium","type":2,"maxFeePerGas":"7522115729","maxPriorityFeePerGas":"685998933"}},"signature":"0x02f874824268488428e383558501c05a60918252089460a4e7657d8df28594ac4a06cde01e18e948a8928704276a574b1a2780c001a0dac68b8e8d37d320634956dffe521de810cacd27ed0596157fec1965728fc8bda035613f86fcd11bbbf208fc025ce94bc6f001e27531849df31c1b8ff35b29e527"}
⚠️ TEST during broadcast
LedgerAPI4xx: An exception occurred during transaction send: INTERNAL_ERROR: blobs limit in txpool is full (-32000)
(totally spent 5.3s – ends at 2024-05-13T17:08:50.999Z)
necessary accounts resynced in 0.19ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 3.39075 SYS (433ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:syscoin:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
max spendable ~3.3906
★ using mutation 'send max'
→ TO undefined: 0.707334 SYS (403ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:syscoin:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
✔️ transaction 
SEND MAX
TO 0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25
STATUS (291ms)
  amount: 3.390697946699264639 SYS
  estimated fees: 0.000058817239614 SYS
  total spent: 3.390756763938878639 SYS
errors: 
warnings: 
✔️ has been signed! (3.2s) 
✔️ broadcasted! (78ms) optimistic operation: 
  -3.390756763938878639 SYS OUT        0x408683974fd74599c2fdacb6043fcab693a567262e184d70b059f17290091127 2024-05-13T16:44
⚠️ TEST waiting operation id to appear after broadcast
Error: could not find optimisticOperation js:2:syscoin:0x90bD48144e08b66490BcA9a756BDe9f004F17857:-0x408683974fd74599c2fdacb6043fcab693a567262e184d70b059f17290091127-OUT
(totally spent 10min 4s – ends at 2024-05-13T17:08:51.016Z)
necessary accounts resynced in 522ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 3.39075 SYS (433ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:syscoin:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
max spendable ~3.39061
★ using mutation 'move 50%'
→ TO undefined: 41.1156 SYS (121ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:syscoin:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
✔️ transaction 
SEND  1.69530680643393332 SYS
TO 0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9
STATUS (216ms)
  amount: 1.69530680643393332 SYS
  estimated fees: 0 SYS
  total spent: 1.69530680643393332 SYS
errors: gasLimit FeeNotLoaded
warnings: 
⚠️ TEST mutation must not have tx status errors
FeeNotLoaded: FeeNotLoaded
(totally spent 217ms – ends at 2024-05-13T17:08:51.029Z)
necessary accounts resynced in 1.07ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 11.8676 SYS (377ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:syscoin:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
max spendable ~11.8675
★ using mutation 'move 50%'
→ TO undefined: 3.39075 SYS (433ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:syscoin:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
✔️ transaction 
SEND  5.933768685475866119 SYS
TO 0x90bD48144e08b66490BcA9a756BDe9f004F17857
STATUS (178ms)
  amount: 5.933768685475866119 SYS
  estimated fees: 0.000056720235684 SYS
  total spent: 5.933825405711550119 SYS
errors: 
warnings: 
✔️ has been signed! (3.2s) 
✔️ broadcasted! (63ms) optimistic operation: 
  -5.933825405711550119 SYS OUT        0xe1bdbbb638770f1a49b4f0ba01582507a3d256e731c810c4d2e8f3896d72f17a 2024-05-13T16:54
✔️ operation confirmed (30.4s): 
  -5.933825397989871119 SYS OUT        0xe1bdbbb638770f1a49b4f0ba01582507a3d256e731c810c4d2e8f3896d72f17a 2024-05-13T16:54
✔️ undefined: 5.93385 SYS (378ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:syscoin:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:(in 30.4s)
(in 9min 31s)
⚠️ TEST destination > account balance increased with transaction amount
Error: expect(received).toBe(expected) // Object.is equality

Expected: "9324525449414744758"
Received: "5933768691547638119"
(totally spent 10min 5s – ends at 2024-05-13T17:08:51.078Z)
necessary accounts resynced in 13ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 1.2188 KLAY (42ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:klaytn:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25: (! sum of ops 0.375756095955744158 KLAY)
max spendable ~1.21483
★ using mutation 'move 50%'
→ TO undefined: 1.91147 KLAY (37ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:klaytn:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
✔️ transaction 
SEND  0.607416974538484649 KLAY
TO 0xe404f128644459C5A0F6FAc6824AdA8F94798c8f
STATUS (9.1s)
  amount: 0.607416974538484649 KLAY
  estimated fees: 0.001575 KLAY
  total spent: 0.608991974538484649 KLAY
errors: 
warnings: 
✔️ has been signed! (3.5s) {"operation":{"id":"js:2:klaytn:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:--OUT","hash":"","type":"OUT","senders":["0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25"],"recipients":["0xe404f128644459C5A0F6FAc6824AdA8F94798c8f"],"accountId":"js:2:klaytn:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-05-13T16:46:42.364Z","value":"608991974538484649","fee":"1575000000000000","transactionSequenceNumber":62,"transactionRaw":{"amount":"607416974538484649","recipient":"0xe404f128644459C5A0F6FAc6824AdA8F94798c8f","useAllAmount":false,"family":"evm","mode":"send","chainId":8217,"nonce":62,"gasLimit":"21000","feesStrategy":"medium","type":2,"maxFeePerGas":"75000000000","maxPriorityFeePerGas":"25000000000"}},"signature":"0x02f8768220193e8505d21dba00851176592e0082520894e404f128644459c5a0f6fac6824ada8f94798c8f88086dfa8525e8aba980c001a0c839b1781ea60588965a3c42226957e0e2a83a3f9eef45fb79c0afac0f301870a02aa6ecec0e12214a92306618fb3baf4f757bb4c53e65368dc7c21ab81fe49f8d"}
⚠️ TEST during broadcast
Error: bad response (status=403, headers={"date":"Mon, 13 May 2024 16:46:42 GMT","content-type":"text/plain; charset=UTF-8","content-length":"16","connection":"keep-alive","x-frame-options":"SAMEORIGIN","referrer-policy":"same-origin","cache-control":"private, max-age=0, no-store, no-cache, must-revalidate, post-check=0, pre-check=0","expires":"Thu, 01 Jan 1970 00:00:01 GMT","vary":"Accept-Encoding","cf-cache-status":"DYNAMIC","server":"cloudflare","cf-ray":"8834204adc2f1b8
(totally spent 13s – ends at 2024-05-13T17:08:51.082Z)
necessary accounts resynced in 0.24ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 7.02448 NEON (164ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:neon_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:  TokenAccount USD Coin: 0.208727 USDC (35 ops)
max spendable ~7.01205
★ using mutation 'move some ERC20 like (ERC20, BEP20, etc...)'
→ TO undefined: 6.40868 NEON (174ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:neon_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
✔️ transaction 
SEND  0.00000000000018538 NEON
TO 0xe404f128644459C5A0F6FAc6824AdA8F94798c8f
STATUS (3.3s)
  amount: 0.18538 USDC
  estimated fees: 0.015978980274255 NEON
  total spent: 0.18538 USDC
errors: 
warnings: 
✔️ has been signed! (4.7s) 
✔️ broadcasted! (782ms) optimistic operation: 
  -0.015978980274255 NEON FEES       0x1d5439116745ec1205d9682074d4bdeb3a0c3c1ade68996fb25343c3bb0462a5 2024-05-13T16:46
    -0.18538 USDC    OUT        
⚠️ TEST waiting operation id to appear after broadcast
Error: could not find optimisticOperation js:2:neon_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:-0x1d5439116745ec1205d9682074d4bdeb3a0c3c1ade68996fb25343c3bb0462a5-FEES
(totally spent 10min 20s – ends at 2024-05-13T17:08:51.095Z)
necessary accounts resynced in 0.29ms
▬ NEAR 1.3.0 on nanoS 2.1.0
→ FROM undefined: 0.252769 NEAR (60ops) (0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf on 44'/397'/0'/0'/0') nearbip44h#0 js:2:near:0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf:nearbip44h (! sum of ops 0.78891312852274462264 NEAR)
max spendable ~0.199826
★ using mutation 'Stake'
✔️ transaction 
STAKE  0.00000439510716859739 NEAR
TO ledgerbyfigment.poolv1.near
STATUS (236ms)
  amount: 0.00000439510716859739 NEAR
  estimated fees: 0.0015 NEAR
  total spent: 0.00150439510716859739 NEAR
errors: amount NearStakingThresholdNotMet
warnings: 
⚠️ TEST mutation must not have tx status errors
NearStakingThresholdNotMet: NearStakingThresholdNotMet
(totally spent 246ms – ends at 2024-05-13T17:08:51.107Z)
necessary accounts resynced in 0.30ms
▬ NEAR 1.3.0 on nanoS 2.1.0
→ FROM undefined: 0.454405 NEAR (16ops) (85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798 on 44'/397'/0'/0'/1') nearbip44h#1 js:2:near:85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798:nearbip44h (! sum of ops 0.45440497791575113771 NEAR)
max spendable ~0.401671
★ using mutation 'Move 50% to another account'
→ TO undefined: 0.0524231 NEAR (27ops) (07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce on 44'/397'/0'/0'/5') nearbip44h#5 js:2:near:07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce:nearbip44h
✔️ transaction 
SEND  0.20083555154449385777 NEAR
TO 07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce
STATUS (594ms)
  amount: 0.20083555154449385777 NEAR
  estimated fees: 0.0008349895375 NEAR
  total spent: 0.20167054108199385777 NEAR
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Amount'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Amount": "0.20083555154449385777",
+   "Amount": "0.200835551544493857765",
  }
(totally spent 2020ms – ends at 2024-05-13T17:08:51.111Z)
necessary accounts resynced in 0.18ms
▬ NEAR 1.3.0 on nanoS 2.1.0
→ FROM undefined: 0.251048 NEAR (15ops) (bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7 on 44'/397'/0'/0'/6') nearbip44h#6 js:2:near:bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7:nearbip44h (! sum of ops 0.25157273317947354959 NEAR)
max spendable ~0.198368
★ using mutation 'Withdraw'
✔️ transaction 
WITHDRAW  0.0000104169550178107 NEAR
TO ledgerbyfigment.poolv1.near
STATUS (436ms)
  amount: 0.0000104169550178107 NEAR
  estimated fees: 0.0015 NEAR
  total spent: 0.0015 NEAR
errors: 
warnings: 
⚠️ TransportStatusError: Ledger device: UNKNOWN_ERROR (0x6990)
(totally spent 1026ms – ends at 2024-05-13T17:08:51.118Z)
⚠️ 43 spec hints
  • Spec Celo:
    • mutations should define a test(): Celo: Move 50% to another account, Celo: Send max to another account, Celo: Register Account, Celo: Unlock, Celo: Lock, Celo: Vote, Celo: Activate Vote, Celo: RevokeVote, Celo: Withdraw
    • mutations should define a testDestination(): Celo: Send max to another account
    • mutation Celo: Send max to another account: unexpected status.warnings.amount = CeloAllFundsWarning: CeloAllFundsWarning – Please implement expectStatusWarnings on the mutation if expected
  • Spec osmosis:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
  • Spec dydx:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
    • mutation claim rewards: unexpected status.warnings.claimReward = ClaimRewardsFeesWarning: ClaimRewardsFeesWarning – Please implement expectStatusWarnings on the mutation if expected
  • Spec sei_network:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Crypto org:
    • mutations should define a test(): move 50%, send max
    • mutations should define a testDestination(): send max, move 50%
  • Spec Elrond:
    • mutations should define a testDestination(): move some ESDT
  • Spec Stacks:
    • mutations should define a testDestination(): Transfer Max, Send 50%~
  • Spec Stellar:
    • mutations should define a testDestination(): Send max XLM, move ~50% XLM
  • Spec 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
  • Spec VeChain VTHO:
    • mutations should define a testDestination(): move ~50% VTHO
  • Spec VeChain VET:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Bitcoin Testnet:
    • mutation move ~50%: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
    • mutation send max: 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 Bitcoin Cash:
    • mutation optimize-size: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec DogeCoin:
    • 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 Komodo:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
  • Spec Peercoin:
    • 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 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 send max: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
    • mutation move 50%: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Ethereum Holesky:
    • 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 NEAR:
    • mutations should define a testDestination(): Move 50% to another account
Portfolio ($1,324.65) – Details of the 67 currencies
Spec (accounts) State Remaining Runs (est) funds?
Casper (8) 389 ops (+4), 24,980.8 CSPR ($697.89) 💪 999+ 02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c
Celo (12) 1361 ops (+7), 17.476 CELO ($13.61) 💪 533 0x246FFDB387F1F8c48072E1C13443540017bC71b7
osmosis (18) 0 ops , 21.2322 OSMO ($17.68) osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l
desmos (18) 39 ops , 141.574 DSM ($1.99) 💪 999+ desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454
dydx (18) 0 ops , 0.0758057 dydx ($0.18) dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6
umee (18) 43 ops , 740.666 UMEE ($2.02) 💪 999+ umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l
persistence (18) 766 ops , 29.0062 XPRT ($7.35) 💪 681 persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf
quicksilver (18) 278 ops , 21.0914 QCK ($0.68) 💪 999+ quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l
onomy (18) 310 ops , 1.80491 NOM ($0.23) 💪 999+ onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg
sei_network (16) 0 ops , 0.077475 SEI ($0.00) sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v
stargaze (18) 41 ops , 884.348 STARS ($18.05) 💪 776 stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu
coreum (18) 1236 ops , 46.5623 CORE ($4.29) 👍 271 core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk
injective (0) 0 ops , 🤷‍♂️ ``
Crypto org (7) 209 ops , 34.751 CRO ($4.32) 💪 999+ cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra
Elrond (8) 2200 ops (+6), 0.951668 EGLD ($37.04) 💪 999+ erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp
Hedera (4) 1108 ops (+7), 39.2437 HBAR ($4.28) 💪 999+ 0.0.3663977
InternetComputer (8) 480 ops (+4), 1.02197 ICP ($12.04) 💪 999+ f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209
XRP (4) 601 ops (+4), 44.0055 XRP ($22.39) 💪 999+ r9etPtq3oboweMPju5gdYufmvwhH2euz8z
Stacks (4) 408 ops (+2), 32.7432 STX ($67.77) 👍 441 SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2
Stellar (6) 2525 ops (+6), 58.9824 XLM ($7.00) 💪 999+ GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC
Tezos (3) 156 ops , 5.28869 XTZ ($4.74) 👍 182 tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF
VeChain VTHO (4) 13 ops , 5 VET ($0.34) ⚠️ 12 0xc4B17901FECf86932c3bb296BB00E7c6816Fd416
VeChain VET (4) 13 ops , 5 VET ($0.34) ⚠️ 12 0xc4B17901FECf86932c3bb296BB00E7c6816Fd416
Algorand (6) 1951 ops (+6), 11.3285 ALGO ($4.14) 💪 999+ TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4
Bitcoin Testnet (13) 1345 ops (+6), 0.0401073 𝚝BTC ($0.00) 👍 316 tb1qgere6vgytp643rn0wgv5ws04j88ckagkdxr3tz
Bitcoin Cash (7) 3137 ops (+10), 0.0482846 BCH ($21.38) 💪 736 bitcoincash:qq63ah3lpuny2guaphlm99w0pj9wedw05qtmaewx9l
Bitcoin Gold (6) 2451 ops (+8), 0.392973 BTG ($13.21) 💪 999+ AHhqwHpuWse5P5V38GmtUeejJbGuZXBLMj
Dash (7) 2538 ops (+8), 0.11371 DASH ($3.22) 💪 999+ XwB9AGbgDh1xrSTqKFuBqqi9NcLJjq4GBU
Digibyte (9) 3334 ops (+10), 443.973 DGB ($5.23) 💪 999+ dgb1q3cx4u5d9hsunaqsulhhqmq6jpp35ja6n504nal
DogeCoin (7) 1588 ops (+10), 40.5169 DOGE ($6.16) 👍 73 DQviyByEfcuhffbjeRdy9LqhkXqWtFWTnW
Komodo (5) 1849 ops , 53.5088 KMD ($20.80) 💪 999+ RT7yjo72rR1kYYGAWEsH6XBWSpSPZMP4cS
Litecoin (9) 3331 ops (+10), 0.343161 LTC ($28.02) 💪 999+ ltc1qrz4kmn4mpu07dnuugej9r3vnxe8speg90naq4d
Peercoin (5) 2164 ops , 0.045143 PPC ($0.03) ⚠️ 0 PCJwkHpZdYsmvnJn83aobNm3YX2zA5vAdg
PivX (5) 2329 ops (+8), 46.6297 PIVX ($14.34) 💪 999+ DNUbsWFSuutKwrtWUdp525BRVd4jHgiZMD
Vertcoin (6) 2146 ops (+6), 29.2578 VTC ($1.67) 💪 999+ 3NRGJKobpPMYAKaUvhRjLsGhB8DVi6FHRp
Viacoin (6) 2085 ops (+6), 40.9392 VIA ($0.32) 💪 999+ EPcWRykK7k7CqL9a19w4XwzMxDnjivbC6u
ZCash (5) 1502 ops , 0.00368057 ZEC ($0.07) ⚠️ 2 t1SDpcaNZmbCH5TCCb5vNAh5bXs3isDtA5h
Horizen (5) 1776 ops (+2), 0.421463 ZEN ($3.60) 💪 999+ znRLSz1EauUygLPuo9TsTergQmVJ9c8gwQ4
Ethereum Classic (6) 685 ops , 0.232476 ETC ($6.20) 💪 999+ 0x7584df0780C5eB83b26aE55abBc265014f8bf897
Polygon (10) 1918 ops (+8), 18.9777 MATIC ($12.76) ⚠️ 21 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Sepolia (6) 561 ops (+6), 0.0692221 𝚝ETH ($0.00) ⚠️ 19 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Holesky (6) 539 ops (+2), 0.240211 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum (6) 82 ops (+2), 0.00570603 ETH ($16.91) 💪 751 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum Sepolia (6) 297 ops (+6), 0.994477 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Flare (6) 2158 ops , 4.00005 FLR ($0.10) 👍 295 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Songbird (6) 2290 ops (+6), 937.33 SGB ($8.11) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonbeam (6) 2097 ops (+6), 60.0157 GLMR ($16.82) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
RSK (5) 794 ops , 0.00030914 RBTC ($19.34) 👍 56 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Bittorent Chain (6) 1912 ops (+6), 1,492,204 BTT ($1.78) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Mainnet (5) 121 ops , 0.00286711 ETH ($34.83) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Energy Web (6) 1684 ops (+6), 7.52937 EWT ($24.09) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Astar (6) 1854 ops (+6), 330.006 ASTR ($29.31) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Metis (6) 1776 ops (+6), 0.1766 METIS ($10.02) 👍 145 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonriver (6) 1740 ops (+4), 2.24166 MOVR ($33.73) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Velas EVM (6) 506 ops (+6), 912.022 VLX ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Syscoin (6) 1785 ops (+5), 57.0814 SYS ($10.34) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Polygon zkEVM Testnet (0) 0 ops , 🤷‍♂️ ``
Base (5) 249 ops , 0.00269293 ETH ($7.98) 👍 76 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Base Sepolia (6) 291 ops (+6), 0.994827 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Klaytn (6) 205 ops (+4), 8.87294 KLAY ($1.50) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Neon EVM (6) 816 ops (+6), 16.53 NEON ($12.94) 👍 248 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Lukso (6) 695 ops (+6), 0.492948 LYX ($1.38) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea (6) 417 ops (+6), 0.00703303 ETH ($20.83) 👍 52 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
NEAR (11) 194 ops , 0.802371 NEAR ($9.26) 👍 175 0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf
Solana (0) 0 ops , 🤷‍♂️ ``
undefined: 0 CSPR (71ops) (02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c on 44'/506'/0'/0/0) casper_wallet#0 js:2:casper:02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c:casper_wallet
undefined: 94.122 CSPR (72ops) (02034A7c5519d553BC282F768Dca044e18746B7Be9B711f2F310c190f33B3cBC4A4F on 44'/506'/0'/0/1) casper_wallet#1 js:2:casper:02034A7c5519d553BC282F768Dca044e18746B7Be9B711f2F310c190f33B3cBC4A4F:casper_wallet
undefined: 0 CSPR (57ops) (0203B56bC181780F8fb173BaFd8d483d6911282EC46d72692d0a5bbbb29ea242ed76 on 44'/506'/0'/0/2) casper_wallet#2 js:2:casper:0203B56bC181780F8fb173BaFd8d483d6911282EC46d72692d0a5bbbb29ea242ed76:casper_wallet
undefined: 94.122 CSPR (70ops) (0203d14Bf1367769813E9c7233dB26DC2208cA211532a0C2B1189992dC01d4bc098E on 44'/506'/0'/0/3) casper_wallet#3 js:2:casper:0203d14Bf1367769813E9c7233dB26DC2208cA211532a0C2B1189992dC01d4bc098E:casper_wallet
undefined: 119.973 CSPR (56ops) (02039ae761a635A37868CF35e6de9799Cba9fC4cDB9A3aFbbA6AB5c83291F13bbec8 on 44'/506'/0'/0/4) casper_wallet#4 js:2:casper:02039ae761a635A37868CF35e6de9799Cba9fC4cDB9A3aFbbA6AB5c83291F13bbec8:casper_wallet
undefined: 1,803.97 CSPR (30ops) (02033CEac656c99270C432fd59a60102B4E807977F67C429298eA3436F2cE41A1B1b on 44'/506'/0'/0/5) casper_wallet#5 js:2:casper:02033CEac656c99270C432fd59a60102B4E807977F67C429298eA3436F2cE41A1B1b:casper_wallet
undefined: 22,868.4 CSPR (33ops) (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: 4.25933 CELO (178ops) (0x246FFDB387F1F8c48072E1C13443540017bC71b7 on 44'/52752'/0'/0/0) #0 js:2:celo:0x246FFDB387F1F8c48072E1C13443540017bC71b7:
undefined: 1.0034 CELO (144ops) (0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8 on 44'/52752'/1'/0/0) #1 js:2:celo:0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8:
undefined: 4.0639 CELO (146ops) (0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0 on 44'/52752'/2'/0/0) #2 js:2:celo:0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0:
undefined: 2.34035 CELO (119ops) (0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2 on 44'/52752'/3'/0/0) #3 js:2:celo:0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2:
undefined: 0.0145675 CELO (138ops) (0xA6EB5541E3527d07CaD4dD14E5454820DB858160 on 44'/52752'/4'/0/0) #4 js:2:celo:0xA6EB5541E3527d07CaD4dD14E5454820DB858160:
undefined: 0.00739613 CELO (117ops) (0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE on 44'/52752'/5'/0/0) #5 js:2:celo:0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE:
undefined: 0.00507531 CELO (125ops) (0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc on 44'/52752'/6'/0/0) #6 js:2:celo:0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc:
undefined: 0.0062534 CELO (113ops) (0xc054A142A0e8793bC860A34971C3eb549064A54a on 44'/52752'/7'/0/0) #7 js:2:celo:0xc054A142A0e8793bC860A34971C3eb549064A54a:
undefined: 1.59401 CELO (113ops) (0x78AB368133f5Bf101849475dD4a5747E6d1A897a on 44'/52752'/8'/0/0) #8 js:2:celo:0x78AB368133f5Bf101849475dD4a5747E6d1A897a:
undefined: 0.0106627 CELO (88ops) (0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8 on 44'/52752'/9'/0/0) #9 js:2:celo:0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8:
undefined: 4.25485 CELO (80ops) (0x3f6AB52EDA4a9d38b3cf208E3fB4c3f87C53002D on 44'/52752'/10'/0/0) #10 js:2:celo:0x3f6AB52EDA4a9d38b3cf208E3fB4c3f87C53002D:
undefined: 0 CELO (0ops) (0xA07f9fb2bd5A8799081d5519897dB27B257D036D on 44'/52752'/11'/0/0) #11 js:2:celo:0xA07f9fb2bd5A8799081d5519897dB27B257D036D:
undefined: 0 OSMO (0ops) (osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l on 44'/118'/0'/0/0) #0 js:2:osmo:osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l:
undefined: 0 OSMO (0ops) (osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf on 44'/118'/1'/0/0) #1 js:2:osmo:osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf:
undefined: 0 OSMO (0ops) (osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv on 44'/118'/2'/0/0) #2 js:2:osmo:osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv:
undefined: 0.81927 OSMO (0ops) (osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp on 44'/118'/7'/0/0) #7 js:2:osmo:osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp:
undefined: 0 OSMO (0ops) (osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0 on 44'/118'/4'/0/0) #4 js:2:osmo:osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0:
undefined: 0.251482 OSMO (0ops) (osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw on 44'/118'/5'/0/0) #5 js:2:osmo:osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw:
undefined: 0 OSMO (0ops) (osmo1n6vccpa77x7xyhnk98jy6gg3rmgjkazxuyk2ng on 44'/118'/6'/0/0) #6 js:2:osmo:osmo1n6vccpa77x7xyhnk98jy6gg3rmgjkazxuyk2ng:
undefined: 0.000511 OSMO (0ops) (osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k on 44'/118'/3'/0/0) #3 js:2:osmo:osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k:
undefined: 0.006051 OSMO (0ops) (osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d on 44'/118'/8'/0/0) #8 js:2:osmo:osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d:
undefined: 0.291006 OSMO (0ops) (osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5 on 44'/118'/9'/0/0) #9 js:2:osmo:osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5:
undefined: 0.005053 OSMO (0ops) (osmo1733g3dfzj6tulcqtvz628ypuqj0hvlrzruntc8 on 44'/118'/10'/0/0) #10 js:2:osmo:osmo1733g3dfzj6tulcqtvz628ypuqj0hvlrzruntc8:
undefined: 0.005658 OSMO (0ops) (osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg on 44'/118'/11'/0/0) #11 js:2:osmo:osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg:
undefined: 0.632875 OSMO (0ops) (osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m on 44'/118'/12'/0/0) #12 js:2:osmo:osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m:
undefined: 1.82892 OSMO (0ops) (osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9 on 44'/118'/13'/0/0) #13 js:2:osmo:osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9:
undefined: 0.527253 OSMO (0ops) (osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd on 44'/118'/14'/0/0) #14 js:2:osmo:osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd:
undefined: 12.4123 OSMO (0ops) (osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau on 44'/118'/15'/0/0) #15 js:2:osmo:osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau:
undefined: 4.64265 OSMO (0ops) (osmo1xr8krhp99mp9ncrz6dfgre542nv0rc8lrryjvr on 44'/118'/16'/0/0) #16 js:2:osmo:osmo1xr8krhp99mp9ncrz6dfgre542nv0rc8lrryjvr:
undefined: 0 OSMO (0ops) (osmo102w826rmvswfhs4zsv2ujhylmd92c28p6lglqe on 44'/118'/17'/0/0) #17 js:2:osmo:osmo102w826rmvswfhs4zsv2ujhylmd92c28p6lglqe:
undefined: 0 DSM (0ops) (desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454 on 44'/118'/0'/0/0) #0 js:2:desmos:desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454:
undefined: 0.000369 DSM (3ops) (desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur on 44'/118'/1'/0/0) #1 js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:
undefined: 0 DSM (4ops) (desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx on 44'/118'/2'/0/0) #2 js:2:desmos:desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx:
undefined: 0.002327 DSM (5ops) (desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu on 44'/118'/3'/0/0) #3 js:2:desmos:desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu:
undefined: 0.197069 DSM (7ops) (desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7 on 44'/118'/9'/0/0) #9 js:2:desmos:desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7:
undefined: 0.000719 DSM (2ops) (desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y on 44'/118'/5'/0/0) #5 js:2:desmos:desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y:
undefined: 0.00032 DSM (0ops) (desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz on 44'/118'/6'/0/0) #6 js:2:desmos:desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz:
undefined: 0.067256 DSM (4ops) (desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt on 44'/118'/7'/0/0) #7 js:2:desmos:desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt:
undefined: 0.000441 DSM (1ops) (desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8 on 44'/118'/8'/0/0) #8 js:2:desmos:desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8:
undefined: 0.011231 DSM (3ops) (desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9 on 44'/118'/4'/0/0) #4 js:2:desmos:desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9:
undefined: 0.01414 DSM (3ops) (desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted on 44'/118'/10'/0/0) #10 js:2:desmos:desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted:
undefined: 0.067774 DSM (0ops) (desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z on 44'/118'/11'/0/0) #11 js:2:desmos:desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z:
undefined: 0.121297 DSM (0ops) (desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243 on 44'/118'/12'/0/0) #12 js:2:desmos:desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243:
undefined: 75.9472 DSM (6ops) (desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0 on 44'/118'/13'/0/0) #13 js:2:desmos:desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0:
undefined: 16.0775 DSM (0ops) (desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8 on 44'/118'/14'/0/0) #14 js:2:desmos:desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8:
undefined: 22.9292 DSM (1ops) (desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk on 44'/118'/15'/0/0) #15 js:2:desmos:desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk:
undefined: 29.5561 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 dydx (0ops) (dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6 on 44'/118'/0'/0/0) #0 js:2:dydx:dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6:
undefined: 0.00160125 dydx (0ops) (dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv on 44'/118'/1'/0/0) #1 js:2:dydx:dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv:
undefined: 0 dydx (0ops) (dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf on 44'/118'/2'/0/0) #2 js:2:dydx:dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf:
undefined: 0.0039118 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.00157953 dydx (0ops) (dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt on 44'/118'/5'/0/0) #5 js:2:dydx:dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt:
undefined: 0.0009042 dydx (0ops) (dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d on 44'/118'/6'/0/0) #6 js:2:dydx:dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d:
undefined: 0.00213418 dydx (0ops) (dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky on 44'/118'/7'/0/0) #7 js:2:dydx:dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky:
undefined: 0.00147326 dydx (0ops) (dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug on 44'/118'/8'/0/0) #8 js:2:dydx:dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug:
undefined: 0.00151551 dydx (0ops) (dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73 on 44'/118'/9'/0/0) #9 js:2:dydx:dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73:
undefined: 0.0028229 dydx (0ops) (dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz on 44'/118'/10'/0/0) #10 js:2:dydx:dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz:
undefined: 0.00244536 dydx (0ops) (dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd on 44'/118'/11'/0/0) #11 js:2:dydx:dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd:
undefined: 0.00531063 dydx (0ops) (dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7 on 44'/118'/12'/0/0) #12 js:2:dydx:dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7:
undefined: 0.0185791 dydx (0ops) (dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq on 44'/118'/13'/0/0) #13 js:2:dydx:dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq:
undefined: 0.00202734 dydx (0ops) (dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg on 44'/118'/14'/0/0) #14 js:2:dydx:dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg:
undefined: 0.00667911 dydx (0ops) (dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te on 44'/118'/15'/0/0) #15 js:2:dydx:dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te:
undefined: 0.0489876 dydx (0ops) (dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x on 44'/118'/16'/0/0) #16 js:2:dydx:dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x:
undefined: 0 dydx (0ops) (dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku on 44'/118'/17'/0/0) #17 js:2:dydx:dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku:
undefined: 0 UMEE (0ops) (umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l on 44'/118'/0'/0/0) #0 js:2:umee:umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l:
undefined: 22.0841 UMEE (6ops) (umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f on 44'/118'/1'/0/0) #1 js:2:umee:umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f:
undefined: 21.9731 UMEE (1ops) (umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv on 44'/118'/2'/0/0) #2 js:2:umee:umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv:
undefined: 1.88951 UMEE (5ops) (umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak on 44'/118'/3'/0/0) #3 js:2:umee:umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak:
undefined: 0.019996 UMEE (0ops) (umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0 on 44'/118'/4'/0/0) #4 js:2:umee:umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0:
undefined: 0 UMEE (2ops) (umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw on 44'/118'/5'/0/0) #5 js:2:umee:umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw:
undefined: 0.545842 UMEE (5ops) (umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg on 44'/118'/6'/0/0) #6 js:2:umee:umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg:
undefined: 2.36829 UMEE (5ops) (umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp on 44'/118'/7'/0/0) #7 js:2:umee:umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp:
undefined: 0 UMEE (3ops) (umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd on 44'/118'/8'/0/0) #8 js:2:umee:umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd:
undefined: 3.50122 UMEE (1ops) (umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65 on 44'/118'/9'/0/0) #9 js:2:umee:umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65:
undefined: 22.865 UMEE (1ops) (umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28 on 44'/118'/10'/0/0) #10 js:2:umee:umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28:
undefined: 0.716864 UMEE (7ops) (umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg on 44'/118'/11'/0/0) #11 js:2:umee:umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg:
undefined: 113.121 UMEE (2ops) (umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm on 44'/118'/12'/0/0) #12 js:2:umee:umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm:
undefined: 189.387 UMEE (1ops) (umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29 on 44'/118'/13'/0/0) #13 js:2:umee:umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29:
undefined: 85.7127 UMEE (0ops) (umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd on 44'/118'/14'/0/0) #14 js:2:umee:umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd:
undefined: 180.666 UMEE (1ops) (umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u on 44'/118'/15'/0/0) #15 js:2:umee:umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u:
undefined: 103.649 UMEE (3ops) (umee1xr8krhp99mp9ncrz6dfgre542nv0rc8lew2a7r on 44'/118'/16'/0/0) #16 js:2:umee:umee1xr8krhp99mp9ncrz6dfgre542nv0rc8lew2a7r:
undefined: 0 UMEE (0ops) (umee102w826rmvswfhs4zsv2ujhylmd92c28pqjxsje on 44'/118'/17'/0/0) #17 js:2:umee:umee102w826rmvswfhs4zsv2ujhylmd92c28pqjxsje:
undefined: 0.006474 XPRT (20ops) (persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf on 44'/118'/0'/0/0) #0 js:2:persistence:persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf:
undefined: 0.014941 XPRT (43ops) (persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l on 44'/118'/1'/0/0) #1 js:2:persistence:persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l:
undefined: 0.006189 XPRT (33ops) (persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6 on 44'/118'/2'/0/0) #2 js:2:persistence:persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6:
undefined: 1.71979 XPRT (60ops) (persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq on 44'/118'/3'/0/0) #3 js:2:persistence:persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq:
undefined: 0 XPRT (32ops) (persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e on 44'/118'/4'/0/0) #4 js:2:persistence:persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e:
undefined: 0.002194 XPRT (63ops) (persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc on 44'/118'/5'/0/0) #5 js:2:persistence:persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc:
undefined: 0 XPRT (55ops) (persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7 on 44'/118'/6'/0/0) #6 js:2:persistence:persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7:
undefined: 5.65866 XPRT (105ops) (persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch on 44'/118'/7'/0/0) #7 js:2:persistence:persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch:
undefined: 0.005923 XPRT (42ops) (persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm on 44'/118'/8'/0/0) #8 js:2:persistence:persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm:
undefined: 0.065825 XPRT (90ops) (persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz on 44'/118'/9'/0/0) #9 js:2:persistence:persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz:
undefined: 0.788753 XPRT (21ops) (persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3 on 44'/118'/10'/0/0) #10 js:2:persistence:persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3:
undefined: 0.052251 XPRT (55ops) (persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7 on 44'/118'/11'/0/0) #11 js:2:persistence:persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7:
undefined: 1.21945 XPRT (10ops) (persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd on 44'/118'/12'/0/0) #12 js:2:persistence:persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd:
undefined: 6.26861 XPRT (73ops) (persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn on 44'/118'/13'/0/0) #13 js:2:persistence:persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn:
undefined: 7.26789 XPRT (6ops) (persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m on 44'/118'/14'/0/0) #14 js:2:persistence:persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m:
undefined: 5.72551 XPRT (42ops) (persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92 on 44'/118'/15'/0/0) #15 js:2:persistence:persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92:
undefined: 1.307 XPRT (16ops) (persistence1xr8krhp99mp9ncrz6dfgre542nv0rc8l953354 on 44'/118'/16'/0/0) #16 js:2:persistence:persistence1xr8krhp99mp9ncrz6dfgre542nv0rc8l953354:
undefined: 0 XPRT (0ops) (persistence102w826rmvswfhs4zsv2ujhylmd92c28pugauc0 on 44'/118'/17'/0/0) #17 js:2:persistence:persistence102w826rmvswfhs4zsv2ujhylmd92c28pugauc0:
undefined: 0 QCK (6ops) (quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l on 44'/118'/0'/0/0) #0 js:2:quicksilver:quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l:
undefined: 0 QCK (13ops) (quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf on 44'/118'/1'/0/0) #1 js:2:quicksilver:quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf:
undefined: 0.000354 QCK (18ops) (quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev on 44'/118'/2'/0/0) #2 js:2:quicksilver:quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev:
undefined: 0.096554 QCK (16ops) (quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk on 44'/118'/3'/0/0) #3 js:2:quicksilver:quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk:
undefined: 0.616423 QCK (20ops) (quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0 on 44'/118'/4'/0/0) #4 js:2:quicksilver:quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0:
undefined: 0.078597 QCK (18ops) (quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw on 44'/118'/5'/0/0) #5 js:2:quicksilver:quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw:
undefined: 0.000281 QCK (8ops) (quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug on 44'/118'/6'/0/0) #6 js:2:quicksilver:quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug:
undefined: 0 QCK (9ops) (quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p on 44'/118'/7'/0/0) #7 js:2:quicksilver:quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p:
undefined: 0.000652 QCK (16ops) (quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d on 44'/118'/8'/0/0) #8 js:2:quicksilver:quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d:
undefined: 0.006127 QCK (24ops) (quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585 on 44'/118'/9'/0/0) #9 js:2:quicksilver:quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585:
undefined: 0.000695 QCK (13ops) (quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8 on 44'/118'/10'/0/0) #10 js:2:quicksilver:quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8:
undefined: 0.878931 QCK (36ops) (quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg on 44'/118'/11'/0/0) #11 js:2:quicksilver:quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg:
undefined: 0.168244 QCK (7ops) (quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm on 44'/118'/12'/0/0) #12 js:2:quicksilver:quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm:
undefined: 9.87608 QCK (43ops) (quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9 on 44'/118'/13'/0/0) #13 js:2:quicksilver:quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9:
undefined: 0.00166 QCK (14ops) (quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad on 44'/118'/14'/0/0) #14 js:2:quicksilver:quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad:
undefined: 0.970906 QCK (16ops) (quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju on 44'/118'/15'/0/0) #15 js:2:quicksilver:quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju:
undefined: 10.6671 QCK (1ops) (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 (10ops) (onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg on 44'/118'/0'/0/0) #0 js:2:onomy:onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg:
undefined: 0.00001582 NOM (26ops) (onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67 on 44'/118'/1'/0/0) #1 js:2:onomy:onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67:
undefined: 0 NOM (18ops) (onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m on 44'/118'/2'/0/0) #2 js:2:onomy:onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m:
undefined: 0.00001642 NOM (40ops) (onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp on 44'/118'/3'/0/0) #3 js:2:onomy:onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp:
undefined: 0.0000023 NOM (18ops) (onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c on 44'/118'/4'/0/0) #4 js:2:onomy:onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c:
undefined: 0.00041336 NOM (41ops) (onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he on 44'/118'/5'/0/0) #5 js:2:onomy:onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he:
undefined: 0.00000233 NOM (22ops) (onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l on 44'/118'/6'/0/0) #6 js:2:onomy:onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l:
undefined: 0.00001304 NOM (21ops) (onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k on 44'/118'/7'/0/0) #7 js:2:onomy:onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k:
undefined: 0.00052943 NOM (13ops) (onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6 on 44'/118'/8'/0/0) #8 js:2:onomy:onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6:
undefined: 0.00000891 NOM (28ops) (onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r on 44'/118'/9'/0/0) #9 js:2:onomy:onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r:
undefined: 0 NOM (11ops) (onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls on 44'/118'/10'/0/0) #10 js:2:onomy:onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls:
undefined: 0.00312342 NOM (21ops) (onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl on 44'/118'/11'/0/0) #11 js:2:onomy:onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl:
undefined: 0.00092845 NOM (11ops) (onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv on 44'/118'/12'/0/0) #12 js:2:onomy:onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv:
undefined: 0.214324 NOM (10ops) (onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj on 44'/118'/13'/0/0) #13 js:2:onomy:onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj:
undefined: 0.399186 NOM (10ops) (onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46 on 44'/118'/14'/0/0) #14 js:2:onomy:onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46:
undefined: 0.052621 NOM (3ops) (onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t on 44'/118'/15'/0/0) #15 js:2:onomy:onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t:
undefined: 1.13511 NOM (7ops) (onomy1xr8krhp99mp9ncrz6dfgre542nv0rc8l3er5t5 on 44'/118'/16'/0/0) #16 js:2:onomy:onomy1xr8krhp99mp9ncrz6dfgre542nv0rc8l3er5t5:
undefined: 0 NOM (0ops) (onomy102w826rmvswfhs4zsv2ujhylmd92c28pg90e8w on 44'/118'/17'/0/0) #17 js:2:onomy:onomy102w826rmvswfhs4zsv2ujhylmd92c28pg90e8w:
undefined: 0.005246 SEI (0ops) (sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v on 44'/118'/0'/0/0) #0 js:2:sei_network:sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v:
undefined: 0.010124 SEI (0ops) (sei1qvtnzptp30maznnhdg30xl2jtdq2shpn2s5qd6 on 44'/118'/1'/0/0) #1 js:2:sei_network:sei1qvtnzptp30maznnhdg30xl2jtdq2shpn2s5qd6:
undefined: 0 SEI (0ops) (sei1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw4vusxl on 44'/118'/2'/0/0) #2 js:2:sei_network:sei1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw4vusxl:
undefined: 0.027521 SEI (0ops) (sei1hgyf054qztvmty3cayuw9nedftlhejv5xd54l9 on 44'/118'/3'/0/0) #3 js:2:sei_network:sei1hgyf054qztvmty3cayuw9nedftlhejv5xd54l9:
undefined: 0 SEI (0ops) (sei1vc7s929uh2yxyhau4wsg5th9jzedvkurwspxau on 44'/118'/4'/0/0) #4 js:2:sei_network:sei1vc7s929uh2yxyhau4wsg5th9jzedvkurwspxau:
undefined: 0 SEI (0ops) (sei1qgrd8srhvald995uvpeyncvwg7afgkmrzsj8qa on 44'/118'/5'/0/0) #5 js:2:sei_network:sei1qgrd8srhvald995uvpeyncvwg7afgkmrzsj8qa:
undefined: 0.013449 SEI (0ops) (sei1n6vccpa77x7xyhnk98jy6gg3rmgjkazxen5vrm on 44'/118'/6'/0/0) #6 js:2:sei_network:sei1n6vccpa77x7xyhnk98jy6gg3rmgjkazxen5vrm:
undefined: 0.004018 SEI (0ops) (sei1v283e7h2plllyjwgqrexv2ge5e4z252u0d2fsj on 44'/118'/7'/0/0) #7 js:2:sei_network:sei1v283e7h2plllyjwgqrexv2ge5e4z252u0d2fsj:
undefined: 0 SEI (0ops) (sei1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ww5667 on 44'/118'/8'/0/0) #8 js:2:sei_network:sei1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ww5667:
undefined: 0.014582 SEI (0ops) (sei1jgk668h53gd9wn09mndq7uzgk80nr5d80upsc8 on 44'/118'/9'/0/0) #9 js:2:sei_network:sei1jgk668h53gd9wn09mndq7uzgk80nr5d80upsc8:
undefined: 0.01225 SEI (0ops) (sei1733g3dfzj6tulcqtvz628ypuqj0hvlrzxt3dg5 on 44'/118'/10'/0/0) #10 js:2:sei_network:sei1733g3dfzj6tulcqtvz628ypuqj0hvlrzxt3dg5:
undefined: 0 SEI (0ops) (sei1q09970dekm5hdku5tta7p9w6kldyyf25r76f5m on 44'/118'/11'/0/0) #11 js:2:sei_network:sei1q09970dekm5hdku5tta7p9w6kldyyf25r76f5m:
undefined: 0.005197 SEI (0ops) (sei1yhlye27fl05kg4nhmeu5d579m8ups9ewmzhvyg on 44'/118'/12'/0/0) #12 js:2:sei_network:sei1yhlye27fl05kg4nhmeu5d579m8ups9ewmzhvyg:
undefined: 0.00525 SEI (0ops) (sei1890w5jltm6wmq2jr9f9e8x4vhs5fx30qack6gk on 44'/118'/13'/0/0) #13 js:2:sei_network:sei1890w5jltm6wmq2jr9f9e8x4vhs5fx30qack6gk:
undefined: 0.014868 SEI (0ops) (sei1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap4jcxz7 on 44'/118'/14'/0/0) #14 js:2:sei_network:sei1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap4jcxz7:
undefined: 0 SEI (0ops) (sei10wwjgt3uluxt4zq4qxnkcv96nyz4cata6zw8d0 on 44'/118'/15'/0/0) #15 js:2:sei_network:sei10wwjgt3uluxt4zq4qxnkcv96nyz4cata6zw8d0:
undefined: 0 STARS (0ops) (stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu on 44'/118'/0'/0/0) #0 js:2:stargaze:stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu:
undefined: 3.26008 STARS (4ops) (stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2 on 44'/118'/1'/0/0) #1 js:2:stargaze:stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2:
undefined: 0 STARS (0ops) (stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0 on 44'/118'/2'/0/0) #2 js:2:stargaze:stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0:
undefined: 1.92135 STARS (8ops) (stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4 on 44'/118'/3'/0/0) #3 js:2:stargaze:stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4:
undefined: 0 STARS (6ops) (stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv on 44'/118'/4'/0/0) #4 js:2:stargaze:stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv:
undefined: 2.18507 STARS (0ops) (stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd on 44'/118'/5'/0/0) #5 js:2:stargaze:stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd:
undefined: 0.412001 STARS (1ops) (stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt on 44'/118'/6'/0/0) #6 js:2:stargaze:stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt:
undefined: 0.013246 STARS (3ops) (stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz on 44'/118'/7'/0/0) #7 js:2:stargaze:stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz:
undefined: 0.505242 STARS (2ops) (stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw on 44'/118'/8'/0/0) #8 js:2:stargaze:stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw:
undefined: 14.8231 STARS (3ops) (stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h on 44'/118'/9'/0/0) #9 js:2:stargaze:stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h:
undefined: 0.144375 STARS (0ops) (stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y on 44'/118'/10'/0/0) #10 js:2:stargaze:stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y:
undefined: 0.134885 STARS (0ops) (stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet on 44'/118'/11'/0/0) #11 js:2:stargaze:stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet:
undefined: 0.345038 STARS (3ops) (stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc on 44'/118'/12'/0/0) #12 js:2:stargaze:stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc:
undefined: 68.896 STARS (6ops) (stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x on 44'/118'/13'/0/0) #13 js:2:stargaze:stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x:
undefined: 147.288 STARS (2ops) (stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w on 44'/118'/14'/0/0) #14 js:2:stargaze:stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w:
undefined: 437.695 STARS (2ops) (stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql on 44'/118'/15'/0/0) #15 js:2:stargaze:stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql:
undefined: 236.477 STARS (1ops) (stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q on 44'/118'/16'/0/0) #16 js:2:stargaze:stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q:
undefined: 0 STARS (0ops) (stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6 on 44'/118'/17'/0/0) #17 js:2:stargaze:stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6:
undefined: 1.29223 CORE (68ops) (core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk on 44'/118'/0'/0/0) #0 js:2:coreum:core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk:
undefined: 0.385656 CORE (103ops) (core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq on 44'/118'/1'/0/0) #1 js:2:coreum:core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq:
undefined: 0.022387 CORE (81ops) (core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89 on 44'/118'/2'/0/0) #2 js:2:coreum:core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89:
undefined: 0.041095 CORE (122ops) (core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l on 44'/118'/3'/0/0) #3 js:2:coreum:core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l:
undefined: 0.013255 CORE (78ops) (core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux on 44'/118'/4'/0/0) #4 js:2:coreum:core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux:
undefined: 0.071675 CORE (90ops) (core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8 on 44'/118'/5'/0/0) #5 js:2:coreum:core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8:
undefined: 0 CORE (65ops) (core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp on 44'/118'/6'/0/0) #6 js:2:coreum:core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp:
undefined: 0 CORE (87ops) (core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g on 44'/118'/7'/0/0) #7 js:2:coreum:core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g:
undefined: 0.01149 CORE (60ops) (core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy on 44'/118'/8'/0/0) #8 js:2:coreum:core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy:
undefined: 0.61008 CORE (111ops) (core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea on 44'/118'/9'/0/0) #9 js:2:coreum:core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea:
undefined: 0 CORE (50ops) (core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw on 44'/118'/10'/0/0) #10 js:2:coreum:core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw:
undefined: 0.097674 CORE (96ops) (core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p on 44'/118'/11'/0/0) #11 js:2:coreum:core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p:
undefined: 0.503658 CORE (43ops) (core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j on 44'/118'/12'/0/0) #12 js:2:coreum:core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j:
undefined: 1.07568 CORE (88ops) (core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv on 44'/118'/13'/0/0) #13 js:2:coreum:core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv:
undefined: 11.7338 CORE (30ops) (core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try on 44'/118'/14'/0/0) #14 js:2:coreum:core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try:
undefined: 7.43719 CORE (44ops) (core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4 on 44'/118'/15'/0/0) #15 js:2:coreum:core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4:
undefined: 23.512 CORE (20ops) (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.088406 EGLD (345ops) (erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp on 44'/508'/0'/0/0) #0 js:2:elrond:erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp:
undefined: 0 EGLD (371ops) (erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6 on 44'/508'/1'/0/0) #1 js:2:elrond:erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6:
undefined: 0 EGLD (335ops) (erd1ql9pxrhe29cjr8qgxx3rtmh9lyax5x9dkvu3mfzrgt4e8hwk536ssl4sea on 44'/508'/2'/0/0) #2 js:2:elrond:erd1ql9pxrhe29cjr8qgxx3rtmh9lyax5x9dkvu3mfzrgt4e8hwk536ssl4sea:
undefined: 0 EGLD (356ops) (erd1sjvd5mh946cty4wq0ya0d82509tc8eulxjujrad5ztfwjlhkqz0qy5yzmn on 44'/508'/3'/0/0) #3 js:2:elrond:erd1sjvd5mh946cty4wq0ya0d82509tc8eulxjujrad5ztfwjlhkqz0qy5yzmn:
undefined: 0.0357369 EGLD (305ops) (erd149kzxgtymzzaddanlj02zhyhwves9wspvk8p69u325tjln5en9aqf8x8el on 44'/508'/4'/0/0) #4 js:2:elrond:erd149kzxgtymzzaddanlj02zhyhwves9wspvk8p69u325tjln5en9aqf8x8el:
undefined: 0 EGLD (280ops) (erd143yn6uvrfzjptq5g7wvzntl3fcthsxtxrp9f3dgasluj6q5n0pxq2td67n on 44'/508'/5'/0/0) #5 js:2:elrond:erd143yn6uvrfzjptq5g7wvzntl3fcthsxtxrp9f3dgasluj6q5n0pxq2td67n:
undefined: 0.827298 EGLD (208ops) (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: 7.26339 HBAR (332ops) (0.0.3663977 on 44/3030) hederaBip44#0 js:2:hedera:0.0.3663977:hederaBip44
undefined: 11.6187 HBAR (283ops) (0.0.3664525 on 44/3030) hederaBip44#1 js:2:hedera:0.0.3664525:hederaBip44
undefined: 4.59802 HBAR (253ops) (0.0.3664539 on 44/3030) hederaBip44#2 js:2:hedera:0.0.3664539:hederaBip44
undefined: 15.7598 HBAR (240ops) (0.0.3664563 on 44/3030) hederaBip44#3 js:2:hedera:0.0.3664563:hederaBip44
undefined: 0.0118205 ICP (88ops) (f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209 on 44'/223'/0'/0/0) internet_computer#0 js:2:internet_computer:04e529ca9ff4709b35af64dce4f0719e770d5e185e4ee972729b75495b27628fad0990203fe3ac7079c643a6dd23384e597c65b7bbebbf994b8304253f1bd124e4:internet_computer
undefined: 0 ICP (80ops) (6084b3d34e7d4efd544ea0c3617a816577d00feb0de0db71b560b7687e7d3c14 on 44'/223'/0'/0/1) internet_computer#1 js:2:internet_computer:0404b6a7df5dd483be4711fbdc9248af1e49b3a205334120118fe1dd9567da874d2655f681d9935b02139ffe1997c7fcb7781c04917303d90c7ea157d495ec30d3:internet_computer
undefined: 0 ICP (73ops) (ff5ed1dc2538d7a8b3158e7c9d9b05f80bc5f49f292f1ad2a59576a70bfc4721 on 44'/223'/0'/0/2) internet_computer#2 js:2:internet_computer:04c6d5dab70167c7b104904e57ee8afc84e8b4809c927ceec353a217f1402438b86bb9515e5bdbcc8f187c2c0c5f539d6459fc99c86af1244f452175fd9b736714:internet_computer
undefined: 0.383509 ICP (82ops) (a45d0e0afb2c416464342615b6ee1902ac6895cf5e9eab2ccc184978164e9310 on 44'/223'/0'/0/3) internet_computer#3 js:2:internet_computer:040e411918ebc5963b5f89938dd674d6cb95131ce3d335957cd8efd99cce3521ea22b3f0fc53996b9ce3373a86ca57def22b89829ae905fde5d22c4522a7af5aa2:internet_computer
undefined: 0.319333 ICP (67ops) (5084840b6ed50fa97b40c93863092770dc74f42bd2fbc742b76ec2999e789262 on 44'/223'/0'/0/4) internet_computer#4 js:2:internet_computer:046036d79bf131623410cfe77b7ccc32c923c6f8dc1b62448111328a2a791b1a7df2d1d4ca80659f3f0613e2334df370ab1c4e38c724decdf7f9f650a61e4ea090:internet_computer
undefined: 0.039535 ICP (58ops) (0ec8cbc167cf495b7800efe653586d14ee0a53ef8880c63129b180580b02a8af on 44'/223'/0'/0/5) internet_computer#5 js:2:internet_computer:04e3bde2b3aeee5ae2af7ffdd25cc416df033c04d084ac02166ee52281e81be7945b119ab171b224984a8ff45adf4cbf28a392524dbefff12edf5d2470efd43375:internet_computer
undefined: 0.267578 ICP (32ops) (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: 15.6806 XRP (202ops) (r9etPtq3oboweMPju5gdYufmvwhH2euz8z on 44'/144'/0'/0/0) #0 js:2:ripple:r9etPtq3oboweMPju5gdYufmvwhH2euz8z:
undefined: 13.3061 XRP (202ops) (rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH on 44'/144'/1'/0/0) #1 js:2:ripple:rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH:
undefined: 15.0187 XRP (197ops) (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:
undefined: 0 STX (153ops) (SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2 on 44'/5757'/0'/0/0) #0 js:2:stacks:02d8ff937901982551807aace226a5b1eae3d8c5c89d1eae39ccab9cd1d27a9739:
undefined: 22.687 STX (110ops) (SPJ68NSCQSTQ1AQRY1NJ5D4WWBEPDQ6X24R56J8A on 44'/5757'/2'/0/0) #2 js:2:stacks:02319a870c0e3d22b9c0169df3bae3029a9e5593f8dabbc7e4b6a1e356edafed77:
undefined: 10.0547 STX (145ops) (SP3WE1A84RCG3GWKRXYMXNRVQJ8PG3VDRKE7CMPM4 on 44'/5757'/1'/0/0) #1 js:2:stacks:03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229:
undefined: 0 STX (0ops) (SP20VP4RY6P3WFDTFGA6A7WFK3ZNN1P305SDWPB3Q on 44'/5757'/3'/0/0) #3 js:2:stacks:02ba832a893132328c5459add91b296287a70b4cbb889eaf1e53542864a853eb8e:
undefined: 8.71207 XLM (523ops) (GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC on 44'/148'/0') sep5#0 js:2:stellar:GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC:sep5
undefined: 8.43728 XLM (521ops) (GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ on 44'/148'/1') sep5#1 js:2:stellar:GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ:sep5
undefined: 1.5005 XLM (523ops) (GA4A2FH4YYI2RXPUC3NPGZQP7XX4CEJNREB27XVX7B7D5RIA3KOLSKTI on 44'/148'/2') sep5#2 js:2:stellar:GA4A2FH4YYI2RXPUC3NPGZQP7XX4CEJNREB27XVX7B7D5RIA3KOLSKTI:sep5
undefined: 46.3327 XLM (504ops) (GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM on 44'/148'/3') sep5#3 js:2:stellar:GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM:sep5
undefined: 1.50045 XLM (454ops) (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: 5.28869 XTZ (152ops) (tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF on 44'/1729'/0'/0') tezbox#0 js:2:tezos:0240051fc51799e60dcc8870415b87fc4fd948e71b23fdc0d9b8ac7438cf7d4708:tezbox
undefined: 0 XTZ (4ops) (tz1he4fPXP3c9fFrztYT3k7KyYuLb28arFNn on 44'/1729'/1'/0') tezbox#1 js:2:tezos:02fe3d777af5380ef0a431c4985772c9669743050cee5feff717c3c3272d7a2810:tezbox
undefined: 0 XTZ (0ops) (tz1SApkt3kmMaqNE1qtgADc6m3B49HZkFVDA on 44'/1729'/2'/0') tezbox#2 js:2:tezos:029d7bcf10737806147b22ba4578747ce4ac53e26b443c9eb1ac0e4d5bfbb8f67e:tezbox
undefined: 0.625 VET (7ops) (0xc4B17901FECf86932c3bb296BB00E7c6816Fd416 on 44'/818'/0'/0/0) vechain#0 js:2:vechain:0xc4B17901FECf86932c3bb296BB00E7c6816Fd416:vechain
undefined: 3.125 VET (5ops) (0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD on 44'/818'/0'/0/1) vechain#1 js:2:vechain:0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD:vechain
undefined: 1.25 VET (1ops) (0x6fc5998724338CDe55Bba798273FAdcDE79c5074 on 44'/818'/0'/0/2) vechain#2 js:2:vechain:0x6fc5998724338CDe55Bba798273FAdcDE79c5074:vechain
undefined: 0 VET (0ops) (0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3 on 44'/818'/0'/0/3) vechain#3 js:2:vechain:0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3:vechain
undefined: 0.625 VET (7ops) (0xc4B17901FECf86932c3bb296BB00E7c6816Fd416 on 44'/818'/0'/0/0) vechain#0 js:2:vechain:0xc4B17901FECf86932c3bb296BB00E7c6816Fd416:vechain
undefined: 3.125 VET (5ops) (0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD on 44'/818'/0'/0/1) vechain#1 js:2:vechain:0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD:vechain
undefined: 1.25 VET (1ops) (0x6fc5998724338CDe55Bba798273FAdcDE79c5074 on 44'/818'/0'/0/2) vechain#2 js:2:vechain:0x6fc5998724338CDe55Bba798273FAdcDE79c5074:vechain
undefined: 0 VET (0ops) (0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3 on 44'/818'/0'/0/3) vechain#3 js:2:vechain:0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3:vechain
undefined: 3.81799 ALGO (381ops) (TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4 on 44'/283'/0'/0/0) #0 js:2:algorand:TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4:
undefined: 3 ALGO (386ops) (RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ on 44'/283'/1'/0/0) #1 js:2:algorand:RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ:
undefined: 6.85595 ALGO (399ops) (YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE on 44'/283'/2'/0/0) #2 js:2:algorand:YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE:
undefined: 6.3573 ALGO (429ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA:
undefined: 3.09428 ALGO (356ops) (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.00007499 𝚝BTC (177ops) (tb1qgere6vgytp643rn0wgv5ws04j88ckagkdxr3tz on 84'/1'/0'/0/75) native_segwit#0 js:2:bitcoin_testnet:tpubDCgDNn312aj5XtrdMeA9TeQbp2HkMW2a1JNw2qhRLzUaFiDAAQK3Jzh6jzHpc6Agjn68mZgPQB2ZdQzfgRgXVXDi2FVECW7p4xGuK6Pa3b8:native_segwit
undefined [native segwit]: 0.00015 𝚝BTC (147ops) (tb1q0dwqlup62yxpfh3ktdre0393r9c2yfleqyvvee on 84'/1'/1'/0/72) native_segwit#1 js:2:bitcoin_testnet:tpubDCgDNn312aj5YVQsroTmVAWSVMpx2PM7m4toPJsHUricGUh457AwMZK55f2uNVxYdKeW8qDZDngveqFFcsFTWW7eZFbnYerfsf5YAdxU3K8:native_segwit
undefined [native segwit]: 0.00126485 𝚝BTC (172ops) (tb1qzjz2zrvr2nay8s4qcf943xgg2aexzhzjgkumsf on 84'/1'/2'/0/75) 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 𝚝BTC (175ops) (tb1ps95juzmugyh5rlr4c44nnvhz6qke2k6mev5wh6e8kupmrvvv3f8s3rnngy on 86'/1'/0'/0/83) taproot#0 js:2:bitcoin_testnet:tpubDD1s2jBEVuSpzKea6ie3HMCmkanzcfvc9BbQq8nRDUaAUJPGFi83RWFCNMartYsuxksbFR6tDmVGMaaRP7ng7uovwKT1WNjcuDW34st9R56:taproot
undefined [taproot]: 0.00045 𝚝BTC (159ops) (tb1pp55lh7z2llqjfpsyepqkqfcfvq472djcafny2dzkh4pg3djr8mvqwuaxsq on 86'/1'/1'/0/69) 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 (149ops) (2N66DhDzEshkHJbxPqj8DwLGZWDqxHLaA3h on 49'/1'/0'/0/74) segwit#0 js:2:bitcoin_testnet:tpubDCoPNx9aypg8jXFPWWYdpHS3MtXF5GPM3nY2UbvQSnEt8PELHAbnf2MknjprAMTYUYPNJzKCr2XSBVMp2wctdKbU1jw9MHA9cbgN7CakJQe:segwit
undefined [segwit]: 0.00151829 𝚝BTC (133ops) (2Mvx578cb4v1Xh1Di4HW5YSyPtkymonuAQu on 49'/1'/1'/0/60) 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.00072646 𝚝BTC (132ops) (mhfQ9bupqZMAjDX6cHuJMU9qcvJMmkzpfe on 44'/1'/0'/0/80) #0 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBsPABuHGzrXmApLgBRomQx7oFzQeuQn8gpzD27asWNYMeBzanzy4ru9hPE5q1HnQJCW2VcWm2Nz4cdNRB8Eo9xKPz6LGnrxQ:
undefined [legacy]: 0.0325138 𝚝BTC (101ops) (n2nNXGtKFf2z4ZuuY8AWHXkg5Gzf7eoJWz on 44'/1'/1'/0/81) #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.00015 BCH (589ops) (bitcoincash:qq63ah3lpuny2guaphlm99w0pj9wedw05qtmaewx9l on 44'/145'/0'/0/294) #0 js:2:bitcoin_cash:xpub6CYDTh442n9QYTMdQ7Uc7XDC2zCzZ5jM1m1DrWxmfQMToP2ngWZVtptKiksRoGgdcRSLDC6PgEULihbZE3SDt4ndVzoRNUEoZeTCsBUAWWP:
undefined: 0.00959073 BCH (555ops) (qztp0t6htndmhjvlzsdkt4033plrvsfxncuqz7cgn9 on 44'/145'/1'/0/287) #1 js:2:bitcoin_cash:xpub6CYDTh442n9QaLF3Z2i5L9QENTixN9kGH5XCYh2J5UTHuu99Y2W1sxm2HcX9sQUe2xmv4r3GVmn8GdTvCsLEof448VdZEmdpfmzX7Dk3AJx:
undefined: 0.00025926 BCH (526ops) (qpy4ud96uekq6qd29zcfn9ju9a7dxxwus5v7d0eacw on 44'/145'/2'/0/260) #2 js:2:bitcoin_cash:xpub6CYDTh442n9QdmbZ2RXVmndx8Hv2cFDKjhzANqnPkFjpcqaztmjEdhB9wiiYxJFncp8Et32XZF2YvsC6sXmDRFGEwgjVzQDinZ2xmgZuyb9:
undefined: 0.0306042 BCH (512ops) (qr8w05pxzw7u49273539lsyxeankzh05yq0rm6rj2u on 44'/145'/3'/0/254) #3 js:2:bitcoin_cash:xpub6CYDTh442n9QftkdDJbR3GXhop6xxjkHdxgz9xcKkdq8Q7xF9ER8NXJicVwjXbnkBdbF7nc52wrAVhGoraVfQcsGCA2JwjWurCZQU6pNyHH:
undefined: 0 BCH (479ops) (qre8ry4fh3s62am5rav5zzqurhxnyjghqqyzxy43wy on 44'/145'/4'/0/220) #4 js:2:bitcoin_cash:xpub6CYDTh442n9QiWxQaeXpmh16DkgpNqufRUMcj6rDqW2gF9Ronnvv9okteP6YQHZGYEojUXg8LL3kfrJzWHrfLFKKarvBgZBtSBRgqcX6w1G:
undefined: 0.00762096 BCH (476ops) (qrrnjr2e8an2h36jccwl5pngnadcu937dy74sxfg4k on 44'/145'/5'/0/252) #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 BTG (631ops) (AHhqwHpuWse5P5V38GmtUeejJbGuZXBLMj on 49'/156'/0'/0/303) segwit#0 js:2:bitcoin_gold:xpub6DHWENEKDQW8XxvbwvAFdCTGgzmHJkx8eY8bdGrL6iLmiqmPmCEscEvf7MBSDtbZWuLcUeQP9j87rJSgMhtwpUj3JSnQDoGHG2aqRVaSn43:segwit
undefined [segwit]: 0.0767709 BTG (589ops) (AM1aKjZ4iCia1tSnyEGwspxtNk7VGbk2kr on 49'/156'/1'/0/287) 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.303243 BTG (620ops) (GQqCooWH9DwAkhjcTo4rXELdPTXsewJKDQ on 44'/156'/0'/0/312) #0 js:2:bitcoin_gold:xpub6Cq1sXPAA8ijyqJpdR5hDVYJ7XyunpPgVpCWwPtReGJDwhqnWxBhu7wBJjbtdWHXSQiSyNDhxDXF4GmrXGatK4yDASHE3CgS3tsT41T81Dj:
undefined [legacy]: 0.0128624 BTG (611ops) (GgzYiBrFPQiseJfaBwwxKQA6ym66vuhqDh on 44'/156'/1'/0/322) #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.00661859 DASH (447ops) (XwB9AGbgDh1xrSTqKFuBqqi9NcLJjq4GBU on 44'/5'/0'/0/218) #0 js:2:dash:drkvjS8m2iwuqAXaxEBNS8ULFEKfoEEVNrSyzsEwioinaxb7TZ6fmP7rB3YiU3xcEoM39WoeDJdTS5sgVHQAeowB9BhdxkvDZhJErQk8AWTyaYk:
undefined: 0.00862809 DASH (424ops) (XcMcuFKQSF9FUjqJRNG9ZZTzFJy1ZrTo7t on 44'/5'/1'/0/197) #1 js:2:dash:drkvjS8m2iwuqAXayHufe3hHCwpvgLyxxGhMAiCSW4kjQ2jC6FKcYKqC2ePkovCh93HAt2AgXQSt4YdJG3XX1raRMbHwwJz6ezKi4yotkX7mjwb:
undefined: 0.00601724 DASH (448ops) (XwR8bzwF4Jq9T42Qe6wctH9E4ReTGFU6Xm on 44'/5'/2'/0/225) #2 js:2:dash:drkvjS8m2iwuqAXb2YSrc4u7qMoaf3UtCbF5A1gphQy6soFEDH7sHmvfZiAEzFse5Q3ycaoq6Su8iitWgNoxRriwzitNTWcwBkXrAdaf2xNXuo4:
undefined: 0.0903263 DASH (413ops) (Xg3tEcxBMv1KE3k8TJPGkrGzwuXXzgzTnw on 44'/5'/3'/0/208) #3 js:2:dash:drkvjS8m2iwuqAXb4LDphtncxj3UdVEACR5JCjoccMjdxfEkEhu7oB1vpZFyajdUEhapJgwi7uUq24ys47gm3VNj4vRQbVcV5YQkrGCpUyd7hDS:
undefined: 0 DASH (412ops) (Xfg36VdBHasjqYvkUoSUeY3vwDqNevFjzj on 44'/5'/4'/0/210) #4 js:2:dash:drkvjS8m2iwuqAXb7uLicFWmFdztLiHpa6PM7iTRQcYT9wX9vF565f9ZQ7ZrwYBKab7ctGrnUyyyn5zFBtBEazazVdBvneLkZ9bUjb83PMLEgpw:
undefined: 0.00209017 DASH (394ops) (Xgbza1jJSvq8Gf4nbkQqAMSThbYugzgrJU on 44'/5'/5'/0/207) #5 js:2:dash:drkvjS8m2iwuqAXbBAUgNiSVfsH5TurFQxb3bCTM84wuSY376sNUmXbTzLp6cPT8iLqD43n1GXTaHGAaemq8vEm2rwqu5bxtgemUp719HCTXW4S:
undefined: 0 DASH (0ops) (XiiyHQPZVuxXHnApv1XP2aNbz92zL8u6Hy on 44'/5'/6'/0/0) #6 js:2:dash:drkvjS8m2iwuqAXbCRvDwtZdhj7KX8KWD7NqtKJ3cmdPhKoAsfK26rcmmGGAoHdVCvsCgkkZMeyq9cxfExdrvJfzTXJFU8enhrj8pQ4vnTXXUh9:
undefined [native segwit]: 221.188 DGB (577ops) (dgb1q3cx4u5d9hsunaqsulhhqmq6jpp35ja6n504nal on 84'/20'/0'/0/276) native_segwit#0 js:2:digibyte:xpub6CW9KDgdnS4RwiFZjL1YpEbk1yYvD96EqiBXmq6xKRhe3rJJQaB78voA4DG2dJctnUeWZes6NhysTRpCmBgGxCCy39wcwRwSB4fx3Nd2AxP:native_segwit
undefined [native segwit]: 0 DGB (583ops) (dgb1qmn6trsq6d7plhp5kltqyher670xka4slhlkh54 on 84'/20'/1'/0/283) native_segwit#1 js:2:digibyte:xpub6CW9KDgdnS4Rz1D28B7SaGqGPp8Kb8gpvk1MCUeKb58HJTMhdXwCiwNLdZL7Ws6xU12uKat4szE9c2tV27jEfxSwW1uABgGXRJuXNCDZFD9:native_segwit
undefined [native segwit]: 0 DGB (0ops) (dgb1q5hv236zdu8fnxdr4mstuwzl76hrx9hr7g54x0l on 84'/20'/2'/0/0) native_segwit#2 js:2:digibyte:xpub6CW9KDgdnS4S2UHrC6Amu2eiJTRBAS1eoaXcVvS8yJtyoBsX7LwyeqjDwP3vBR2WLVhWbm9zdAMubfbK3WJDDmdPRGRT9MdV8RWZqJGwUYo:native_segwit
undefined [segwit]: 0 DGB (540ops) (SciZX7SQsoWp4x6aozbDuP8g9DPHe1ftgt on 49'/20'/0'/0/265) segwit#0 js:2:digibyte:xpub6CrEMM6LnNPxiDTZaMJwXTtYZXUQvvMwYb2Do892dbEYMrLEfFXZ8ygRrywE66brjMWbV948BJAbWGwV1oeyT7L57ZJykK8jVJ26UQiDVfp:segwit
undefined [segwit]: 121.448 DGB (535ops) (Sd4sK4Bm3JnP6if226pUNK58EwQtgDR2Q4 on 49'/20'/1'/0/261) 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]: 91.7864 DGB (556ops) (DMaVRzn3yr5Br97weCKozCKyJtxKZKrMCA on 44'/20'/0'/0/279) #0 js:2:digibyte:xpub6Cv4emS7S9zviCwMrBM1LhC7EdKY6QgFZ7T46nwEqtmaJda4EPH7Jv19h8GfhAPNTztGNWBBxribdod3wcxXRDkLmzRBxUgyZWxMoYLDgCX:
undefined [legacy]: 9.54899 DGB (543ops) (DMH6eEfwb4Z2GWd2xJQLtHH1utJeeb2zse on 44'/20'/1'/0/298) #1 js:2:digibyte:xpub6Cv4emS7S9zvmSxVKstTvb3QR4MYRMR1ySqUZbWc8A1vE2Y2BYw3FjLoxVtVYAeJjzR8PqEDDykAzGBUXsphL3xbgbzx6EtS2D8ikALFT52:
undefined [legacy]: 0 DGB (0ops) (DBWpWpZTMg31XMoamhZjKoSqahTVTG2qHi on 44'/20'/2'/0/0) #2 js:2:digibyte:xpub6Cv4emS7S9zvoT2jPveX3CwptyX75sUdfpgmx6DyVGme8QQit5WYE189GhbBJyPThotPBRdpQ5RaXNn8BCkmPNGCG1cirRswqvyvhhqgnAT:
undefined: 14.3302 DOGE (273ops) (DQviyByEfcuhffbjeRdy9LqhkXqWtFWTnW on 44'/3'/0'/0/137) #0 js:2:dogecoin:dgub8sBmteCcuFFejUSqGNBcwXRVJ4ZH33Sx3vTJG1o8Q1XwFRNFgT8fAreoj59VMzuU6EJmVMW9gLc9XJSXuxBeSUEt2s2QjSbfYCKkyBvF3pz:
undefined: 0.925609 DOGE (263ops) (DC3w4D6ZUFxfDYADPdPPdkC5Piyz5ugfGB on 44'/3'/1'/0/122) #1 js:2:dogecoin:dgub8sBmteCcuFFenEm7nyLHE2Zxt38inSEWx1bVAvWgAXbsHzuEHPaM4aP4J1oE2UWhoQ6cjN8rLEmuzqZHr9MyJvLE8zj527mdtweCgUBjuxj:
undefined: 5.97969 DOGE (279ops) (DBHS7ZWVrhqGAL9pFvT8iyV32Fc32bMK2m on 44'/3'/2'/0/142) #2 js:2:dogecoin:dgub8sBmteCcuFFepPh2rZbmtt3RujGFHSLrQiT7cawEm8PpDRumeEWWM4tsKtqm4vUYtHSJZvsifqbKXgUMGN89Y29Kh6DMoq2JCEBPAE5BVK2:
undefined: 5.87915 DOGE (271ops) (DHxn4gir9SM8iwM5wp1rYdrRrfxED7Fo3Z on 44'/3'/3'/0/138) #3 js:2:dogecoin:dgub8sBmteCcuFFer5KqAKz1JpoYNxNzLP5v2uStDCS6iMYMJz9qssa7cr4EeDGLuPaJ6VRGK6owP43wMFhgHtPXMe56ptKcVF7o5DqVf8mTMDz:
undefined: 6.92133 DOGE (275ops) (DHnmXBYJ29csNGfEgzw52Mz65KrWZeFTNp on 44'/3'/4'/0/139) #4 js:2:dogecoin:dgub8sBmteCcuFFev32JBmBE5kkWA9Fz4LHryxURKDHBm8kXT2s5X3cM4eGnk5YDgbRj2cGny85CWZLtFuz4n6SNEff68ZFXZRfeMcKYjM4ZABa:
undefined: 5.99049 DOGE (227ops) (DETaNNPBKBtPUksmUogJ16yUYrxENH3vsE on 44'/3'/5'/0/114) #5 js:2:dogecoin:dgub8sBmteCcuFFexZUo9SNmC2kEwPEUKxWo4VbEi5sZq9uAa3koQSeoUyxC5Z9XXqHq6hvYUYMvWL1iuVLnneqEfda8PdDDWPbvXggRGYDS2Yy:
undefined: 0 DOGE (0ops) (DNvgzFMvZG3k3o78cqn3y3YksWoSnC3uJ8 on 44'/3'/6'/0/0) #6 js:2:dogecoin:dgub8sBmteCcuFFf1Q45j57nYSbt99vo2P5iHSDdytuEPxtbcaRJrgTJCCJFx9AJhFHvyRNkQ8HxwQ61te2F8hhtChBWAL6RCDZEpbjvKGVRR3T:
undefined: 6.14204 KMD (464ops) (RT7yjo72rR1kYYGAWEsH6XBWSpSPZMP4cS on 44'/141'/2'/0/252) #2 js:2:komodo:v4PKUB9WZbMS4XNED8S4oAJzXQqPbfLCmNRNPW8QoETCA7opTJLFvrkm39QZAdLg8DygthREBvDRmrHDeVtEQ8C7iQDfXDSPTrzB2FAFkvgsQ9HA:
undefined: 20.8596 KMD (433ops) (RLZ1TxvB6nR8a8vUCaMTE2yz1j4ovxjLbp on 44'/141'/3'/0/241) #3 js:2:komodo:v4PKUB9WZbMS4XNEDBJ9e6csdTWjkQsBngGrmyPrPrwARdjCHQmEYDrU4Kq7HGhiDP6xnwdVwUp3pTCDBqPFJzzGWKwhGKyZ3R9twuUru5U57rPp:
undefined: 23.4628 KMD (469ops) (RLsxiYktsTs7pRuKCEuK3sBW2YyFCRHGxG on 44'/141'/1'/0/233) #1 js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:
undefined: 3.04444 KMD (483ops) (RWU2cHNzwG3GsgSR2VK7pwQBdL5b6qsv5q on 44'/141'/0'/0/243) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:
undefined: 0 KMD (0ops) (RXXzA1HUyBUt3vYKgRDwktBrUxGB8nT4bN on 44'/141'/4'/0/0) #4 js:2:komodo:v4PKUB9WZbMS4XNEDFpraB4oy9vXnEDhnEWtmApcz3bN67vrQpVc1DjN5AQDZdV5dt5iXcf1BFTzfmCuAVFoFH3TsW7S8FZfkKBeBvvdLZeretiq:
undefined [native segwit]: 0.0126431 LTC (583ops) (ltc1qrz4kmn4mpu07dnuugej9r3vnxe8speg90naq4d on 84'/2'/0'/0/270) native_segwit#0 js:2:litecoin:Ltub2YLUoe8MGLizFvLnAHJhiz3rdWG8UXqi9A9smDbuwPD44WPa1rB1EwyQwzRiVFKGH4mS6b5DRE3c3S9jZ944uaGcRK2XPinZcbdmo3P2vmq:native_segwit
undefined [native segwit]: 0.118398 LTC (528ops) (ltc1qqfs3cyx0lm5y7gw08pzn8u62hkeyx83ep6e9a5 on 84'/2'/1'/0/256) 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.173176 LTC (576ops) (MUwzhbcerkKLc7sH8NHt77ezD95qtieY3B on 49'/2'/0'/0/283) segwit#0 js:2:litecoin:Ltub2YDfX8FoxTFohkcgknuZr2WLrCNpq6ufHxguxyjoDWGDZ1GBUVSn5wwoD2ifjY13iERFGvauvW55p6ASVCbqiABnreHFCsV5LKps76aWDV3:segwit
undefined [segwit]: 0.0368079 LTC (547ops) (MJgNLkyn6LpWf6RJDLYto4mBS3241drdW1 on 49'/2'/1'/0/277) 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.00211352 LTC (580ops) (LcN7JkRo13ptNW983YGhyaAZMzYuxfsUa2 on 44'/2'/0'/0/290) #0 js:2:litecoin:Ltub2YwXt3Fm1MVHeGxpcxFhFTe1FkqDdVoeRp9FRnnqGrinFxJSDjXwVTnmjK56jhq83mxWmTKprWjLXqspQCYtxJmCnwCLJUPoZhjJEYMtcFd:
undefined [legacy]: 0 LTC (517ops) (LN61JXYVK39GhKJvA2JpdacrdRC9onCY4U on 44'/2'/1'/0/285) #1 js:2:litecoin:Ltub2YwXt3Fm1MVHgsz1XL8MM6MicGgumPzfpD1pZcsk15P4LZHiF4wpFPGvTi58u9evgMd4dV9K7cMMA532mq1HbEknZZ5UayUuRbSsM5VzptL:
undefined [legacy]: 0 LTC (0ops) (LiDx2poS1M1DwYU2zHuvKEQAAFUdpRgP59 on 44'/2'/2'/0/0) #2 js:2:litecoin:Ltub2YwXt3Fm1MVHgy4nREA2MxDT5Em3QsQv2Yu6gfGSPudxTKgcovLsh1sV3rje75uZ5eAkyJLkbHxPBFU3Wbhd2Q6XF863omV2XfWhsC2ACJ4:
undefined: 0.015 PPC (559ops) (PCJwkHpZdYsmvnJn83aobNm3YX2zA5vAdg on 44'/6'/0'/0/271) #0 js:2:peercoin:r29uBq5Ssx6sA9FNEk5mVhtPMxBWcJoUhAz1WrZbMwV6fu6eEqrFLYj8NkGyDPWmTCL3pUt8csCLhKsUmSdp3kdJMwF6YS2qdoHsPBzSZZfpPEkW:
undefined: 0.015 PPC (533ops) (PJN7WLWj2wqFM65w8UJJ64FXUn6zKriCaF on 44'/6'/1'/0/264) #1 js:2:peercoin:r29uBq5Ssx6sA9FNEmYpQhRha2M1eK4Ns3xC5JXZWW1qRp9pR4S1fFH6iHoLgGZZ1Zy41RiyUpqffhkkZYeUndDXtPD6ky2VNpK9i3KCVCfPBi3a:
undefined: 0.015143 PPC (554ops) (PWRU9sSQ6VxGpCpQYWGz6CLzCqgQK7y6Mq on 44'/6'/2'/0/275) #2 js:2:peercoin:r29uBq5Ssx6sA9FNEoPrhN2L2RHE9aXCd7LWARpRsJEuToBqdBzDc7tDnJutEvAv4zBTmaw5dtMsUXQT3Hp33fAqP2TDiJQR2PMNev7xXiFMSZFg:
undefined: 0 PPC (518ops) (PTgzHuszG3APM51nJFfVf3fFbAed2VRidm on 44'/6'/3'/0/271) #3 js:2:peercoin:r29uBq5Ssx6sA9FNErFa71QRSJEbti3YLZRDJpJRaH3ymivovbFrsTFToGcV1bzzgqXSY6rPB372i8sJrPsLpFSX8sGkwEHwYvrqbDLgsx4fWhe6:
undefined: 0 PPC (0ops) (PEhazqjGHH54d5pSdtxvKKJZioREKjuCKY on 44'/6'/4'/0/0) #4 js:2:peercoin:r29uBq5Ssx6sA9FNEtmywUWnbp3KTYNoAeotePriFBpTtMLCLxDSFDmptND74NjVLfmm9vTs9opxhVbXT8CjB8eMDUGksmBashiZLTuXN2iw6zTv:
undefined: 21.6368 PIVX (604ops) (DNUbsWFSuutKwrtWUdp525BRVd4jHgiZMD on 44'/77'/0'/0/288) #0 js:2:pivx:ToEA6mkkScBzPS3QGwz3pD9XiPf8YynSCGuC65sMGexuJ8oLkqEAZRAcR5VqKvRV5Phzid1ZG7myNKF6XtRBtVKT5JhgUpaKZtwAq3XzeH3Qnmz:
undefined: 3.82814 PIVX (559ops) (DNSAaXj2YHrL8c24yqncwqFgyKAfitBbHn on 44'/77'/1'/0/270) #1 js:2:pivx:ToEA6mkkScBzPS3QK9QkPuwWHUEA284HMW86PxW1zkXJAAJa9zXWJjVwBvYEt5HTwDHyDpyfC2VRj3Sy9MBegtxX3kBM1dyiPx81KcwoA8DT75c:
undefined: 3.96012 PIVX (569ops) (DU64yL4TW9aPPRowXjzib3ZRYo3PmEmRCk on 44'/77'/2'/0/297) #2 js:2:pivx:ToEA6mkkScBzPS3QNaWms316jJrjhxFoXsKpv21fDZnZUqeqnX1FpofXYA3ARA7qSEHn2wmdd7EPMM1qJ36CiFP3Ycu6p4EMHKYgV49aAFQYdwt:
undefined: 17.2045 PIVX (597ops) (DM1xwgprKksKzApE2pcTmqGQpqWsCKyRGD on 44'/77'/3'/0/307) #3 js:2:pivx:ToEA6mkkScBzPS3QRXKa6QiRvZKUYefypt8wZupR6GaqD77SPLwzgmraaKbGgcirVLLXkQ6XjZJcGhoLRL2xP5ZBVjD5TUz6ZY6WkgXBpJW5rNU:
undefined: 0 PIVX (0ops) (DGvVBqdtcbSTuXgf6JjAxG5a8MSRXk76Tw on 44'/77'/4'/0/0) #4 js:2:pivx:ToEA6mkkScBzPS3QS97WZjaF1BidcB1ywJUVPvH1UAbz9BzZ1U8Uzo3zVwrmNHH18cJiwpjFEUnvCu5hqTQs5df1A7f1vBttM65ReXpJhxvKtvh:
undefined [segwit]: 1.82914 VTC (531ops) (3NRGJKobpPMYAKaUvhRjLsGhB8DVi6FHRp on 49'/28'/0'/0/245) segwit#0 js:2:vertcoin:xpub6BzrB2TZiXxTtjegub5eT5QAmDtrDVNDnwj8eJJgBqgbLwXxsRQgQQoP5eCaHNyvLxFXkB2doyxytbGkUvoQtepWayC3hWgoL7DbwshW4yS:segwit
undefined [segwit]: 3.01204 VTC (547ops) (3L1AjnueEzEfK88MqawcqW4t8DnnAmvtFq on 49'/28'/1'/0/272) 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]: 23.5928 VTC (549ops) (Vnid7kMoBhmEeggVn2A5piZVQNw3kvrgc3 on 44'/28'/0'/0/291) #0 js:2:vertcoin:xpub6D9ewWZRDVHmnJbjdoaFbC54UhW6iZ4k2n9tLiTPJsqp7x16bAdkGhK7yy7cnvegoJz5HwBGcoQpSv1Mp6oTDYDgHd2RPHennaNsQuBuaXR:
undefined [legacy]: 0.821557 VTC (519ops) (VxF7sfcNJJL7RqrPTPdwRjpaVZLAbQWD9E on 44'/28'/1'/0/262) #1 js:2:vertcoin:xpub6D9ewWZRDVHmoTUYA4SfZTKVP9QvkovJmZ5bPbj12dgZEUb6DtS76PP144mkfCfBDsXvEFsEN7hsrbdvBA34mg78owvpVXQAuQRKmggGvGF:
undefined [legacy]: 0 VTC (0ops) (VgM8spUbqP3r1qdnswXaSrqGeMVnERAuuV on 44'/28'/2'/0/0) #2 js:2:vertcoin:xpub6D9ewWZRDVHmtBmAgSQ2HSyfeZs9ebe5iYurVh2rBbpHRpQX52u3iZPqChjvoPYUmMD1jpGeNqVCkXEridcr92DTEFhngPjieTtiPjJGGEA:
undefined [segwit]: 6.271 VIA (538ops) (EPcWRykK7k7CqL9a19w4XwzMxDnjivbC6u on 49'/14'/0'/0/252) segwit#0 js:2:viacoin:xpub6BnHRZZc2q3Bq7c8LWrKVaek5cChKLozvgLvD4uS52XX9qvVv1AfXtGnQqs7z1fy58DCXc7333iznM3enL4y3gAjx9bbJAhEd3f9Bf8FMAL:segwit
undefined [segwit]: 16.1216 VIA (545ops) (ETDA6DvKwMf3s4xe6qiysLTAo8CKB5eiMA on 49'/14'/1'/0/268) 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]: 14.1455 VIA (485ops) (VxUFsmWFwunw8DMRQXhbzVBVjQXCgifhdZ on 44'/14'/0'/0/247) #0 js:2:viacoin:xpub6BqwJGyyRny96T4yirVKJ3iqL3dznXfrtohfLE5AgKButrt9PHen5v2yACKPuMZg53z5vmYkFh7NQeXotr714kgNUuuBD7HHpuZcfQpqtVB:
undefined [legacy]: 4.39549 VIA (517ops) (VxBDnTiH3iumTdD9yuyDb2ADrKuHQ8SS5b on 44'/14'/1'/0/275) #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 ZEN (442ops) (znRLSz1EauUygLPuo9TsTergQmVJ9c8gwQ4 on 44'/121'/0'/0/205) #0 js:2:zencash:xpub6C68jAb8xasfmbmg37N3W5TsYWdTb6xLCtjwz5oSVAdi6Jxzx6FeBQcQazySrCXnsGZKaT9MXB9i4Lny4AoFAVZtSy6kVExyheF7X5Msvu3:
undefined: 0.26935 ZEN (433ops) (znZU3JWCHuF871rEzySVjmReG2rLe54Zcem on 44'/121'/1'/0/206) #1 js:2:zencash:xpub6C68jAb8xasfrBmUVvZbdXydhq15bdfePn1qhjb32azt3GkzoqBCQuRaZKPYp9T9uhr7TYCANdXanzeXfXp4qMjw7ijiPPNbBKmGRZRFeoa:
undefined: 0.152108 ZEN (449ops) (znTrVv2PnyA4u9r6eH86TCHECm4VhwaWixj on 44'/121'/2'/0/236) #2 js:2:zencash:xpub6C68jAb8xasfsZCbDtbqPTydFZEHjfzFP75ZQyizidPdLPHNbf41HqQq8RiHMJNuXx71D15Uv9yVpxHkxicSAzKCPVqi1gCKkJTdCN6MK7Q:
undefined: 0 ZEN (452ops) (znceeXDw82AF8amuc7pqt1DN8Hc7ZBsiaTS on 44'/121'/3'/0/239) #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 (275ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:polygon:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 4.0421 MATIC (251ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:polygon:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 2.02249 MATIC (231ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:polygon:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00436744 MATIC (266ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:polygon:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 2.79288 MATIC (231ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:polygon:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0.00486619 MATIC (204ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:polygon:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0 MATIC (163ops) (0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E on 44'/60'/6'/0/0) #6 js:2:polygon:0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E:
undefined: 0 MATIC (157ops) (0x48ec5fC762B9300e3B5e04E8ca634165240A1B15 on 44'/60'/7'/0/0) #7 js:2:polygon:0x48ec5fC762B9300e3B5e04E8ca634165240A1B15:
undefined: 10.1088 MATIC (140ops) (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.00000002 𝚝ETH (109ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0132066 𝚝ETH (131ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0215609 𝚝ETH (121ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:ethereum_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00661946 𝚝ETH (99ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.014182 𝚝ETH (101ops) (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.00011561 𝚝ETH (116ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_holesky:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00323982 𝚝ETH (111ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_holesky:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00004129 𝚝ETH (122ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:ethereum_holesky:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00233847 𝚝ETH (128ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_holesky:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.234366 𝚝ETH (62ops) (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.00303886 ETH (16ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00110261 ETH (24ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00063924 ETH (13ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00084261 ETH (14ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00008202 ETH (15ops) (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.98131 𝚝ETH (63ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0121187 𝚝ETH (73ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00075886 𝚝ETH (75ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00005256 𝚝ETH (52ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00011247 𝚝ETH (34ops) (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: 296.225 SGB (553ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:songbird:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 57.4798 SGB (535ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:songbird:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.000525 SGB (556ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:songbird:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 296.227 SGB (525ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:songbird:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 287.395 SGB (121ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:songbird:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 SGB (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:songbird:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.002625 GLMR (517ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonbeam:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 2.82811 GLMR (523ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonbeam:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 9.8741 GLMR (457ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonbeam:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 28.5753 GLMR (491ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonbeam:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 18.7216 GLMR (109ops) (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: 3,637.13 BTT (445ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:bittorrent:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 7,896.84 BTT (474ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:bittorrent:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 4,259.71 BTT (467ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:bittorrent:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 1,223.65 BTT (393ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:bittorrent:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 1,475,155 BTT (133ops) (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: 2.5561 EWT (349ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:energy_web:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 1.27805 EWT (402ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:energy_web:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0 EWT (409ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:energy_web:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 1.27805 EWT (397ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:energy_web:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 2.41716 EWT (127ops) (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: 3.59754 ASTR (454ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:astar:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 3.6413 ASTR (459ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:astar:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 3.59633 ASTR (446ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:astar:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 3.64054 ASTR (393ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:astar:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 315.481 ASTR (102ops) (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.147588 METIS (418ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:metis:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0101683 METIS (386ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:metis:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00975238 METIS (429ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:metis:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00827267 METIS (413ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:metis:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 METIS (130ops) (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.0959339 MOVR (366ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonriver:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 1.02474 MOVR (419ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonriver:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.096028 MOVR (441ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonriver:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 1.02485 MOVR (393ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonriver:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00002625 MOVR (121ops) (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: 184.352 VLX (103ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:velas_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 92.1762 VLX (101ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:velas_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 92.1762 VLX (102ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:velas_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 543.317 VLX (100ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:velas_evm:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 VLX (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:velas_evm:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 20.5577 SYS (447ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:syscoin:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.707334 SYS (403ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:syscoin:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 5.93376 SYS (435ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:syscoin:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 5.93385 SYS (378ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:syscoin:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 20.5578 SYS (122ops) (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.331915 𝚝ETH (66ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:base_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00000082 𝚝ETH (62ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:base_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00054611 𝚝ETH (60ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:base_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.374831 𝚝ETH (56ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:base_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.287531 𝚝ETH (47ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:base_sepolia:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:base_sepolia:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00105 KLAY (45ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:klaytn:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 3.1311 KLAY (44ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:klaytn:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 1.91147 KLAY (37ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:klaytn:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00105 KLAY (43ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:klaytn:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 3.82721 KLAY (36ops) (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: 1.54181 NEON (164ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:neon_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 13.4189 NEON (176ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:neon_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00644661 NEON (165ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:neon_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00710462 NEON (166ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:neon_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 1.54509 NEON (145ops) (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.0638196 LYX (115ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:lukso:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0927827 LYX (168ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:lukso:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00000859 LYX (144ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:lukso:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0608686 LYX (151ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:lukso:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.275419 LYX (117ops) (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.00057013 ETH (80ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:linea:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00324543 ETH (83ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:linea:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00053543 ETH (103ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:linea:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0 ETH (80ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:linea:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00267625 ETH (71ops) (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.252769 NEAR (60ops) (0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf on 44'/397'/0'/0'/0') nearbip44h#0 js:2:near:0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf:nearbip44h
undefined: 0.454405 NEAR (16ops) (85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798 on 44'/397'/0'/0'/1') nearbip44h#1 js:2:near:85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798:nearbip44h
undefined: 0.0520025 NEAR (24ops) (3cb1e394cc2cdc8923b410dd4d972959f14fd1c0f741e38607db1a3f27a35d65 on 44'/397'/0'/0'/2') nearbip44h#2 js:2:near:3cb1e394cc2cdc8923b410dd4d972959f14fd1c0f741e38607db1a3f27a35d65:nearbip44h
undefined: 0.0518366 NEAR (16ops) (cd21c9f87afdf5bdc49cfb9eb36a21cacdd7f5ce182cf98d0b48a5e9a875398e on 44'/397'/0'/0'/3') nearbip44h#3 js:2:near:cd21c9f87afdf5bdc49cfb9eb36a21cacdd7f5ce182cf98d0b48a5e9a875398e:nearbip44h
undefined: 0.0520849 NEAR (22ops) (aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93 on 44'/397'/0'/0'/4') nearbip44h#4 js:2:near:aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93:nearbip44h
undefined: 0.0524231 NEAR (27ops) (07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce on 44'/397'/0'/0'/5') nearbip44h#5 js:2:near:07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce:nearbip44h
undefined: 0.251048 NEAR (15ops) (bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7 on 44'/397'/0'/0'/6') nearbip44h#6 js:2:near:bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7:nearbip44h
undefined: 0.0520305 NEAR (8ops) (e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2 on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2:nearbip44h
undefined: 0.0519471 NEAR (6ops) (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
Performance ⏲ 35min 22s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 8s 28min 39s 40.4s 3min 21s 14min 46s 93.7s 47min 44s 36min 1s
Casper (7) 0.33ms 29.7s 3.42ms 13ms 12.4s 965ms 55.3s 25.1s
Celo (11) 988ms 71s 5.3s 23.5s 32.1s 23.8s 88.2s N/A
osmosis (17) 346ms 27.6s 985ms 1661ms 20.9s 259ms N/A N/A
desmos (17) 256ms 29s 336ms 1766ms 27.7s 367ms 0.88ms N/A
dydx (17) 180ms 83s 21ms 23s 21.2s 1760ms 1.00ms N/A
umee (17) 274ms 26.8s 25ms 2249ms 26.2s 317ms 1.83ms N/A
persistence (17) 923ms 42.8s 37ms 5.6s 29.2s 1532ms 1.54ms N/A
quicksilver (17) 353ms 36.8s 20ms 2136ms 30.5s 305ms 1.77ms N/A
onomy (17) 1093ms 37.6s 25ms 5.6s 31.6s 941ms 3.61ms N/A
sei_network (15) 189ms 22.5s 4.41ms N/A N/A N/A N/A N/A
stargaze (17) 266ms 14.1s 43ms 1866ms 25.3s 306ms 1.40ms N/A
coreum (17) 617ms 29.3s 19ms 3.7s 23.5s 853ms 13ms N/A
injective (0) 357ms N/A N/A N/A N/A N/A N/A N/A
Crypto org (6) 0.73ms 23s 6ms 3.47ms N/A N/A N/A N/A
Elrond (7) 251ms 48.3s 2467ms 11ms 15.3s 600ms 36.8s 33.9s
Hedera (4) 0.54ms 25.3s 14ms 1096ms 19.7s 1318ms 41.6s 5min 22s
InternetComputer (7) 0.41ms 8.4s 12ms 4.5s 8.1s 1554ms 21.3s 21.3s
XRP (3) 0.32ms 6.3s 0.92ms 5.1s 10.8s 559ms 22.3s 22.6s
Stacks (3) 0.48ms 15.8s 6s 4s 6.7s 707ms 13min 34s N/A
Stellar (5) 0.58ms 89.4s 2114ms 3.7s 26.3s 29.4s 33.5s N/A
Tezos (2) 206ms 8.8s 0.80ms 894ms N/A N/A N/A N/A
VeChain VTHO (3) 0.61ms 9.7s 3.80ms 1105ms N/A N/A N/A N/A
VeChain VET (3) 1.30ms 10.3s 0.66ms N/A N/A N/A N/A N/A
Algorand (5) 0.81ms 48.6s 19ms 1678ms 35.6s 363ms 30.9s 30.9s
Bitcoin Testnet (9) 0.46ms 39.4s 12ms 561ms 49.1s 607ms 32.5s 31.7s
Bitcoin Cash (6) 0.29ms 22.9s 7ms 909ms 30.5s 672ms 55.1s 57.3s
Bitcoin Gold (4) 0.19ms 20.9s 21ms 869ms 17.3s 962ms 44.4s 44.4s
Dash (6) 0.34ms 18.2s 9ms 733ms 23.5s 1052ms 44s 43.9s
Digibyte (6) 0.35ms 17.6s 13ms 926ms 28.5s 1121ms 77.4s 68.2s
DogeCoin (6) 0.30ms 9.7s 17ms 1140ms 26.5s 515ms 53.7s 53.4s
Komodo (4) 0.22ms 11s 9.5s 1558ms 28.1s N/A N/A N/A
Litecoin (6) 0.18ms 22.3s 15ms 1033ms 28.5s 575ms 56.5s 56.7s
Peercoin (4) 0.32ms 17.3s 1.17ms N/A N/A N/A N/A N/A
PivX (4) 0.31ms 17s 11ms 994ms 22.5s 413ms 49.2s 48.1s
Vertcoin (4) 0.18ms 19.4s 28ms 832ms 16.2s 280ms 46s 36.1s
Viacoin (4) 0.30ms 16.9s 14ms 715ms 14.5s 308ms 35.8s 35.4s
ZCash (4) 0.21ms 7s 1.18ms N/A N/A N/A N/A N/A
Horizen (4) 0.20ms 7.7s 998ms 306ms 9.5s 381ms 10.7s 10.9s
Ethereum Classic (5) 44ms 16.6s 1.77ms N/A N/A N/A N/A N/A
Polygon (9) 151ms 24.1s 20ms 2644ms 11.3s 270ms 31.8s 30.6s
Ethereum Sepolia (5) 43ms 6.7s 1.83ms 4.5s 10.3s 658ms 50.9s 30.8s
Ethereum Holesky (5) 30ms 6.8s 639ms 3.8s 12.5s 78ms 20.5s 10.3s
Arbitrum (5) 89ms 94.2s 12ms 1803ms 2853ms 657ms 20.9s 20.9s
Arbitrum Sepolia (5) 30ms 6.7s 19ms 3.7s 10.8s 1723ms 32s 32.3s
Flare (5) 23ms 6.1s 1.36ms N/A N/A N/A N/A N/A
Songbird (5) 29ms 7.3s 12ms 1331ms 8.7s 434ms 32.1s 31.7s
Moonbeam (5) 58ms 95.3s 29ms 1331ms 10.6s 370ms 1min 54s 62.5s
RSK (4) 50ms 6.3s 5ms N/A N/A N/A N/A N/A
Bittorent Chain (5) 39ms 7.1s 9ms 1517ms 9s 458ms 32.4s 32.5s
OP Mainnet (4) 48ms 76.5s 20ms N/A N/A N/A N/A N/A
OP Sepolia (0) 27ms 1572ms N/A N/A N/A N/A N/A N/A
Energy Web (5) 35ms 8.5s 17ms 3.9s 11.2s 1491ms 32.7s 33.4s
Astar (5) 50ms 24.4s 3.40ms 21.7s 12.5s 4.9s 2min 43s 73.4s
Metis (5) 128ms 8.2s 28ms 720ms 8.9s 937ms 33.9s 33.9s
Moonriver (5) 25ms 94.3s 13ms 856ms 6.5s 231ms 75.8s 42.5s
Velas EVM (5) 69ms 5.5s 13ms 1874ms 10.1s 2754ms 61.9s 32s
Syscoin (5) 57ms 4.1s 914ms 912ms 9s 241ms 4min 31s 9min 41s
Polygon zkEVM Testnet (0) 60ms N/A N/A N/A N/A N/A N/A N/A
Base (4) 93ms 63.3s 1.01ms N/A N/A N/A N/A N/A
Base Sepolia (5) 33ms 6s 23ms 2954ms 10.9s 761ms 31.9s 32.1s
Klaytn (5) 56ms 22.1s 6.8s 14s 10.1s 1564ms 22.7s 22.6s
Neon EVM (5) 47ms 13.4s 3.7s 24.7s 12.8s 2224ms 73.3s 23.1s
Lukso (5) 27ms 3.7s 4.49ms 643ms 9.6s 176ms 51.5s 30.8s
Linea (5) 51ms 79.1s 8ms 3.7s 9.9s 982ms 62.9s 62.8s
Linea Sepolia (0) 33ms 12.3s N/A N/A N/A N/A N/A N/A
NEAR (9) 208ms 27.7s 4.97ms 1266ms N/A N/A N/A N/A
Solana (0) 105ms 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.