Skip to content

Commit

Permalink
🐛 [BUGFIX] : Reset of market Store when refreshing app + uniformize m…
Browse files Browse the repository at this point in the history
…arket store actions (#7259)
  • Loading branch information
mcayuelas-ledger committed Jul 8, 2024
1 parent f979216 commit ff23360
Show file tree
Hide file tree
Showing 19 changed files with 138 additions and 46 deletions.
5 changes: 5 additions & 0 deletions .changeset/serious-emus-attack.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"live-mobile": patch
---

Fix Store
5 changes: 5 additions & 0 deletions .changeset/two-eyes-report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"ledger-live-desktop": patch
---

Currency in Market Tab reverted back to USD when refreshing App
6 changes: 6 additions & 0 deletions apps/ledger-live-desktop/src/renderer/actions/market.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { MarketListRequestParams } from "@ledgerhq/live-common/market/utils/types";
import { MarketState } from "../reducers/market";

export const setMarketOptions = (payload: MarketListRequestParams) => ({
type: "MARKET_SET_VALUES",
Expand All @@ -9,3 +10,8 @@ export const setMarketCurrentPage = (payload: number) => ({
type: "MARKET_SET_CURRENT_PAGE",
payload,
});

export const importMarketState = (payload: MarketState) => ({
type: "MARKET_IMPORT_STATE",
payload,
});
16 changes: 6 additions & 10 deletions apps/ledger-live-desktop/src/renderer/actions/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -316,10 +316,6 @@ export const setSwapHasAcceptedIPSharing = (hasAcceptedIPSharing: boolean) => ({
type: "SET_SWAP_ACCEPTED_IP_SHARING",
payload: hasAcceptedIPSharing,
});
export const toggleStarredMarketCoins = (payload: string) => ({
type: "TOGGLE_STARRED_MARKET_COINS",
payload,
});
export const setOverriddenFeatureFlag = (featureFlag: {
key: FeatureId;
value: Feature | undefined;
Expand Down Expand Up @@ -377,17 +373,17 @@ export const setAnonymousBrazeId = (payload: string) => ({
payload,
});

export const addStarredMarketCoins = (payload: string) => ({
type: "ADD_STARRED_MARKET_COINS",
export const setCurrencySettings = (payload: { key: string; value: CurrencySettings }) => ({
type: "SET_CURRENCY_SETTINGS",
payload,
});

export const removeStarredMarketCoins = (payload: string) => ({
type: "REMOVE_STARRED_MARKET_COINS",
export const addStarredMarketCoins = (payload: string) => ({
type: "MARKET_ADD_STARRED_COINS",
payload,
});

export const setCurrencySettings = (payload: { key: string; value: CurrencySettings }) => ({
type: "SET_CURRENCY_SETTINGS",
export const removeStarredMarketCoins = (payload: string) => ({
type: "MARKET_REMOVE_STARRED_COINS",
payload,
});
8 changes: 8 additions & 0 deletions apps/ledger-live-desktop/src/renderer/init.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ import { addDevice, removeDevice, resetDevices } from "~/renderer/actions/device
import { Device } from "@ledgerhq/live-common/hw/actions/types";
import { listCachedCurrencyIds } from "./bridge/cache";
import { LogEntry } from "winston";
import { importMarketState } from "./actions/market";

const rootNode = document.getElementById("react-root");
const TAB_KEY = 9;
Expand Down Expand Up @@ -168,6 +169,7 @@ async function init() {
}
const initialCountervalues = await getKey("app", "countervalues");
r(<ReactRoot store={store} language={language} initialCountervalues={initialCountervalues} />);

const postOnboardingState = await getKey("app", "postOnboarding");
if (postOnboardingState) {
store.dispatch(
Expand All @@ -176,6 +178,12 @@ async function init() {
}),
);
}

const marketState = await getKey("app", "market");
if (marketState) {
store.dispatch(importMarketState(marketState));
}

webFrame.setVisualZoomLevelLimits(1, 1);
const matcher = window.matchMedia("(prefers-color-scheme: dark)");
const updateOSTheme = () => store.dispatch(setOSDarkMode(matcher.matches));
Expand Down
5 changes: 5 additions & 0 deletions apps/ledger-live-desktop/src/renderer/middlewares/db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { settingsExportSelector, areSettingsLoaded } from "./../reducers/setting
import { State } from "../reducers";
import { Account, AccountUserData } from "@ledgerhq/types-live";
import { accountUserDataExportSelector } from "@ledgerhq/live-wallet/store";
import { marketStoreSelector } from "../reducers/market";
let DB_MIDDLEWARE_ENABLED = true;

// ability to temporary disable the db middleware from outside
Expand Down Expand Up @@ -41,6 +42,10 @@ const DBMiddleware: Middleware<{}, State> = store => next => action => {
next(action);
const state = store.getState();
setKey("app", "postOnboarding", postOnboardingSelector(state));
} else if (DB_MIDDLEWARE_ENABLED && action.type.startsWith("MARKET")) {
next(action);
const state = store.getState();
setKey("app", "market", marketStoreSelector(state));
} else {
const oldState = store.getState();
const res = next(action);
Expand Down
15 changes: 15 additions & 0 deletions apps/ledger-live-desktop/src/renderer/reducers/market.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ const initialState: MarketState = {
};

type HandlersPayloads = {
MARKET_IMPORT_STATE: MarketState;

MARKET_SET_VALUES: MarketListRequestParams;
MARKET_SET_CURRENT_PAGE: number;
};
Expand All @@ -40,13 +42,26 @@ const handlers: MarketHandlers = {
...state,
currentPage: payload,
}),

MARKET_IMPORT_STATE: (state, { payload }: { payload: MarketState }) => ({
...state,
marketParams: {
...state.marketParams,
range: payload.marketParams.range,
counterCurrency: payload.marketParams.counterCurrency,
order: payload.marketParams.order,
},
}),
};

// Selectors

export const marketParamsSelector = (state: { market: MarketState }) => state.market.marketParams;
export const marketCurrentPageSelector = (state: { market: MarketState }) =>
state.market.currentPage;

export const marketStoreSelector = (state: { market: MarketState }) => state.market;

// Exporting reducer

export default handleActions<MarketState, HandlersPayloads[keyof HandlersPayloads]>(
Expand Down
13 changes: 7 additions & 6 deletions apps/ledger-live-desktop/src/renderer/reducers/settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export const INITIAL_STATE: SettingsState = {
dismissedContentCards: {} as Record<string, number>,
anonymousBrazeId: null,

//MARKET
//Market
starredMarketCoins: [],
};

Expand Down Expand Up @@ -257,9 +257,10 @@ type HandlersPayloads = {
};
CLEAR_DISMISSED_CONTENT_CARDS: never;
SET_ANONYMOUS_BRAZE_ID: string;
ADD_STARRED_MARKET_COINS: string;
REMOVE_STARRED_MARKET_COINS: string;
SET_CURRENCY_SETTINGS: { key: string; value: CurrencySettings };

MARKET_ADD_STARRED_COINS: string;
MARKET_REMOVE_STARRED_COINS: string;
};
type SettingsHandlers<PreciseKey = true> = Handlers<SettingsState, HandlersPayloads, PreciseKey>;

Expand Down Expand Up @@ -447,11 +448,12 @@ const handlers: SettingsHandlers = {
...state,
anonymousBrazeId: payload,
}),
ADD_STARRED_MARKET_COINS: (state: SettingsState, { payload }) => ({

MARKET_ADD_STARRED_COINS: (state: SettingsState, { payload }) => ({
...state,
starredMarketCoins: [...state.starredMarketCoins, payload],
}),
REMOVE_STARRED_MARKET_COINS: (state: SettingsState, { payload }) => ({
MARKET_REMOVE_STARRED_COINS: (state: SettingsState, { payload }) => ({
...state,
starredMarketCoins: state.starredMarketCoins.filter(id => id !== payload),
}),
Expand Down Expand Up @@ -794,5 +796,4 @@ export const anonymousBrazeIdSelector = (state: State) => state.settings.anonymo

export const currenciesSettingsSelector = (state: State) => state.settings.currenciesSettings;

//MARKET
export const starredMarketCoinsSelector = (state: State) => state.settings.starredMarketCoins;
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ import { useInitSupportedCounterValues } from "~/renderer/hooks/useInitSupported
import { marketCurrentPageSelector, marketParamsSelector } from "~/renderer/reducers/market";
import { localeSelector, starredMarketCoinsSelector } from "~/renderer/reducers/settings";
import { BASIC_REFETCH, REFETCH_TIME_ONE_MINUTE, getCurrentPage, isDataStale } from "../utils";
import { removeStarredMarketCoins, addStarredMarketCoins } from "~/renderer/actions/settings";
import { useFetchCurrencyAll } from "@ledgerhq/live-common/exchange/swap/hooks/index";
import { addStarredMarketCoins, removeStarredMarketCoins } from "~/renderer/actions/settings";

export function useMarket() {
const lldRefreshMarketDataFeature = useFeature("lldRefreshMarketData");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ import { Page, useMarketActions } from "./useMarketActions";
import { useCallback } from "react";
import { useParams } from "react-router";
import { setMarketOptions } from "~/renderer/actions/market";
import { removeStarredMarketCoins, addStarredMarketCoins } from "~/renderer/actions/settings";
import { marketParamsSelector } from "~/renderer/reducers/market";
import { starredMarketCoinsSelector, localeSelector } from "~/renderer/reducers/settings";
import { useFetchCurrencyAll } from "@ledgerhq/live-common/exchange/swap/hooks/index";
import { localeSelector, starredMarketCoinsSelector } from "~/renderer/reducers/settings";
import { removeStarredMarketCoins, addStarredMarketCoins } from "~/renderer/actions/settings";

export const useMarketCoin = () => {
const marketParams = useSelector(marketParamsSelector);
Expand Down
3 changes: 3 additions & 0 deletions apps/ledger-live-desktop/src/renderer/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import { CounterValuesStatus, RateMapRaw } from "@ledgerhq/live-countervalues/ty
import { hubStateSelector } from "@ledgerhq/live-common/postOnboarding/reducer";
import { settingsExportSelector } from "./reducers/settings";
import logger from "./logger";
import { marketStoreSelector } from "./reducers/market";

/*
This file serve as an interface for the RPC binding to the main thread that now manage the config file.
Expand All @@ -39,6 +40,7 @@ export type Countervalues = Record<string, CounterValuesStatus | RateMapRaw> & {
export type PostOnboarding = ReturnType<typeof hubStateSelector>;

export type Settings = ReturnType<typeof settingsExportSelector>;
export type Market = ReturnType<typeof marketStoreSelector>;

// The types seen from the user side.
type DatabaseValues = {
Expand All @@ -52,6 +54,7 @@ type DatabaseValues = {
countervalues: Countervalues;
postOnboarding: PostOnboarding;
settings: Settings;
market: Market;
PLAYWRIGHT_RUN: {
localStorage?: Record<string, string>;
};
Expand Down
3 changes: 3 additions & 0 deletions apps/ledger-live-mobile/src/actions/market.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
MarketStateActionTypes,
MarketSetCurrentPagePayload,
MarketSetMarketFilterByStarredCurrenciesPayload,
MarketImportPayload,
} from "./types";

export const setMarketRequestParams = createAction<MarketSetMarketRequestParamsPayload>(
Expand All @@ -18,3 +19,5 @@ export const setMarketFilterByStarredCurrencies =
export const setMarketCurrentPage = createAction<MarketSetCurrentPagePayload>(
MarketStateActionTypes.MARKET_SET_CURRENT_PAGE,
);

export const importMarket = createAction<MarketImportPayload>(MarketStateActionTypes.MARKET_IMPORT);
42 changes: 24 additions & 18 deletions apps/ledger-live-mobile/src/actions/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -487,21 +487,6 @@ export type ProtectDataPayload = ProtectState["data"];
export type ProtectStatusPayload = ProtectState["protectStatus"];
export type ProtectPayload = ProtectDataPayload | ProtectStatusPayload;

// === PAYLOADS ===

export type ActionsPayload =
| Action<AccountsPayload>
| Action<AppStatePayload>
| Action<BlePayload>
| Action<NotificationsPayload>
| Action<RatingsPayload>
| Action<SettingsPayload>
| Action<WalletConnectPayload>
| Action<PostOnboardingPayload>
| Action<SwapPayload>
| Action<ProtectPayload>
| Action<EarnPayload>;

// === NFT ACTIONS ===
export enum NftStateActionTypes {
SET_GALLERY_CHAIN_FILTER = "SET_GALLERY_CHAIN_FILTER",
Expand All @@ -511,7 +496,7 @@ export enum NftStateActionTypes {
export type NftStateGalleryChainFiltersPayload = [keyof NftState["galleryChainFilters"], boolean];
export type NftStateGalleryFilterDrawerVisiblePayload = NftState["filterDrawerVisible"];

export type NftStatePayload =
export type NftPayload =
| NftStateGalleryChainFiltersPayload
| NftStateGalleryFilterDrawerVisiblePayload;

Expand All @@ -520,14 +505,35 @@ export enum MarketStateActionTypes {
SET_MARKET_REQUEST_PARAMS = "SET_MARKET_REQUEST_PARAMS",
SET_MARKET_FILTER_BY_STARRED_CURRENCIES = "SET_MARKET_FILTER_BY_STARRED_CURRENCIES",
MARKET_SET_CURRENT_PAGE = "MARKET_SET_CURRENT_PAGE",
MARKET_IMPORT = "MARKET_IMPORT",
}

export type MarketSetMarketFilterByStarredCurrenciesPayload =
MarketState["marketFilterByStarredCurrencies"];
export type MarketSetCurrentPagePayload = MarketState["marketCurrentPage"];
export type MarketSetMarketRequestParamsPayload = MarketState["marketParams"];

export type MarketStatePayload =
export type MarketImportPayload = Partial<MarketState>;

export type MarketPayload =
| MarketSetMarketFilterByStarredCurrenciesPayload
| MarketSetMarketRequestParamsPayload
| MarketSetCurrentPagePayload;
| MarketSetCurrentPagePayload
| MarketImportPayload;

// === PAYLOADS ===

export type ActionsPayload =
| Action<AccountsPayload>
| Action<AppStatePayload>
| Action<BlePayload>
| Action<NotificationsPayload>
| Action<RatingsPayload>
| Action<SettingsPayload>
| Action<WalletConnectPayload>
| Action<PostOnboardingPayload>
| Action<SwapPayload>
| Action<ProtectPayload>
| Action<EarnPayload>
| Action<MarketPayload>
| Action<NftPayload>;
7 changes: 7 additions & 0 deletions apps/ledger-live-mobile/src/context/LedgerStore.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import {
getBle,
getPostOnboardingState,
getProtect,
getMarketState,
} from "../db";
import { importSettings, setSupportedCounterValues } from "~/actions/settings";
import { importStore as importAccountsRaw } from "~/actions/accounts";
Expand All @@ -19,6 +20,7 @@ import { updateProtectData, updateProtectStatus } from "~/actions/protect";
import { INITIAL_STATE as settingsState } from "~/reducers/settings";
import { listCachedCurrencyIds, hydrateCurrency } from "~/bridge/cache";
import { getCryptoCurrencyById, listSupportedFiats } from "@ledgerhq/live-common/currencies/index";
import { importMarket } from "~/actions/market";

export default class LedgerStoreProvider extends Component<
{
Expand Down Expand Up @@ -106,6 +108,11 @@ export default class LedgerStoreProvider extends Component<
this.props.store.dispatch(importPostOnboardingState({ newState: postOnboardingState }));
}

const marketState = await getMarketState();
if (marketState) {
this.props.store.dispatch(importMarket(marketState));
}

const protect = await getProtect();
if (protect) {
this.props.store.dispatch(updateProtectData(protect.data));
Expand Down
10 changes: 9 additions & 1 deletion apps/ledger-live-mobile/src/db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { useDBRaw } from "@ledgerhq/live-common/hooks/useDBRaw";
import { Dispatch, SetStateAction } from "react";
import store from "./logic/storeWrapper";
import type { User } from "./types/store";
import type { BleState, ProtectState, SettingsState } from "./reducers/types";
import type { BleState, MarketState, ProtectState, SettingsState } from "./reducers/types";

export type Notifications = {
announcements: Announcement[];
Expand Down Expand Up @@ -266,6 +266,14 @@ export async function savePostOnboardingState(obj: PostOnboardingState): Promise
await store.save("postOnboarding", obj);
}

export function getMarketState(): Promise<MarketState> {
return store.get("market") as Promise<MarketState>;
}

export async function saveMarketState(obj: MarketState): Promise<void> {
await store.save("market", obj);
}

export async function getProtect(): Promise<ProtectState> {
const protect = (await store.get("protect")) as ProtectState;
return protect;
Expand Down
Loading

1 comment on commit ff23360

@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' ✅ 156 txs ❌ 15 txs 💰 14 miss funds ($1,064.20) ⏲ 32min 25s

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

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

4 critical spec errors

Spec injective failed!

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

Spec Polygon zkEVM Testnet failed!

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

Spec NEAR failed!

LedgerAPI5xx: API HTTP 502 https://rpc.mainnet.near.org

Spec Solana failed!

NetworkError: failed to get Stake Activation HyTUmK3STto4veDFmzdjjiRBYVeroxuwUQTo2rDpWWoQ: Invalid param: account not found
❌ 15 mutation errors
necessary accounts resynced in 0.15ms
▬ Casper 2.6.3 on nanoSP 1.1.1
→ FROM undefined: 3,124.98 CSPR (59ops) (0203b56bc181780f8fb173bafd8d483d6911282ec46d72692d0a5bbbb29ea242ed76 on 44'/506'/0'/0/2) casper_wallet#2 js:2:casper:0203b56bc181780f8fb173bafd8d483d6911282ec46d72692d0a5bbbb29ea242ed76:casper_wallet
max spendable ~3,124.88
★ using mutation 'Send ~50%'
→ TO undefined: 0 CSPR (76ops) (02034a7c5519d553bc282f768dca044e18746b7be9b711f2f310c190f33b3cbc4a4f on 44'/506'/0'/0/1) casper_wallet#1 js:2:casper:02034a7c5519d553bc282f768dca044e18746b7be9b711f2f310c190f33b3cbc4a4f:casper_wallet
✔️ transaction 
SEND  1,562.440969522 CSPR
TO 02034a7c5519d553bc282f768dca044e18746b7be9b711f2f310c190f33b3cbc4a4f
STATUS (6ms)
  amount: 1,562.440969522 CSPR
  estimated fees: 0.1 CSPR
  total spent: 1,562.540969522 CSPR
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Target'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Target": "24c266f2e7970190FF7aE4CF9c1cd2a96F66C3C3C1Fd902776f0b063691a31d1",
+   "Target": "02034A7c5519d553BC282F768Dca044e18746B7Be9B711f2F310c190f33B3cBC4A4F",
  }
(totally spent 3.7s – ends at 2024-07-08T17:06:59.956Z)
necessary accounts resynced in 0.25ms
▬ Casper 2.6.3 on nanoSP 1.1.1
→ FROM undefined: 3,122.33 CSPR (75ops) (0203d14bf1367769813e9c7233db26dc2208ca211532a0c2b1189992dc01d4bc098e on 44'/506'/0'/0/3) casper_wallet#3 js:2:casper:0203d14bf1367769813e9c7233db26dc2208ca211532a0c2b1189992dc01d4bc098e:casper_wallet
max spendable ~3,122.23
★ using mutation 'Transfer Max'
→ TO undefined: 0 CSPR (77ops) (02026b93627ed2f76551e7cef0466468b12db8fab806266107b69947d9c95ced9e7c on 44'/506'/0'/0/0) casper_wallet#0 js:2:casper:02026b93627ed2f76551e7cef0466468b12db8fab806266107b69947d9c95ced9e7c:casper_wallet
✔️ transaction 
SEND MAX
TO 02026b93627ed2f76551e7cef0466468b12db8fab806266107b69947d9c95ced9e7c
STATUS (0.56ms)
  amount: 3,122.2375 CSPR
  estimated fees: 0.1 CSPR
  total spent: 3,122.3375 CSPR
errors: 
warnings: amount MayBlockAccount
⚠️ TEST deviceAction confirm step 'Target'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Target": "C0794bc80eDfa58D3427Cb4E2861630900b3bf30390447B6b0A1614f2bff9234",
+   "Target": "02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c",
  }
(totally spent 4.2s – ends at 2024-07-08T17:06:59.975Z)
necessary accounts resynced in 0.28ms
▬ 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: 0 CRO (35ops) (cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl on 44'/394'/1'/0/0) #1 js:2:crypto_org:cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl:
✔️ transaction 
SEND MAX
TO cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl
STATUS (1.72ms)
  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 60.1s – ends at 2024-07-08T17:06:59.988Z)
necessary accounts resynced in 0.27ms
▬ 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 'send max'
→ TO undefined: 17.3755 CRO (44ops) (cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra on 44'/394'/0'/0/0) #0 js:2:crypto_org:cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra:
✔️ transaction 
SEND MAX
TO cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra
STATUS (0.87ms)
  amount: 17.37546309 CRO
  estimated fees: 0.00005 CRO
  total spent: 17.37551309 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-07-08T17:07:00.003Z)
necessary accounts resynced in 0.16ms
▬ Stacks 0.23.3 on nanoSP 1.1.1
→ FROM undefined: 7.62501 STX (200ops) (SP3WE1A84RCG3GWKRXYMXNRVQJ8PG3VDRKE7CMPM4 on 44'/5757'/1'/0/0) #1 js:2:stacks:03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229:
max spendable ~7.62487
★ using mutation 'Transfer Max'
→ TO undefined: 24.4666 STX (156ops) (SPJ68NSCQSTQ1AQRY1NJ5D4WWBEPDQ6X24R56J8A on 44'/5757'/2'/0/0) #2 js:2:stacks:02319a870c0e3d22b9c0169df3bae3029a9e5593f8dabbc7e4b6a1e356edafed77:
✔️ transaction 
SEND MAX
TO SPJ68NSCQSTQ1AQRY1NJ5D4WWBEPDQ6X24R56J8A
STATUS (1807ms)
  amount: 7.624871 STX
  estimated fees: 0.000145 STX
  total spent: 7.625016 STX
errors: 
warnings: 
✔️ has been signed! (5.4s) {"operation":{"id":"js:2:stacks:03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229:--OUT","hash":"","type":"OUT","senders":["SP3WE1A84RCG3GWKRXYMXNRVQJ8PG3VDRKE7CMPM4"],"recipients":["SPJ68NSCQSTQ1AQRY1NJ5D4WWBEPDQ6X24R56J8A"],"accountId":"js:2:stacks:03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-07-08T16:36:48.122Z","value":"7625016","fee":"145","transactionSequenceNumber":103},"signature":"01e3eeed84fe5a26355031936ffa3f990a76ab7f7a08f4d096824bce25d60e86a17f099e874ea1186dd7aba9e6046007aea9af4f54dff2298c46b3e670747d1483","rawData":{"xpub":"03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229","network":"mainnet","anchorMode":3}}
⚠️ TEST during broadcast
LedgerAPI4xx: transaction rejected
(totally spent 7.5s – ends at 2024-07-08T17:07:00.079Z)
necessary accounts resynced in 4.4s
▬ Stacks 0.23.3 on nanoSP 1.1.1
→ FROM undefined: 7.62501 STX (200ops) (SP3WE1A84RCG3GWKRXYMXNRVQJ8PG3VDRKE7CMPM4 on 44'/5757'/1'/0/0) #1 js:2:stacks:03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229:
max spendable ~7.62487
★ using mutation 'Send 50%~'
→ TO undefined: 0 STX (194ops) (SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2 on 44'/5757'/0'/0/0) #0 js:2:stacks:02d8ff937901982551807aace226a5b1eae3d8c5c89d1eae39ccab9cd1d27a9739:
✔️ transaction 
SEND  3.74782 STX
TO SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2
STATUS (1770ms)
  amount: 3.74782 STX
  estimated fees: 0.000145 STX
  total spent: 3.747965 STX
errors: 
warnings: 
✔️ has been signed! (6.5s) {"operation":{"id":"js:2:stacks:03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229:--OUT","hash":"","type":"OUT","senders":["SP3WE1A84RCG3GWKRXYMXNRVQJ8PG3VDRKE7CMPM4"],"recipients":["SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2"],"accountId":"js:2:stacks:03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-07-08T16:37:08.791Z","value":"3747965","fee":"145","transactionSequenceNumber":103},"signature":"00a42f1ef5bafbd1bc654213b7e6d857f795112c8a22538e29b5963a138a8138cf33f2e325fc2dce7328b9792f32929e6f163139e729c642d6ec9bd125cb9d4bf1","rawData":{"xpub":"03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229","network":"mainnet","anchorMode":3}}
⚠️ TEST during broadcast
LedgerAPI4xx: transaction rejected
(totally spent 8.8s – ends at 2024-07-08T17:07:00.083Z)
necessary accounts resynced in 0.12ms
▬ 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.97012803125 VTHO (2 ops) (! sum of ops 55 VTHO)
max spendable ~0.625
★ using mutation 'move all VTHO'
→ TO undefined: 1.25 VET (1ops) (0x6fc5998724338CDe55Bba798273FAdcDE79c5074 on 44'/818'/0'/0/2) vechain#2 js:2:vechain:0x6fc5998724338CDe55Bba798273FAdcDE79c5074:vechain
✔️ transaction SEND MAX TO 0x6fc5998724338CDe55Bba798273FAdcDE79c5074
STATUS (1656ms)
  amount: 53.45302803125 VTHO
  estimated fees: 0.5171 VET
  total spent: 53.97012803125 VTHO
errors: 
warnings: 
⚠️ VechainAppPleaseEnableContractDataAndMultiClause: Please enable contract data in Vechain app settings
(totally spent 1681ms – ends at 2024-07-08T17:07:00.171Z)
necessary accounts resynced in 0.09ms
▬ Algorand 2.1.11 on nanoS 2.1.0
→ FROM undefined: 5.26418 ALGO (452ops) (TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4 on 44'/283'/0'/0/0) #0 js:2:algorand:TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4: 2.264182 ALGO spendable. 
  TokenAccount Asia Reserve Currency Coin: 0 ARCC (0 ops)
  TokenAccount MESE USD Exchange Token: 0 USD-MESE (0 ops)
  TokenAccount MESE Index Fund: 0 MESX (0 ops)
  TokenAccount Micro-Microsoft: 0 M-MSFT (0 ops)
  TokenAccount Micro-Amazon: 0 M-AMZN (0 ops)
  TokenAccount Micro-Twitter: 0 M-TWTR (0 ops)
  TokenAccount Micro-Netflix: 0 M-NFLX (0 ops)
  TokenAccount Micro-Google: 0 M-GOOGL (0 ops)
  TokenAccount Micro-Apple: 0 M-AAPL (0 ops)
  TokenAccount Micro-Tesla: 0 M-TSLA (0 ops)
  TokenAccount Realio Token: 0 RIO (0 ops)
  TokenAccount realioUSD: 0 RUSD (0 ops)
  TokenAccount Liquid Mining Fund I: 0 RHO 1 (0 ops)
  TokenAccount Credit Opportunities Fund I: 0 VAL 1 (0 ops)
  TokenAccount Meld Gold: 0 MCAU (0 ops)
  TokenAccount Meld Silver: 0 MCAG (0 ops)
  TokenAccount PLANET: 0 PLANETS (0 ops)
  TokenAccount USDC: 0 USDC (0 ops)
  TokenAccount HEADLINE: 0 HDL (0 ops)
  TokenAccount Exodus: 0 EXIT (0 ops)
  TokenAccount Yieldly: 0 YLDY (0 ops)
  TokenAccount AlgoGems: 0 GEMS (0 ops)
  TokenAccount Choice Coin: 0 CHOICE (0 ops)
  TokenAccount Smile Coin: 0 SMILE (0 ops)
  TokenAccount goBTC: 0 goBTC (0 ops)
  TokenAccount goETH: 0 goETH (0 ops)
  TokenAccount goMINT: 0 goMINT (0 ops)
  TokenAccount Nimble: 0 NIMBLE (0 ops)
  TokenAccount CollecteursX: 0 CLTR (0 ops)
max spendable ~2.26318
★ using mutation 'opt-In ASA available'
→ TO undefined: 5.26418 ALGO (452ops) (TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4 on 44'/283'/0'/0/0) #0 js:2:algorand:TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4:
✔️ transaction 
    OPT_IN 0 ALGO
    TO TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4
    with fees=0.001 ALGO
STATUS (315ms)
  amount: 0 ALGO
  estimated fees: 0.001 ALGO
  total spent: 0.001 ALGO
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Amount'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Amount": "USDT 0.0",
+   "Amount": "USDt 0.0",
  }
(totally spent 3.1s – ends at 2024-07-08T17:07:00.285Z)
necessary accounts resynced in 0.18ms
▬ Horizen 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 0.194177 ZEN (509ops) (znjhxnCweCZpMcnW5mTth1qrmPYXhuDogBT on 44'/121'/0'/0/239) #0 js:2:zencash:xpub6C68jAb8xasfmbmg37N3W5TsYWdTb6xLCtjwz5oSVAdi6Jxzx6FeBQcQazySrCXnsGZKaT9MXB9i4Lny4AoFAVZtSy6kVExyheF7X5Msvu3:
2 UTXOs
0.105037     znoHJ7cHE4kKSVbrxCbrg7Ee4tvu8Tqb3TS 8ed2fa36300751ee15d3a739a15536b2323b1f3bb53ac25770f9b8be25414d19 @0 (1715)
0.0891397    zncQMKL7JiDGiP3sbJpoUVoh7raw31QLQ6E (change) rbf 22f2c45faef4eb4f398edef12c643561758995ae9037e1dd16d4786e42def749 @1 (1715)

max spendable ~0.19417
★ using mutation 'send OP_RETURN transaction'
→ TO undefined: 0.0945111 ZEN (491ops) (zngqiPRjtQ8UtqYUc4rQLWJmN4Bq7jXRoR2 on 44'/121'/2'/0/256) #2 js:2:zencash:xpub6C68jAb8xasfsZCbDtbqPTydFZEHjfzFP75ZQyizidPdLPHNbf41HqQq8RiHMJNuXx71D15Uv9yVpxHkxicSAzKCPVqi1gCKkJTdCN6MK7Q:
✔️ transaction 
SEND 0.01 ZEN
TO zngqiPRjtQ8UtqYUc4rQLWJmN4Bq7jXRoR2
with feePerByte=2 (network fees: 0=3, 1=2, 2=1)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (94ms)
TX INPUTS (1):
0.0891397    zncQMKL7JiDGiP3sbJpoUVoh7raw31QLQ6E 22f2c45faef4eb4f398edef12c643561758995ae9037e1dd16d4786e42def749@1
TX OUTPUTS (3):
0.01         zngqiPRjtQ8UtqYUc4rQLWJmN4Bq7jXRoR2 @0 (0)
0            @1 (0)
0.0791331    zneFKDjCNe96rsAt4Q9aBi8kGjXA8Svejj2 (change) @2 (0)
  amount: 0.01 ZEN
  estimated fees: 0.00000664 ZEN
  total spent: 0.01000664 ZEN
errors: 
warnings: 
✔️ has been signed! (5.7s) {"operation":{"id":"js:2:zencash:xpub6C68jAb8xasfmbmg37N3W5TsYWdTb6xLCtjwz5oSVAdi6Jxzx6FeBQcQazySrCXnsGZKaT9MXB9i4Lny4AoFAVZtSy6kVExyheF7X5Msvu3:--OUT","hash":"","type":"OUT","senders":["zncQMKL7JiDGiP3sbJpoUVoh7raw31QLQ6E"],"recipients":["zngqiPRjtQ8UtqYUc4rQLWJmN4Bq7jXRoR2"],"accountId":"js:2:zencash:xpub6C68jAb8xasfmbmg37N3W5TsYWdTb6xLCtjwz5oSVAdi6Jxzx6FeBQcQazySrCXnsGZKaT9MXB9i4Lny4AoFAVZtSy6kVExyheF7X5Msvu3:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-07-08T16:39:25.380Z","value":"1000664","fee":"664"},"signature":"010000000149f7de426e78d416dde13790ae9589756135642cf1de8e394febf4ae5fc4f222010000006a47304402204012d3e54482a65680ce8436e636c30dbf72fb2ca3d0b635afd40b6ee6cb95b50220571535fdc2dc8c12b13fd797011d23fb862fd7292413e62e9d2fc2c9b7374080012102500f344a7b0682134c0d45b605871ec9285a9b051248d4764b861b0652fde5dbffffffff0340420f00000000003f76a914acd280c6aa4b299d036784d6c4ef195778c8c1c888ac209ec9845acb02fab24e1c0368b3b517c1a4488fba97f0e3459ac053ea0100000003c01f02b40000000000000000156a13636861726c6579206c6f76657320686569646960bf7800000000003f76a9149060c50d8a7308516eb4a538ef19a7ace8a1fbc588ac209ec9845acb02fab24e1c0368b3b517c1a4488fba97f0e3459ac053ea0100000003c01f02b400000000"}
⚠️ TEST during broadcast
LedgerAPI4xx: An exception occurred during transaction send: 68: op-checkblockatheight-needed
(totally spent 5.9s – ends at 2024-07-08T17:07:00.366Z)
necessary accounts resynced in 0.19ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00659037 ETH (7ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:blast:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25: (! sum of ops 0.006584311006517915 ETH)  TokenAccount PacMoon: 0 PAC (3 ops)
max spendable ~0.00658913
★ using mutation 'move 50%'
→ TO undefined: 0.00054582 ETH (8ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:blast:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
✔️ transaction 
SEND  0.003294567260426474 ETH
TO 0x90bD48144e08b66490BcA9a756BDe9f004F17857
STATUS (179ms)
  amount: 0.003294567260426474 ETH
  estimated fees: 0.000000490220493 ETH
  total spent: 0.003295057480919474 ETH
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (188ms) optimistic operation: 
  -0.003295057480919474 ETH OUT        0x48a2ee2f4a2fdd3610edc02bbf66a8f57630ad3a1f30ff1f86aca8659e7d2904 2024-07-08T16:45
(in 10min)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "3295558939773473"
Received: "3295545842378482"
(totally spent 10min 4s – ends at 2024-07-08T17:07:00.392Z)
necessary accounts resynced in 31.5s
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.0011218 ETH (4ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:blast:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f: (! sum of ops 0.001120833698502706 ETH)
max spendable ~0.00112058
★ using mutation 'move 50%'
→ TO undefined: 0.00329554 ETH (8ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:blast:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
✔️ transaction 
SEND  0.000560293403594688 ETH
TO 0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25
STATUS (180ms)
  amount: 0.000560293403594688 ETH
  estimated fees: 0.00000048075783 ETH
  total spent: 0.000560774161424688 ETH
errors: 
warnings: 
✔️ has been signed! (2947ms) 
✔️ broadcasted! (208ms) optimistic operation: 
  -0.000560774161424688 ETH OUT        0x1ae9b9fb441165c67d4aae28c6cbe473f5a4889a66e22905041e09d39c9dd400 2024-07-08T16:56
(in 10min 12s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "561266798973688"
Received: "561255647162974"
(totally spent 10min 16s – ends at 2024-07-08T17:07:00.409Z)
necessary accounts resynced in 3.69ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.0500035 𝚝ETH (1ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892: (! sum of ops 0.05 𝚝ETH)
max spendable ~0.0500034
★ using mutation 'send max'
→ TO undefined: 0 𝚝ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:blast_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
✔️ transaction 
SEND MAX
TO 0x90bD48144e08b66490BcA9a756BDe9f004F17857
STATUS (785ms)
  amount: 0.05000350584537597 𝚝ETH
  estimated fees: 0.000000022692432 𝚝ETH
  total spent: 0.05000352853780797 𝚝ETH
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Amount'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Amount": "𝚝ETH 0.05000350584537597",
+   "Amount": "ETH 0.05000350584537597",
  }
(totally spent 1916ms – ends at 2024-07-08T17:07:00.465Z)
necessary accounts resynced in 0.44ms
▬ Solana 1.2.0 on nanoS 2.1.0
→ FROM undefined: 0.111236 SOL (99ops) (2kd3E2Kh7xvcQ1UVVfpys5GHVo1KKKRZXVmuTmkYWK4n on 44'/501'/5') solanaSub#5 js:2:solana:2kd3E2Kh7xvcQ1UVVfpys5GHVo1KKKRZXVmuTmkYWK4n:solanaSub (! sum of ops 0.110103901 SOL)
max spendable ~0.0887621
★ using mutation 'Delegate'
✔️ transaction 
  CREATE STAKE ACCOUNT: Br1wVG3krX4Hz8ciHXDcH5zF2EUZrUpnaH3RUG8gP3jB
  FROM: 2kd3E2Kh7xvcQ1UVVfpys5GHVo1KKKRZXVmuTmkYWK4n
  AMOUNT: 0.00238288 SOL
  SEED: stake:0.9774591143044804
  VALIDATOR: AmDHRdGGHijAoPGr5p5spysfwms3otXjJ2M7TYuqmwGA
STATUS (3.3s)
  amount: 0.0001 SOL
  estimated fees: 0.00228788 SOL
  total spent: 0.00238788 SOL
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (2988ms) optimistic operation: 
  -0.00238788 SOL    DELEGATE   3oDj2nsp4RsruwXaxxLZSthhJWWCuMeMBBkBfNzRuYmNoCg6iaYXNYoRZ9Fs7HydJXuuj6VgY3LA4sPxkNocgZb5 2024-07-08T16:54
(in 2min 5s)
⚠️ Error: expected delegation not found in account resources
(totally spent 2min 14s – ends at 2024-07-08T17:07:00.485Z)
necessary accounts resynced in 13.1s
▬ Solana 1.2.0 on nanoS 2.1.0
→ FROM undefined: 0.0521476 SOL (100ops) (3ZgtNrSv7F5uhNVWJJkKKvtQVnaubN3QDDJkvTtwMPdF on 44'/501'/6') solanaSub#6 js:2:solana:3ZgtNrSv7F5uhNVWJJkKKvtQVnaubN3QDDJkvTtwMPdF:solanaSub (! sum of ops 0.047585269 SOL)
max spendable ~0.0296763
★ using mutation 'Withdraw Delegation'
✔️ transaction 
  WITHDRAW FROM: HyTUmK3STto4veDFmzdjjiRBYVeroxuwUQTo2rDpWWoQ
  AMOUNT: 0.002383023 SOL
  TO: 3ZgtNrSv7F5uhNVWJJkKKvtQVnaubN3QDDJkvTtwMPdF
STATUS (638ms)
  amount: 0.002383023 SOL
  estimated fees: 0.000005 SOL
  total spent: 0.000005 SOL
errors: 
warnings: 
✔️ has been signed! (2408ms) 
✔️ broadcasted! (12.6s) optimistic operation: 
  +0.002378023 SOL   IN         36yUUsNeWHDphymK1ECiJe9b3kRh4jKDB7wgwVtwbJEY8u7JWp93U11UBooh7ZFALrzUntbz6VcTqPd73muPAm3N 2024-07-08T16:56
⚠️ NetworkError: failed to get Stake Activation HyTUmK3STto4veDFmzdjjiRBYVeroxuwUQTo2rDpWWoQ: Invalid param: account not found
(totally spent 33s – ends at 2024-07-08T17:07:00.509Z)
necessary accounts resynced in 0.11ms
▬ TezosWallet 3.0.3 on nanoS 2.1.0
→ FROM undefined: 5.28869 XTZ (152ops) (tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF on 44'/1729'/0'/0') tezbox#0 js:2:tezos:0240051fc51799e60dcc8870415b87fc4fd948e71b23fdc0d9b8ac7438cf7d4708:tezbox
max spendable ~5.28803
★ using mutation 'delegate unrevealed'
✔️ transaction 
DELEGATE 
TO tz1dRKU4FQ9QRRQPdaH4zCR6gmCmXfcvcgtB
with fees=0.000184
with gasLimit=100
with storageLimit=0
(estimatedFees 0.000558)
⚠️ TypeError: Cannot read properties of undefined (reading 'plus')
(totally spent 1448ms – ends at 2024-07-08T17:07:00.515Z)
⚠️ 40 spec hints
  • Spec Celo:
    • mutations should define a test(): Celo: Move 50% to another account, Celo: Send max to another account, Celo: Register Account, Celo: Unlock, Celo: Lock, Celo: Vote, Celo: Activate Vote, Celo: RevokeVote, Celo: Withdraw
    • mutations should define a testDestination(): Celo: Move 50% to another account, Celo: Send max to another account
    • mutation Celo: Send max to another account: unexpected status.warnings.amount = CeloAllFundsWarning: CeloAllFundsWarning – Please implement expectStatusWarnings on the mutation if expected
  • Spec osmosis:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
  • Spec dydx:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec umee:
    • mutation claim rewards: unexpected status.warnings.claimReward = ClaimRewardsFeesWarning: ClaimRewardsFeesWarning – Please implement expectStatusWarnings on the mutation if expected
  • Spec quicksilver:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
  • Spec sei_network:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Crypto org:
    • mutations should define a test(): move 50%, send max
    • mutations should define a testDestination(): send max
  • Spec Elrond:
    • mutations should define a testDestination(): move some ESDT
  • Spec Stacks:
    • mutations should define a testDestination(): Transfer Max, Send 50%~
  • Spec VeChain VTHO:
    • mutations should define a testDestination(): move all VTHO
  • Spec VeChain VET:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Algorand:
    • mutations should define a testDestination(): opt-In ASA available
  • Spec Bitcoin Testnet:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Bitcoin Gold:
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec DogeCoin:
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Komodo:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
  • Spec PivX:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
    • 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:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Flare:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec RSK:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec OP Mainnet:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec OP Sepolia:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Base:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Linea Sepolia:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Blast Sepolia:
    • There are not enough accounts (2) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Scroll:
    • There are not enough accounts (2) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Scroll Sepolia:
    • There are not enough accounts (2) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec 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
Portfolio ($1,064.20) – Details of the 68 currencies
Spec (accounts) State Remaining Runs (est) funds?
Casper (8) 421 ops , 24,979 CSPR ($505.80) 💪 999+ 02026b93627ed2f76551e7cef0466468b12db8fab806266107b69947d9c95ced9e7c
Celo (12) 1675 ops (+9), 16.9713 CELO ($8.52) 💪 509 0x246FFDB387F1F8c48072E1C13443540017bC71b7
osmosis (18) 112 ops (+8), 20.0717 OSMO ($9.54) 👍 413 osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l
desmos (18) 220 ops , 136.614 DSM ($0.38) 💪 999+ desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454
dydx (18) 4 ops , 0.00956286 dydx ($0.02) ⚠️ 1 dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6
umee (18) 156 ops , 722.217 UMEE ($1.15) 💪 999+ umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l
persistence (18) 1132 ops , 27.7766 XPRT ($5.19) 💪 647 persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf
quicksilver (18) 2 ops , 20.8304 QCK ($0.36) 💪 999+ quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l
onomy (18) 765 ops , 1.80475 NOM ($0.06) 💪 999+ onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg
sei_network (16) 0 ops , 0.077475 SEI ($0.00) sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v
stargaze (18) 230 ops , 874.424 STARS ($8.98) 💪 686 stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu
coreum (18) 1611 ops , 41.4269 CORE ($4.08) 👍 236 core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk
injective (0) 0 ops , 🤷‍♂️ ``
Crypto org (7) 209 ops , 34.751 CRO ($2.94) 💪 999+ cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra
Elrond (8) 2432 ops (+6), 0.942719 EGLD ($31.58) 💪 999+ erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp
Hedera (4) 1410 ops (+8), 39.0613 HBAR ($2.56) 💪 999+ 0.0.3663977
InternetComputer (8) 660 ops (+4), 1.01297 ICP ($7.01) 💪 999+ f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209
Stacks (4) 550 ops , 32.0916 STX ($43.01) 💪 620 SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2
VeChain VTHO (4) 13 ops , 5 VET ($0.23) ⚠️ 12 0xc4B17901FECf86932c3bb296BB00E7c6816Fd416
VeChain VET (4) 13 ops , 5 VET ($0.23) ⚠️ 12 0xc4B17901FECf86932c3bb296BB00E7c6816Fd416
Algorand (6) 2257 ops (+6), 9.36761 ALGO ($3.01) 💪 999+ TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4
Bitcoin Testnet (13) 1455 ops , 0.00109897 𝚝BTC ($0.00) ⚠️ 0 tb1qva8ex44kkad8gz4m7yukmc9hdvhml29ych5esm
Bitcoin Cash (7) 3557 ops (+10), 0.0468914 BCH ($15.29) 💪 760 qzu7rd0m05x7nfys6g3jq23yf8m9cl734utqqlxz72
Bitcoin Gold (6) 2725 ops (+8), 0.388906 BTG ($8.75) 💪 999+ AUqhNFN2jTnnh75cHB3qgoCFfa5aZRWvsi
Dash (7) 2942 ops (+10), 0.106724 DASH ($2.41) 💪 999+ XbHGAZCCUE6Mm4R1JKiv6Qok1ZwoDWDyrX
Digibyte (9) 3766 ops (+8), 443.923 DGB ($3.12) 💪 999+ dgb1q2hszjv3phrr2k2vjj0hup8j4uf0dzah232ha49
DogeCoin (7) 1956 ops (+6), 23.3058 DOGE ($2.45) ⚠️ 39 DFQnuGNzx1nd1sQgA4KtrkDvUri1yDW7Sj
Komodo (5) 2027 ops (+6), 17.5071 KMD ($4.96) 💪 999+ RSGqwA8F4ASZof3Gu1xmvTm8MFPFKKc5Zi
Litecoin (9) 3719 ops (+8), 0.342164 LTC ($22.03) 💪 999+ ltc1q8u4nr5jw4lvy0trjenmg9ct3mp9z9z3hvnpfx8
PivX (5) 2627 ops (+8), 46.6247 PIVX ($10.77) 💪 999+ DU6ZgY1Fh9zm6Pu1XYSntEabYRPYwFnXzy
ZCash (5) 1502 ops , 0.00368057 ZEC ($0.07) ⚠️ 2 t1SDpcaNZmbCH5TCCb5vNAh5bXs3isDtA5h
Horizen (5) 1998 ops (+6), 0.420776 ZEN ($3.55) 💪 999+ zngYjJP11Y66RaW9xnUoTGcoBa7MERvWubZ
Ethereum Classic (6) 685 ops , 0.232476 ETC ($4.68) 💪 999+ 0x7584df0780C5eB83b26aE55abBc265014f8bf897
Polygon (10) 2612 ops (+8), 18.8512 MATIC ($9.24) ⚠️ 22 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Sepolia (6) 781 ops , 0.00260545 𝚝ETH ($0.00) ⚠️ 1 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Holesky (6) 787 ops (+6), 0.233545 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum (6) 318 ops (+6), 0.00547814 ETH ($16.25) 💪 710 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum Sepolia (6) 567 ops (+6), 0.989888 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Flare (6) 2158 ops , 4.00005 FLR ($0.10) 👍 295 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Songbird (6) 2558 ops (+6), 937.251 SGB ($7.94) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonbeam (6) 2367 ops (+6), 59.5548 GLMR ($11.42) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
RSK (5) 794 ops , 0.00030914 RBTC ($17.25) 👍 56 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Bittorent Chain (6) 2182 ops (+6), 1,491,095 BTT ($1.12) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Mainnet (5) 121 ops , 0.00286711 ETH ($23.47) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Energy Web (6) 1932 ops (+6), 7.52818 EWT ($14.90) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Astar (6) 2108 ops (+6), 327.08 ASTR ($20.55) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Metis (6) 2022 ops (+6), 0.143021 METIS ($5.47) 👍 119 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonriver (6) 2008 ops (+6), 2.2352 MOVR ($20.05) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Velas EVM (6) 506 ops (+6), 912.013 VLX ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Syscoin (6) 2054 ops (+6), 57.0748 SYS ($5.59) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Polygon zkEVM Testnet (0) 0 ops , 🤷‍♂️ ``
Base (5) 249 ops , 0.00269293 ETH ($7.99) 👍 76 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Base Sepolia (6) 559 ops (+6), 0.99002 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Klaytn (6) 207 ops (+6), 8.80889 KLAY ($1.27) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Neon EVM (6) 1068 ops (+6), 16.0181 NEON ($7.16) 👍 294 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Lukso (6) 959 ops (+6), 0.490218 LYX ($1.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea (6) 667 ops (+4), 0.00680164 ETH ($20.19) 👍 78 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Blast (5) 34 ops (+4), 0.00886705 ETH ($30.62) 👍 170 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Blast Sepolia (2) 1 ops , 0.0500035 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Scroll (2) 2 ops , 0.01 ETH ($34.90) 💪 768 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Scroll Sepolia (2) 1 ops , 0.05 𝚝ETH ($0.00) 💪 996 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
NEAR (0) 0 ops , 🤷‍♂️ ``
Solana (11) 948 ops (+4), 0.352549 SOL ($66.92) 💪 999+ 5vhAGihUC1uKucJvreCgWWXB6LEptPwkwpqhkq9M6iaz
Stellar (6) 2793 ops (+8), 58.9783 XLM ($5.63) 💪 999+ GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC
Tezos (3) 156 ops , 5.28869 XTZ ($3.71) 👍 182 tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF
XRP (4) 604 ops (+4), 14.0047 XRP ($18.73) 💪 999+ r9etPtq3oboweMPju5gdYufmvwhH2euz8z
undefined: 0 CSPR (77ops) (02026b93627ed2f76551e7cef0466468b12db8fab806266107b69947d9c95ced9e7c on 44'/506'/0'/0/0) casper_wallet#0 js:2:casper:02026b93627ed2f76551e7cef0466468b12db8fab806266107b69947d9c95ced9e7c:casper_wallet
undefined: 0 CSPR (76ops) (02034a7c5519d553bc282f768dca044e18746b7be9b711f2f310c190f33b3cbc4a4f on 44'/506'/0'/0/1) casper_wallet#1 js:2:casper:02034a7c5519d553bc282f768dca044e18746b7be9b711f2f310c190f33b3cbc4a4f:casper_wallet
undefined: 3,124.98 CSPR (59ops) (0203b56bc181780f8fb173bafd8d483d6911282ec46d72692d0a5bbbb29ea242ed76 on 44'/506'/0'/0/2) casper_wallet#2 js:2:casper:0203b56bc181780f8fb173bafd8d483d6911282ec46d72692d0a5bbbb29ea242ed76:casper_wallet
undefined: 3,122.33 CSPR (75ops) (0203d14bf1367769813e9c7233db26dc2208ca211532a0c2b1189992dc01d4bc098e on 44'/506'/0'/0/3) casper_wallet#3 js:2:casper:0203d14bf1367769813e9c7233db26dc2208ca211532a0c2b1189992dc01d4bc098e:casper_wallet
undefined: 0 CSPR (60ops) (02039ae761a635a37868cf35e6de9799cba9fc4cdb9a3afbba6ab5c83291f13bbec8 on 44'/506'/0'/0/4) casper_wallet#4 js:2:casper:02039ae761a635a37868cf35e6de9799cba9fc4cdb9a3afbba6ab5c83291f13bbec8:casper_wallet
undefined: 0 CSPR (35ops) (02033ceac656c99270c432fd59a60102b4e807977f67c429298ea3436f2ce41a1b1b on 44'/506'/0'/0/5) casper_wallet#5 js:2:casper:02033ceac656c99270c432fd59a60102b4e807977f67c429298ea3436f2ce41a1b1b:casper_wallet
undefined: 18,731.6 CSPR (39ops) (02035addb3ef3863b0b44054e638f7c61f74319d5da70b8e98fef9ea984f7db6edac on 44'/506'/0'/0/6) casper_wallet#6 js:2:casper:02035addb3ef3863b0b44054e638f7c61f74319d5da70b8e98fef9ea984f7db6edac:casper_wallet
undefined: 0 CSPR (0ops) (0202b75fd56f06b03e675b33b0a136b6c87810c5a0435281dfe567c79596e0876fa4 on 44'/506'/0'/0/7) casper_wallet#7 js:2:casper:0202b75fd56f06b03e675b33b0a136b6c87810c5a0435281dfe567c79596e0876fa4:casper_wallet
undefined: 0.828612 CELO (226ops) (0x246FFDB387F1F8c48072E1C13443540017bC71b7 on 44'/52752'/0'/0/0) #0 js:2:celo:0x246FFDB387F1F8c48072E1C13443540017bC71b7:
undefined: 0.0289005 CELO (179ops) (0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8 on 44'/52752'/1'/0/0) #1 js:2:celo:0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8:
undefined: 3.21714 CELO (187ops) (0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0 on 44'/52752'/2'/0/0) #2 js:2:celo:0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0:
undefined: 0.0123809 CELO (139ops) (0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2 on 44'/52752'/3'/0/0) #3 js:2:celo:0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2:
undefined: 1.123 CELO (157ops) (0xA6EB5541E3527d07CaD4dD14E5454820DB858160 on 44'/52752'/4'/0/0) #4 js:2:celo:0xA6EB5541E3527d07CaD4dD14E5454820DB858160:
undefined: 4.73795 CELO (148ops) (0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE on 44'/52752'/5'/0/0) #5 js:2:celo:0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE:
undefined: 0.00528132 CELO (135ops) (0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc on 44'/52752'/6'/0/0) #6 js:2:celo:0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc:
undefined: 3.55816 CELO (150ops) (0xc054A142A0e8793bC860A34971C3eb549064A54a on 44'/52752'/7'/0/0) #7 js:2:celo:0xc054A142A0e8793bC860A34971C3eb549064A54a:
undefined: 0.824216 CELO (143ops) (0x78AB368133f5Bf101849475dD4a5747E6d1A897a on 44'/52752'/8'/0/0) #8 js:2:celo:0x78AB368133f5Bf101849475dD4a5747E6d1A897a:
undefined: 1.6536 CELO (107ops) (0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8 on 44'/52752'/9'/0/0) #9 js:2:celo:0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8:
undefined: 1.06466 CELO (104ops) (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.004937 OSMO (6ops) (osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l on 44'/118'/0'/0/0) #0 js:2:osmo:osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l:
undefined: 0.137215 OSMO (8ops) (osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf on 44'/118'/1'/0/0) #1 js:2:osmo:osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf:
undefined: 0.110314 OSMO (9ops) (osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv on 44'/118'/2'/0/0) #2 js:2:osmo:osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv:
undefined: 0.002544 OSMO (3ops) (osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k on 44'/118'/3'/0/0) #3 js:2:osmo:osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k:
undefined: 0.133987 OSMO (6ops) (osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0 on 44'/118'/4'/0/0) #4 js:2:osmo:osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0:
undefined: 0.903262 OSMO (16ops) (osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw on 44'/118'/5'/0/0) #5 js:2:osmo:osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw:
undefined: 0.091916 OSMO (8ops) (osmo1n6vccpa77x7xyhnk98jy6gg3rmgjkazxuyk2ng on 44'/118'/6'/0/0) #6 js:2:osmo:osmo1n6vccpa77x7xyhnk98jy6gg3rmgjkazxuyk2ng:
undefined: 0.125325 OSMO (6ops) (osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp on 44'/118'/7'/0/0) #7 js:2:osmo:osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp:
undefined: 0 OSMO (5ops) (osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d on 44'/118'/8'/0/0) #8 js:2:osmo:osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d:
undefined: 0.133128 OSMO (9ops) (osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5 on 44'/118'/9'/0/0) #9 js:2:osmo:osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5:
undefined: 0 OSMO (3ops) (osmo1733g3dfzj6tulcqtvz628ypuqj0hvlrzruntc8 on 44'/118'/10'/0/0) #10 js:2:osmo:osmo1733g3dfzj6tulcqtvz628ypuqj0hvlrzruntc8:
undefined: 0.015045 OSMO (10ops) (osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg on 44'/118'/11'/0/0) #11 js:2:osmo:osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg:
undefined: 0.129899 OSMO (4ops) (osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m on 44'/118'/12'/0/0) #12 js:2:osmo:osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m:
undefined: 0.558802 OSMO (6ops) (osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9 on 44'/118'/13'/0/0) #13 js:2:osmo:osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9:
undefined: 1.78944 OSMO (7ops) (osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd on 44'/118'/14'/0/0) #14 js:2:osmo:osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd:
undefined: 13.9502 OSMO (4ops) (osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau on 44'/118'/15'/0/0) #15 js:2:osmo:osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau:
undefined: 2.25987 OSMO (2ops) (osmo1xr8krhp99mp9ncrz6dfgre542nv0rc8lrryjvr on 44'/118'/16'/0/0) #16 js:2:osmo:osmo1xr8krhp99mp9ncrz6dfgre542nv0rc8lrryjvr:
undefined: 0 OSMO (0ops) (osmo102w826rmvswfhs4zsv2ujhylmd92c28p6lglqe on 44'/118'/17'/0/0) #17 js:2:osmo:osmo102w826rmvswfhs4zsv2ujhylmd92c28p6lglqe:
undefined: 0.000562 DSM (8ops) (desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454 on 44'/118'/0'/0/0) #0 js:2:desmos:desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454:
undefined: 0.000441 DSM (12ops) (desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur on 44'/118'/1'/0/0) #1 js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:
undefined: 0 DSM (8ops) (desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx on 44'/118'/2'/0/0) #2 js:2:desmos:desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx:
undefined: 0.001617 DSM (17ops) (desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu on 44'/118'/3'/0/0) #3 js:2:desmos:desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu:
undefined: 16.1383 DSM (12ops) (desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9 on 44'/118'/4'/0/0) #4 js:2:desmos:desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9:
undefined: 0.03404 DSM (22ops) (desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y on 44'/118'/5'/0/0) #5 js:2:desmos:desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y:
undefined: 0.000445 DSM (8ops) (desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz on 44'/118'/6'/0/0) #6 js:2:desmos:desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz:
undefined: 0 DSM (10ops) (desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt on 44'/118'/7'/0/0) #7 js:2:desmos:desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt:
undefined: 8.50791 DSM (14ops) (desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8 on 44'/118'/8'/0/0) #8 js:2:desmos:desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8:
undefined: 0.001575 DSM (15ops) (desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7 on 44'/118'/9'/0/0) #9 js:2:desmos:desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7:
undefined: 0.00053 DSM (14ops) (desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted on 44'/118'/10'/0/0) #10 js:2:desmos:desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted:
undefined: 0.000569 DSM (2ops) (desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z on 44'/118'/11'/0/0) #11 js:2:desmos:desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z:
undefined: 0 DSM (8ops) (desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243 on 44'/118'/12'/0/0) #12 js:2:desmos:desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243:
undefined: 51.4901 DSM (33ops) (desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0 on 44'/118'/13'/0/0) #13 js:2:desmos:desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0:
undefined: 16.1562 DSM (6ops) (desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8 on 44'/118'/14'/0/0) #14 js:2:desmos:desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8:
undefined: 22.9557 DSM (27ops) (desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk on 44'/118'/15'/0/0) #15 js:2:desmos:desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk:
undefined: 29.6438 DSM (4ops) (desmos1xr8krhp99mp9ncrz6dfgre542nv0rc8llq6jdf on 44'/118'/16'/0/0) #16 js:2:desmos:desmos1xr8krhp99mp9ncrz6dfgre542nv0rc8llq6jdf:
undefined: 0 DSM (0ops) (desmos102w826rmvswfhs4zsv2ujhylmd92c28pxuklpn on 44'/118'/17'/0/0) #17 js:2:desmos:desmos102w826rmvswfhs4zsv2ujhylmd92c28pxuklpn:
undefined: 0.00028612 dydx (0ops) (dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6 on 44'/118'/0'/0/0) #0 js:2:dydx:dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6:
undefined: 0.0006465 dydx (1ops) (dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv on 44'/118'/1'/0/0) #1 js:2:dydx:dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv:
undefined: 0.00081036 dydx (0ops) (dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf on 44'/118'/2'/0/0) #2 js:2:dydx:dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf:
undefined: 0.00103948 dydx (0ops) (dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en on 44'/118'/3'/0/0) #3 js:2:dydx:dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en:
undefined: 0 dydx (0ops) (dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2 on 44'/118'/4'/0/0) #4 js:2:dydx:dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2:
undefined: 0.00034181 dydx (2ops) (dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt on 44'/118'/5'/0/0) #5 js:2:dydx:dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt:
undefined: 0.00123005 dydx (0ops) (dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d on 44'/118'/6'/0/0) #6 js:2:dydx:dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d:
undefined: 0.0005327 dydx (0ops) (dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky on 44'/118'/7'/0/0) #7 js:2:dydx:dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky:
undefined: 0.00108568 dydx (0ops) (dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug on 44'/118'/8'/0/0) #8 js:2:dydx:dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug:
undefined: 0.00002859 dydx (1ops) (dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73 on 44'/118'/9'/0/0) #9 js:2:dydx:dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73:
undefined: 0.00032301 dydx (0ops) (dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz on 44'/118'/10'/0/0) #10 js:2:dydx:dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz:
undefined: 0.00079267 dydx (0ops) (dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd on 44'/118'/11'/0/0) #11 js:2:dydx:dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd:
undefined: 0.00117506 dydx (0ops) (dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7 on 44'/118'/12'/0/0) #12 js:2:dydx:dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7:
undefined: 0.0133491 dydx (0ops) (dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq on 44'/118'/13'/0/0) #13 js:2:dydx:dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq:
undefined: 0.00070996 dydx (0ops) (dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg on 44'/118'/14'/0/0) #14 js:2:dydx:dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg:
undefined: 0.00090914 dydx (0ops) (dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te on 44'/118'/15'/0/0) #15 js:2:dydx:dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te:
undefined: 0 dydx (0ops) (dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x on 44'/118'/16'/0/0) #16 js:2:dydx:dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x:
undefined: 0 dydx (0ops) (dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku on 44'/118'/17'/0/0) #17 js:2:dydx:dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku:
undefined: 0 UMEE (2ops) (umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l on 44'/118'/0'/0/0) #0 js:2:umee:umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l:
undefined: 1.88182 UMEE (15ops) (umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f on 44'/118'/1'/0/0) #1 js:2:umee:umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f:
undefined: 0.65401 UMEE (3ops) (umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv on 44'/118'/2'/0/0) #2 js:2:umee:umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv:
undefined: 1.17258 UMEE (6ops) (umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak on 44'/118'/3'/0/0) #3 js:2:umee:umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak:
undefined: 2.91744 UMEE (14ops) (umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0 on 44'/118'/4'/0/0) #4 js:2:umee:umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0:
undefined: 2.83537 UMEE (3ops) (umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw on 44'/118'/5'/0/0) #5 js:2:umee:umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw:
undefined: 3.5588 UMEE (10ops) (umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg on 44'/118'/6'/0/0) #6 js:2:umee:umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg:
undefined: 0.640685 UMEE (16ops) (umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp on 44'/118'/7'/0/0) #7 js:2:umee:umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp:
undefined: 0 UMEE (4ops) (umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd on 44'/118'/8'/0/0) #8 js:2:umee:umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd:
undefined: 37.0855 UMEE (12ops) (umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65 on 44'/118'/9'/0/0) #9 js:2:umee:umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65:
undefined: 4.08326 UMEE (8ops) (umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28 on 44'/118'/10'/0/0) #10 js:2:umee:umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28:
undefined: 7.12804 UMEE (18ops) (umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg on 44'/118'/11'/0/0) #11 js:2:umee:umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg:
undefined: 0 UMEE (5ops) (umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm on 44'/118'/12'/0/0) #12 js:2:umee:umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm:
undefined: 51.5575 UMEE (17ops) (umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29 on 44'/118'/13'/0/0) #13 js:2:umee:umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29:
undefined: 28.722 UMEE (4ops) (umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd on 44'/118'/14'/0/0) #14 js:2:umee:umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd:
undefined: 406.985 UMEE (14ops) (umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u on 44'/118'/15'/0/0) #15 js:2:umee:umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u:
undefined: 189.138 UMEE (5ops) (umee1xr8krhp99mp9ncrz6dfgre542nv0rc8lew2a7r on 44'/118'/16'/0/0) #16 js:2:umee:umee1xr8krhp99mp9ncrz6dfgre542nv0rc8lew2a7r:
undefined: 0 UMEE (0ops) (umee102w826rmvswfhs4zsv2ujhylmd92c28pqjxsje on 44'/118'/17'/0/0) #17 js:2:umee:umee102w826rmvswfhs4zsv2ujhylmd92c28pqjxsje:
undefined: 0 XPRT (46ops) (persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf on 44'/118'/0'/0/0) #0 js:2:persistence:persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf:
undefined: 0.048415 XPRT (76ops) (persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l on 44'/118'/1'/0/0) #1 js:2:persistence:persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l:
undefined: 0.450993 XPRT (53ops) (persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6 on 44'/118'/2'/0/0) #2 js:2:persistence:persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6:
undefined: 0.009642 XPRT (98ops) (persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq on 44'/118'/3'/0/0) #3 js:2:persistence:persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq:
undefined: 0 XPRT (29ops) (persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e on 44'/118'/4'/0/0) #4 js:2:persistence:persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e:
undefined: 0.005402 XPRT (77ops) (persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc on 44'/118'/5'/0/0) #5 js:2:persistence:persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc:
undefined: 0.00638 XPRT (58ops) (persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7 on 44'/118'/6'/0/0) #6 js:2:persistence:persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7:
undefined: 0.481862 XPRT (124ops) (persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch on 44'/118'/7'/0/0) #7 js:2:persistence:persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch:
undefined: 0.006687 XPRT (61ops) (persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm on 44'/118'/8'/0/0) #8 js:2:persistence:persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm:
undefined: 0.507402 XPRT (105ops) (persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz on 44'/118'/9'/0/0) #9 js:2:persistence:persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz:
undefined: 0.169533 XPRT (39ops) (persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3 on 44'/118'/10'/0/0) #10 js:2:persistence:persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3:
undefined: 0.104276 XPRT (94ops) (persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7 on 44'/118'/11'/0/0) #11 js:2:persistence:persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7:
undefined: 0.144772 XPRT (57ops) (persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd on 44'/118'/12'/0/0) #12 js:2:persistence:persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd:
undefined: 5.68013 XPRT (119ops) (persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn on 44'/118'/13'/0/0) #13 js:2:persistence:persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn:
undefined: 10.4311 XPRT (22ops) (persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m on 44'/118'/14'/0/0) #14 js:2:persistence:persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m:
undefined: 8.04209 XPRT (48ops) (persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92 on 44'/118'/15'/0/0) #15 js:2:persistence:persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92:
undefined: 2.80576 XPRT (26ops) (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.002085 QCK (1ops) (quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l on 44'/118'/0'/0/0) #0 js:2:quicksilver:quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l:
undefined: 0 QCK (0ops) (quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf on 44'/118'/1'/0/0) #1 js:2:quicksilver:quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf:
undefined: 0.228373 QCK (0ops) (quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev on 44'/118'/2'/0/0) #2 js:2:quicksilver:quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev:
undefined: 0 QCK (1ops) (quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk on 44'/118'/3'/0/0) #3 js:2:quicksilver:quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk:
undefined: 0.000661 QCK (0ops) (quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0 on 44'/118'/4'/0/0) #4 js:2:quicksilver:quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0:
undefined: 0.008977 QCK (0ops) (quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw on 44'/118'/5'/0/0) #5 js:2:quicksilver:quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw:
undefined: 0 QCK (0ops) (quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug on 44'/118'/6'/0/0) #6 js:2:quicksilver:quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug:
undefined: 0.000408 QCK (0ops) (quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p on 44'/118'/7'/0/0) #7 js:2:quicksilver:quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p:
undefined: 0 QCK (0ops) (quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d on 44'/118'/8'/0/0) #8 js:2:quicksilver:quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d:
undefined: 0.007097 QCK (0ops) (quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585 on 44'/118'/9'/0/0) #9 js:2:quicksilver:quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585:
undefined: 0.450177 QCK (0ops) (quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8 on 44'/118'/10'/0/0) #10 js:2:quicksilver:quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8:
undefined: 0.053253 QCK (0ops) (quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg on 44'/118'/11'/0/0) #11 js:2:quicksilver:quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg:
undefined: 0.098106 QCK (0ops) (quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm on 44'/118'/12'/0/0) #12 js:2:quicksilver:quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm:
undefined: 7.65902 QCK (0ops) (quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9 on 44'/118'/13'/0/0) #13 js:2:quicksilver:quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9:
undefined: 0.015349 QCK (0ops) (quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad on 44'/118'/14'/0/0) #14 js:2:quicksilver:quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad:
undefined: 3.66841 QCK (0ops) (quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju on 44'/118'/15'/0/0) #15 js:2:quicksilver:quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju:
undefined: 10.9875 QCK (0ops) (quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr on 44'/118'/16'/0/0) #16 js:2:quicksilver:quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr:
undefined: 0 QCK (0ops) (quick102w826rmvswfhs4zsv2ujhylmd92c28peqta0e on 44'/118'/17'/0/0) #17 js:2:quicksilver:quick102w826rmvswfhs4zsv2ujhylmd92c28peqta0e:
undefined: 0 NOM (29ops) (onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg on 44'/118'/0'/0/0) #0 js:2:onomy:onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg:
undefined: 0.00001594 NOM (65ops) (onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67 on 44'/118'/1'/0/0) #1 js:2:onomy:onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67:
undefined: 0.00000194 NOM (44ops) (onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m on 44'/118'/2'/0/0) #2 js:2:onomy:onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m:
undefined: 0.00000005 NOM (80ops) (onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp on 44'/118'/3'/0/0) #3 js:2:onomy:onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp:
undefined: 0 NOM (50ops) (onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c on 44'/118'/4'/0/0) #4 js:2:onomy:onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c:
undefined: 0.00000024 NOM (78ops) (onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he on 44'/118'/5'/0/0) #5 js:2:onomy:onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he:
undefined: 0 NOM (49ops) (onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l on 44'/118'/6'/0/0) #6 js:2:onomy:onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l:
undefined: 0.00000632 NOM (73ops) (onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k on 44'/118'/7'/0/0) #7 js:2:onomy:onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k:
undefined: 0.00000157 NOM (41ops) (onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6 on 44'/118'/8'/0/0) #8 js:2:onomy:onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6:
undefined: 0.00000543 NOM (83ops) (onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r on 44'/118'/9'/0/0) #9 js:2:onomy:onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r:
undefined: 0.00000758 NOM (20ops) (onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls on 44'/118'/10'/0/0) #10 js:2:onomy:onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls:
undefined: 0.00314264 NOM (65ops) (onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl on 44'/118'/11'/0/0) #11 js:2:onomy:onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl:
undefined: 0.00097527 NOM (20ops) (onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv on 44'/118'/12'/0/0) #12 js:2:onomy:onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv:
undefined: 0.21433 NOM (17ops) (onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj on 44'/118'/13'/0/0) #13 js:2:onomy:onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj:
undefined: 0.399658 NOM (22ops) (onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46 on 44'/118'/14'/0/0) #14 js:2:onomy:onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46:
undefined: 0.0528678 NOM (11ops) (onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t on 44'/118'/15'/0/0) #15 js:2:onomy:onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t:
undefined: 1.13529 NOM (18ops) (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: 5.52657 STARS (20ops) (stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu on 44'/118'/0'/0/0) #0 js:2:stargaze:stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu:
undefined: 1.10606 STARS (25ops) (stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2 on 44'/118'/1'/0/0) #1 js:2:stargaze:stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2:
undefined: 0.133087 STARS (17ops) (stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0 on 44'/118'/2'/0/0) #2 js:2:stargaze:stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0:
undefined: 0.131892 STARS (24ops) (stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4 on 44'/118'/3'/0/0) #3 js:2:stargaze:stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4:
undefined: 0.16107 STARS (11ops) (stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv on 44'/118'/4'/0/0) #4 js:2:stargaze:stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv:
undefined: 1.83498 STARS (23ops) (stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd on 44'/118'/5'/0/0) #5 js:2:stargaze:stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd:
undefined: 0.360186 STARS (8ops) (stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt on 44'/118'/6'/0/0) #6 js:2:stargaze:stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt:
undefined: 0.514567 STARS (18ops) (stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz on 44'/118'/7'/0/0) #7 js:2:stargaze:stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz:
undefined: 4.31516 STARS (10ops) (stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw on 44'/118'/8'/0/0) #8 js:2:stargaze:stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw:
undefined: 4.81334 STARS (16ops) (stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h on 44'/118'/9'/0/0) #9 js:2:stargaze:stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h:
undefined: 8.40107 STARS (19ops) (stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y on 44'/118'/10'/0/0) #10 js:2:stargaze:stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y:
undefined: 5.77977 STARS (11ops) (stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet on 44'/118'/11'/0/0) #11 js:2:stargaze:stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet:
undefined: 34.6462 STARS (7ops) (stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc on 44'/118'/12'/0/0) #12 js:2:stargaze:stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc:
undefined: 1.45275 STARS (8ops) (stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x on 44'/118'/13'/0/0) #13 js:2:stargaze:stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x:
undefined: 37.2683 STARS (4ops) (stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w on 44'/118'/14'/0/0) #14 js:2:stargaze:stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w:
undefined: 450.475 STARS (8ops) (stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql on 44'/118'/15'/0/0) #15 js:2:stargaze:stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql:
undefined: 321.024 STARS (1ops) (stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q on 44'/118'/16'/0/0) #16 js:2:stargaze:stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q:
undefined: 0 STARS (0ops) (stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6 on 44'/118'/17'/0/0) #17 js:2:stargaze:stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6:
undefined: 0 CORE (78ops) (core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk on 44'/118'/0'/0/0) #0 js:2:coreum:core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk:
undefined: 0.031256 CORE (127ops) (core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq on 44'/118'/1'/0/0) #1 js:2:coreum:core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq:
undefined: 0 CORE (99ops) (core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89 on 44'/118'/2'/0/0) #2 js:2:coreum:core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89:
undefined: 0.022335 CORE (153ops) (core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l on 44'/118'/3'/0/0) #3 js:2:coreum:core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l:
undefined: 0.016046 CORE (84ops) (core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux on 44'/118'/4'/0/0) #4 js:2:coreum:core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux:
undefined: 0.027277 CORE (125ops) (core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8 on 44'/118'/5'/0/0) #5 js:2:coreum:core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8:
undefined: 2.79446 CORE (83ops) (core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp on 44'/118'/6'/0/0) #6 js:2:coreum:core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp:
undefined: 0.008597 CORE (111ops) (core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g on 44'/118'/7'/0/0) #7 js:2:coreum:core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g:
undefined: 0 CORE (74ops) (core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy on 44'/118'/8'/0/0) #8 js:2:coreum:core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy:
undefined: 0.013678 CORE (136ops) (core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea on 44'/118'/9'/0/0) #9 js:2:coreum:core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea:
undefined: 0.03454 CORE (77ops) (core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw on 44'/118'/10'/0/0) #10 js:2:coreum:core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw:
undefined: 3.04727 CORE (110ops) (core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p on 44'/118'/11'/0/0) #11 js:2:coreum:core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p:
undefined: 7.66557 CORE (54ops) (core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j on 44'/118'/12'/0/0) #12 js:2:coreum:core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j:
undefined: 10.9898 CORE (121ops) (core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv on 44'/118'/13'/0/0) #13 js:2:coreum:core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv:
undefined: 0.024289 CORE (55ops) (core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try on 44'/118'/14'/0/0) #14 js:2:coreum:core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try:
undefined: 10.8271 CORE (92ops) (core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4 on 44'/118'/15'/0/0) #15 js:2:coreum:core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4:
undefined: 6.95342 CORE (32ops) (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.454189 EGLD (375ops) (erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp on 44'/508'/0'/0/0) #0 js:2:elrond:erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp:
undefined: 0.00609582 EGLD (408ops) (erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6 on 44'/508'/1'/0/0) #1 js:2:elrond:erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6:
undefined: 0 EGLD (381ops) (erd1ql9pxrhe29cjr8qgxx3rtmh9lyax5x9dkvu3mfzrgt4e8hwk536ssl4sea on 44'/508'/2'/0/0) #2 js:2:elrond:erd1ql9pxrhe29cjr8qgxx3rtmh9lyax5x9dkvu3mfzrgt4e8hwk536ssl4sea:
undefined: 0 EGLD (387ops) (erd1sjvd5mh946cty4wq0ya0d82509tc8eulxjujrad5ztfwjlhkqz0qy5yzmn on 44'/508'/3'/0/0) #3 js:2:elrond:erd1sjvd5mh946cty4wq0ya0d82509tc8eulxjujrad5ztfwjlhkqz0qy5yzmn:
undefined: 0.00672634 EGLD (336ops) (erd149kzxgtymzzaddanlj02zhyhwves9wspvk8p69u325tjln5en9aqf8x8el on 44'/508'/4'/0/0) #4 js:2:elrond:erd149kzxgtymzzaddanlj02zhyhwves9wspvk8p69u325tjln5en9aqf8x8el:
undefined: 0.475481 EGLD (310ops) (erd143yn6uvrfzjptq5g7wvzntl3fcthsxtxrp9f3dgasluj6q5n0pxq2td67n on 44'/508'/5'/0/0) #5 js:2:elrond:erd143yn6uvrfzjptq5g7wvzntl3fcthsxtxrp9f3dgasluj6q5n0pxq2td67n:
undefined: 0 EGLD (235ops) (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: 10.361 HBAR (414ops) (0.0.3663977 on 44/3030) hederaBip44#0 js:2:hedera:0.0.3663977:hederaBip44
undefined: 0.00001641 HBAR (359ops) (0.0.3664525 on 44/3030) hederaBip44#1 js:2:hedera:0.0.3664525:hederaBip44
undefined: 28.6941 HBAR (333ops) (0.0.3664539 on 44/3030) hederaBip44#2 js:2:hedera:0.0.3664539:hederaBip44
undefined: 0.00001643 HBAR (304ops) (0.0.3664563 on 44/3030) hederaBip44#3 js:2:hedera:0.0.3664563:hederaBip44
undefined: 0.0045681 ICP (121ops) (f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209 on 44'/223'/0'/0/0) internet_computer#0 js:2:internet_computer:04e529ca9ff4709b35af64dce4f0719e770d5e185e4ee972729b75495b27628fad0990203fe3ac7079c643a6dd23384e597c65b7bbebbf994b8304253f1bd124e4:internet_computer
undefined: 1.0082 ICP (108ops) (6084b3d34e7d4efd544ea0c3617a816577d00feb0de0db71b560b7687e7d3c14 on 44'/223'/0'/0/1) internet_computer#1 js:2:internet_computer:0404b6a7df5dd483be4711fbdc9248af1e49b3a205334120118fe1dd9567da874d2655f681d9935b02139ffe1997c7fcb7781c04917303d90c7ea157d495ec30d3:internet_computer
undefined: 0 ICP (106ops) (ff5ed1dc2538d7a8b3158e7c9d9b05f80bc5f49f292f1ad2a59576a70bfc4721 on 44'/223'/0'/0/2) internet_computer#2 js:2:internet_computer:04c6d5dab70167c7b104904e57ee8afc84e8b4809c927ceec353a217f1402438b86bb9515e5bdbcc8f187c2c0c5f539d6459fc99c86af1244f452175fd9b736714:internet_computer
undefined: 0.00000459 ICP (107ops) (a45d0e0afb2c416464342615b6ee1902ac6895cf5e9eab2ccc184978164e9310 on 44'/223'/0'/0/3) internet_computer#3 js:2:internet_computer:040e411918ebc5963b5f89938dd674d6cb95131ce3d335957cd8efd99cce3521ea22b3f0fc53996b9ce3373a86ca57def22b89829ae905fde5d22c4522a7af5aa2:internet_computer
undefined: 0 ICP (96ops) (5084840b6ed50fa97b40c93863092770dc74f42bd2fbc742b76ec2999e789262 on 44'/223'/0'/0/4) internet_computer#4 js:2:internet_computer:046036d79bf131623410cfe77b7ccc32c923c6f8dc1b62448111328a2a791b1a7df2d1d4ca80659f3f0613e2334df370ab1c4e38c724decdf7f9f650a61e4ea090:internet_computer
undefined: 0 ICP (74ops) (0ec8cbc167cf495b7800efe653586d14ee0a53ef8880c63129b180580b02a8af on 44'/223'/0'/0/5) internet_computer#5 js:2:internet_computer:04e3bde2b3aeee5ae2af7ffdd25cc416df033c04d084ac02166ee52281e81be7945b119ab171b224984a8ff45adf4cbf28a392524dbefff12edf5d2470efd43375:internet_computer
undefined: 0 ICP (48ops) (1d571d508b3c8901b3c4a8fdb733f5b831b9eab4f1f7443890ae04b36117fad5 on 44'/223'/0'/0/6) internet_computer#6 js:2:internet_computer:04000cb53ebc7761d8c976856db22cebbdf438fc7b3f9568ac90788d82be9890ac74d8a8f4f5cf86f8b4ea51e251c4aebda1e33af2c32fd90cbe051e5a0ffd641d:internet_computer
undefined: 0 ICP (0ops) (49a624b4179ec33e0faaa5998246c46ca16673ad9dc0e44f0026f5061177ebfb on 44'/223'/0'/0/7) internet_computer#7 js:2:internet_computer:04be24b119ae8d9a928654291e45eb8711739b524a36b8b1ace88a4ac0ec83ebfbf43eff2650c3bed6cae4898ae56cc59117c746de408dabc99ea37a590a12632c:internet_computer
undefined: 0 STX (194ops) (SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2 on 44'/5757'/0'/0/0) #0 js:2:stacks:02d8ff937901982551807aace226a5b1eae3d8c5c89d1eae39ccab9cd1d27a9739:
undefined: 24.4666 STX (156ops) (SPJ68NSCQSTQ1AQRY1NJ5D4WWBEPDQ6X24R56J8A on 44'/5757'/2'/0/0) #2 js:2:stacks:02319a870c0e3d22b9c0169df3bae3029a9e5593f8dabbc7e4b6a1e356edafed77:
undefined: 7.62501 STX (200ops) (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: 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: 7.55673 ALGO (453ops) (TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4 on 44'/283'/0'/0/0) #0 js:2:algorand:TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4:
undefined: 5.45528 ALGO (440ops) (RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ on 44'/283'/1'/0/0) #1 js:2:algorand:RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ:
undefined: 3.49908 ALGO (455ops) (YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE on 44'/283'/2'/0/0) #2 js:2:algorand:YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE:
undefined: 4.2535 ALGO (497ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA:
undefined: 2.2 ALGO (412ops) (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.00011941 𝚝BTC (187ops) (tb1qva8ex44kkad8gz4m7yukmc9hdvhml29ych5esm on 84'/1'/0'/0/81) native_segwit#0 js:2:bitcoin_testnet:tpubDCgDNn312aj5XtrdMeA9TeQbp2HkMW2a1JNw2qhRLzUaFiDAAQK3Jzh6jzHpc6Agjn68mZgPQB2ZdQzfgRgXVXDi2FVECW7p4xGuK6Pa3b8:native_segwit
undefined [native segwit]: 0 𝚝BTC (164ops) (tb1qu3zymzu9syar4tkkq8g37a84349sx2vm2p6uka on 84'/1'/1'/0/81) native_segwit#1 js:2:bitcoin_testnet:tpubDCgDNn312aj5YVQsroTmVAWSVMpx2PM7m4toPJsHUricGUh457AwMZK55f2uNVxYdKeW8qDZDngveqFFcsFTWW7eZFbnYerfsf5YAdxU3K8:native_segwit
undefined [native segwit]: 0.00015 𝚝BTC (185ops) (tb1qd0pgst9gvhsgdku8tv5aenuhvf7g63ecj4rzh6 on 84'/1'/2'/0/81) native_segwit#2 js:2:bitcoin_testnet:tpubDCgDNn312aj5d7zhhRFxoozQMEzDZFVWmJngmKcygstAZheV88CxrZ2KqFL8nsjZoeNKeqEHTSmjii11wcuYuchvGYqYuGTzveWepNUKPmE:native_segwit
undefined [native segwit]: 0 𝚝BTC (0ops) (tb1q6d99qx850zdfx4ch32mm3v3mc2g5mupusazw49 on 84'/1'/3'/0/0) native_segwit#3 js:2:bitcoin_testnet:tpubDCgDNn312aj5f2MgUfzseZjbXNj5ep7UH8ucWf9VvUbRC1oyUG7cjbGLoCRhc429i6pMcuMS9ZhGX2bTwnKipVSkhNak9fn2N6sVorY4FxW:native_segwit
undefined [taproot]: 0.00015035 𝚝BTC (184ops) (tb1prx0rzeeaj8u99jfywvc34mg64yhpw4vf44nnpa0cx9gaw98gjxzqklvuqe on 86'/1'/0'/0/87) taproot#0 js:2:bitcoin_testnet:tpubDD1s2jBEVuSpzKea6ie3HMCmkanzcfvc9BbQq8nRDUaAUJPGFi83RWFCNMartYsuxksbFR6tDmVGMaaRP7ng7uovwKT1WNjcuDW34st9R56:taproot
undefined [taproot]: 0.00029198 𝚝BTC (177ops) (tb1pmhp66fc43q87ltl2h07geyfqlyszw8p7e467qdm6g72k5wn7t2yqkt8k2s on 86'/1'/1'/0/80) taproot#1 js:2:bitcoin_testnet:tpubDD1s2jBEVuSq13eMrn3r2tnwxfuWeBM94Dgtc4D5A6h1Jcx2kheLSgGtZroZCwFnXN4ao5PxViYSFTK57vRZnQ1RS193EETKNMmRuPTcWJH:taproot
undefined [taproot]: 0 𝚝BTC (0ops) (tb1p7t4hdtqlmpfv4vpu2vqre6elaywjvlq5yfl4jnjz9gw7lwcpjl5svzk5yz on 86'/1'/2'/0/0) taproot#2 js:2:bitcoin_testnet:tpubDD1s2jBEVuSq4ewqyyWoJYgCyvXsQ3wRkeSmKa3RW3b4BL2rfdDWzwM2WoefQcPGjetH92smctVjK4qrS89zYShy399s8MqWzhZdnCvHLfF:taproot
undefined [segwit]: 0.00007046 𝚝BTC (160ops) (2MwswaexKTkdL4AbSxAV5XPuBJ9STukB98W on 49'/1'/0'/0/78) segwit#0 js:2:bitcoin_testnet:tpubDCoPNx9aypg8jXFPWWYdpHS3MtXF5GPM3nY2UbvQSnEt8PELHAbnf2MknjprAMTYUYPNJzKCr2XSBVMp2wctdKbU1jw9MHA9cbgN7CakJQe:segwit
undefined [segwit]: 0.00015 𝚝BTC (143ops) (2N8xuMjQfhDrtbvmb3251L3x1yGmdnt4Cvo on 49'/1'/1'/0/65) segwit#1 js:2:bitcoin_testnet:tpubDCoPNx9aypg8mbeNfcfUjuUfsXwrSmZkRseMwRxkhinEX8JjfThyhtJg6HeVWp6mF8gf6m37xqC4Q9yebR5RdtdjFcJ1Js7t8VB8Dq8Nczj:segwit
undefined [segwit]: 0 𝚝BTC (0ops) (2Mys6yQgQV1gdVTPECM5xvhUuNsiqtwSTm7 on 49'/1'/2'/0/0) segwit#2 js:2:bitcoin_testnet:tpubDCoPNx9aypg8pnB9z8yPPo7WEEeu9H1VPzq185ppKSLXDpdvXWkR75auxm6pkL6PdyRNLckMzYbZwiUui7hxFSsK5S5YHXT7pyfiG1eR9JQ:segwit
undefined [legacy]: 0.00011084 𝚝BTC (145ops) (mjYkQgDh2y2m26kDuLV4aKhEY2TievEtzZ on 44'/1'/0'/0/87) #0 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBsPABuHGzrXmApLgBRomQx7oFzQeuQn8gpzD27asWNYMeBzanzy4ru9hPE5q1HnQJCW2VcWm2Nz4cdNRB8Eo9xKPz6LGnrxQ:
undefined [legacy]: 0.00005593 𝚝BTC (110ops) (mw9wWMVC6R3WFhj6n1qyLR8hcV2Gd1DQ5B on 44'/1'/1'/0/84) #1 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBv5wFZcFYEhephnhXGjF8gKZJ98kGxYvtiv8xdfNVgFgGAFZFCRXwR8td9Nq8nufwfXB1iX75Ypx99d1NktaeLNc4DxmrTng:
undefined [legacy]: 0 𝚝BTC (0ops) (n2pjyyrHHws2nhUT5vULWWYvVvKdQ6itHW on 44'/1'/2'/0/0) #2 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBxB9KbDNQ4KwPmSA6cftnyvQYTQWDgApMdz2Z3YrEMvJVe7ZXz3turDky7qbyk5WJBf2FS9xk4XacpPw8tND5mkkFZRpK1im:
undefined: 0.00555815 BCH (656ops) (qzu7rd0m05x7nfys6g3jq23yf8m9cl734utqqlxz72 on 44'/145'/0'/0/330) #0 js:2:bitcoin_cash:xpub6CYDTh442n9QYTMdQ7Uc7XDC2zCzZ5jM1m1DrWxmfQMToP2ngWZVtptKiksRoGgdcRSLDC6PgEULihbZE3SDt4ndVzoRNUEoZeTCsBUAWWP:
undefined: 0 BCH (623ops) (qqddy4mssg2qnf0pdsgvugse8eqe4mhzhvq94c3h4p on 44'/145'/1'/0/314) #1 js:2:bitcoin_cash:xpub6CYDTh442n9QaLF3Z2i5L9QENTixN9kGH5XCYh2J5UTHuu99Y2W1sxm2HcX9sQUe2xmv4r3GVmn8GdTvCsLEof448VdZEmdpfmzX7Dk3AJx:
undefined: 0.00214536 BCH (587ops) (qrs59378fj7gsc2qepc6kp0duk3sew8lhu7g255uwk on 44'/145'/2'/0/289) #2 js:2:bitcoin_cash:xpub6CYDTh442n9QdmbZ2RXVmndx8Hv2cFDKjhzANqnPkFjpcqaztmjEdhB9wiiYxJFncp8Et32XZF2YvsC6sXmDRFGEwgjVzQDinZ2xmgZuyb9:
undefined: 0.00130481 BCH (584ops) (qqe0snqnkyk7fvewd50y0jq48apy9vxazgye532kdp on 44'/145'/3'/0/286) #3 js:2:bitcoin_cash:xpub6CYDTh442n9QftkdDJbR3GXhop6xxjkHdxgz9xcKkdq8Q7xF9ER8NXJicVwjXbnkBdbF7nc52wrAVhGoraVfQcsGCA2JwjWurCZQU6pNyHH:
undefined: 0.00755798 BCH (556ops) (qz5rkr7upkyaz3zalzhz8t083gur232tduwqk67jde on 44'/145'/4'/0/261) #4 js:2:bitcoin_cash:xpub6CYDTh442n9QiWxQaeXpmh16DkgpNqufRUMcj6rDqW2gF9Ronnvv9okteP6YQHZGYEojUXg8LL3kfrJzWHrfLFKKarvBgZBtSBRgqcX6w1G:
undefined: 0.0302944 BCH (551ops) (bitcoincash:qzka2pyhglp8kd79w4gzdp777tdfr8ayhupd9r7y7j on 44'/145'/5'/0/297) #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.222227 BTG (695ops) (AUqhNFN2jTnnh75cHB3qgoCFfa5aZRWvsi on 49'/156'/0'/0/339) segwit#0 js:2:bitcoin_gold:xpub6DHWENEKDQW8XxvbwvAFdCTGgzmHJkx8eY8bdGrL6iLmiqmPmCEscEvf7MBSDtbZWuLcUeQP9j87rJSgMhtwpUj3JSnQDoGHG2aqRVaSn43:segwit
undefined [segwit]: 0.0340666 BTG (668ops) (ASHNHFd2YfU6bxyYF3s8M9gZYY6Jm2TUj9 on 49'/156'/1'/0/328) 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.0836298 BTG (690ops) (GdTQDkbZoqren8E6jqZ1D6BQqtPKKZJMkT on 44'/156'/0'/0/340) #0 js:2:bitcoin_gold:xpub6Cq1sXPAA8ijyqJpdR5hDVYJ7XyunpPgVpCWwPtReGJDwhqnWxBhu7wBJjbtdWHXSQiSyNDhxDXF4GmrXGatK4yDASHE3CgS3tsT41T81Dj:
undefined [legacy]: 0.048839 BTG (672ops) (GZ7oFa4Vix92GKjNHXu1Fip3vaMCmT37MW on 44'/156'/1'/0/354) #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 DASH (517ops) (XbHGAZCCUE6Mm4R1JKiv6Qok1ZwoDWDyrX on 44'/5'/0'/0/258) #0 js:2:dash:drkvjS8m2iwuqAXaxEBNS8ULFEKfoEEVNrSyzsEwioinaxb7TZ6fmP7rB3YiU3xcEoM39WoeDJdTS5sgVHQAeowB9BhdxkvDZhJErQk8AWTyaYk:
undefined: 0.0555206 DASH (490ops) (Xj52HVnGa8kMNsBeJS3x6oX25ycTLsqDT5 on 44'/5'/1'/0/226) #1 js:2:dash:drkvjS8m2iwuqAXayHufe3hHCwpvgLyxxGhMAiCSW4kjQ2jC6FKcYKqC2ePkovCh93HAt2AgXQSt4YdJG3XX1raRMbHwwJz6ezKi4yotkX7mjwb:
undefined: 0.00365645 DASH (517ops) (Xh81hBxnkDM5FdNN6YTbTamUtt7yWt4mew on 44'/5'/2'/0/256) #2 js:2:dash:drkvjS8m2iwuqAXb2YSrc4u7qMoaf3UtCbF5A1gphQy6soFEDH7sHmvfZiAEzFse5Q3ycaoq6Su8iitWgNoxRriwzitNTWcwBkXrAdaf2xNXuo4:
undefined: 0.021345 DASH (485ops) (XfyZcQGQkXVthyF3hQzR5Shdyo81TMZWV3 on 44'/5'/3'/0/244) #3 js:2:dash:drkvjS8m2iwuqAXb4LDphtncxj3UdVEACR5JCjoccMjdxfEkEhu7oB1vpZFyajdUEhapJgwi7uUq24ys47gm3VNj4vRQbVcV5YQkrGCpUyd7hDS:
undefined: 0.021639 DASH (465ops) (XkGmUyQVk9ds46ML5qnazRGLh4w4A6ZqbX on 44'/5'/4'/0/234) #4 js:2:dash:drkvjS8m2iwuqAXb7uLicFWmFdztLiHpa6PM7iTRQcYT9wX9vF565f9ZQ7ZrwYBKab7ctGrnUyyyn5zFBtBEazazVdBvneLkZ9bUjb83PMLEgpw:
undefined: 0.00453266 DASH (468ops) (XbWXc6EhpTe8EQrz46hn59puUew6qiGSSx on 44'/5'/5'/0/249) #5 js:2:dash:drkvjS8m2iwuqAXbBAUgNiSVfsH5TurFQxb3bCTM84wuSY376sNUmXbTzLp6cPT8iLqD43n1GXTaHGAaemq8vEm2rwqu5bxtgemUp719HCTXW4S:
undefined: 0 DASH (0ops) (XiiyHQPZVuxXHnApv1XP2aNbz92zL8u6Hy on 44'/5'/6'/0/0) #6 js:2:dash:drkvjS8m2iwuqAXbCRvDwtZdhj7KX8KWD7NqtKJ3cmdPhKoAsfK26rcmmGGAoHdVCvsCgkkZMeyq9cxfExdrvJfzTXJFU8enhrj8pQ4vnTXXUh9:
undefined [native segwit]: 12.8765 DGB (658ops) (dgb1q2hszjv3phrr2k2vjj0hup8j4uf0dzah232ha49 on 84'/20'/0'/0/315) native_segwit#0 js:2:digibyte:xpub6CW9KDgdnS4RwiFZjL1YpEbk1yYvD96EqiBXmq6xKRhe3rJJQaB78voA4DG2dJctnUeWZes6NhysTRpCmBgGxCCy39wcwRwSB4fx3Nd2AxP:native_segwit
undefined [native segwit]: 0 DGB (654ops) (dgb1q7rygh7gl5qm80mu6qvjj2nt3rqumvndn29rw8x on 84'/20'/1'/0/319) 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]: 54.8286 DGB (616ops) (SexWZjaLph9us3SBy6SjJr9RgTZtJZd1dT on 49'/20'/0'/0/309) segwit#0 js:2:digibyte:xpub6CrEMM6LnNPxiDTZaMJwXTtYZXUQvvMwYb2Do892dbEYMrLEfFXZ8ygRrywE66brjMWbV948BJAbWGwV1oeyT7L57ZJykK8jVJ26UQiDVfp:segwit
undefined [segwit]: 60.0262 DGB (603ops) (SYZAkSm3Q1c9JpcwmpQUkiCvQ3XawFywba on 49'/20'/1'/0/293) segwit#1 js:2:digibyte:xpub6CrEMM6LnNPxkr3nrjR8eEys5nHkysyjVHKAfpchrfj5Y2XEPRoiaSgAN7qtUwVxjaVZmGEnJjtRucoAf91u2W4kL8goUCZUKgGXPUgZkUY:segwit
undefined [segwit]: 0 DGB (0ops) (SZg5s18vy8EVLqNcMhvVi2TNYJeQf5crqK on 49'/20'/2'/0/0) segwit#2 js:2:digibyte:xpub6CrEMM6LnNPxmgxLuvQEz6U4j3FvXh7p8MgYFf1kA87Nm3zU6BTydBUdYrsyTF35zTbzPbDA3FudDtiaQjDs664TbtCyYaFni2GrJbk6oFr:segwit
undefined [legacy]: 0.100399 DGB (629ops) (DMh5q7C62RpVcSqCRkwCPFbNpsJBLh8Wfq on 44'/20'/0'/0/313) #0 js:2:digibyte:xpub6Cv4emS7S9zviCwMrBM1LhC7EdKY6QgFZ7T46nwEqtmaJda4EPH7Jv19h8GfhAPNTztGNWBBxribdod3wcxXRDkLmzRBxUgyZWxMoYLDgCX:
undefined [legacy]: 316.09 DGB (606ops) (DLeUEsshWXH1KsBXXTB77xv1PGgRFwwxV6 on 44'/20'/1'/0/329) #1 js:2:digibyte:xpub6Cv4emS7S9zvmSxVKstTvb3QR4MYRMR1ySqUZbWc8A1vE2Y2BYw3FjLoxVtVYAeJjzR8PqEDDykAzGBUXsphL3xbgbzx6EtS2D8ikALFT52:
undefined [legacy]: 0 DGB (0ops) (DBWpWpZTMg31XMoamhZjKoSqahTVTG2qHi on 44'/20'/2'/0/0) #2 js:2:digibyte:xpub6Cv4emS7S9zvoT2jPveX3CwptyX75sUdfpgmx6DyVGme8QQit5WYE189GhbBJyPThotPBRdpQ5RaXNn8BCkmPNGCG1cirRswqvyvhhqgnAT:
undefined: 6.41399 DOGE (338ops) (DFQnuGNzx1nd1sQgA4KtrkDvUri1yDW7Sj on 44'/3'/0'/0/168) #0 js:2:dogecoin:dgub8sBmteCcuFFejUSqGNBcwXRVJ4ZH33Sx3vTJG1o8Q1XwFRNFgT8fAreoj59VMzuU6EJmVMW9gLc9XJSXuxBeSUEt2s2QjSbfYCKkyBvF3pz:
undefined: 2.02933 DOGE (329ops) (DGUDbNmuNqA7ZCX5MHENkmwXjGbxxYBjVN on 44'/3'/1'/0/154) #1 js:2:dogecoin:dgub8sBmteCcuFFenEm7nyLHE2Zxt38inSEWx1bVAvWgAXbsHzuEHPaM4aP4J1oE2UWhoQ6cjN8rLEmuzqZHr9MyJvLE8zj527mdtweCgUBjuxj:
undefined: 4.12007 DOGE (331ops) (DCmtGUBJ6CgtcZy5MuGNtwVtPdecidEeHE on 44'/3'/2'/0/171) #2 js:2:dogecoin:dgub8sBmteCcuFFepPh2rZbmtt3RujGFHSLrQiT7cawEm8PpDRumeEWWM4tsKtqm4vUYtHSJZvsifqbKXgUMGN89Y29Kh6DMoq2JCEBPAE5BVK2:
undefined: 0.492281 DOGE (347ops) (DAK2WpXJxfpNDLJfPxhzVAogXpsiGPzAhZ on 44'/3'/3'/0/175) #3 js:2:dogecoin:dgub8sBmteCcuFFer5KqAKz1JpoYNxNzLP5v2uStDCS6iMYMJz9qssa7cr4EeDGLuPaJ6VRGK6owP43wMFhgHtPXMe56ptKcVF7o5DqVf8mTMDz:
undefined: 0.239749 DOGE (338ops) (DLuxtf925bWcahrsE9wDWyuH1MStwPC88P on 44'/3'/4'/0/168) #4 js:2:dogecoin:dgub8sBmteCcuFFev32JBmBE5kkWA9Fz4LHryxURKDHBm8kXT2s5X3cM4eGnk5YDgbRj2cGny85CWZLtFuz4n6SNEff68ZFXZRfeMcKYjM4ZABa:
undefined: 9.80026 DOGE (273ops) (DCwGhqhH3VaGVzpJBRBCDcHZZsjRP174Qe on 44'/3'/5'/0/140) #5 js:2:dogecoin:dgub8sBmteCcuFFexZUo9SNmC2kEwPEUKxWo4VbEi5sZq9uAa3koQSeoUyxC5Z9XXqHq6hvYUYMvWL1iuVLnneqEfda8PdDDWPbvXggRGYDS2Yy:
undefined: 0 DOGE (0ops) (DNvgzFMvZG3k3o78cqn3y3YksWoSnC3uJ8 on 44'/3'/6'/0/0) #6 js:2:dogecoin:dgub8sBmteCcuFFf1Q45j57nYSbt99vo2P5iHSDdytuEPxtbcaRJrgTJCCJFx9AJhFHvyRNkQ8HxwQ61te2F8hhtChBWAL6RCDZEpbjvKGVRR3T:
undefined: 0.1 KMD (532ops) (RSGqwA8F4ASZof3Gu1xmvTm8MFPFKKc5Zi on 44'/141'/0'/0/256) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:
undefined: 9.86327 KMD (509ops) (RTbSCVEaUvG6NtxYAMwxQSDvk2AoriHq3j on 44'/141'/1'/0/243) #1 js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:
undefined: 0 KMD (511ops) (RG5155mnDy4NfqLdn5HKRHUSFro8Dd5yia on 44'/141'/2'/0/262) #2 js:2:komodo:v4PKUB9WZbMS4XNED8S4oAJzXQqPbfLCmNRNPW8QoETCA7opTJLFvrkm39QZAdLg8DygthREBvDRmrHDeVtEQ8C7iQDfXDSPTrzB2FAFkvgsQ9HA:
undefined: 7.5437 KMD (475ops) (RTfeKwZxEb3tL6KLEKATdGuanSSZw99PKt on 44'/141'/3'/0/251) #3 js:2:komodo:v4PKUB9WZbMS4XNEDBJ9e6csdTWjkQsBngGrmyPrPrwARdjCHQmEYDrU4Kq7HGhiDP6xnwdVwUp3pTCDBqPFJzzGWKwhGKyZ3R9twuUru5U57rPp:
undefined: 0 KMD (0ops) (RXXzA1HUyBUt3vYKgRDwktBrUxGB8nT4bN on 44'/141'/4'/0/0) #4 js:2:komodo:v4PKUB9WZbMS4XNEDFpraB4oy9vXnEDhnEWtmApcz3bN67vrQpVc1DjN5AQDZdV5dt5iXcf1BFTzfmCuAVFoFH3TsW7S8FZfkKBeBvvdLZeretiq:
undefined [native segwit]: 0.113408 LTC (650ops) (ltc1q8u4nr5jw4lvy0trjenmg9ct3mp9z9z3hvnpfx8 on 84'/2'/0'/0/304) native_segwit#0 js:2:litecoin:Ltub2YLUoe8MGLizFvLnAHJhiz3rdWG8UXqi9A9smDbuwPD44WPa1rB1EwyQwzRiVFKGH4mS6b5DRE3c3S9jZ944uaGcRK2XPinZcbdmo3P2vmq:native_segwit
undefined [native segwit]: 0.162448 LTC (604ops) (ltc1qu9wwmp7pdx7axj2n8p852jc8sdxsav5v032pu2 on 84'/2'/1'/0/294) 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 LTC (636ops) (MC9kHN8chgQgjn2Mnix9XjXnZrvHwoB3PT on 49'/2'/0'/0/311) segwit#0 js:2:litecoin:Ltub2YDfX8FoxTFohkcgknuZr2WLrCNpq6ufHxguxyjoDWGDZ1GBUVSn5wwoD2ifjY13iERFGvauvW55p6ASVCbqiABnreHFCsV5LKps76aWDV3:segwit
undefined [segwit]: 0.00401715 LTC (609ops) (MTAzfWVysPE2Bhj2XQK4ZiQtANCNTqnLo2 on 49'/2'/1'/0/312) 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.0447314 LTC (643ops) (LhJt6kuB7wFNvhRSD1EjL67GCm1T5YwrcN on 44'/2'/0'/0/319) #0 js:2:litecoin:Ltub2YwXt3Fm1MVHeGxpcxFhFTe1FkqDdVoeRp9FRnnqGrinFxJSDjXwVTnmjK56jhq83mxWmTKprWjLXqspQCYtxJmCnwCLJUPoZhjJEYMtcFd:
undefined [legacy]: 0.0175426 LTC (577ops) (Lf84wxHgzDo2ULXHfRVxjLoAWJCs6PYqvd on 44'/2'/1'/0/315) #1 js:2:litecoin:Ltub2YwXt3Fm1MVHgsz1XL8MM6MicGgumPzfpD1pZcsk15P4LZHiF4wpFPGvTi58u9evgMd4dV9K7cMMA532mq1HbEknZZ5UayUuRbSsM5VzptL:
undefined [legacy]: 0 LTC (0ops) (LiDx2poS1M1DwYU2zHuvKEQAAFUdpRgP59 on 44'/2'/2'/0/0) #2 js:2:litecoin:Ltub2YwXt3Fm1MVHgy4nREA2MxDT5Em3QsQv2Yu6gfGSPudxTKgcovLsh1sV3rje75uZ5eAkyJLkbHxPBFU3Wbhd2Q6XF863omV2XfWhsC2ACJ4:
undefined: 0.0272655 PIVX (684ops) (DU6ZgY1Fh9zm6Pu1XYSntEabYRPYwFnXzy on 44'/77'/0'/0/328) #0 js:2:pivx:ToEA6mkkScBzPS3QGwz3pD9XiPf8YynSCGuC65sMGexuJ8oLkqEAZRAcR5VqKvRV5Phzid1ZG7myNKF6XtRBtVKT5JhgUpaKZtwAq3XzeH3Qnmz:
undefined: 0.020324 PIVX (633ops) (DMk9fgEvr4yVrBQ5PyPMpVEGqicYEXfjVb on 44'/77'/1'/0/305) #1 js:2:pivx:ToEA6mkkScBzPS3QK9QkPuwWHUEA284HMW86PxW1zkXJAAJa9zXWJjVwBvYEt5HTwDHyDpyfC2VRj3Sy9MBegtxX3kBM1dyiPx81KcwoA8DT75c:
undefined: 6.87167 PIVX (640ops) (D5NmAbuQbdfTeHhvQRHccVpEGfJFqjicPw on 44'/77'/2'/0/333) #2 js:2:pivx:ToEA6mkkScBzPS3QNaWms316jJrjhxFoXsKpv21fDZnZUqeqnX1FpofXYA3ARA7qSEHn2wmdd7EPMM1qJ36CiFP3Ycu6p4EMHKYgV49aAFQYdwt:
undefined: 39.7053 PIVX (670ops) (DQ9y9p35fmYVCodQo8UGQPo2AH8tZH3MMS on 44'/77'/3'/0/345) #3 js:2:pivx:ToEA6mkkScBzPS3QRXKa6QiRvZKUYefypt8wZupR6GaqD77SPLwzgmraaKbGgcirVLLXkQ6XjZJcGhoLRL2xP5ZBVjD5TUz6ZY6WkgXBpJW5rNU:
undefined: 0 PIVX (0ops) (DGvVBqdtcbSTuXgf6JjAxG5a8MSRXk76Tw on 44'/77'/4'/0/0) #4 js:2:pivx:ToEA6mkkScBzPS3QS97WZjaF1BidcB1ywJUVPvH1UAbz9BzZ1U8Uzo3zVwrmNHH18cJiwpjFEUnvCu5hqTQs5df1A7f1vBttM65ReXpJhxvKtvh:
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.176517 ZEN (492ops) (zngYjJP11Y66RaW9xnUoTGcoBa7MERvWubZ on 44'/121'/2'/0/257) #2 js:2:zencash:xpub6C68jAb8xasfsZCbDtbqPTydFZEHjfzFP75ZQyizidPdLPHNbf41HqQq8RiHMJNuXx71D15Uv9yVpxHkxicSAzKCPVqi1gCKkJTdCN6MK7Q:
undefined: 0.0500604 ZEN (496ops) (zndmtMoG6cJVf7ng1ftQdFAf5R3R7zHLAzD on 44'/121'/1'/0/236) #1 js:2:zencash:xpub6C68jAb8xasfrBmUVvZbdXydhq15bdfePn1qhjb32azt3GkzoqBCQuRaZKPYp9T9uhr7TYCANdXanzeXfXp4qMjw7ijiPPNbBKmGRZRFeoa:
undefined: 0.105037 ZEN (510ops) (znjhxnCweCZpMcnW5mTth1qrmPYXhuDogBT on 44'/121'/0'/0/239) #0 js:2:zencash:xpub6C68jAb8xasfmbmg37N3W5TsYWdTb6xLCtjwz5oSVAdi6Jxzx6FeBQcQazySrCXnsGZKaT9MXB9i4Lny4AoFAVZtSy6kVExyheF7X5Msvu3:
undefined: 0.0891351 ZEN (500ops) (zneVMAzUob6TBkX4ra2Ti6T89TLx2KDc5Hy on 44'/121'/3'/0/265) #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.213238 MATIC (365ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:polygon:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 2.12471 MATIC (332ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:polygon:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0 MATIC (341ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:polygon:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0 MATIC (368ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:polygon:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 MATIC (323ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:polygon:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 4.24678 MATIC (279ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:polygon:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.214372 MATIC (208ops) (0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E on 44'/60'/6'/0/0) #6 js:2:polygon:0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E:
undefined: 3.12368 MATIC (206ops) (0x48ec5fC762B9300e3B5e04E8ca634165240A1B15 on 44'/60'/7'/0/0) #7 js:2:polygon:0x48ec5fC762B9300e3B5e04E8ca634165240A1B15:
undefined: 8.92507 MATIC (190ops) (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.00072909 𝚝ETH (150ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00036839 𝚝ETH (181ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00044794 𝚝ETH (170ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:ethereum_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0001192 𝚝ETH (147ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00094081 𝚝ETH (133ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:ethereum_sepolia:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:ethereum_sepolia:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.0135887 𝚝ETH (177ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_holesky:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 𝚝ETH (175ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_holesky:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00543174 𝚝ETH (187ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:ethereum_holesky:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0 𝚝ETH (150ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_holesky:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.214461 𝚝ETH (98ops) (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.00008467 ETH (70ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00129998 ETH (83ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00061417 ETH (60ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00235592 ETH (56ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00112172 ETH (49ops) (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.302158 𝚝ETH (123ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.384918 𝚝ETH (136ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00038332 𝚝ETH (128ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00020978 𝚝ETH (113ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.302156 𝚝ETH (67ops) (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: 155.836 SGB (607ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:songbird:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 107.763 SGB (593ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:songbird:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 155.838 SGB (613ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:songbird:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 107.765 SGB (582ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:songbird:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 410.045 SGB (163ops) (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: 10.2272 GLMR (571ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonbeam:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 10.2357 GLMR (576ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonbeam:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 9.31399 GLMR (512ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonbeam:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.002625 GLMR (560ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonbeam:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 29.7667 GLMR (148ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:moonbeam:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 GLMR (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:moonbeam:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00015323 RBTC (210ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:rsk:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 RBTC (210ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:rsk:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00007726 RBTC (199ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:rsk:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00007863 RBTC (175ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:rsk:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 RBTC (0ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:rsk:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 BTT (502ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:bittorrent:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 18,677.4 BTT (536ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:bittorrent:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 96,250.4 BTT (529ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:bittorrent:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 96,260 BTT (449ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:bittorrent:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 1,279,888 BTT (166ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:bittorrent:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 BTT (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:bittorrent:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00097436 ETH (32ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:optimism:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00095956 ETH (23ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:optimism:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00000939 ETH (34ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:optimism:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00092379 ETH (32ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:optimism:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 ETH (0ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:optimism:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:optimism_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 EWT (398ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:energy_web:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 EWT (456ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:energy_web:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.941048 EWT (450ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:energy_web:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 4.94032 EWT (462ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:energy_web:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 1.64676 EWT (166ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:energy_web:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 EWT (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:energy_web:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.0122865 ASTR (516ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:astar:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 164.136 ASTR (520ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:astar:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.012275 ASTR (504ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:astar:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 1.18971 ASTR (432ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:astar:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 161.572 ASTR (136ops) (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.0712378 METIS (469ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:metis:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 METIS (433ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:metis:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0265735 METIS (480ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:metis:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0 METIS (466ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:metis:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.0443913 METIS (174ops) (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.449084 MOVR (433ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonriver:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.279441 MOVR (478ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonriver:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00002625 MOVR (489ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonriver:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 1.00764 MOVR (449ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonriver:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.498871 MOVR (159ops) (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: 64.4667 VLX (102ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:velas_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 183.128 VLX (102ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:velas_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0 VLX (101ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:velas_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 157.846 VLX (101ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:velas_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 506.571 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: 0 SYS (504ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:syscoin:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 12.444 SYS (497ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:syscoin:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 8.29613 SYS (466ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:syscoin:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 4.14806 SYS (430ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:syscoin:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 32.1864 SYS (157ops) (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.160257 𝚝ETH (116ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:base_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00000005 𝚝ETH (122ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:base_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.120195 𝚝ETH (130ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:base_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00000002 𝚝ETH (109ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:base_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.709563 𝚝ETH (82ops) (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: 1.39077 KLAY (47ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:klaytn:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 1.40016 KLAY (43ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:klaytn:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 1.39317 KLAY (44ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:klaytn:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 3.25893 KLAY (37ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:klaytn:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 1.36427 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: 7.07453 NEON (211ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:neon_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00765868 NEON (227ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:neon_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 4.77927 NEON (210ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:neon_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 4.13387 NEON (222ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:neon_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00754676 NEON (198ops) (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.00000458 LYX (174ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:lukso:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0885913 LYX (218ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:lukso:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0273985 LYX (208ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:lukso:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.087362 LYX (202ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:lukso:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.286797 LYX (157ops) (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.00070988 ETH (118ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:linea:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00254979 ETH (134ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:linea:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00127228 ETH (160ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:linea:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00127427 ETH (132ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:linea:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00099287 ETH (123ops) (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.00060905 ETH (11ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00384039 ETH (9ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:blast:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00385583 ETH (9ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:blast:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00056125 ETH (5ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:blast:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 ETH (0ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:blast:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0.0500035 𝚝ETH (1ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 𝚝ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:blast_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.01 ETH (2ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:scroll:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:scroll:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.05 𝚝ETH (1ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:scroll_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 𝚝ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:scroll_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0152521 SOL (100ops) (5vhAGihUC1uKucJvreCgWWXB6LEptPwkwpqhkq9M6iaz on 44'/501'/0') solanaSub#0 js:2:solana:5vhAGihUC1uKucJvreCgWWXB6LEptPwkwpqhkq9M6iaz:solanaSub
undefined: 0.00089088 SOL (100ops) (6iNx5SVYQBGEEooLJiptwqL8YR7qEcZELqpBfd4kwiwx on 44'/501'/1') solanaSub#1 js:2:solana:6iNx5SVYQBGEEooLJiptwqL8YR7qEcZELqpBfd4kwiwx:solanaSub
undefined: 0.0152712 SOL (101ops) (2rUuDdwtM2b6zKWU7y8PNzuHomPPG1uAreDafg2xPnA5 on 44'/501'/2') solanaSub#2 js:2:solana:2rUuDdwtM2b6zKWU7y8PNzuHomPPG1uAreDafg2xPnA5:solanaSub
undefined: 0.110025 SOL (100ops) (Cw4MiEvepwAHkxY6DKYDVK5jDEoCSCoT4JmVbJPYauhk on 44'/501'/3') solanaSub#3 js:2:solana:Cw4MiEvepwAHkxY6DKYDVK5jDEoCSCoT4JmVbJPYauhk:solanaSub
undefined: 0.00568227 SOL (99ops) (BsQzVpyrHi5ivGaouc46w9GekQgbiJcWNAhsmzzRuo9M on 44'/501'/4') solanaSub#4 js:2:solana:BsQzVpyrHi5ivGaouc46w9GekQgbiJcWNAhsmzzRuo9M:solanaSub
undefined: 0.108848 SOL (100ops) (2kd3E2Kh7xvcQ1UVVfpys5GHVo1KKKRZXVmuTmkYWK4n on 44'/501'/5') solanaSub#5 js:2:solana:2kd3E2Kh7xvcQ1UVVfpys5GHVo1KKKRZXVmuTmkYWK4n:solanaSub
undefined: 0.0521476 SOL (100ops) (3ZgtNrSv7F5uhNVWJJkKKvtQVnaubN3QDDJkvTtwMPdF on 44'/501'/6') solanaSub#6 js:2:solana:3ZgtNrSv7F5uhNVWJJkKKvtQVnaubN3QDDJkvTtwMPdF:solanaSub
undefined: 0.0723665 SOL (100ops) (9UP1mN61QFowx7zxTBRw3UrV9o8JoyQ6jjsLQfLedG8N on 44'/501'/7') solanaSub#7 js:2:solana:9UP1mN61QFowx7zxTBRw3UrV9o8JoyQ6jjsLQfLedG8N:solanaSub
undefined: 0.0954712 SOL (74ops) (AAM59Hc6eC3aASjNbVAitFYKnCcirNcu554gj77QBHME on 44'/501'/8') solanaSub#8 js:2:solana:AAM59Hc6eC3aASjNbVAitFYKnCcirNcu554gj77QBHME:solanaSub
undefined: 0.0148875 SOL (74ops) (6nMswXFvmTgzxhGmxjJYVQNoUJaFjM1arwAafHcxDbxK on 44'/501'/9') solanaSub#9 js:2:solana:6nMswXFvmTgzxhGmxjJYVQNoUJaFjM1arwAafHcxDbxK:solanaSub
undefined: 0 SOL (0ops) (GiLkLhWJiNk6EsgwA1KzNbsBoJAANa46M6Rq5bVCxTFG on 44'/501'/10') solanaSub#10 js:2:solana:GiLkLhWJiNk6EsgwA1KzNbsBoJAANa46M6Rq5bVCxTFG:solanaSub
undefined: 29.4137 XLM (579ops) (GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC on 44'/148'/0') sep5#0 js:2:stellar:GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC:sep5
undefined: 1.94063 XLM (573ops) (GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ on 44'/148'/1') sep5#1 js:2:stellar:GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ:sep5
undefined: 1.5005 XLM (575ops) (GA4A2FH4YYI2RXPUC3NPGZQP7XX4CEJNREB27XVX7B7D5RIA3KOLSKTI on 44'/148'/2') sep5#2 js:2:stellar:GA4A2FH4YYI2RXPUC3NPGZQP7XX4CEJNREB27XVX7B7D5RIA3KOLSKTI:sep5
undefined: 1.97313 XLM (553ops) (GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM on 44'/148'/3') sep5#3 js:2:stellar:GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM:sep5
undefined: 31.6503 XLM (513ops) (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: 13.5321 XRP (201ops) (r9etPtq3oboweMPju5gdYufmvwhH2euz8z on 44'/144'/0'/0/0) #0 js:2:ripple:r9etPtq3oboweMPju5gdYufmvwhH2euz8z:
undefined: 11.9512 XRP (201ops) (rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH on 44'/144'/1'/0/0) #1 js:2:ripple:rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH:
undefined: 18.5214 XRP (202ops) (rMoFGec38toFg9ncbi9YbrYYmrP3G5exqn on 44'/144'/2'/0/0) #2 js:2:ripple:rMoFGec38toFg9ncbi9YbrYYmrP3G5exqn:
undefined: 0 XRP (0ops) (rrnxW3THwB1ubsE9V78Lek6V1XYnNrodxC on 44'/144'/3'/0/0) #3 js:2:ripple:rrnxW3THwB1ubsE9V78Lek6V1XYnNrodxC:
Performance ⏲ 32min 25s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 9.7s 37min 57s 1min 49s 1min 59s 14min 10s 1min 56s 46min 53s 21min 10s
Casper (7) 0.36ms 31.4s 4.72ms 6ms N/A N/A N/A N/A
Celo (11) 959ms 44.4s 6s 8.1s 30.5s 30.6s 1min 59s N/A
osmosis (17) 299ms 26.2s 18ms 2359ms 31.2s 449ms 52.2s 31s
desmos (17) 272ms 30.7s 22ms 3.3s 31.1s 507ms 1.31ms N/A
dydx (17) 213ms 42.4s 21ms N/A N/A N/A N/A N/A
umee (17) 242ms 24.9s 13ms 2127ms 35.2s 410ms 2.22ms N/A
persistence (17) 1188ms 55.4s 33ms 8.7s 37.4s 1222ms 1.59ms N/A
quicksilver (17) 329ms 56s 18ms 1621ms 24.5s 269ms 1.11ms N/A
onomy (17) 1279ms 46.3s 23ms 5s 32.4s 845ms 16ms N/A
sei_network (15) 309ms 19.9s 12ms N/A N/A N/A N/A N/A
stargaze (17) 253ms 20s 14ms 2370ms 30.4s 342ms 1.40ms N/A
coreum (17) 234ms 36.4s 14ms 1624ms 26.7s 1118ms 1.20ms N/A
injective (0) 595ms N/A N/A N/A N/A N/A N/A N/A
Crypto org (6) 1.02ms 22.3s 3.01ms 2.59ms N/A N/A N/A N/A
Elrond (7) 280ms 61.9s 2466ms 21ms 26.2s 634ms 37.9s 34.9s
Hedera (4) 0.39ms 27.7s 7ms 725ms 28.2s 1602ms 41.6s 41.9s
InternetComputer (7) 0.51ms 10.1s 1.25ms 3.4s 9.9s 1978ms 21.6s 21.2s
Stacks (3) 0.31ms 19.3s 8.2s 3.6s 11.9s N/A N/A N/A
VeChain VTHO (3) 0.59ms 9.7s 1.43ms 1656ms N/A N/A N/A N/A
VeChain VET (3) 0.11ms 10.9s 0.66ms N/A N/A N/A N/A N/A
Algorand (5) 0.74ms 83s 9ms 2044ms 41.8s 323ms 50.8s 30.8s
Bitcoin Testnet (9) 0.36ms 63.8s 2.59ms N/A N/A N/A N/A N/A
Bitcoin Cash (6) 0.13ms 24.9s 40ms 1099ms 39.9s 529ms 57.8s 56.3s
Bitcoin Gold (4) 0.28ms 25.4s 8ms 634ms 30.9s 447ms 45.7s 45.8s
Dash (6) 0.19ms 20.8s 12ms 847ms 32.9s 481ms 54.6s 55s
Digibyte (6) 0.39ms 24.9s 1.68ms 781ms 20.3s 487ms 45.1s 45.1s
DogeCoin (6) 0.19ms 10.9s 17ms 601ms 20.7s 288ms 33.9s 33.1s
Komodo (4) 0.19ms 7.9s 1.08ms 538ms 17s 340ms 34.3s 43.1s
Litecoin (6) 0.22ms 26s 7ms 806ms 21.2s 467ms 45s 46.1s
PivX (4) 0.30ms 21.7s 22ms 1091ms 23.9s 399ms 52.3s 50.2s
ZCash (4) 0.13ms 13.1s 1.38ms N/A N/A N/A N/A N/A
Horizen (4) 0.26ms 11.5s 2072ms 844ms 24.4s 305ms 53.3s 33.4s
Ethereum Classic (5) 52ms 20.2s 1.01ms N/A N/A N/A N/A N/A
Polygon (9) 119ms 27.9s 29ms 4.1s 11.1s 1019ms 32.6s 33.9s
Ethereum Sepolia (5) 58ms 8.6s 10ms N/A N/A N/A N/A N/A
Ethereum Holesky (5) 23ms 7.8s 21ms 3.8s 12.6s 226ms 60.9s 30.9s
Arbitrum (5) 125ms 87s 13ms 3.8s 9.6s 1387ms 63.1s 57.9s
Arbitrum Sepolia (5) 79ms 9.2s 21ms 3.7s 10.2s 1212ms 31.9s 31.9s
Flare (5) 25ms 10.3s 1.65ms N/A N/A N/A N/A N/A
Songbird (5) 28ms 7.7s 26ms 1413ms 10.6s 396ms 32.5s 31.5s
Moonbeam (5) 68ms 96.5s 15ms 940ms 8.7s 326ms 2min 11s 62.6s
RSK (4) 55ms 13s 1.72ms N/A N/A N/A N/A N/A
Bittorent Chain (5) 32ms 8.6s 20ms 1578ms 9.5s 448ms 32.3s 32.3s
OP Mainnet (4) 44ms 77.4s 4.91ms N/A N/A N/A N/A N/A
OP Sepolia (0) 74ms 1660ms N/A N/A N/A N/A N/A N/A
Energy Web (5) 37ms 5.5s 9ms 3.7s 10s 1647ms 72.6s 32s
Astar (5) 49ms 7.5s 23ms 4.6s 10.8s 1293ms 5min 33s 33.2s
Metis (5) 48ms 9.2s 25ms 685ms 9.1s 1185ms 44.2s 35.1s
Moonriver (5) 32ms 94.7s 21ms 1148ms 10.5s 324ms 1min 55s 62.8s
Velas EVM (5) 52ms 5s 12ms 1709ms 9s 2830ms 61.7s 31.4s
Syscoin (5) 43ms 4.2s 17ms 1436ms 9.4s 295ms 11min 32s 31.2s
Polygon zkEVM Testnet (0) 1297ms N/A N/A N/A N/A N/A N/A N/A
Base (4) 73ms 74.6s 14ms N/A N/A N/A N/A N/A
Base Sepolia (5) 50ms 5.5s 10ms 3.4s 9.8s 675ms 31.7s 31.6s
Klaytn (5) 64ms 16.1s 12ms 6.1s 10.2s 1969ms 54.2s 34.1s
Neon EVM (5) 51ms 10.2s 22ms 5.4s 10.6s 1305ms 54.5s 34.2s
Lukso (5) 26ms 3.8s 20ms 575ms 10.2s 258ms 71s 31s
Linea (5) 44ms 73.2s 19ms 1854ms 7.6s 605ms 36.7s 41.9s
Linea Sepolia (0) 29ms 12s N/A N/A N/A N/A N/A N/A
Blast (4) 70ms 77.8s 63s 359ms 6.3s 396ms N/A N/A
Blast Sepolia (1) 55ms 7.6s 3.99ms 785ms N/A N/A N/A N/A
Scroll (1) 71ms 2731ms 2.77ms N/A N/A N/A N/A N/A
Scroll Sepolia (1) 89ms 2497ms 0.72ms N/A N/A N/A N/A N/A
NEAR (0) N/A N/A N/A N/A N/A N/A N/A N/A
Solana (10) 148ms 7min 29s 24.3s 5.1s 9.7s 31.7s 51.2s N/A
Stellar (5) 0.74ms 97.1s 2546ms 4.3s 16.6s 21.8s 43s N/A
Tezos (2) 151ms 6.8s 10ms N/A N/A N/A N/A N/A
XRP (3) 0.31ms 7.1s 0.98ms 4.8s 9.8s 511ms 22.7s 22.4s

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

Please sign in to comment.