Skip to content

Commit

Permalink
fix: add account v2 redirection from receive when no account found / …
Browse files Browse the repository at this point in the history
…add account v1 is OK (#8999)

* fix: add account v2 redirection from receive when no account found / add account v1 is OK
  • Loading branch information
themooneer authored Jan 27, 2025
1 parent a88878b commit b1f4709
Show file tree
Hide file tree
Showing 22 changed files with 163 additions and 63 deletions.
5 changes: 5 additions & 0 deletions .changeset/new-bulldogs-hope.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"live-mobile": minor
---

Fix redirection to add account v2 when the user try to receive on 0 accounts based currency
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ import {
} from "@ledgerhq/types-cryptoassets";
import { Device, DeviceModelId } from "@ledgerhq/types-devices";
import { AccountLike } from "@ledgerhq/types-live";
import type { ScreenName } from "~/const";
import { NavigatorScreenParams } from "@react-navigation/native";
import type { NavigatorName, ScreenName } from "~/const";
import { DeviceSelectionNavigatorParamsList } from "LLM/features/DeviceSelection/types";

export type ReceiveFundsStackParamList = {
[ScreenName.ReceiveSelectCrypto]:
Expand Down Expand Up @@ -76,4 +78,7 @@ export type ReceiveFundsStackParamList = {
onSuccess?: (_?: string) => void;
onError?: () => void;
};
[NavigatorName.DeviceSelection]?: Partial<
NavigatorScreenParams<DeviceSelectionNavigatorParamsList>
>;
};
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import { LoadingBasedGroupedCurrencies, LoadingStatus } from "@ledgerhq/live-com
import { CryptoCurrency, TokenCurrency } from "@ledgerhq/types-cryptoassets";
import { TrackingEvent } from "../../enums";
import { parseBoolean } from "LLM/utils/parseBoolean";
import { AddAccountContexts } from "../AddAccount/enums";
type Props = StackNavigatorProps<AccountsListNavigator, ScreenName.AccountsList>;

export default function AccountsList({ route }: Props) {
Expand Down Expand Up @@ -85,15 +86,15 @@ export default function AccountsList({ route }: Props) {
screen: ScreenName.SelectNetwork,
params: {
currency: currency.id,
context: "addAccounts",
context: AddAccountContexts.AddAccounts,
},
});
} else {
navigation.navigate(NavigatorName.DeviceSelection, {
screen: ScreenName.SelectDevice,
params: {
currency: currency as CryptoCurrency,
context: "addAccounts",
context: AddAccountContexts.AddAccounts,
},
});
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import { useCallback, useMemo } from "react";
import { track } from "~/analytics";
import { useFeature } from "@ledgerhq/live-common/featureFlags/index";
import { CryptoCurrency, TokenCurrency } from "@ledgerhq/types-cryptoassets";
import { AddAccountContexts } from "../../enums";

type AddAccountScreenProps = {
currency?: CryptoCurrency | TokenCurrency | null;
Expand All @@ -31,16 +32,22 @@ const useSelectAddAccountMethodViewModel = ({
if (currency?.type === "TokenCurrency") {
return {
token: currency,
...(llmNetworkBasedAddAccountFlow?.enabled && { context: "addAccounts" }),
...(llmNetworkBasedAddAccountFlow?.enabled && {
context: AddAccountContexts.AddAccounts,
}),
};
} else {
return {
currency,
...(llmNetworkBasedAddAccountFlow?.enabled && { context: "addAccounts" }),
...(llmNetworkBasedAddAccountFlow?.enabled && {
context: AddAccountContexts.AddAccounts,
}),
};
}
} else {
return llmNetworkBasedAddAccountFlow?.enabled ? { context: "addAccounts" } : {};
return llmNetworkBasedAddAccountFlow?.enabled
? { context: AddAccountContexts.AddAccounts }
: {};
}
}, [hasCurrency, currency, llmNetworkBasedAddAccountFlow?.enabled]);

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
export enum AddAccountContexts {
AddAccounts = "addAccounts",
ReceiveFunds = "receiveFunds",
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@ import { ScreenName } from "~/const";
import { Device } from "@ledgerhq/types-devices";
import { Account } from "@ledgerhq/types-live";
import { Props as TouchableProps } from "~/components/Touchable";
import { AddAccountContexts } from "./enums";

export type AddAccountContextType = `${AddAccountContexts}`;

type CommonParams = {
context?: "addAccounts" | "receiveFunds";
context?: AddAccountContextType;
onSuccess?: () => void;
onCloseNavigation?: () => void;
currency: CryptoOrTokenCurrency;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
View,
} from "react-native";
import { useTheme } from "styled-components/native";
import { ScreenName } from "~/const";
import { NavigatorName, ScreenName } from "~/const";
import { TrackScreen } from "~/analytics";
import type { BaseComposite, StackNavigatorProps } from "~/components/RootNavigator/types/helpers";
import AccountItem from "../../components/AccountsListView/components/AccountItem";
Expand All @@ -26,6 +26,7 @@ import { useNavigation } from "@react-navigation/core";
import useAnimatedStyle from "../ScanDeviceAccounts/components/ScanDeviceAccountsFooter/useAnimatedStyle";
import AddFundsButton from "../../components/AddFundsButton";
import CloseWithConfirmation from "LLM/components/CloseWithConfirmation";
import { AddAccountContexts } from "../AddAccount/enums";

type Props = BaseComposite<
StackNavigatorProps<NetworkBasedAddAccountNavigator, ScreenName.AddAccountsSuccess>
Expand All @@ -37,18 +38,26 @@ export default function AddAccountsSuccess({ route }: Props) {
const insets = useSafeAreaInsets();
const navigation = useNavigation();
const { animatedSelectableAccount } = useAnimatedStyle();
const { currency, accountsToAdd, onCloseNavigation, context } = route.params || {};

const goToAccounts = useCallback(
(accountId: string) => () => {
navigation.navigate(ScreenName.Account, {
accountId,
});
if (context === AddAccountContexts.AddAccounts)
navigation.navigate(ScreenName.Account, {
accountId,
});
else
navigation.navigate(NavigatorName.ReceiveFunds, {
screen: ScreenName.ReceiveConfirmation,
params: {
...route.params,
accountId,
},
});
},
[navigation],
[navigation, route.params, context],
);

const { currency, accountsToAdd, onCloseNavigation } = route.params || {};

const renderItem = useCallback(
({ item }: ListRenderItemInfo<AccountLikeEnhanced>) => (
<Animated.View style={[animatedSelectableAccount]}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { Flex, Icons, rgba, Text } from "@ledgerhq/native-ui";
import { useTranslation } from "react-i18next";
import { Animated, StyleSheet, TouchableOpacity, View } from "react-native";
import { useTheme } from "styled-components/native";
import { ScreenName } from "~/const";
import { NavigatorName, ScreenName } from "~/const";
import type { BaseComposite, StackNavigatorProps } from "~/components/RootNavigator/types/helpers";
import AccountItem from "../../components/AccountsListView/components/AccountItem";
import { Account } from "@ledgerhq/types-live";
Expand All @@ -17,6 +17,7 @@ import { useNavigation } from "@react-navigation/core";
import useAnimatedStyle from "../ScanDeviceAccounts/components/ScanDeviceAccountsFooter/useAnimatedStyle";
import AddFundsButton from "../../components/AddFundsButton";
import CloseWithConfirmation from "LLM/components/CloseWithConfirmation";
import { AddAccountContexts } from "../AddAccount/enums";
type Props = BaseComposite<
StackNavigatorProps<NetworkBasedAddAccountNavigator, ScreenName.AddAccountsWarning>
>;
Expand All @@ -29,17 +30,28 @@ export default function AddAccountsWarning({ route }: Props) {

const { animatedSelectableAccount } = useAnimatedStyle();

const { emptyAccount, emptyAccountName, currency, context } = route.params || {};

const statusColor = colors.warning.c70;

const goToAccounts = useCallback(
(accountId: string) => () => {
navigation.navigate(ScreenName.Account, {
accountId,
});
if (context === AddAccountContexts.AddAccounts) {
navigation.navigate(ScreenName.Account, {
accountId,
});
} else {
navigation.navigate(NavigatorName.ReceiveFunds, {
screen: ScreenName.ReceiveConfirmation,
params: {
...route.params,
accountId,
},
});
}
},
[navigation],
[navigation, route.params, context],
);
const { emptyAccount, emptyAccountName, currency } = route.params || {};

const statusColor = colors.warning.c70;

const handleOnCloseWarningScreen = useCallback(() => {
navigation.goBack();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
mockGroupedCurrenciesBySingleProviderData,
mockGroupedCurrenciesWithMultipleProviderData,
} from "./mockData";
import { AddAccountContexts } from "../../Accounts/screens/AddAccount/enums";

const MockUseRoute = useRoute as jest.Mock;
const MockUseGroupedCurrenciesByProvider = useGroupedCurrenciesByProvider as jest.Mock;
Expand Down Expand Up @@ -39,7 +40,7 @@ describe("Asset Selection test suite", () => {
it("should render crypto selection screen when no currency is defined in the navigation route showing a loader", () => {
MockUseRoute.mockReturnValue({
params: {
context: "addAccounts",
context: AddAccountContexts.AddAccounts,
},
});

Expand All @@ -62,7 +63,7 @@ describe("Asset Selection test suite", () => {
it("should render crypto selection screen with empty list when useGroupedCurrenciesByProvider finish loading with empty result", () => {
MockUseRoute.mockReturnValue({
params: {
context: "addAccounts",
context: AddAccountContexts.AddAccounts,
},
});

Expand All @@ -79,7 +80,7 @@ describe("Asset Selection test suite", () => {
it("should display a list of cryptocurrencies when useGroupedCurrenciesByProvider successfully loads data", () => {
MockUseRoute.mockReturnValue({
params: {
context: "addAccounts",
context: AddAccountContexts.AddAccounts,
},
});

Expand All @@ -98,7 +99,7 @@ describe("Asset Selection test suite", () => {
it("should navigate to network selection when currency has more than one network provider", () => {
MockUseRoute.mockReturnValue({
params: {
context: "addAccounts",
context: AddAccountContexts.AddAccounts,
currency: "ethereum",
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import type { CryptoCurrency, TokenCurrency } from "@ledgerhq/types-cryptoassets
import { AssetSelectionNavigationProps, CommonParams } from "../../types";
import { useGroupedCurrenciesByProvider } from "@ledgerhq/live-common/deposit/index";
import { LoadingBasedGroupedCurrencies } from "@ledgerhq/live-common/deposit/type";
import { AddAccountContexts } from "LLM/features/Accounts/screens/AddAccount/enums";

type SelectCryptoViewModelProps = Pick<CommonParams, "context"> & {
filterCurrencyIds?: string[];
Expand Down Expand Up @@ -58,15 +59,15 @@ export default function useSelectCryptoViewModel({
navigation.navigate(ScreenName.SelectNetwork, {
context,
currency: curr.id,
...(context === "receiveFunds" && { filterCurrencyIds }),
...(context === AddAccountContexts.AddAccounts && { filterCurrencyIds }),
});
return;
}

const isToken = curr.type === "TokenCurrency";
const currency = isToken ? curr.parentCurrency : curr;
const currencyAccounts = findAccountByCurrency(accounts, currency);
const isAddAccountContext = context === "addAccounts";
const isAddAccountContext = context === AddAccountContexts.AddAccounts;

if (currencyAccounts.length > 0 && !isAddAccountContext) {
// If we found one or more accounts of the currency then we select account
Expand Down Expand Up @@ -113,12 +114,12 @@ export default function useSelectCryptoViewModel({
);
const { titleText, titleTestId } = useMemo(() => {
switch (context) {
case "addAccounts":
case AddAccountContexts.AddAccounts:
return {
titleText: t("assetSelection.selectCrypto.title"),
titleTestId: "select-crypto-header-step1-title",
};
case "receiveFunds":
case AddAccountContexts.ReceiveFunds:
return {
titleText: t("transfer.receive.selectCrypto.title"),
titleTestId: "receive-header-step1-title",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import { AssetSelectionNavigationProps, SelectNetworkRouteParams } from "../../t
import { CryptoWithAccounts } from "./types";
import { LoadingBasedGroupedCurrencies } from "@ledgerhq/live-common/deposit/type";
import { useGroupedCurrenciesByProvider } from "@ledgerhq/live-common/deposit/index";
import { AddAccountContexts } from "LLM/features/Accounts/screens/AddAccount/enums";

export default function useSelectNetworkViewModel({
filterCurrencyIds,
Expand Down Expand Up @@ -124,7 +125,7 @@ export default function useSelectNetworkViewModel({
);

if (!cryptoToSend) return;
const isAddAccountContext = context === "addAccounts";
const isAddAccountContext = context === AddAccountContexts.AddAccounts;

const accs = findAccountByCurrency(accounts, cryptoToSend);

Expand Down Expand Up @@ -191,15 +192,15 @@ export default function useSelectNetworkViewModel({
string
> => {
switch (context) {
case "receiveFunds":
case AddAccountContexts.ReceiveFunds:
return {
titleText: t("selectNetwork.swap.title"),
titleTestId: "receive-header-step2-title",
subtitleText: t("selectNetwork.swap.subtitle"),
subTitleTestId: "transfer.receive.selectNetwork.subtitle",
listTestId: "receive-header-step2-networks",
};
case "addAccounts":
case AddAccountContexts.AddAccounts:
return {
titleText: t("assetSelection.selectNetwork.title"),
titleTestId: "addAccounts-header-step2-title",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
import { NavigatorScreenParams } from "@react-navigation/core";
import { NavigatorName, ScreenName } from "~/const";
import { DeviceSelectionNavigatorParamsList } from "../DeviceSelection/types";
import { NetworkBasedAddAccountNavigator } from "../Accounts/screens/AddAccount/types";
import {
AddAccountContextType,
NetworkBasedAddAccountNavigator,
} from "../Accounts/screens/AddAccount/types";
import { StackNavigatorProps } from "~/components/RootNavigator/types/helpers";
export type CommonParams = {
context?: "addAccounts" | "receiveFunds";
context?: AddAccountContextType;
onSuccess?: () => void;
currency?: string;
inline?: boolean;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { useRoute, useNavigation } from "@react-navigation/native";
import { discoverDevices } from "@ledgerhq/live-common/hw/index";
import { DeviceModelId } from "@ledgerhq/types-devices";
import { of } from "rxjs";
import { AddAccountContexts } from "../../Accounts/screens/AddAccount/enums";

const MockUseRoute = useRoute as jest.Mock;
const mockNavigate = jest.fn();
Expand Down Expand Up @@ -34,7 +35,7 @@ describe("Device Selection feature integration test", () => {
beforeAll(() => {
MockUseRoute.mockReturnValue({
params: {
context: "addAccounts",
context: AddAccountContexts.AddAccounts,
currency: {
type: "CryptoCurrency",
id: "bitcoin",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
import { CryptoCurrency } from "@ledgerhq/types-cryptoassets";
import { NavigatorScreenParams } from "@react-navigation/core";
import { NavigatorName, ScreenName } from "~/const";
import { NetworkBasedAddAccountNavigator } from "../Accounts/screens/AddAccount/types";
import {
AddAccountContextType,
NetworkBasedAddAccountNavigator,
} from "../Accounts/screens/AddAccount/types";
import { StackNavigatorProps } from "~/components/RootNavigator/types/helpers";

type CommonParams = {
context?: "addAccounts" | "receiveFunds";
context?: AddAccountContextType;
onSuccess?: () => void;
onCloseNavigation?: () => void;
};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import QueuedDrawer from "~/components/QueuedDrawer";
import type { BaseComposite, StackNavigatorProps } from "~/components/RootNavigator/types/helpers";
import { MyLedgerNavigatorStackParamList } from "~/components/RootNavigator/types/MyLedgerNavigator";
import { useFeature } from "@ledgerhq/live-common/featureFlags/index";
import { AddAccountContexts } from "~/newArch/features/Accounts/screens/AddAccount/enums";

type NavigationProps = BaseComposite<
StackNavigatorProps<MyLedgerNavigatorStackParamList, ScreenName.MyLedgerDevice>
Expand Down Expand Up @@ -54,7 +55,7 @@ const InstallSuccessBar = ({ state, navigation, disable }: Props) => {
const onAddAccount = useCallback(() => {
if (llmNetworkBasedAddAccountFlow?.enabled)
navigation.navigate(NavigatorName.AssetSelection, {
context: "addAccounts",
context: AddAccountContexts.AddAccounts,
});
else navigation.navigate(NavigatorName.AddAccounts);

Expand Down
Loading

1 comment on commit b1f4709

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

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

[Bot] Daily non-reg on develop with 'Nitrogen' ✅ 61 txs ❌ 11 txs 💰 21 miss funds ($1,012.71) ⏲ 17min 14s

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

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/bank/v1beta1/balances/inj1vzjwweta3hegt99vfgrvmcq7rr5532yjsgxd4a

Spec Polygon zkEVM Testnet failed!

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

Spec Klaytn failed!

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

Spec VeChain VTHO failed!

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

❌ 11 mutation errors
necessary accounts resynced in 0.18ms
▬ Casper 2.6.8 on nanoSP 1.1.2
→ FROM undefined: 16 CSPR (81ops) (02026b93627ed2f76551e7cef0466468b12db8fab806266107b69947d9c95ced9e7c on 44'/506'/0'/0/0) casper_wallet#0 js:2:casper:02026b93627ed2f76551e7cef0466468b12db8fab806266107b69947d9c95ced9e7c:casper_wallet
max spendable ~15.9
★ 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  7.95 CSPR
TO 02034a7c5519d553bc282f768dca044e18746b7be9b711f2f310c190f33b3cbc4a4f
STATUS (7ms)
  amount: 7.95 CSPR
  estimated fees: 0.1 CSPR
  total spent: 8.05 CSPR
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Target'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Target": "24c266f2e7970190FF7aE4CF9c1cd2a96F66C3C3C1Fd902776f0b063691a31d1",
+   "Target": "02034A7c5519d553BC282F768Dca044e18746B7Be9B711f2F310c190f33B3cBC4A4F",
  }
(totally spent 6.9s – ends at 2025-01-27T16:58:45.324Z)
necessary accounts resynced in 0.73ms
▬ Aptos 0.6.10 on nanoSP 1.1.2
→ FROM undefined: 0.573619 APT (1ops) (0xc9ce406c17508f44ed2f1dbd62e0a0363a4335afe2e77dd9d174fffb346293be on 44'/637'/0'/0/0) #0 js:2:aptos:11fd81d9637768b091212591ba1090840b14d3349265e9ea734657c14a0f0b49:
max spendable ~0.573419
★ using mutation 'Send ~50%'
→ TO undefined: 0 APT (0ops) (0x4a0939b013ec25060d431f21f1e21a332d03cd3361ba478f86daa541ff176556 on 44'/637'/1'/0/0) #1 js:2:aptos:6e66925078c1e3c2c59078c9292aa9a77ffeb2358e55f709c6184e12f23a123f:
✔️ transaction 
SEND  0.286709
TO 0x4a0939b013ec25060d431f21f1e21a332d03cd3361ba478f86daa541ff176556
with fees=0.000999
STATUS (3.4s)
  amount: 0.28670983 APT
  estimated fees: 0.000999 APT
  total spent: 0.28770883 APT
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review","x":47,"y":29,"w":36,"h":9}
{"text":"Transaction","x":35,"y":43,"w":60,"h":9}
{"text":"Transaction Type","x":16,"y":7,"w":97,"h":12}
{"text":"Coin transfer","x":31,"y":21,"w":67,"h":9}
(totally spent 64.1s – ends at 2025-01-27T16:58:45.325Z)
necessary accounts resynced in 0.25ms
▬ BitcoinCash 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 0.00113939 BCH (759ops) (qrm90qa8ustfgq7rk2d9ph8asu3gm75e0gnmp039z7 on 44'/145'/3'/0/371) #3 js:2:bitcoin_cash:xpub6CYDTh442n9QftkdDJbR3GXhop6xxjkHdxgz9xcKkdq8Q7xF9ER8NXJicVwjXbnkBdbF7nc52wrAVhGoraVfQcsGCA2JwjWurCZQU6pNyHH:
2 UTXOs
0.0007911    qpa2l8r27g8cqsve5rx7m6fd6rpm04tcz5zn0edy96 (change) ccfab019855abcea8e27d4c1d55aafcc6d64424d4fa52ffc3cc39e89672d958f @1 (21)
0.00034829   qzfer5hjqwy580yq6eqlrx985f39uslcpcwk7l33mk rbf f9625960c81871b5f9fa0bec69250aeec988ebbcf811951e63f7328522065695 @0 (0)

max spendable ~0.00078726
★ using mutation 'send OP_RETURN transaction'
→ TO undefined: 0.00036764 BCH (816ops) (qzjs68h6hnq9nwnllve6nvm9vwxhqz3kgccuff7vt5 on 44'/145'/1'/0/413) #1 js:2:bitcoin_cash:xpub6CYDTh442n9QaLF3Z2i5L9QENTixN9kGH5XCYh2J5UTHuu99Y2W1sxm2HcX9sQUe2xmv4r3GVmn8GdTvCsLEof448VdZEmdpfmzX7Dk3AJx:
✔️ transaction 
SEND 0.00015 BCH
TO bitcoincash:qzjs68h6hnq9nwnllve6nvm9vwxhqz3kgccuff7vt5
with feePerByte=2 (network fees: 0=3, 1=2, 2=1)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (179ms)
TX INPUTS (1):
0.0007911    qpa2l8r27g8cqsve5rx7m6fd6rpm04tcz5zn0edy96 ccfab019855abcea8e27d4c1d55aafcc6d64424d4fa52ffc3cc39e89672d958f@1
TX OUTPUTS (3):
0            @0 (0)
0.00015      qzjs68h6hnq9nwnllve6nvm9vwxhqz3kgccuff7vt5 @1 (0)
0.00063606   qzj69hata8dc3uyqmzjac7p453ght9xpeu7eq2hdav (change) @2 (0)
  amount: 0.00015 BCH
  estimated fees: 0.00000504 BCH
  total spent: 0.00015504 BCH
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Address'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Address": "bitcoincash:qzjs68h6hnq9nwnllve6nvm9vwxhqz3kgccuff7vt5",
+   "Address": "qzjs68h6hnq9nwnllve6nvm9vwxhqz3kgccuff7vt5",
  }
(totally spent 4.2s – ends at 2025-01-27T16:58:45.329Z)
necessary accounts resynced in 0.23ms
▬ Horizen 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 0.179349 ZEN (672ops) (znf7UcHp6oHR83DhVev1jGqS12W8tzs36cL on 44'/121'/2'/0/360) #2 js:2:zencash:xpub6C68jAb8xasfsZCbDtbqPTydFZEHjfzFP75ZQyizidPdLPHNbf41HqQq8RiHMJNuXx71D15Uv9yVpxHkxicSAzKCPVqi1gCKkJTdCN6MK7Q:
5 UTXOs
0.0965983    znS4i2sEpcpnFdxFLqCYQ9BfAW6hdb2ecXA 4c5588a09f8ac37d8efbf07a100a54be6b917c7ebc3b3c1bad70ef840a493eda @0 (5720)
0.0294318    znT7AQT8zs5PGUnNZqtzAzoufSXrW6gkpdM d089d645d34e20efba1cb6a45dccb36d89e5a2b4a4bbbc7d50c96f2944768725 @0 (2293)
0.0251822    znkPTqqWx4mz35RTKJ6gsZBiyEuFtBuGFxh e324393585d06b601b0ba1ad37c517380f8eff83c5c7972d681e377c01231ca4 @0 (2293)
0.0167641    znZkmiVSngQyc5YVSHTDo3DfUxuKkEwfTnV 8045412fc9e4773389681975b016d6b9cdd967657c2b60a3afa4baa1d16acf51 @0 (5721)
...

max spendable ~0.179333
★ using mutation 'send OP_RETURN transaction'
→ TO undefined: 0.0364058 ZEN (698ops) (znU97eUMg69kgYCHCAyyCR8f2T1MFUXynNp on 44'/121'/0'/0/318) #0 js:2:zencash:xpub6C68jAb8xasfmbmg37N3W5TsYWdTb6xLCtjwz5oSVAdi6Jxzx6FeBQcQazySrCXnsGZKaT9MXB9i4Lny4AoFAVZtSy6kVExyheF7X5Msvu3:
✔️ transaction 
SEND 0.01 ZEN
TO znU97eUMg69kgYCHCAyyCR8f2T1MFUXynNp
with feePerByte=2 (network fees: 0=3, 1=2, 2=1)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (100ms)
TX INPUTS (1):
0.0167641    znZkmiVSngQyc5YVSHTDo3DfUxuKkEwfTnV 8045412fc9e4773389681975b016d6b9cdd967657c2b60a3afa4baa1d16acf51@0
TX OUTPUTS (3):
0            @0 (0)
0.01         znU97eUMg69kgYCHCAyyCR8f2T1MFUXynNp @1 (0)
0.00675833   znarDSDiAAJbwhEf77gEEJaeGrkn4boMgL7 (change) @2 (0)
  amount: 0.01 ZEN
  estimated fees: 0.0000058 ZEN
  total spent: 0.0100058 ZEN
errors: 
warnings: 
⚠️ TransportStatusError: Ledger device: Invalid data received (0x6a80)
(totally spent 6.6s – ends at 2025-01-27T16:58:45.333Z)
necessary accounts resynced in 0.23ms
▬ Cosmos 2.36.1 on nanoS 2.1.0
→ FROM undefined: 0.085975 DSM (3ops) (desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur on 44'/118'/1'/0/0) #1 js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur: (! sum of ops -0.284431 DSM) 0.0839 DSM spendable. 0.002075 DSM delegated. 
DELEGATIONS
  to desmosvaloper1r75t9axgvcj6zxnn050n4r2tg3manmvy6n7908 0.002075 DSM  (claimable 0.002075)

max spendable ~0.083575
★ using mutation 'send some'
→ TO undefined: 6.75428 DSM (21ops) (desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z on 44'/118'/11'/0/0) #11 js:2:desmos:desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z:
✔️ transaction 
SEND  0.048867 DSM
TO desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z

with fees=0.000325
STATUS (4.2s)
  amount: 0.048867 DSM
  estimated fees: 0.000325 DSM
  total spent: 0.049192 DSM
errors: 
warnings: 
✔️ has been signed! (9.7s) {"operation":{"id":"js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:--OUT","hash":"","type":"OUT","senders":["desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur"],"recipients":["desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z"],"accountId":"js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:","blockHash":null,"blockHeight":null,"extra":{},"date":"2025-01-27T16:45:49.533Z","value":"49192","fee":"325","transactionSequenceNumber":129},"signature":"0a90010a8d010a1c2f636f736d6f732e62616e6b2e763162657461312e4d736753656e64126d0a2d6465736d6f73317176746e7a70747033306d617a6e6e6864673330786c326a746471327368706e6e7967787572122d6465736d6f733171303939373064656b6d3568646b753574746137703977366b6c64797966323536327830397a1a0d0a047564736d1205343838363712660a510a460a1f2f636f736d6f732e63727970746f2e736563703235366b312e5075624b657912230a2103bbdd0faa68724918e242ad33b2cbb8747bdf245b4db9bded5c52601699a714af12040a02087f18810112110a0b0a047564736d120333323510d0f7071a404b988218f28f42d9d145b5769432847c778758e3e8cc4bd320739f39fb9ef2220e3d43e79cfc6932c49c99c0234e78fd77bc3593863cbd77d68589efe172f592"}
⚠️ TEST during broadcast
LedgerAPI4xx: must declare at least one event to search
(totally spent 15.1s – ends at 2025-01-27T16:58:45.337Z)
necessary accounts resynced in 0.24ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00218725 ETH (94ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892: (! sum of ops -0.000237449695159575 ETH)  TokenAccount PacMoon: 89.668802350444586624 PAC (27 ops) (! sum of ops 89.636783209228456048 PAC)
max spendable ~0.00218724
★ using mutation 'move 50%'
→ TO undefined: 0.00211127 ETH (80ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:blast:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
✔️ transaction 
SEND  0.001093620772270795 ETH
TO 0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9
STATUS (197ms)
  amount: 0.001093620772270795 ETH
  estimated fees: 0.000000006909609 ETH
  total spent: 0.001093627681879795 ETH
errors: 
warnings: 
✔️ has been signed! (4.6s) 
✔️ broadcasted! (216ms) optimistic operation: 
  -0.001093627681879795 ETH OUT        0x99d613425415f20d8804256e17d897565494bdbf4cca481f10a4cb9a32587661 2025-01-27T16:48
(in 10min 2s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "1093632640725795"
Received: "1090696679417154"
(totally spent 10min 7s – ends at 2025-01-27T16:58:45.340Z)
necessary accounts resynced in 0.13ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.0500382 𝚝ETH (1ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892: (! sum of ops 0.05 𝚝ETH)
max spendable ~0.0500382
★ using mutation 'move 50%'
→ TO undefined: 0 𝚝ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:blast_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
✔️ transaction 
SEND  0.025019121889617561 𝚝ETH
TO 0x90bD48144e08b66490BcA9a756BDe9f004F17857
STATUS (540ms)
  amount: 0.025019121889617561 𝚝ETH
  estimated fees: 0.000000008998584 𝚝ETH
  total spent: 0.025019130888201561 𝚝ETH
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Amount'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Amount": "𝚝ETH 0.025019121889617561",
+   "Amount": "ETH 0.025019121889617561",
  }
(totally spent 2151ms – ends at 2025-01-27T16:58:45.342Z)
necessary accounts resynced in 0.16ms
▬ NEAR 2.2.0 on nanoS 2.1.0
→ FROM undefined: 0.444549 NEAR (66ops) (0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf on 44'/397'/0'/0'/0') nearbip44h#0 js:2:near:0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf:nearbip44h (! sum of ops 0.98067982518354365104 NEAR)
max spendable ~0.391593
★ using mutation 'Move 50% to another account'
→ TO undefined: 0.0520987 NEAR (22ops) (aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93 on 44'/397'/0'/0'/4') nearbip44h#4 js:2:near:aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93:nearbip44h
✔️ transaction 
SEND  0.19579683009972547709 NEAR
TO aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93
STATUS (409ms)
  amount: 0.19579683009972547709 NEAR
  estimated fees: 0.0008349895375 NEAR
  total spent: 0.19663181963722547709 NEAR
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Near app","x":41,"y":6,"w":48,"h":11}
{"text":"is ready","x":41,"y":17,"w":48,"h":11}
{"text":"Receiving","x":36,"y":3,"w":92,"h":11}
{"text":"Transaction...","x":26,"y":15,"w":102,"h":11}
{"text":"View header","x":29,"y":19,"w":99,"h":11}
(totally spent 60.4s – ends at 2025-01-27T16:58:45.348Z)
necessary accounts resynced in 0.28ms
▬ Stellar 5.5.0 on nanoSP 1.1.2
→ FROM undefined: 9.34162 XLM (601ops) (GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC on 44'/148'/0') sep5#0 js:2:stellar:GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC:sep5 (! sum of ops 9.3596713 XLM)  TokenAccount USDC: 0 usdc (0 ops)
max spendable ~7.8416
★ using mutation 'move ~50% XLM'
→ TO undefined: 1.5005 XLM (560ops) (GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM on 44'/148'/3') sep5#3 js:2:stellar:GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM:sep5
✔️ transaction 
    SEND 4.0561972 XLM
    TO GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM
    with fees=0.0005 XLM
  memo=Ledger Live
STATUS (1260ms)
  amount: 4.0561972 XLM
  estimated fees: 0.0005 XLM
  total spent: 4.0566972 XLM
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"PGCRGKY3RE42IT7PU","x":8,"y":49,"w":113,"h":8}
{"text":"Destination (2/2)","x":17,"y":7,"w":96,"h":11}
{"text":"NLU2SHM","x":39,"y":21,"w":51,"h":8}
{"text":"Sign","x":54,"y":29,"w":21,"h":12}
{"text":"Transaction","x":35,"y":43,"w":60,"h":9}
(totally spent 61.3s – ends at 2025-01-27T16:58:45.352Z)
necessary accounts resynced in 0.17ms
▬ TezosWallet 3.0.6 on nanoS 2.1.0
→ FROM undefined: 5.28869 XTZ (152ops) (tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF on 44'/1729'/0'/0') tezbox#0 js:2:tezos:0240051fc51799e60dcc8870415b87fc4fd948e71b23fdc0d9b8ac7438cf7d4708:tezbox
max spendable ~5.28774
★ using mutation 'send unrevealed'
→ TO undefined: 0 XTZ (4ops) (tz1he4fPXP3c9fFrztYT3k7KyYuLb28arFNn on 44'/1729'/1'/0') tezbox#1 js:2:tezos:02fe3d777af5380ef0a431c4985772c9669743050cee5feff717c3c3272d7a2810:tezbox
✔️ transaction 
SEND 2.643872 XTZ
TO tz1he4fPXP3c9fFrztYT3k7KyYuLb28arFNn
with fees=0.0005
with gasLimit=600
with storageLimit=277
(estimatedFees 0.000563)
STATUS (835ms)
  amount: 2.643872 XTZ
  estimated fees: 0.000563 XTZ
  total spent: 2.644435 XTZ
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review operation","x":13,"y":17,"w":107,"h":11}
{"text":"Operation (0)","x":26,"y":-1,"w":94,"h":11}
{"text":"Reveal","x":47,"y":10,"w":81,"h":11}
(totally spent 63.1s – ends at 2025-01-27T16:58:45.354Z)
necessary accounts resynced in 0.18ms
▬ TON 2.4.1 on nanoSP 1.1.2
→ FROM undefined: 0.0151678 TON (17ops) (UQCn-JC2p2S4NWRhqrHkuNmoziSwZ2rSYOIlq-GDUd2V0cq2 on 44'/607'/0'/0'/4'/0') ton#4 js:2:ton:00eb62bbc9b4515d20d3381b34c542c3cfdfdf1a3603eea8a25996ff01342b6a:ton (! sum of ops 0.035328945 TON)
max spendable ~0.0151678
★ using mutation 'Send ~50%'
→ TO undefined: 0.0131815 TON (28ops) (UQDkfo-2gm0LAN6Rs80vnTTHUtlEAn7TomCLKLhvbcw1LSHG on 44'/607'/0'/0'/3'/0') ton#3 js:2:ton:0ca11456791dafa4f1bd25138797661aaf6fa6e4d7d4606efc6757c8ef907291:ton
✔️ transaction 
SEND  0.007583914 TON
TO UQDkfo-2gm0LAN6Rs80vnTTHUtlEAn7TomCLKLhvbcw1LSHG
STATUS (4s)
  amount: 0.007583914 TON
  estimated fees: 0.004491539 TON
  total spent: 0.012075453 TON
errors: amount TonMinimumRequired
warnings: 
⚠️ TEST mutation must not have tx status errors
TonMinimumRequired: TonMinimumRequired
(totally spent 4s – ends at 2025-01-27T16:58:45.355Z)
⚠️ 31 spec hints
  • Spec Celo:
    • mutations should define a test(): Celo: Move 50% to another account
    • mutations should define a testDestination(): Celo: Move 50% to another account
  • Spec Algorand:
    • mutation move ~50%: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Bitcoin Testnet:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec ZCash:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec dydx:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec sei_network:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec xion:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Ethereum Classic:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Polygon:
    • mutation move 50%: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Ethereum Sepolia:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Arbitrum:
    • mutation move 50%: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Flare:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Rootstock:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec OP Mainnet:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec OP Sepolia:
    • There are not enough accounts (1) to cover all mutations (1).
      Please increase the account target to at least 2 accounts
  • Spec Base:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Neon EVM:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Linea Sepolia:
    • There are not enough accounts (1) to cover all mutations (1).
      Please increase the account target to at least 2 accounts
  • Spec Scroll:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Scroll Sepolia:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Etherlink:
    • There are not enough accounts (1) to cover all mutations (1).
      Please increase the account target to at least 2 accounts
  • Spec ZKsync:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec ZKsync Sepolia:
    • There are not enough accounts (1) to cover all mutations (1).
      Please increase the account target to at least 2 accounts
  • Spec Icon:
    • mutations should define a testDestination(): send 50%~
  • Spec NEAR:
    • mutations should define a testDestination(): Move 50% to another account
  • Spec Solana:
    • There are not enough accounts (1) to cover all mutations (1).
      Please increase the account target to at least 2 accounts
  • Spec Stacks:
    • mutations should define a testDestination(): Send 50%~
  • Spec Stellar:
    • mutations should define a testDestination(): move ~50% XLM
  • Spec Tezos:
    • mutations should define a test(): send unrevealed, send revealed
  • Spec VeChain VET:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
Portfolio ($1,012.71) – Details of the 76 currencies
Spec (accounts) State Remaining Runs (est) funds?
Casper (8) 426 ops , 25,011 CSPR ($361.91) 💪 999+ 02026b93627ed2f76551e7cef0466468b12db8fab806266107b69947d9c95ced9e7c
Celo (12) 2066 ops (+2), 16.2888 CELO ($8.65) 💪 999+ 0x246FFDB387F1F8c48072E1C13443540017bC71b7
Algorand (6) 3276 ops (+2), 7.44148 ALGO ($8.34) 💪 999+ TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4
Aptos (2) 1 ops , 0.573619 APT ($4.19) 💪 574 0xc9ce406c17508f44ed2f1dbd62e0a0363a4335afe2e77dd9d174fffb346293be
Bitcoin Testnet (13) 1457 ops , 0.00102278 𝚝BTC ($0.00) ⚠️ 0 tb1qva8ex44kkad8gz4m7yukmc9hdvhml29ych5esm
Bitcoin Cash (7) 4685 ops (+6), 0.0434472 BCH ($17.89) 💪 999+ qzv3vvf0ysqk6mwzc3tyvt9v7km6l8fdyq52llmktq
Bitcoin Gold (6) 3539 ops (+8), 0.348388 BTG ($2.25) 💪 999+ AJbyLgr2Dd28raRQDTkebweJtJSC5ts8KU
Dash (7) 3958 ops (+8), 0.10296 DASH ($3.33) 💪 999+ XhdcCVQwH46kmGHw4kH9ZXwquH59SE2QBx
Digibyte (9) 4960 ops (+8), 443.79 DGB ($4.63) 💪 999+ dgb1qkglz2cqxrrl5jmx906yzg6cjtm945zvzxuzqkd
DogeCoin (7) 2312 ops , 3.53936 DOGE ($1.15) ⚠️ DPMKt6FSk3UXjNya2PKQBiHj4S1W2YiFRh
Komodo (5) 2721 ops (+8), 17.4856 KMD ($3.97) 💪 999+ R9zqvRQgNmWVARC8RCgGrbUqhdFUG3Y8zm
Litecoin (9) 4843 ops (+8), 0.33903 LTC ($37.61) 💪 999+ ltc1qcvsvfl2r723s7x56c9ekqlhsvyaax630g5sr8q
ZCash (5) 1502 ops , 0.00368057 ZEC ($0.16) ⚠️ 2 t1SDpcaNZmbCH5TCCb5vNAh5bXs3isDtA5h
Horizen (5) 2730 ops (+6), 0.418331 ZEN ($7.74) 💪 999+ znU97eUMg69kgYCHCAyyCR8f2T1MFUXynNp
osmosis (18) 2 ops (+2), 16.0481 OSMO ($6.23) 💪 999+ osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l
desmos (18) 287 ops (+8), 144.865 DSM ($0.15) 💪 999+ desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454
dydx (18) 361 ops , 0.00957568 dydx ($0.01) ⚠️ 6 dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6
umee (18) 155 ops , 703.065 UMEE ($0.46) 💪 999+ umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l
persistence (18) 472 ops , 24.4262 XPRT ($3.46) 💪 999+ persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf
quicksilver (18) 11 ops , 19.3387 QCK ($0.11) 💪 999+ quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l
onomy (18) 408 ops , 1.80579 NOM ($0.03) 💪 999+ onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg
sei_network (16) 0 ops , 0.068109 SEI ($0.00) sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v
stargaze (18) 4 ops , 759.63 STARS ($3.12) 💪 999+ stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu
coreum (18) 2386 ops , 28.9713 CORE ($5.55) 💪 999+ core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk
injective (0) 0 ops , 🤷‍♂️ ``
mantra (18) 2 ops , 3.34351 OM ($15.87) 💪 999+ mantra1rs97j43nfyvc689y5rjvnnhrq3tes6ghshzpqh
crypto_org (14) 142 ops , 34.2993 CRO ($4.50) 💪 999+ cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra
xion (9) 60 ops , 0.087639 XION ($0.18) ⚠️ 0 xion1rs97j43nfyvc689y5rjvnnhrq3tes6ghe4j84x
zenrock (7) 25 ops , 9.8804 ROCK ($0.38) 💪 977 zen1rs97j43nfyvc689y5rjvnnhrq3tes6ghp36y0u
Elrond (8) 3258 ops (+2), 0.911395 EGLD ($25.47) 💪 999+ erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp
Ethereum Classic (6) 685 ops , 0.232476 ETC ($5.86) 💪 999+ 0x7584df0780C5eB83b26aE55abBc265014f8bf897
Polygon (10) 3104 ops (+2), 18.7897 POL ($7.58) 👍 93 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Sepolia (6) 781 ops , 0.00260545 𝚝ETH ($0.00) ⚠️ 4 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Holesky (6) 1634 ops (+2), 0.22748 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum (6) 814 ops (+2), 0.00510417 ETH ($15.73) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum Sepolia (6) 1295 ops (+2), 0.983871 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Flare (6) 2170 ops , 4.00005 FLR ($0.18) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Songbird (6) 3430 ops (+2), 936.914 SGB ($6.26) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonbeam (6) 2881 ops (+2), 58.7311 GLMR ($9.60) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Rootstock (5) 794 ops , 0.00030914 RBTC ($31.32) 👍 226 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Bittorent Chain (6) 2966 ops (+2), 1,488,239 BTT ($1.49) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Mainnet (5) 119 ops , 0.00286711 ETH ($23.59) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Energy Web (6) 2756 ops (+2), 7.52306 EWT ($8.50) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Astar (6) 2974 ops (+2), 317.057 ASTR ($15.68) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Metis (6) 127 ops (+2), 0.127821 METIS ($4.07) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonriver (6) 2506 ops (+2), 2.22431 MOVR ($20.37) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Velas EVM (6) 502 ops (+2), 911.986 VLX ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Syscoin (6) 2890 ops (+2), 57.0336 SYS ($5.13) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Polygon zkEVM Testnet (0) 0 ops , 🤷‍♂️ ``
Base (5) 249 ops , 0.00269293 ETH ($8.31) 👍 303 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Base Sepolia (6) 1303 ops (+2), 0.977118 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Klaytn (0) 0 ops , 🤷‍♂️ ``
Neon EVM (6) 1642 ops , 13.7527 NEON ($3.62) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Lukso (6) 1821 ops (+2), 0.483279 LYX ($0.80) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea (6) 1195 ops (+2), 0.00520551 ETH ($16.03) 👍 350 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Blast (6) 431 ops (+2), 0.00887308 ETH ($27.41) 💪 999+ 0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9
Blast Sepolia (2) 1 ops , 0.0500382 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Scroll (2) 2 ops , 0.01 ETH ($36.07) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Scroll Sepolia (2) 1 ops , 0.05 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Etherlink (1) 0 ops , 0 XTZ ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
ZKsync (2) 3 ops , 0.003 ETH ($12.77) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
ZKsync Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Hedera (4) 2352 ops (+4), 38.3718 HBAR ($11.68) 💪 999+ 0.0.3663977
InternetComputer (8) 1106 ops (+2), 0.990577 ICP ($8.55) 💪 999+ f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209
Icon (8) 435 ops (+2), 9.72999 ICX ($1.52) 💪 999+ hxdd614da5f057ce32185619f98edd81445a946ea5
NEAR (11) 226 ops , 0.785485 NEAR ($5.68) 💪 877 0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf
Solana (1) 100 ops , 0 SOL ($0.00) ⚠️ 5vhAGihUC1uKucJvreCgWWXB6LEptPwkwpqhkq9M6iaz
Stacks (4) 736 ops (+2), 29.1965 STX ($36.20) 💪 999+ SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2
Stellar (6) 2871 ops , 58.9779 XLM ($26.07) 💪 999+ GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC
Tezos (3) 156 ops , 5.28869 XTZ ($5.66) 💪 911 tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF
TON (7) 165 ops , 0.0464555 TON ($0.22) ⚠️ 0 UQDL7vAIogYGacmfO0xTS1bwPEMJNh1g1Jliwq2p-qWkS1J0
VeChain VTHO (0) 0 ops , 🤷‍♂️ ``
VeChain VET (4) 19 ops , 5 VET ($0.48) ⚠️ 24 0xc4B17901FECf86932c3bb296BB00E7c6816Fd416
XRP (5) 641 ops (+2), 40.0027 XRP ($128.94) 💪 999+ r9etPtq3oboweMPju5gdYufmvwhH2euz8z
undefined: 16 CSPR (81ops) (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: 16 CSPR (61ops) (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.029158 CELO (276ops) (0x246FFDB387F1F8c48072E1C13443540017bC71b7 on 44'/52752'/0'/0/0) #0 js:2:celo:0x246FFDB387F1F8c48072E1C13443540017bC71b7:
undefined: 0.0606609 CELO (211ops) (0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8 on 44'/52752'/1'/0/0) #1 js:2:celo:0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8:
undefined: 0.439852 CELO (216ops) (0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0 on 44'/52752'/2'/0/0) #2 js:2:celo:0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0:
undefined: 0.798922 CELO (192ops) (0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2 on 44'/52752'/3'/0/0) #3 js:2:celo:0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2:
undefined: 0.00502056 CELO (182ops) (0xA6EB5541E3527d07CaD4dD14E5454820DB858160 on 44'/52752'/4'/0/0) #4 js:2:celo:0xA6EB5541E3527d07CaD4dD14E5454820DB858160:
undefined: 0.115658 CELO (167ops) (0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE on 44'/52752'/5'/0/0) #5 js:2:celo:0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE:
undefined: 7.97343 CELO (161ops) (0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc on 44'/52752'/6'/0/0) #6 js:2:celo:0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc:
undefined: 1.70557 CELO (178ops) (0xc054A142A0e8793bC860A34971C3eb549064A54a on 44'/52752'/7'/0/0) #7 js:2:celo:0xc054A142A0e8793bC860A34971C3eb549064A54a:
undefined: 0.00271163 CELO (182ops) (0x78AB368133f5Bf101849475dD4a5747E6d1A897a on 44'/52752'/8'/0/0) #8 js:2:celo:0x78AB368133f5Bf101849475dD4a5747E6d1A897a:
undefined: 1.79572 CELO (158ops) (0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8 on 44'/52752'/9'/0/0) #9 js:2:celo:0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8:
undefined: 3.45281 CELO (143ops) (0x3f6AB52EDA4a9d38b3cf208E3fB4c3f87C53002D on 44'/52752'/10'/0/0) #10 js:2:celo:0x3f6AB52EDA4a9d38b3cf208E3fB4c3f87C53002D:
undefined: 0 CELO (0ops) (0xA07f9fb2bd5A8799081d5519897dB27B257D036D on 44'/52752'/11'/0/0) #11 js:2:celo:0xA07f9fb2bd5A8799081d5519897dB27B257D036D:
undefined: 3.10975 ALGO (647ops) (TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4 on 44'/283'/0'/0/0) #0 js:2:algorand:TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4:
undefined: 10.4545 ALGO (644ops) (RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ on 44'/283'/1'/0/0) #1 js:2:algorand:RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ:
undefined: 3.13214 ALGO (669ops) (YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE on 44'/283'/2'/0/0) #2 js:2:algorand:YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE:
undefined: 3.144 ALGO (737ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA:
undefined: 2.7 ALGO (579ops) (GEPEPFCOO7TRQ3HKU5IKQPARS7DDXDHH6Y2VNMUJWH7TMLLOZ3Z6JKRQAI on 44'/283'/4'/0/0) #4 js:2:algorand:GEPEPFCOO7TRQ3HKU5IKQPARS7DDXDHH6Y2VNMUJWH7TMLLOZ3Z6JKRQAI:
undefined: 0 ALGO (0ops) (X3TNYJCHUW6UBWVEN5K2ULWMLRWRGBEUWZLR4V2XR3UDN4TWNZP3Q6EAQU on 44'/283'/5'/0/0) #5 js:2:algorand:X3TNYJCHUW6UBWVEN5K2ULWMLRWRGBEUWZLR4V2XR3UDN4TWNZP3Q6EAQU:
undefined: 0.573619 APT (1ops) (0xc9ce406c17508f44ed2f1dbd62e0a0363a4335afe2e77dd9d174fffb346293be on 44'/637'/0'/0/0) #0 js:2:aptos:11fd81d9637768b091212591ba1090840b14d3349265e9ea734657c14a0f0b49:
undefined: 0 APT (0ops) (0x4a0939b013ec25060d431f21f1e21a332d03cd3361ba478f86daa541ff176556 on 44'/637'/1'/0/0) #1 js:2:aptos:6e66925078c1e3c2c59078c9292aa9a77ffeb2358e55f709c6184e12f23a123f:
undefined [native segwit]: 0.00011941 𝚝BTC (187ops) (tb1qva8ex44kkad8gz4m7yukmc9hdvhml29ych5esm on 84'/1'/0'/0/81) native_segwit#0 js:2:bitcoin_testnet:tpubDCgDNn312aj5XtrdMeA9TeQbp2HkMW2a1JNw2qhRLzUaFiDAAQK3Jzh6jzHpc6Agjn68mZgPQB2ZdQzfgRgXVXDi2FVECW7p4xGuK6Pa3b8:native_segwit
undefined [native segwit]: 0 𝚝BTC (164ops) (tb1qu3zymzu9syar4tkkq8g37a84349sx2vm2p6uka on 84'/1'/1'/0/81) native_segwit#1 js:2:bitcoin_testnet:tpubDCgDNn312aj5YVQsroTmVAWSVMpx2PM7m4toPJsHUricGUh457AwMZK55f2uNVxYdKeW8qDZDngveqFFcsFTWW7eZFbnYerfsf5YAdxU3K8:native_segwit
undefined [native segwit]: 0.00015 𝚝BTC (185ops) (tb1qd0pgst9gvhsgdku8tv5aenuhvf7g63ecj4rzh6 on 84'/1'/2'/0/81) native_segwit#2 js:2:bitcoin_testnet:tpubDCgDNn312aj5d7zhhRFxoozQMEzDZFVWmJngmKcygstAZheV88CxrZ2KqFL8nsjZoeNKeqEHTSmjii11wcuYuchvGYqYuGTzveWepNUKPmE:native_segwit
undefined [native segwit]: 0 𝚝BTC (0ops) (tb1q6d99qx850zdfx4ch32mm3v3mc2g5mupusazw49 on 84'/1'/3'/0/0) native_segwit#3 js:2:bitcoin_testnet:tpubDCgDNn312aj5f2MgUfzseZjbXNj5ep7UH8ucWf9VvUbRC1oyUG7cjbGLoCRhc429i6pMcuMS9ZhGX2bTwnKipVSkhNak9fn2N6sVorY4FxW:native_segwit
undefined [taproot]: 0.00015035 𝚝BTC (184ops) (tb1prx0rzeeaj8u99jfywvc34mg64yhpw4vf44nnpa0cx9gaw98gjxzqklvuqe on 86'/1'/0'/0/87) taproot#0 js:2:bitcoin_testnet:tpubDD1s2jBEVuSpzKea6ie3HMCmkanzcfvc9BbQq8nRDUaAUJPGFi83RWFCNMartYsuxksbFR6tDmVGMaaRP7ng7uovwKT1WNjcuDW34st9R56:taproot
undefined [taproot]: 0.00010077 𝚝BTC (178ops) (tb1pmhp66fc43q87ltl2h07geyfqlyszw8p7e467qdm6g72k5wn7t2yqkt8k2s on 86'/1'/1'/0/80) taproot#1 js:2:bitcoin_testnet:tpubDD1s2jBEVuSq13eMrn3r2tnwxfuWeBM94Dgtc4D5A6h1Jcx2kheLSgGtZroZCwFnXN4ao5PxViYSFTK57vRZnQ1RS193EETKNMmRuPTcWJH:taproot
undefined [taproot]: 0 𝚝BTC (0ops) (tb1p7t4hdtqlmpfv4vpu2vqre6elaywjvlq5yfl4jnjz9gw7lwcpjl5svzk5yz on 86'/1'/2'/0/0) taproot#2 js:2:bitcoin_testnet:tpubDD1s2jBEVuSq4ewqyyWoJYgCyvXsQ3wRkeSmKa3RW3b4BL2rfdDWzwM2WoefQcPGjetH92smctVjK4qrS89zYShy399s8MqWzhZdnCvHLfF:taproot
undefined [segwit]: 0.00018548 𝚝BTC (161ops) (2N9Sb3KXBURoeavoxkfSUpFEZbHrRv2cY3a on 49'/1'/0'/0/79) segwit#0 js:2:bitcoin_testnet:tpubDCoPNx9aypg8jXFPWWYdpHS3MtXF5GPM3nY2UbvQSnEt8PELHAbnf2MknjprAMTYUYPNJzKCr2XSBVMp2wctdKbU1jw9MHA9cbgN7CakJQe:segwit
undefined [segwit]: 0.00015 𝚝BTC (143ops) (2N8xuMjQfhDrtbvmb3251L3x1yGmdnt4Cvo on 49'/1'/1'/0/65) segwit#1 js:2:bitcoin_testnet:tpubDCoPNx9aypg8mbeNfcfUjuUfsXwrSmZkRseMwRxkhinEX8JjfThyhtJg6HeVWp6mF8gf6m37xqC4Q9yebR5RdtdjFcJ1Js7t8VB8Dq8Nczj:segwit
undefined [segwit]: 0 𝚝BTC (0ops) (2Mys6yQgQV1gdVTPECM5xvhUuNsiqtwSTm7 on 49'/1'/2'/0/0) segwit#2 js:2:bitcoin_testnet:tpubDCoPNx9aypg8pnB9z8yPPo7WEEeu9H1VPzq185ppKSLXDpdvXWkR75auxm6pkL6PdyRNLckMzYbZwiUui7hxFSsK5S5YHXT7pyfiG1eR9JQ:segwit
undefined [legacy]: 0.00011084 𝚝BTC (145ops) (mjYkQgDh2y2m26kDuLV4aKhEY2TievEtzZ on 44'/1'/0'/0/87) #0 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBsPABuHGzrXmApLgBRomQx7oFzQeuQn8gpzD27asWNYMeBzanzy4ru9hPE5q1HnQJCW2VcWm2Nz4cdNRB8Eo9xKPz6LGnrxQ:
undefined [legacy]: 0.00005593 𝚝BTC (110ops) (mw9wWMVC6R3WFhj6n1qyLR8hcV2Gd1DQ5B on 44'/1'/1'/0/84) #1 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBv5wFZcFYEhephnhXGjF8gKZJ98kGxYvtiv8xdfNVgFgGAFZFCRXwR8td9Nq8nufwfXB1iX75Ypx99d1NktaeLNc4DxmrTng:
undefined [legacy]: 0 𝚝BTC (0ops) (n2pjyyrHHws2nhUT5vULWWYvVvKdQ6itHW on 44'/1'/2'/0/0) #2 js:2:bitcoin_testnet:tpubDD9QhTrMeGEBxB9KbDNQ4KwPmSA6cftnyvQYTQWDgApMdz2Z3YrEMvJVe7ZXz3turDky7qbyk5WJBf2FS9xk4XacpPw8tND5mkkFZRpK1im:
undefined: 0.00475708 BCH (849ops) (qzv3vvf0ysqk6mwzc3tyvt9v7km6l8fdyq52llmktq on 44'/145'/0'/0/421) #0 js:2:bitcoin_cash:xpub6CYDTh442n9QYTMdQ7Uc7XDC2zCzZ5jM1m1DrWxmfQMToP2ngWZVtptKiksRoGgdcRSLDC6PgEULihbZE3SDt4ndVzoRNUEoZeTCsBUAWWP:
undefined: 0.00036764 BCH (816ops) (qzjs68h6hnq9nwnllve6nvm9vwxhqz3kgccuff7vt5 on 44'/145'/1'/0/413) #1 js:2:bitcoin_cash:xpub6CYDTh442n9QaLF3Z2i5L9QENTixN9kGH5XCYh2J5UTHuu99Y2W1sxm2HcX9sQUe2xmv4r3GVmn8GdTvCsLEof448VdZEmdpfmzX7Dk3AJx:
undefined: 0 BCH (784ops) (qztg47ne392wgt0z0r5zcp5fklx9wxf3jq094n2dma on 44'/145'/2'/0/393) #2 js:2:bitcoin_cash:xpub6CYDTh442n9QdmbZ2RXVmndx8Hv2cFDKjhzANqnPkFjpcqaztmjEdhB9wiiYxJFncp8Et32XZF2YvsC6sXmDRFGEwgjVzQDinZ2xmgZuyb9:
undefined: 0.00113939 BCH (759ops) (qrm90qa8ustfgq7rk2d9ph8asu3gm75e0gnmp039z7 on 44'/145'/3'/0/371) #3 js:2:bitcoin_cash:xpub6CYDTh442n9QftkdDJbR3GXhop6xxjkHdxgz9xcKkdq8Q7xF9ER8NXJicVwjXbnkBdbF7nc52wrAVhGoraVfQcsGCA2JwjWurCZQU6pNyHH:
undefined: 0.0239633 BCH (753ops) (qzfzhef3sqzdfg2vc7w5lmajjv4as94zlqkpzekghg on 44'/145'/4'/0/355) #4 js:2:bitcoin_cash:xpub6CYDTh442n9QiWxQaeXpmh16DkgpNqufRUMcj6rDqW2gF9Ronnvv9okteP6YQHZGYEojUXg8LL3kfrJzWHrfLFKKarvBgZBtSBRgqcX6w1G:
undefined: 0.0132039 BCH (724ops) (bitcoincash:qrmvsx3uffjmmhhjxn3swel789wezfxdyqrmgs5tyk on 44'/145'/5'/0/388) #5 js:2:bitcoin_cash:xpub6CYDTh442n9QmdbyiUh8ztDDRCJGwoxRyCCgYKtHyVktNFJiCcufp79mTstxxdkEv3jBzTeysds9JAcBPEbXCeyhPRsrfAJ1jzrf1PbkEvx:
undefined: 0 BCH (0ops) (bitcoincash:qq3427lxyy9x6fm7cvm6g82zl3hpzv5pwysgfcrg3s on 44'/145'/6'/0/0) #6 js:2:bitcoin_cash:xpub6CYDTh442n9QoTNBLkMrt63qoqsZWsuCQvMamTNNu6ZcNKNHN8LWJaV2qUrd2NBHuLkWCyuxreohYgxjBa5yzTNC5ezqB8XD39kHW2UyV36:
undefined [segwit]: 0.0763163 BTG (889ops) (AJbyLgr2Dd28raRQDTkebweJtJSC5ts8KU on 49'/156'/0'/0/435) segwit#0 js:2:bitcoin_gold:xpub6DHWENEKDQW8XxvbwvAFdCTGgzmHJkx8eY8bdGrL6iLmiqmPmCEscEvf7MBSDtbZWuLcUeQP9j87rJSgMhtwpUj3JSnQDoGHG2aqRVaSn43:segwit
undefined [segwit]: 0.0910297 BTG (877ops) (ANpsKme8diif9faiPgQ6Dy2jehsP6Edkr5 on 49'/156'/1'/0/435) 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.180566 BTG (889ops) (GTczfxHzD4s33mBn9yoPL8mTVzJyktWcud on 44'/156'/0'/0/443) #0 js:2:bitcoin_gold:xpub6Cq1sXPAA8ijyqJpdR5hDVYJ7XyunpPgVpCWwPtReGJDwhqnWxBhu7wBJjbtdWHXSQiSyNDhxDXF4GmrXGatK4yDASHE3CgS3tsT41T81Dj:
undefined [legacy]: 0.00045 BTG (884ops) (GSNuMvqCdVXjqrWS2qwxkhrLaXJbtKtfrc on 44'/156'/1'/0/455) #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.0333539 DASH (688ops) (XhdcCVQwH46kmGHw4kH9ZXwquH59SE2QBx on 44'/5'/0'/0/342) #0 js:2:dash:drkvjS8m2iwuqAXaxEBNS8ULFEKfoEEVNrSyzsEwioinaxb7TZ6fmP7rB3YiU3xcEoM39WoeDJdTS5sgVHQAeowB9BhdxkvDZhJErQk8AWTyaYk:
undefined: 0.001 DASH (663ops) (XiMr1Y6N74EAK3Tg2wQr7QPzbmqKa9uNfR on 44'/5'/1'/0/315) #1 js:2:dash:drkvjS8m2iwuqAXayHufe3hHCwpvgLyxxGhMAiCSW4kjQ2jC6FKcYKqC2ePkovCh93HAt2AgXQSt4YdJG3XX1raRMbHwwJz6ezKi4yotkX7mjwb:
undefined: 0.00847065 DASH (674ops) (XwE38shTdfm8FGx93rBSM2mQ8zZck381Hb on 44'/5'/2'/0/324) #2 js:2:dash:drkvjS8m2iwuqAXb2YSrc4u7qMoaf3UtCbF5A1gphQy6soFEDH7sHmvfZiAEzFse5Q3ycaoq6Su8iitWgNoxRriwzitNTWcwBkXrAdaf2xNXuo4:
undefined: 0.0166666 DASH (665ops) (XfGwnE9wgFbAFvwV9bZHaEz45RSj61svCV on 44'/5'/3'/0/335) #3 js:2:dash:drkvjS8m2iwuqAXb4LDphtncxj3UdVEACR5JCjoccMjdxfEkEhu7oB1vpZFyajdUEhapJgwi7uUq24ys47gm3VNj4vRQbVcV5YQkrGCpUyd7hDS:
undefined: 0.0295405 DASH (654ops) (Xp94ji4FFHeq5cWbpv1zHaeeEZL2N6B9Lm on 44'/5'/4'/0/326) #4 js:2:dash:drkvjS8m2iwuqAXb7uLicFWmFdztLiHpa6PM7iTRQcYT9wX9vF565f9ZQ7ZrwYBKab7ctGrnUyyyn5zFBtBEazazVdBvneLkZ9bUjb83PMLEgpw:
undefined: 0.0139078 DASH (614ops) (Xca4Hr8ggtuuJCJhsVEtto5Ffm9EMQjCHS on 44'/5'/5'/0/333) #5 js:2:dash:drkvjS8m2iwuqAXbBAUgNiSVfsH5TurFQxb3bCTM84wuSY376sNUmXbTzLp6cPT8iLqD43n1GXTaHGAaemq8vEm2rwqu5bxtgemUp719HCTXW4S:
undefined: 0 DASH (0ops) (XiiyHQPZVuxXHnApv1XP2aNbz92zL8u6Hy on 44'/5'/6'/0/0) #6 js:2:dash:drkvjS8m2iwuqAXbCRvDwtZdhj7KX8KWD7NqtKJ3cmdPhKoAsfK26rcmmGGAoHdVCvsCgkkZMeyq9cxfExdrvJfzTXJFU8enhrj8pQ4vnTXXUh9:
undefined [native segwit]: 2.09226 DGB (859ops) (dgb1qkglz2cqxrrl5jmx906yzg6cjtm945zvzxuzqkd on 84'/20'/0'/0/402) native_segwit#0 js:2:digibyte:xpub6CW9KDgdnS4RwiFZjL1YpEbk1yYvD96EqiBXmq6xKRhe3rJJQaB78voA4DG2dJctnUeWZes6NhysTRpCmBgGxCCy39wcwRwSB4fx3Nd2AxP:native_segwit
undefined [native segwit]: 2.19346 DGB (856ops) (dgb1qex2ndfp9x6sghgx7343l2vv8yrux89yhaqywuf on 84'/20'/1'/0/423) native_segwit#1 js:2:digibyte:xpub6CW9KDgdnS4Rz1D28B7SaGqGPp8Kb8gpvk1MCUeKb58HJTMhdXwCiwNLdZL7Ws6xU12uKat4szE9c2tV27jEfxSwW1uABgGXRJuXNCDZFD9:native_segwit
undefined [native segwit]: 0 DGB (0ops) (dgb1q5hv236zdu8fnxdr4mstuwzl76hrx9hr7g54x0l on 84'/20'/2'/0/0) native_segwit#2 js:2:digibyte:xpub6CW9KDgdnS4S2UHrC6Amu2eiJTRBAS1eoaXcVvS8yJtyoBsX7LwyeqjDwP3vBR2WLVhWbm9zdAMubfbK3WJDDmdPRGRT9MdV8RWZqJGwUYo:native_segwit
undefined [segwit]: 12.4062 DGB (828ops) (Sfby8bpYPURQz6NDRnoE3NMaU6e4YnijL6 on 49'/20'/0'/0/409) segwit#0 js:2:digibyte:xpub6CrEMM6LnNPxiDTZaMJwXTtYZXUQvvMwYb2Do892dbEYMrLEfFXZ8ygRrywE66brjMWbV948BJAbWGwV1oeyT7L57ZJykK8jVJ26UQiDVfp:segwit
undefined [segwit]: 0.0148855 DGB (805ops) (SNKdwrq9TZwUibakQghhhLQxYbCbiJqgAQ on 49'/20'/1'/0/395) 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]: 49.2402 DGB (824ops) (DCQNqa5uqt2RxvnqAGFpsKfNRDENAvcEaH on 44'/20'/0'/0/410) #0 js:2:digibyte:xpub6Cv4emS7S9zviCwMrBM1LhC7EdKY6QgFZ7T46nwEqtmaJda4EPH7Jv19h8GfhAPNTztGNWBBxribdod3wcxXRDkLmzRBxUgyZWxMoYLDgCX:
undefined [legacy]: 377.843 DGB (788ops) (D5ic4VWhexLeag4vgRiQSvF3HCo8hXYfCF on 44'/20'/1'/0/436) #1 js:2:digibyte:xpub6Cv4emS7S9zvmSxVKstTvb3QR4MYRMR1ySqUZbWc8A1vE2Y2BYw3FjLoxVtVYAeJjzR8PqEDDykAzGBUXsphL3xbgbzx6EtS2D8ikALFT52:
undefined [legacy]: 0 DGB (0ops) (DBWpWpZTMg31XMoamhZjKoSqahTVTG2qHi on 44'/20'/2'/0/0) #2 js:2:digibyte:xpub6Cv4emS7S9zvoT2jPveX3CwptyX75sUdfpgmx6DyVGme8QQit5WYE189GhbBJyPThotPBRdpQ5RaXNn8BCkmPNGCG1cirRswqvyvhhqgnAT:
undefined: 0.920545 DOGE (397ops) (DPMKt6FSk3UXjNya2PKQBiHj4S1W2YiFRh on 44'/3'/0'/0/197) #0 js:2:dogecoin:dgub8sBmteCcuFFejUSqGNBcwXRVJ4ZH33Sx3vTJG1o8Q1XwFRNFgT8fAreoj59VMzuU6EJmVMW9gLc9XJSXuxBeSUEt2s2QjSbfYCKkyBvF3pz:
undefined: 0.952644 DOGE (393ops) (DNm6KZDqokGsG4owh2FmUBtFPuXjZnpJgT on 44'/3'/1'/0/184) #1 js:2:dogecoin:dgub8sBmteCcuFFenEm7nyLHE2Zxt38inSEWx1bVAvWgAXbsHzuEHPaM4aP4J1oE2UWhoQ6cjN8rLEmuzqZHr9MyJvLE8zj527mdtweCgUBjuxj:
undefined: 0.233161 DOGE (381ops) (DDbnxtCqjiH9HpcGCXAJ6zM3yqWZUoz7o7 on 44'/3'/2'/0/198) #2 js:2:dogecoin:dgub8sBmteCcuFFepPh2rZbmtt3RujGFHSLrQiT7cawEm8PpDRumeEWWM4tsKtqm4vUYtHSJZvsifqbKXgUMGN89Y29Kh6DMoq2JCEBPAE5BVK2:
undefined: 0.850515 DOGE (396ops) (D8D7641JRE2rm69b8s7AoLtM2gFetEAQ5X on 44'/3'/3'/0/201) #3 js:2:dogecoin:dgub8sBmteCcuFFer5KqAKz1JpoYNxNzLP5v2uStDCS6iMYMJz9qssa7cr4EeDGLuPaJ6VRGK6owP43wMFhgHtPXMe56ptKcVF7o5DqVf8mTMDz:
undefined: 0.582498 DOGE (409ops) (DJVPzhFYmcsr2tjw9WkkUpWrCAUzCrZjqy on 44'/3'/4'/0/202) #4 js:2:dogecoin:dgub8sBmteCcuFFev32JBmBE5kkWA9Fz4LHryxURKDHBm8kXT2s5X3cM4eGnk5YDgbRj2cGny85CWZLtFuz4n6SNEff68ZFXZRfeMcKYjM4ZABa:
undefined: 0 DOGE (336ops) (DMhyaM7cxjL28LdeSTi7RjmgQazn1vboX7 on 44'/3'/5'/0/172) #5 js:2:dogecoin:dgub8sBmteCcuFFexZUo9SNmC2kEwPEUKxWo4VbEi5sZq9uAa3koQSeoUyxC5Z9XXqHq6hvYUYMvWL1iuVLnneqEfda8PdDDWPbvXggRGYDS2Yy:
undefined: 0 DOGE (0ops) (DNvgzFMvZG3k3o78cqn3y3YksWoSnC3uJ8 on 44'/3'/6'/0/0) #6 js:2:dogecoin:dgub8sBmteCcuFFf1Q45j57nYSbt99vo2P5iHSDdytuEPxtbcaRJrgTJCCJFx9AJhFHvyRNkQ8HxwQ61te2F8hhtChBWAL6RCDZEpbjvKGVRR3T:
undefined: 1.49433 KMD (704ops) (R9zqvRQgNmWVARC8RCgGrbUqhdFUG3Y8zm on 44'/141'/0'/0/338) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:
undefined: 4.35869 KMD (714ops) (RKz6zfgUTRusAWE4P9Q1uyQudzYkXRo1NQ on 44'/141'/1'/0/349) #1 js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:
undefined: 11.0506 KMD (668ops) (RXcWvHpgyGnU2ob5gjnXKJkd4cCCSR1UTX on 44'/141'/2'/0/342) #2 js:2:komodo:v4PKUB9WZbMS4XNED8S4oAJzXQqPbfLCmNRNPW8QoETCA7opTJLFvrkm39QZAdLg8DygthREBvDRmrHDeVtEQ8C7iQDfXDSPTrzB2FAFkvgsQ9HA:
undefined: 0.581757 KMD (635ops) (RCaeHxZ34PBeRAtFLPFed8UDGABhSQPSpP on 44'/141'/3'/0/330) #3 js:2:komodo:v4PKUB9WZbMS4XNEDBJ9e6csdTWjkQsBngGrmyPrPrwARdjCHQmEYDrU4Kq7HGhiDP6xnwdVwUp3pTCDBqPFJzzGWKwhGKyZ3R9twuUru5U57rPp:
undefined: 0 KMD (0ops) (RXXzA1HUyBUt3vYKgRDwktBrUxGB8nT4bN on 44'/141'/4'/0/0) #4 js:2:komodo:v4PKUB9WZbMS4XNEDFpraB4oy9vXnEDhnEWtmApcz3bN67vrQpVc1DjN5AQDZdV5dt5iXcf1BFTzfmCuAVFoFH3TsW7S8FZfkKBeBvvdLZeretiq:
undefined [native segwit]: 0.0137705 LTC (844ops) (ltc1qcvsvfl2r723s7x56c9ekqlhsvyaax630g5sr8q on 84'/2'/0'/0/399) native_segwit#0 js:2:litecoin:Ltub2YLUoe8MGLizFvLnAHJhiz3rdWG8UXqi9A9smDbuwPD44WPa1rB1EwyQwzRiVFKGH4mS6b5DRE3c3S9jZ944uaGcRK2XPinZcbdmo3P2vmq:native_segwit
undefined [native segwit]: 0.0138299 LTC (808ops) (ltc1qgr0zrpx6nqg4dumm45ut0pj5nddn7khyjnvet2 on 84'/2'/1'/0/396) native_segwit#1 js:2:litecoin:Ltub2YLUoe8MGLizLLxfxim25UC6ncVSrJgQw7atsJnYY45xGTLjZk6n5mCnRFuR5rMwaQ7fGz8BFaw6chiDuz3zffibMSYuY5zxdfdRZxLr2Lw:native_segwit
undefined [native segwit]: 0 LTC (0ops) (ltc1qdc2fw3ytrnk9urf24dvgf6zzl8lndpe38kzpyf on 84'/2'/2'/0/0) native_segwit#2 js:2:litecoin:Ltub2YLUoe8MGLizMiiRURGW9BD6ycQNUzeQRRGhLCwGLW4HUpCJJJBJwFBjjE8uF3BigX2UwDPbkwNu41NCGtPoQzKjwPwuVcAruutKaRabtA7:native_segwit
undefined [segwit]: 0.00493901 LTC (806ops) (MXDrXvvHTpmHNCugGMxjwwEZ6k3zYqj3jm on 49'/2'/0'/0/390) segwit#0 js:2:litecoin:Ltub2YDfX8FoxTFohkcgknuZr2WLrCNpq6ufHxguxyjoDWGDZ1GBUVSn5wwoD2ifjY13iERFGvauvW55p6ASVCbqiABnreHFCsV5LKps76aWDV3:segwit
undefined [segwit]: 0.00825917 LTC (784ops) (M9PMwQb9vuUXUn4QFXJAPjmKc5GyHoR27k on 49'/2'/1'/0/397) segwit#1 js:2:litecoin:Ltub2YDfX8FoxTFokPftPWHCApgWFe3zeGaU4bag1Wo7HsciTTfvWhRqJvo5yULDSURkh475q8NVpZE2judnAYSmrGmSjH9cB1bUYrm6BgLEZGC:segwit
undefined [segwit]: 0 LTC (0ops) (MD2uvco48GWoQ11iYqQ4jiLfvc33b9E3b9 on 49'/2'/2'/0/0) segwit#2 js:2:litecoin:Ltub2YDfX8FoxTFopQz5yFXLXp9tVCybZ31GX9KsGYccPbFSf1qzFP2Bmq6sirajnUjcH1zhD5sHGPyH7s1KjfD4zZmo2fnq1CVcRpa5ZXZHo8t:segwit
undefined [legacy]: 0.0905114 LTC (844ops) (LYU6XWiFeQ332dW6a3xZ2f9GQnn5WTLtUY on 44'/2'/0'/0/422) #0 js:2:litecoin:Ltub2YwXt3Fm1MVHeGxpcxFhFTe1FkqDdVoeRp9FRnnqGrinFxJSDjXwVTnmjK56jhq83mxWmTKprWjLXqspQCYtxJmCnwCLJUPoZhjJEYMtcFd:
undefined [legacy]: 0.207705 LTC (757ops) (LUFy6DWxc4SjjukyK2vq19THsDgGrk1RuH on 44'/2'/1'/0/413) #1 js:2:litecoin:Ltub2YwXt3Fm1MVHgsz1XL8MM6MicGgumPzfpD1pZcsk15P4LZHiF4wpFPGvTi58u9evgMd4dV9K7cMMA532mq1HbEknZZ5UayUuRbSsM5VzptL:
undefined [legacy]: 0 LTC (0ops) (LiDx2poS1M1DwYU2zHuvKEQAAFUdpRgP59 on 44'/2'/2'/0/0) #2 js:2:litecoin:Ltub2YwXt3Fm1MVHgy4nREA2MxDT5Em3QsQv2Yu6gfGSPudxTKgcovLsh1sV3rje75uZ5eAkyJLkbHxPBFU3Wbhd2Q6XF863omV2XfWhsC2ACJ4:
undefined: 0.00191538 ZEC (394ops) (t1SDpcaNZmbCH5TCCb5vNAh5bXs3isDtA5h on 44'/133'/0'/0/191) #0 js:2:zcash:xpub6CJCxQneNaGtEsc5RekCewAkzA4HmtexTwe7WEdEmduLVbfPti54Vme5gpsTrTDRB7qGUjn7LPhXitHvjrnMVDTt8LYvj7s34ZzEz6PcS8z:
undefined: 0.0002 ZEC (363ops) (t1PpjmFSysTrpUQra1fNCJJMYFGy6yrCxfu on 44'/133'/1'/0/179) #1 js:2:zcash:xpub6CJCxQneNaGtGzvpwjmx2kuAgbAwTBFFCC9TdvziUaYsPQYQ22mwaJbxvyBDLeW4gAnUBvKFeb5RznU3uxtVZp9AJQuU1Q5LsTMypXhN3dy:
undefined: 0.00156519 ZEC (359ops) (t1Z2giNqRBAcyij9iLRPEPBjaD8emFA5LCc on 44'/133'/2'/0/176) #2 js:2:zcash:xpub6CJCxQneNaGtLNBmM9y9Fm23XfXVewWuDYb5mqH1Fybr2579KAGiPfR2gsjjakYEGwFCL4Hau3C9ns24sPFM1MBrSPRKQLLVdQpiSQkSARY:
undefined: 0 ZEC (386ops) (t1YNMwj3ShjnCweX7dqho2w9rAT4PZABodm on 44'/133'/3'/0/203) #3 js:2:zcash:xpub6CJCxQneNaGtQ86kboo1yi9EsCrvQXMGKy2W6MWtMfSLxhpJQHgeLG4MLs1B6gHmYoWRC5q4CCUR4XzoBjPYAxFTHfdSfdhCWRspU2hJv1A:
undefined: 0 ZEC (0ops) (t1NCYEq5jS9TMQMVA4NeMVShuY7JFmFf89y on 44'/133'/4'/0/0) #4 js:2:zcash:xpub6CJCxQneNaGtQcwqQ4ZBYaBpHPzrTRbyU5S4ziPHtkL5iNHxRv9P7J3oJjerQuPNm3JFpz6Ktcui5Eqv5YW9PiCwYonU5E12pg1hwUAkGxh:
undefined: 0.0364058 ZEN (698ops) (znU97eUMg69kgYCHCAyyCR8f2T1MFUXynNp on 44'/121'/0'/0/318) #0 js:2:zencash:xpub6C68jAb8xasfmbmg37N3W5TsYWdTb6xLCtjwz5oSVAdi6Jxzx6FeBQcQazySrCXnsGZKaT9MXB9i4Lny4AoFAVZtSy6kVExyheF7X5Msvu3:
undefined: 0.122806 ZEN (687ops) (znWkGYy8r4MkubiuhrKCptwa43wZSmPXQBr on 44'/121'/1'/0/331) #1 js:2:zencash:xpub6C68jAb8xasfrBmUVvZbdXydhq15bdfePn1qhjb32azt3GkzoqBCQuRaZKPYp9T9uhr7TYCANdXanzeXfXp4qMjw7ijiPPNbBKmGRZRFeoa:
undefined: 0.179349 ZEN (672ops) (znf7UcHp6oHR83DhVev1jGqS12W8tzs36cL on 44'/121'/2'/0/360) #2 js:2:zencash:xpub6C68jAb8xasfsZCbDtbqPTydFZEHjfzFP75ZQyizidPdLPHNbf41HqQq8RiHMJNuXx71D15Uv9yVpxHkxicSAzKCPVqi1gCKkJTdCN6MK7Q:
undefined: 0.0797448 ZEN (673ops) (znUrNgchE7eGa1dStigLwDKVQBW7e6ztHTp on 44'/121'/3'/0/354) #3 js:2:zencash:xpub6C68jAb8xasfwaE1WeCTh2JhK4KMh64oUaNn2MJCpVdjBmV7cdLhW8xqAfrb8eerM3wtiwMg9sMZkjA62QMH1rMDNbr97uLKNZohEX7c1cq:
undefined: 0 ZEN (0ops) (znm8ELZShHo5gm7aQjcd3qbxT7UF8Mnzyr2 on 44'/121'/4'/0/0) #4 js:2:zencash:xpub6C68jAb8xasfwknWxgLgizrHgqJko7RdnamzFS3DzoKUaA5721xs1HE23NHHqq6LcvmKf43ncaSsz3cEZZpmCrgfK1GhrmDNHkvKfyqpZHF:
undefined: 0.002876 OSMO (0ops) (osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l on 44'/118'/0'/0/0) #0 js:2:osmo:osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l:
undefined: 0.006017 OSMO (0ops) (osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf on 44'/118'/1'/0/0) #1 js:2:osmo:osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf:
undefined: 0.005107 OSMO (0ops) (osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv on 44'/118'/2'/0/0) #2 js:2:osmo:osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv:
undefined: 0.000383 OSMO (0ops) (osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k on 44'/118'/3'/0/0) #3 js:2:osmo:osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k:
undefined: 0.0137 OSMO (1ops) (osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0 on 44'/118'/4'/0/0) #4 js:2:osmo:osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0:
undefined: 0.778684 OSMO (0ops) (osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw on 44'/118'/5'/0/0) #5 js:2:osmo:osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw:
undefined: 0.007699 OSMO (1ops) (osmo1n6vccpa77x7xyhnk98jy6gg3rmgjkazxuyk2ng on 44'/118'/6'/0/0) #6 js:2:osmo:osmo1n6vccpa77x7xyhnk98jy6gg3rmgjkazxuyk2ng:
undefined: 2.58652 OSMO (0ops) (osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp on 44'/118'/7'/0/0) #7 js:2:osmo:osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp:
undefined: 0.373106 OSMO (0ops) (osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d on 44'/118'/8'/0/0) #8 js:2:osmo:osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d:
undefined: 1.25523 OSMO (0ops) (osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5 on 44'/118'/9'/0/0) #9 js:2:osmo:osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5:
undefined: 0.933472 OSMO (0ops) (osmo1733g3dfzj6tulcqtvz628ypuqj0hvlrzruntc8 on 44'/118'/10'/0/0) #10 js:2:osmo:osmo1733g3dfzj6tulcqtvz628ypuqj0hvlrzruntc8:
undefined: 0.006923 OSMO (0ops) (osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg on 44'/118'/11'/0/0) #11 js:2:osmo:osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg:
undefined: 1.32104 OSMO (0ops) (osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m on 44'/118'/12'/0/0) #12 js:2:osmo:osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m:
undefined: 0.078921 OSMO (0ops) (osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9 on 44'/118'/13'/0/0) #13 js:2:osmo:osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9:
undefined: 0.391517 OSMO (0ops) (osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd on 44'/118'/14'/0/0) #14 js:2:osmo:osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd:
undefined: 5.48186 OSMO (0ops) (osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau on 44'/118'/15'/0/0) #15 js:2:osmo:osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau:
undefined: 2.87781 OSMO (0ops) (osmo1xr8krhp99mp9ncrz6dfgre542nv0rc8lrryjvr on 44'/118'/16'/0/0) #16 js:2:osmo:osmo1xr8krhp99mp9ncrz6dfgre542nv0rc8lrryjvr:
undefined: 0 OSMO (0ops) (osmo102w826rmvswfhs4zsv2ujhylmd92c28p6lglqe on 44'/118'/17'/0/0) #17 js:2:osmo:osmo102w826rmvswfhs4zsv2ujhylmd92c28p6lglqe:
undefined: 0 DSM (12ops) (desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454 on 44'/118'/0'/0/0) #0 js:2:desmos:desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454:
undefined: 6.75428 DSM (29ops) (desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z on 44'/118'/11'/0/0) #11 js:2:desmos:desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z:
undefined: 0.136276 DSM (10ops) (desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx on 44'/118'/2'/0/0) #2 js:2:desmos:desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx:
undefined: 0.079159 DSM (22ops) (desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu on 44'/118'/3'/0/0) #3 js:2:desmos:desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu:
undefined: 0.18237 DSM (1ops) (desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9 on 44'/118'/4'/0/0) #4 js:2:desmos:desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9:
undefined: 0 DSM (17ops) (desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y on 44'/118'/5'/0/0) #5 js:2:desmos:desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y:
undefined: 0 DSM (10ops) (desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz on 44'/118'/6'/0/0) #6 js:2:desmos:desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz:
undefined: 0.001914 DSM (24ops) (desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt on 44'/118'/7'/0/0) #7 js:2:desmos:desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt:
undefined: 0.0475 DSM (8ops) (desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8 on 44'/118'/8'/0/0) #8 js:2:desmos:desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8:
undefined: 0.373557 DSM (18ops) (desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7 on 44'/118'/9'/0/0) #9 js:2:desmos:desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7:
undefined: 0 DSM (23ops) (desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted on 44'/118'/10'/0/0) #10 js:2:desmos:desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted:
undefined: 0.085975 DSM (3ops) (desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur on 44'/118'/1'/0/0) #1 js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:
undefined: 1.17886 DSM (15ops) (desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243 on 44'/118'/12'/0/0) #12 js:2:desmos:desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243:
undefined: 21.2513 DSM (46ops) (desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0 on 44'/118'/13'/0/0) #13 js:2:desmos:desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0:
undefined: 47.3112 DSM (15ops) (desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8 on 44'/118'/14'/0/0) #14 js:2:desmos:desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8:
undefined: 19.4152 DSM (33ops) (desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk on 44'/118'/15'/0/0) #15 js:2:desmos:desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk:
undefined: 48.0851 DSM (1ops) (desmos1xr8krhp99mp9ncrz6dfgre542nv0rc8llq6jdf on 44'/118'/16'/0/0) #16 js:2:desmos:desmos1xr8krhp99mp9ncrz6dfgre542nv0rc8llq6jdf:
undefined: 0 DSM (0ops) (desmos102w826rmvswfhs4zsv2ujhylmd92c28pxuklpn on 44'/118'/17'/0/0) #17 js:2:desmos:desmos102w826rmvswfhs4zsv2ujhylmd92c28pxuklpn:
undefined: 0.00046992 dydx (19ops) (dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6 on 44'/118'/0'/0/0) #0 js:2:dydx:dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6:
undefined: 0.00005817 dydx (13ops) (dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv on 44'/118'/1'/0/0) #1 js:2:dydx:dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv:
undefined: 0.00113709 dydx (28ops) (dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf on 44'/118'/2'/0/0) #2 js:2:dydx:dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf:
undefined: 0.00114923 dydx (26ops) (dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en on 44'/118'/3'/0/0) #3 js:2:dydx:dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en:
undefined: 0 dydx (22ops) (dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2 on 44'/118'/4'/0/0) #4 js:2:dydx:dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2:
undefined: 0.00085659 dydx (26ops) (dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt on 44'/118'/5'/0/0) #5 js:2:dydx:dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt:
undefined: 0.00092916 dydx (19ops) (dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d on 44'/118'/6'/0/0) #6 js:2:dydx:dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d:
undefined: 0.00627605 dydx (23ops) (dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky on 44'/118'/7'/0/0) #7 js:2:dydx:dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky:
undefined: 0 dydx (10ops) (dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug on 44'/118'/8'/0/0) #8 js:2:dydx:dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug:
undefined: 0.0010178 dydx (17ops) (dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73 on 44'/118'/9'/0/0) #9 js:2:dydx:dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73:
undefined: 0 dydx (4ops) (dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz on 44'/118'/10'/0/0) #10 js:2:dydx:dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz:
undefined: 0.00060307 dydx (35ops) (dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd on 44'/118'/11'/0/0) #11 js:2:dydx:dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd:
undefined: 0.00055212 dydx (15ops) (dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7 on 44'/118'/12'/0/0) #12 js:2:dydx:dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7:
undefined: 0.00099341 dydx (34ops) (dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq on 44'/118'/13'/0/0) #13 js:2:dydx:dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq:
undefined: 0.00099731 dydx (30ops) (dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg on 44'/118'/14'/0/0) #14 js:2:dydx:dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg:
undefined: 0.00072955 dydx (34ops) (dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te on 44'/118'/15'/0/0) #15 js:2:dydx:dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te:
undefined: 0.00130597 dydx (6ops) (dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x on 44'/118'/16'/0/0) #16 js:2:dydx:dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x:
undefined: 0 dydx (0ops) (dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku on 44'/118'/17'/0/0) #17 js:2:dydx:dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku:
undefined: 0 UMEE (5ops) (umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l on 44'/118'/0'/0/0) #0 js:2:umee:umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l:
undefined: 0.009046 UMEE (16ops) (umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f on 44'/118'/1'/0/0) #1 js:2:umee:umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f:
undefined: 18.4268 UMEE (4ops) (umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv on 44'/118'/2'/0/0) #2 js:2:umee:umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv:
undefined: 0.196795 UMEE (4ops) (umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak on 44'/118'/3'/0/0) #3 js:2:umee:umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak:
undefined: 0.774693 UMEE (11ops) (umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0 on 44'/118'/4'/0/0) #4 js:2:umee:umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0:
undefined: 9.12216 UMEE (15ops) (umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw on 44'/118'/5'/0/0) #5 js:2:umee:umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw:
undefined: 0.151686 UMEE (6ops) (umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg on 44'/118'/6'/0/0) #6 js:2:umee:umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg:
undefined: 0.279868 UMEE (18ops) (umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp on 44'/118'/7'/0/0) #7 js:2:umee:umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp:
undefined: 0.376598 UMEE (11ops) (umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd on 44'/118'/8'/0/0) #8 js:2:umee:umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd:
undefined: 3.95101 UMEE (18ops) (umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65 on 44'/118'/9'/0/0) #9 js:2:umee:umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65:
undefined: 0.020952 UMEE (1ops) (umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28 on 44'/118'/10'/0/0) #10 js:2:umee:umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28:
undefined: 1.99559 UMEE (5ops) (umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg on 44'/118'/11'/0/0) #11 js:2:umee:umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg:
undefined: 1.49321 UMEE (7ops) (umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm on 44'/118'/12'/0/0) #12 js:2:umee:umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm:
undefined: 43.8008 UMEE (15ops) (umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29 on 44'/118'/13'/0/0) #13 js:2:umee:umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29:
undefined: 2.74217 UMEE (3ops) (umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd on 44'/118'/14'/0/0) #14 js:2:umee:umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd:
undefined: 518.258 UMEE (15ops) (umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u on 44'/118'/15'/0/0) #15 js:2:umee:umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u:
undefined: 103.457 UMEE (1ops) (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.002654 XPRT (27ops) (persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf on 44'/118'/0'/0/0) #0 js:2:persistence:persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf:
undefined: 0.003546 XPRT (22ops) (persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l on 44'/118'/1'/0/0) #1 js:2:persistence:persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l:
undefined: 0.006222 XPRT (29ops) (persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6 on 44'/118'/2'/0/0) #2 js:2:persistence:persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6:
undefined: 0.025068 XPRT (16ops) (persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq on 44'/118'/3'/0/0) #3 js:2:persistence:persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq:
undefined: 0.003636 XPRT (28ops) (persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e on 44'/118'/4'/0/0) #4 js:2:persistence:persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e:
undefined: 0.000248 XPRT (30ops) (persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc on 44'/118'/5'/0/0) #5 js:2:persistence:persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc:
undefined: 0.017873 XPRT (20ops) (persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7 on 44'/118'/6'/0/0) #6 js:2:persistence:persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7:
undefined: 0.006243 XPRT (26ops) (persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch on 44'/118'/7'/0/0) #7 js:2:persistence:persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch:
undefined: 0.022919 XPRT (20ops) (persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm on 44'/118'/8'/0/0) #8 js:2:persistence:persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm:
undefined: 0 XPRT (24ops) (persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz on 44'/118'/9'/0/0) #9 js:2:persistence:persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz:
undefined: 0.033756 XPRT (32ops) (persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3 on 44'/118'/10'/0/0) #10 js:2:persistence:persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3:
undefined: 0.101421 XPRT (35ops) (persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7 on 44'/118'/11'/0/0) #11 js:2:persistence:persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7:
undefined: 0.301827 XPRT (23ops) (persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd on 44'/118'/12'/0/0) #12 js:2:persistence:persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd:
undefined: 0.238233 XPRT (60ops) (persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn on 44'/118'/13'/0/0) #13 js:2:persistence:persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn:
undefined: 5.79071 XPRT (12ops) (persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m on 44'/118'/14'/0/0) #14 js:2:persistence:persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m:
undefined: 9.25728 XPRT (57ops) (persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92 on 44'/118'/15'/0/0) #15 js:2:persistence:persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92:
undefined: 9.06122 XPRT (11ops) (persistence1xr8krhp99mp9ncrz6dfgre542nv0rc8l953354 on 44'/118'/16'/0/0) #16 js:2:persistence:persistence1xr8krhp99mp9ncrz6dfgre542nv0rc8l953354:
undefined: 0 XPRT (0ops) (persistence102w826rmvswfhs4zsv2ujhylmd92c28pugauc0 on 44'/118'/17'/0/0) #17 js:2:persistence:persistence102w826rmvswfhs4zsv2ujhylmd92c28pugauc0:
undefined: 0 QCK (0ops) (quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l on 44'/118'/0'/0/0) #0 js:2:quicksilver:quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l:
undefined: 0.003289 QCK (7ops) (quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf on 44'/118'/1'/0/0) #1 js:2:quicksilver:quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf:
undefined: 0.0005 QCK (0ops) (quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev on 44'/118'/2'/0/0) #2 js:2:quicksilver:quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev:
undefined: 0.0013 QCK (0ops) (quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk on 44'/118'/3'/0/0) #3 js:2:quicksilver:quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk:
undefined: 0.000696 QCK (0ops) (quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0 on 44'/118'/4'/0/0) #4 js:2:quicksilver:quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0:
undefined: 0.001906 QCK (0ops) (quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw on 44'/118'/5'/0/0) #5 js:2:quicksilver:quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw:
undefined: 0 QCK (0ops) (quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug on 44'/118'/6'/0/0) #6 js:2:quicksilver:quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug:
undefined: 0.001033 QCK (0ops) (quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p on 44'/118'/7'/0/0) #7 js:2:quicksilver:quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p:
undefined: 0.002759 QCK (0ops) (quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d on 44'/118'/8'/0/0) #8 js:2:quicksilver:quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d:
undefined: 0.002027 QCK (0ops) (quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585 on 44'/118'/9'/0/0) #9 js:2:quicksilver:quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585:
undefined: 0.014038 QCK (3ops) (quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8 on 44'/118'/10'/0/0) #10 js:2:quicksilver:quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8:
undefined: 0.464333 QCK (0ops) (quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg on 44'/118'/11'/0/0) #11 js:2:quicksilver:quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg:
undefined: 0.1663 QCK (0ops) (quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm on 44'/118'/12'/0/0) #12 js:2:quicksilver:quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm:
undefined: 3.12964 QCK (0ops) (quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9 on 44'/118'/13'/0/0) #13 js:2:quicksilver:quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9:
undefined: 2.47317 QCK (0ops) (quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad on 44'/118'/14'/0/0) #14 js:2:quicksilver:quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad:
undefined: 4.9382 QCK (0ops) (quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju on 44'/118'/15'/0/0) #15 js:2:quicksilver:quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju:
undefined: 11.4453 QCK (1ops) (quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr on 44'/118'/16'/0/0) #16 js:2:quicksilver:quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr:
undefined: 0 QCK (0ops) (quick102w826rmvswfhs4zsv2ujhylmd92c28peqta0e on 44'/118'/17'/0/0) #17 js:2:quicksilver:quick102w826rmvswfhs4zsv2ujhylmd92c28peqta0e:
undefined: 0 NOM (24ops) (onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg on 44'/118'/0'/0/0) #0 js:2:onomy:onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg:
undefined: 0.00000205 NOM (39ops) (onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67 on 44'/118'/1'/0/0) #1 js:2:onomy:onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67:
undefined: 0 NOM (29ops) (onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m on 44'/118'/2'/0/0) #2 js:2:onomy:onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m:
undefined: 0 NOM (25ops) (onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp on 44'/118'/3'/0/0) #3 js:2:onomy:onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp:
undefined: 0 NOM (29ops) (onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c on 44'/118'/4'/0/0) #4 js:2:onomy:onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c:
undefined: 0 NOM (47ops) (onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he on 44'/118'/5'/0/0) #5 js:2:onomy:onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he:
undefined: 0.00000019 NOM (17ops) (onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l on 44'/118'/6'/0/0) #6 js:2:onomy:onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l:
undefined: 0.0000001 NOM (25ops) (onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k on 44'/118'/7'/0/0) #7 js:2:onomy:onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k:
undefined: 0.00000005 NOM (6ops) (onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6 on 44'/118'/8'/0/0) #8 js:2:onomy:onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6:
undefined: 0.0000078 NOM (50ops) (onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r on 44'/118'/9'/0/0) #9 js:2:onomy:onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r:
undefined: 0.00001168 NOM (12ops) (onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls on 44'/118'/10'/0/0) #10 js:2:onomy:onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls:
undefined: 0.00016993 NOM (37ops) (onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl on 44'/118'/11'/0/0) #11 js:2:onomy:onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl:
undefined: 0.00000208 NOM (12ops) (onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv on 44'/118'/12'/0/0) #12 js:2:onomy:onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv:
undefined: 0.21773 NOM (23ops) (onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj on 44'/118'/13'/0/0) #13 js:2:onomy:onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj:
undefined: 0.400236 NOM (12ops) (onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46 on 44'/118'/14'/0/0) #14 js:2:onomy:onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46:
undefined: 0.0528771 NOM (6ops) (onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t on 44'/118'/15'/0/0) #15 js:2:onomy:onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t:
undefined: 1.13535 NOM (15ops) (onomy1xr8krhp99mp9ncrz6dfgre542nv0rc8l3er5t5 on 44'/118'/16'/0/0) #16 js:2:onomy:onomy1xr8krhp99mp9ncrz6dfgre542nv0rc8l3er5t5:
undefined: 0 NOM (0ops) (onomy102w826rmvswfhs4zsv2ujhylmd92c28pg90e8w on 44'/118'/17'/0/0) #17 js:2:onomy:onomy102w826rmvswfhs4zsv2ujhylmd92c28pg90e8w:
undefined: 0.005246 SEI (0ops) (sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v on 44'/118'/0'/0/0) #0 js:2:sei_network:sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v:
undefined: 0.010124 SEI (0ops) (sei1qvtnzptp30maznnhdg30xl2jtdq2shpn2s5qd6 on 44'/118'/1'/0/0) #1 js:2:sei_network:sei1qvtnzptp30maznnhdg30xl2jtdq2shpn2s5qd6:
undefined: 0 SEI (0ops) (sei1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw4vusxl on 44'/118'/2'/0/0) #2 js:2:sei_network:sei1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw4vusxl:
undefined: 0.027521 SEI (0ops) (sei1hgyf054qztvmty3cayuw9nedftlhejv5xd54l9 on 44'/118'/3'/0/0) #3 js:2:sei_network:sei1hgyf054qztvmty3cayuw9nedftlhejv5xd54l9:
undefined: 0 SEI (0ops) (sei1vc7s929uh2yxyhau4wsg5th9jzedvkurwspxau on 44'/118'/4'/0/0) #4 js:2:sei_network:sei1vc7s929uh2yxyhau4wsg5th9jzedvkurwspxau:
undefined: 0 SEI (0ops) (sei1qgrd8srhvald995uvpeyncvwg7afgkmrzsj8qa on 44'/118'/5'/0/0) #5 js:2:sei_network:sei1qgrd8srhvald995uvpeyncvwg7afgkmrzsj8qa:
undefined: 0.013449 SEI (0ops) (sei1n6vccpa77x7xyhnk98jy6gg3rmgjkazxen5vrm on 44'/118'/6'/0/0) #6 js:2:sei_network:sei1n6vccpa77x7xyhnk98jy6gg3rmgjkazxen5vrm:
undefined: 0.004018 SEI (0ops) (sei1v283e7h2plllyjwgqrexv2ge5e4z252u0d2fsj on 44'/118'/7'/0/0) #7 js:2:sei_network:sei1v283e7h2plllyjwgqrexv2ge5e4z252u0d2fsj:
undefined: 0.002195 SEI (0ops) (sei1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ww5667 on 44'/118'/8'/0/0) #8 js:2:sei_network:sei1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ww5667:
undefined: 0.014582 SEI (0ops) (sei1jgk668h53gd9wn09mndq7uzgk80nr5d80upsc8 on 44'/118'/9'/0/0) #9 js:2:sei_network:sei1jgk668h53gd9wn09mndq7uzgk80nr5d80upsc8:
undefined: 0.01225 SEI (0ops) (sei1733g3dfzj6tulcqtvz628ypuqj0hvlrzxt3dg5 on 44'/118'/10'/0/0) #10 js:2:sei_network:sei1733g3dfzj6tulcqtvz628ypuqj0hvlrzxt3dg5:
undefined: 0 SEI (0ops) (sei1q09970dekm5hdku5tta7p9w6kldyyf25r76f5m on 44'/118'/11'/0/0) #11 js:2:sei_network:sei1q09970dekm5hdku5tta7p9w6kldyyf25r76f5m:
undefined: 0.005197 SEI (0ops) (sei1yhlye27fl05kg4nhmeu5d579m8ups9ewmzhvyg on 44'/118'/12'/0/0) #12 js:2:sei_network:sei1yhlye27fl05kg4nhmeu5d579m8ups9ewmzhvyg:
undefined: 0.00525 SEI (0ops) (sei1890w5jltm6wmq2jr9f9e8x4vhs5fx30qack6gk on 44'/118'/13'/0/0) #13 js:2:sei_network:sei1890w5jltm6wmq2jr9f9e8x4vhs5fx30qack6gk:
undefined: 0.003307 SEI (0ops) (sei1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap4jcxz7 on 44'/118'/14'/0/0) #14 js:2:sei_network:sei1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap4jcxz7:
undefined: 0 SEI (0ops) (sei10wwjgt3uluxt4zq4qxnkcv96nyz4cata6zw8d0 on 44'/118'/15'/0/0) #15 js:2:sei_network:sei10wwjgt3uluxt4zq4qxnkcv96nyz4cata6zw8d0:
undefined: 0.134037 STARS (0ops) (stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu on 44'/118'/0'/0/0) #0 js:2:stargaze:stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu:
undefined: 0.023927 STARS (0ops) (stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2 on 44'/118'/1'/0/0) #1 js:2:stargaze:stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2:
undefined: 0.172949 STARS (0ops) (stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0 on 44'/118'/2'/0/0) #2 js:2:stargaze:stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0:
undefined: 0.24191 STARS (0ops) (stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4 on 44'/118'/3'/0/0) #3 js:2:stargaze:stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4:
undefined: 0 STARS (0ops) (stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv on 44'/118'/4'/0/0) #4 js:2:stargaze:stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv:
undefined: 0.165242 STARS (0ops) (stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd on 44'/118'/5'/0/0) #5 js:2:stargaze:stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd:
undefined: 0.077017 STARS (0ops) (stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt on 44'/118'/6'/0/0) #6 js:2:stargaze:stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt:
undefined: 0.264574 STARS (1ops) (stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz on 44'/118'/7'/0/0) #7 js:2:stargaze:stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz:
undefined: 0.147258 STARS (0ops) (stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw on 44'/118'/8'/0/0) #8 js:2:stargaze:stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw:
undefined: 0 STARS (0ops) (stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h on 44'/118'/9'/0/0) #9 js:2:stargaze:stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h:
undefined: 0.113793 STARS (0ops) (stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y on 44'/118'/10'/0/0) #10 js:2:stargaze:stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y:
undefined: 0.685584 STARS (0ops) (stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet on 44'/118'/11'/0/0) #11 js:2:stargaze:stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet:
undefined: 0.353751 STARS (1ops) (stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc on 44'/118'/12'/0/0) #12 js:2:stargaze:stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc:
undefined: 105.338 STARS (1ops) (stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x on 44'/118'/13'/0/0) #13 js:2:stargaze:stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x:
undefined: 107.869 STARS (0ops) (stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w on 44'/118'/14'/0/0) #14 js:2:stargaze:stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w:
undefined: 164.713 STARS (0ops) (stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql on 44'/118'/15'/0/0) #15 js:2:stargaze:stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql:
undefined: 381.109 STARS (1ops) (stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q on 44'/118'/16'/0/0) #16 js:2:stargaze:stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q:
undefined: 0 STARS (0ops) (stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6 on 44'/118'/17'/0/0) #17 js:2:stargaze:stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6:
undefined: 0.009468 CORE (125ops) (core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk on 44'/118'/0'/0/0) #0 js:2:coreum:core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk:
undefined: 0.007217 CORE (165ops) (core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq on 44'/118'/1'/0/0) #1 js:2:coreum:core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq:
undefined: 0 CORE (170ops) (core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89 on 44'/118'/2'/0/0) #2 js:2:coreum:core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89:
undefined: 0.024213 CORE (174ops) (core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l on 44'/118'/3'/0/0) #3 js:2:coreum:core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l:
undefined: 0.033995 CORE (162ops) (core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux on 44'/118'/4'/0/0) #4 js:2:coreum:core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux:
undefined: 0.065661 CORE (171ops) (core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8 on 44'/118'/5'/0/0) #5 js:2:coreum:core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8:
undefined: 0.029522 CORE (142ops) (core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp on 44'/118'/6'/0/0) #6 js:2:coreum:core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp:
undefined: 0.089774 CORE (152ops) (core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g on 44'/118'/7'/0/0) #7 js:2:coreum:core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g:
undefined: 0.142592 CORE (124ops) (core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy on 44'/118'/8'/0/0) #8 js:2:coreum:core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy:
undefined: 0.766973 CORE (174ops) (core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea on 44'/118'/9'/0/0) #9 js:2:coreum:core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea:
undefined: 0.027605 CORE (124ops) (core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw on 44'/118'/10'/0/0) #10 js:2:coreum:core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw:
undefined: 0.085215 CORE (159ops) (core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p on 44'/118'/11'/0/0) #11 js:2:coreum:core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p:
undefined: 0.041275 CORE (88ops) (core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j on 44'/118'/12'/0/0) #12 js:2:coreum:core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j:
undefined: 0.773181 CORE (150ops) (core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv on 44'/118'/13'/0/0) #13 js:2:coreum:core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv:
undefined: 0 CORE (97ops) (core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try on 44'/118'/14'/0/0) #14 js:2:coreum:core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try:
undefined: 0.304359 CORE (152ops) (core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4 on 44'/118'/15'/0/0) #15 js:2:coreum:core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4:
undefined: 26.7799 CORE (57ops) (core1xr8krhp99mp9ncrz6dfgre542nv0rc8lck0ea2 on 44'/118'/16'/0/0) #16 js:2:coreum:core1xr8krhp99mp9ncrz6dfgre542nv0rc8lck0ea2:
undefined: 0 CORE (0ops) (core102w826rmvswfhs4zsv2ujhylmd92c28pp2r53s on 44'/118'/17'/0/0) #17 js:2:coreum:core102w826rmvswfhs4zsv2ujhylmd92c28pp2r53s:
undefined: 0.017913 OM (0ops) (mantra1rs97j43nfyvc689y5rjvnnhrq3tes6ghshzpqh on 44'/118'/0'/0/0) #0 js:2:mantra:mantra1rs97j43nfyvc689y5rjvnnhrq3tes6ghshzpqh:
undefined: 0.040508 OM (0ops) (mantra1qvtnzptp30maznnhdg30xl2jtdq2shpnvh0jgp on 44'/118'/1'/0/0) #1 js:2:mantra:mantra1qvtnzptp30maznnhdg30xl2jtdq2shpnvh0jgp:
undefined: 0.016919 OM (0ops) (mantra1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnt8zry on 44'/118'/2'/0/0) #2 js:2:mantra:mantra1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnt8zry:
undefined: 0.009957 OM (0ops) (mantra1hgyf054qztvmty3cayuw9nedftlhejv5q20867 on 44'/118'/3'/0/0) #3 js:2:mantra:mantra1hgyf054qztvmty3cayuw9nedftlhejv5q20867:
undefined: 0.014598 OM (0ops) (mantra1vc7s929uh2yxyhau4wsg5th9jzedvkurgh65c8 on 44'/118'/4'/0/0) #4 js:2:mantra:mantra1vc7s929uh2yxyhau4wsg5th9jzedvkurgh65c8:
undefined: 0.000818 OM (0ops) (mantra1qgrd8srhvald995uvpeyncvwg7afgkmryhf49x on 44'/118'/5'/0/0) #5 js:2:mantra:mantra1qgrd8srhvald995uvpeyncvwg7afgkmryhf49x:
undefined: 0.000818 OM (0ops) (mantra1n6vccpa77x7xyhnk98jy6gg3rmgjkazxl507xq on 44'/118'/6'/0/0) #6 js:2:mantra:mantra1n6vccpa77x7xyhnk98jy6gg3rmgjkazxl507xq:
undefined: 0.049179 OM (0ops) (mantra1v283e7h2plllyjwgqrexv2ge5e4z252uf23m4f on 44'/118'/7'/0/0) #7 js:2:mantra:mantra1v283e7h2plllyjwgqrexv2ge5e4z252uf23m4f:
undefined: 0.000819 OM (0ops) (mantra1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gf0gl9 on 44'/118'/8'/0/0) #8 js:2:mantra:mantra1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gf0gl9:
undefined: 0.003067 OM (0ops) (mantra1jgk668h53gd9wn09mndq7uzgk80nr5d8fm6zau on 44'/118'/9'/0/0) #9 js:2:mantra:mantra1jgk668h53gd9wn09mndq7uzgk80nr5d8fm6zau:
undefined: 0.039 OM (0ops) (mantra1733g3dfzj6tulcqtvz628ypuqj0hvlrzqv2ld0 on 44'/118'/10'/0/0) #10 js:2:mantra:mantra1733g3dfzj6tulcqtvz628ypuqj0hvlrzqv2ld0:
undefined: 1.16076 OM (0ops) (mantra1q09970dekm5hdku5tta7p9w6kldyyf259epm3q on 44'/118'/11'/0/0) #11 js:2:mantra:mantra1q09970dekm5hdku5tta7p9w6kldyyf259epm3q:
undefined: 0.218848 OM (1ops) (mantra1yhlye27fl05kg4nhmeu5d579m8ups9ewa9v7pn on 44'/118'/12'/0/0) #12 js:2:mantra:mantra1yhlye27fl05kg4nhmeu5d579m8ups9ewa9v7pn:
undefined: 0.020469 OM (0ops) (mantra1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmldgdd on 44'/118'/13'/0/0) #13 js:2:mantra:mantra1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmldgdd:
undefined: 0.579738 OM (0ops) (mantra1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn4r589 on 44'/118'/14'/0/0) #14 js:2:mantra:mantra1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn4r589:
undefined: 1.06136 OM (1ops) (mantra10wwjgt3uluxt4zq4qxnkcv96nyz4catau944g5 on 44'/118'/15'/0/0) #15 js:2:mantra:mantra10wwjgt3uluxt4zq4qxnkcv96nyz4catau944g5:
undefined: 0.198307 OM (0ops) (mantra1xr8krhp99mp9ncrz6dfgre542nv0rc8lqnaxet on 44'/118'/16'/0/0) #16 js:2:mantra:mantra1xr8krhp99mp9ncrz6dfgre542nv0rc8lqnaxet:
undefined: 0 OM (0ops) (mantra102w826rmvswfhs4zsv2ujhylmd92c28pe03t43 on 44'/118'/17'/0/0) #17 js:2:mantra:mantra102w826rmvswfhs4zsv2ujhylmd92c28pe03t43:
undefined: 0 CRO (13ops) (cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra on 44'/394'/0'/0/0) #0 js:2:crypto_org:cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra:
undefined: 0.0753602 CRO (26ops) (cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl on 44'/394'/1'/0/0) #1 js:2:crypto_org:cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl:
undefined: 1.43185 CRO (6ops) (cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2 on 44'/394'/2'/0/0) #2 js:2:crypto_org:cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2:
undefined: 1.47169 CRO (22ops) (cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd on 44'/394'/3'/0/0) #3 js:2:crypto_org:cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd:
undefined: 0.468138 CRO (16ops) (cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l on 44'/394'/4'/0/0) #4 js:2:crypto_org:cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l:
undefined: 14.5781 CRO (20ops) (cro1zfhcf2htapdkjlw4ffqzce7yfe6mhscd2su05p on 44'/394'/5'/0/0) #5 js:2:crypto_org:cro1zfhcf2htapdkjlw4ffqzce7yfe6mhscd2su05p:
undefined: 0.569947 CRO (14ops) (cro1gfrsr7eerpuc0zpl4j6wp3aj55gqahtls2hj9h on 44'/394'/6'/0/0) #6 js:2:crypto_org:cro1gfrsr7eerpuc0zpl4j6wp3aj55gqahtls2hj9h:
undefined: 2.84139 CRO (11ops) (cro1e2gxhqvvdhxnwd4k4txhegngcpudus6xq4jerk on 44'/394'/7'/0/0) #7 js:2:crypto_org:cro1e2gxhqvvdhxnwd4k4txhegngcpudus6xq4jerk:
undefined: 7.44954 CRO (6ops) (cro1rsl6f6zw3ygj4a0dj6ks8e72c0na4d2djzjfer on 44'/394'/8'/0/0) #8 js:2:crypto_org:cro1rsl6f6zw3ygj4a0dj6ks8e72c0na4d2djzjfer:
undefined: 3.49269 CRO (4ops) (cro1hguy0m603wmgs73m4ya68946e9ym392npqjt64 on 44'/394'/9'/0/0) #9 js:2:crypto_org:cro1hguy0m603wmgs73m4ya68946e9ym392npqjt64:
undefined: 0.0596491 CRO (2ops) (cro1un0mqythaxtt8eegq5ycqhry33fwk873dmxlu9 on 44'/394'/10'/0/0) #10 js:2:crypto_org:cro1un0mqythaxtt8eegq5ycqhry33fwk873dmxlu9:
undefined: 1.88694 CRO (1ops) (cro1e4x938jzzfdjt37f9vlwj005ay0x2l8r8yknfd on 44'/394'/11'/0/0) #11 js:2:crypto_org:cro1e4x938jzzfdjt37f9vlwj005ay0x2l8r8yknfd:
undefined: 0.423295 CRO (1ops) (cro163wn7llaw9e65rm5u5uz24ar0qdmk0ym7x9vrc on 44'/394'/12'/0/0) #12 js:2:crypto_org:cro163wn7llaw9e65rm5u5uz24ar0qdmk0ym7x9vrc:
undefined: 0 CRO (0ops) (cro1arktckp24j6zuwmsq7wgdjm39vsamfrwqgjm7w on 44'/394'/13'/0/0) #13 js:2:crypto_org:cro1arktckp24j6zuwmsq7wgdjm39vsamfrwqgjm7w:
undefined: 0.017971 XION (7ops) (xion1rs97j43nfyvc689y5rjvnnhrq3tes6ghe4j84x on 44'/118'/0'/0/0) #0 js:2:xion:xion1rs97j43nfyvc689y5rjvnnhrq3tes6ghe4j84x:
undefined: 0.014081 XION (6ops) (xion1qvtnzptp30maznnhdg30xl2jtdq2shpn94l5as on 44'/118'/1'/0/0) #1 js:2:xion:xion1qvtnzptp30maznnhdg30xl2jtdq2shpn94l5as:
undefined: 0 XION (6ops) (xion1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw6fhyk4 on 44'/118'/2'/0/0) #2 js:2:xion:xion1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw6fhyk4:
undefined: 0.020178 XION (17ops) (xion1hgyf054qztvmty3cayuw9nedftlhejv5fglp00 on 44'/118'/3'/0/0) #3 js:2:xion:xion1hgyf054qztvmty3cayuw9nedftlhejv5fglp00:
undefined: 0.014644 XION (7ops) (xion1vc7s929uh2yxyhau4wsg5th9jzedvkurp42jdk on 44'/118'/4'/0/0) #4 js:2:xion:xion1vc7s929uh2yxyhau4wsg5th9jzedvkurp42jdk:
undefined: 0.01082 XION (7ops) (xion1qgrd8srhvald995uvpeyncvwg7afgkmrd4ensh on 44'/118'/5'/0/0) #5 js:2:xion:xion1qgrd8srhvald995uvpeyncvwg7afgkmrd4ensh:
undefined: 0 XION (9ops) (xion1n6vccpa77x7xyhnk98jy6gg3rmgjkazxkklcn3 on 44'/118'/6'/0/0) #6 js:2:xion:xion1n6vccpa77x7xyhnk98jy6gg3rmgjkazxkklcn3:
undefined: 0.009945 XION (1ops) (xion1v283e7h2plllyjwgqrexv2ge5e4z252uqgpaqc on 44'/118'/7'/0/0) #7 js:2:xion:xion1v283e7h2plllyjwgqrexv2ge5e4z252uqgpaqc:
undefined: 0 XION (0ops) (xion1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ptlw25 on 44'/118'/8'/0/0) #8 js:2:xion:xion1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ptlw25:
undefined: 0.155553 ROCK (7ops) (zen1rs97j43nfyvc689y5rjvnnhrq3tes6ghp36y0u on 44'/118'/0'/0/0) #0 js:2:zenrock:zen1rs97j43nfyvc689y5rjvnnhrq3tes6ghp36y0u:
undefined: 1.14668 ROCK (7ops) (zen1qvtnzptp30maznnhdg30xl2jtdq2shpna3hh82 on 44'/118'/1'/0/0) #1 js:2:zenrock:zen1qvtnzptp30maznnhdg30xl2jtdq2shpna3hh82:
undefined: 0.189651 ROCK (5ops) (zen1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzdl8v0 on 44'/118'/2'/0/0) #2 js:2:zenrock:zen1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzdl8v0:
undefined: 1.89447 ROCK (2ops) (zen1hgyf054qztvmty3cayuw9nedftlhejv53vhz44 on 44'/118'/3'/0/0) #3 js:2:zenrock:zen1hgyf054qztvmty3cayuw9nedftlhejv53vhz44:
undefined: 2.05041 ROCK (2ops) (zen1vc7s929uh2yxyhau4wsg5th9jzedvkure3z3hv on 44'/118'/4'/0/0) #4 js:2:zenrock:zen1vc7s929uh2yxyhau4wsg5th9jzedvkure3z3hv:
undefined: 4.44362 ROCK (2ops) (zen1qgrd8srhvald995uvpeyncvwg7afgkmr433s2d on 44'/118'/5'/0/0) #5 js:2:zenrock:zen1qgrd8srhvald995uvpeyncvwg7afgkmr433s2d:
undefined: 0 ROCK (0ops) (zen1n6vccpa77x7xyhnk98jy6gg3rmgjkazxwjhmft on 44'/118'/6'/0/0) #6 js:2:zenrock:zen1n6vccpa77x7xyhnk98jy6gg3rmgjkazxwjhmft:
undefined: 0.00301656 EGLD (499ops) (erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp on 44'/508'/0'/0/0) #0 js:2:elrond:erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp:
undefined: 0.0591611 EGLD (534ops) (erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6 on 44'/508'/1'/0/0) #1 js:2:elrond:erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6:
undefined: 0.222887 EGLD (528ops) (erd1ql9pxrhe29cjr8qgxx3rtmh9lyax5x9dkvu3mfzrgt4e8hwk536ssl4sea on 44'/508'/2'/0/0) #2 js:2:elrond:erd1ql9pxrhe29cjr8qgxx3rtmh9lyax5x9dkvu3mfzrgt4e8hwk536ssl4sea:
undefined: 0.131199 EGLD (493ops) (erd1sjvd5mh946cty4wq0ya0d82509tc8eulxjujrad5ztfwjlhkqz0qy5yzmn on 44'/508'/3'/0/0) #3 js:2:elrond:erd1sjvd5mh946cty4wq0ya0d82509tc8eulxjujrad5ztfwjlhkqz0qy5yzmn:
undefined: 0.198054 EGLD (459ops) (erd149kzxgtymzzaddanlj02zhyhwves9wspvk8p69u325tjln5en9aqf8x8el on 44'/508'/4'/0/0) #4 js:2:elrond:erd149kzxgtymzzaddanlj02zhyhwves9wspvk8p69u325tjln5en9aqf8x8el:
undefined: 0.080982 EGLD (416ops) (erd143yn6uvrfzjptq5g7wvzntl3fcthsxtxrp9f3dgasluj6q5n0pxq2td67n on 44'/508'/5'/0/0) #5 js:2:elrond:erd143yn6uvrfzjptq5g7wvzntl3fcthsxtxrp9f3dgasluj6q5n0pxq2td67n:
undefined: 0.216043 EGLD (329ops) (erd1nhe920dlsx8u0lg46grd82dc8vqj8wejh8u7xcdjzfr8yy8ncdtsgtgjz7 on 44'/508'/6'/0/0) #6 js:2:elrond:erd1nhe920dlsx8u0lg46grd82dc8vqj8wejh8u7xcdjzfr8yy8ncdtsgtgjz7:
undefined: 0 EGLD (0ops) (erd1w4jjugkk5rp8hn8erefltjn0xek4x60t4hzsmnkfty7930sxujtqgryqgw on 44'/508'/7'/0/0) #7 js:2:elrond:erd1w4jjugkk5rp8hn8erefltjn0xek4x60t4hzsmnkfty7930sxujtqgryqgw:
undefined: 0.0476209 ETC (159ops) (0x7584df0780C5eB83b26aE55abBc265014f8bf897 on 44'/61'/0'/0/0) #0 js:2:ethereum_classic:0x7584df0780C5eB83b26aE55abBc265014f8bf897:
undefined: 0.0475957 ETC (142ops) (0x62ab4485f7EC0a291540dA31b82BE881166cD786 on 44'/61'/1'/0/0) #1 js:2:ethereum_classic:0x62ab4485f7EC0a291540dA31b82BE881166cD786:
undefined: 0.0476114 ETC (113ops) (0x0b248ABea3Ee9e94C03bc85c37516D16C909875c on 44'/61'/2'/0/0) #2 js:2:ethereum_classic:0x0b248ABea3Ee9e94C03bc85c37516D16C909875c:
undefined: 0.0420533 ETC (140ops) (0x01530f90685821747Eab008Fc217a2411AA6433C on 44'/61'/3'/0/0) #3 js:2:ethereum_classic:0x01530f90685821747Eab008Fc217a2411AA6433C:
undefined: 0.0475946 ETC (131ops) (0xD5fa1a3014A6a24f2C17E532713eb51500AD2bE8 on 44'/61'/4'/0/0) #4 js:2:ethereum_classic:0xD5fa1a3014A6a24f2C17E532713eb51500AD2bE8:
undefined: 0 ETC (0ops) (0x234D2443790764a622430213B6eCcA33272ca575 on 44'/61'/5'/0/0) #5 js:2:ethereum_classic:0x234D2443790764a622430213B6eCcA33272ca575:
undefined: 0.0028329 POL (465ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:polygon:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00078088 POL (413ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:polygon:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0276058 POL (433ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:polygon:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.1771 POL (439ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:polygon:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.41754 POL (413ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:polygon:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0.916462 POL (297ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:polygon:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 1.49502 POL (225ops) (0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E on 44'/60'/6'/0/0) #6 js:2:polygon:0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E:
undefined: 3.2755 POL (217ops) (0x48ec5fC762B9300e3B5e04E8ca634165240A1B15 on 44'/60'/7'/0/0) #7 js:2:polygon:0x48ec5fC762B9300e3B5e04E8ca634165240A1B15:
undefined: 12.4749 POL (202ops) (0x6434189D6179FB9DE41b392ED67a85C9F63216F6 on 44'/60'/8'/0/0) #8 js:2:polygon:0x6434189D6179FB9DE41b392ED67a85C9F63216F6:
undefined: 0 POL (0ops) (0x401C9CcB29d92ee707C6271ea5126aA6c257a37E on 44'/60'/9'/0/0) #9 js:2:polygon:0x401C9CcB29d92ee707C6271ea5126aA6c257a37E:
undefined: 0.00072909 𝚝ETH (150ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00036839 𝚝ETH (181ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00044794 𝚝ETH (170ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:ethereum_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0001192 𝚝ETH (147ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00094081 𝚝ETH (133ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:ethereum_sepolia:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:ethereum_sepolia:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00054149 𝚝ETH (351ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_holesky:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00428307 𝚝ETH (355ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_holesky:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.140839 𝚝ETH (380ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:ethereum_holesky:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0166678 𝚝ETH (312ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_holesky:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.0651399 𝚝ETH (236ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:ethereum_holesky:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:ethereum_holesky:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00077146 ETH (173ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0008149 ETH (188ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0007354 ETH (155ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00273995 ETH (134ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00003938 ETH (164ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:arbitrum:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:arbitrum:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.0020008 𝚝ETH (267ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00949615 𝚝ETH (312ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0075609 𝚝ETH (291ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.215088 𝚝ETH (249ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.74972 𝚝ETH (176ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:arbitrum_sepolia:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:arbitrum_sepolia:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.793924 FLR (490ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:flare:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.804325 FLR (545ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:flare:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.800893 FLR (494ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:flare:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.796164 FLR (537ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:flare:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.804751 FLR (104ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:flare:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 FLR (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:flare:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.916863 SGB (806ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:songbird:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 440.103 SGB (788ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:songbird:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 6.45127 SGB (792ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:songbird:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 489.441 SGB (753ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:songbird:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.000525 SGB (291ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:songbird:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 SGB (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:songbird:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 1.51948 GLMR (665ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonbeam:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 3.02267 GLMR (681ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonbeam:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 6.06199 GLMR (626ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonbeam:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 10.278 GLMR (666ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonbeam:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 37.8461 GLMR (243ops) (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: 2,910.08 BTT (666ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:bittorrent:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 46,506.7 BTT (722ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:bittorrent:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 700,521 BTT (694ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:bittorrent:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 5,802.82 BTT (593ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:bittorrent:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 732,490 BTT (291ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:bittorrent:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 BTT (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:bittorrent:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00097436 ETH (32ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:optimism:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00095956 ETH (23ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:optimism:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00000939 ETH (33ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:optimism:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00092379 ETH (31ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:optimism:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 ETH (0ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:optimism:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:optimism_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.731367 EWT (554ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:energy_web:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.973173 EWT (641ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:energy_web:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.782185 EWT (635ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:energy_web:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 2.44822 EWT (625ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:energy_web:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 2.58809 EWT (301ops) (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: 20.0948 ASTR (709ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:astar:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 20.0505 ASTR (699ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:astar:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 39.561 ASTR (699ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:astar:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 78.4626 ASTR (604ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:astar:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 158.872 ASTR (263ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:astar:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 ASTR (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:astar:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00667676 METIS (25ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:metis:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00599174 METIS (25ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:metis:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0126686 METIS (26ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:metis:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0165522 METIS (25ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:metis:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.0859013 METIS (26ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:metis:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 METIS (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:metis:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.0772974 MOVR (532ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonriver:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0896761 MOVR (577ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonriver:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.219533 MOVR (594ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonriver:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 1.60601 MOVR (560ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonriver:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.23177 MOVR (243ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:moonriver:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 MOVR (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:moonriver:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.841405 VLX (101ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:velas_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 216.232 VLX (101ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:velas_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 57.1519 VLX (100ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:velas_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 180.053 VLX (100ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:velas_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 457.706 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.728668 SYS (684ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:syscoin:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.652717 SYS (682ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:syscoin:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 1.9577 SYS (660ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:syscoin:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 21.2446 SYS (582ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:syscoin:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 32.4499 SYS (282ops) (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.0142636 𝚝ETH (281ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:base_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.038379 𝚝ETH (283ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:base_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.222787 𝚝ETH (266ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:base_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.148764 𝚝ETH (260ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:base_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.552887 𝚝ETH (213ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:base_sepolia:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:base_sepolia:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 2.68938 NEON (325ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:neon_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.396002 NEON (332ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:neon_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 8.30518 NEON (336ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:neon_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 2.0104 NEON (326ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:neon_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.351763 NEON (323ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:neon_evm:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 NEON (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:neon_evm:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.0142302 LYX (357ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:lukso:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00574447 LYX (413ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:lukso:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0541453 LYX (386ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:lukso:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.124999 LYX (393ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:lukso:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.284147 LYX (272ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:lukso:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 LYX (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:lukso:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00090082 ETH (220ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:linea:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00084298 ETH (232ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:linea:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00084816 ETH (271ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:linea:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00089144 ETH (240ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:linea:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00171303 ETH (232ops) (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.00320489 ETH (81ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:blast:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0.0016165 ETH (94ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:blast:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0012194 ETH (73ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:blast:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00173863 ETH (88ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:blast:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00109069 ETH (95ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:blast:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.0500382 𝚝ETH (1ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 𝚝ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:blast_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.01 ETH (2ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:scroll:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:scroll:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.05 𝚝ETH (1ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:scroll_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 𝚝ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:scroll_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0 XTZ (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:etherlink:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.003 ETH (3ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:zksync:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:zksync:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:zksync_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 2.48824 HBAR (651ops) (0.0.3663977 on 44/3030) hederaBip44#0 js:2:hedera:0.0.3663977:hederaBip44
undefined: 1.30792 HBAR (604ops) (0.0.3664525 on 44/3030) hederaBip44#1 js:2:hedera:0.0.3664525:hederaBip44
undefined: 16.5929 HBAR (561ops) (0.0.3664539 on 44/3030) hederaBip44#2 js:2:hedera:0.0.3664539:hederaBip44
undefined: 17.9821 HBAR (536ops) (0.0.3664563 on 44/3030) hederaBip44#3 js:2:hedera:0.0.3664563:hederaBip44
undefined: 0.00045414 ICP (198ops) (f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209 on 44'/223'/0'/0/0) internet_computer#0 js:2:internet_computer:04e529ca9ff4709b35af64dce4f0719e770d5e185e4ee972729b75495b27628fad0990203fe3ac7079c643a6dd23384e597c65b7bbebbf994b8304253f1bd124e4:internet_computer
undefined: 0.00000867 ICP (176ops) (6084b3d34e7d4efd544ea0c3617a816577d00feb0de0db71b560b7687e7d3c14 on 44'/223'/0'/0/1) internet_computer#1 js:2:internet_computer:0404b6a7df5dd483be4711fbdc9248af1e49b3a205334120118fe1dd9567da874d2655f681d9935b02139ffe1997c7fcb7781c04917303d90c7ea157d495ec30d3:internet_computer
undefined: 0.00045414 ICP (184ops) (ff5ed1dc2538d7a8b3158e7c9d9b05f80bc5f49f292f1ad2a59576a70bfc4721 on 44'/223'/0'/0/2) internet_computer#2 js:2:internet_computer:04c6d5dab70167c7b104904e57ee8afc84e8b4809c927ceec353a217f1402438b86bb9515e5bdbcc8f187c2c0c5f539d6459fc99c86af1244f452175fd9b736714:internet_computer
undefined: 0.00092915 ICP (169ops) (a45d0e0afb2c416464342615b6ee1902ac6895cf5e9eab2ccc184978164e9310 on 44'/223'/0'/0/3) internet_computer#3 js:2:internet_computer:040e411918ebc5963b5f89938dd674d6cb95131ce3d335957cd8efd99cce3521ea22b3f0fc53996b9ce3373a86ca57def22b89829ae905fde5d22c4522a7af5aa2:internet_computer
undefined: 0.00025827 ICP (169ops) (5084840b6ed50fa97b40c93863092770dc74f42bd2fbc742b76ec2999e789262 on 44'/223'/0'/0/4) internet_computer#4 js:2:internet_computer:046036d79bf131623410cfe77b7ccc32c923c6f8dc1b62448111328a2a791b1a7df2d1d4ca80659f3f0613e2334df370ab1c4e38c724decdf7f9f650a61e4ea090:internet_computer
undefined: 0.00321522 ICP (124ops) (0ec8cbc167cf495b7800efe653586d14ee0a53ef8880c63129b180580b02a8af on 44'/223'/0'/0/5) internet_computer#5 js:2:internet_computer:04e3bde2b3aeee5ae2af7ffdd25cc416df033c04d084ac02166ee52281e81be7945b119ab171b224984a8ff45adf4cbf28a392524dbefff12edf5d2470efd43375:internet_computer
undefined: 0.985158 ICP (86ops) (1d571d508b3c8901b3c4a8fdb733f5b831b9eab4f1f7443890ae04b36117fad5 on 44'/223'/0'/0/6) internet_computer#6 js:2:internet_computer:04000cb53ebc7761d8c976856db22cebbdf438fc7b3f9568ac90788d82be9890ac74d8a8f4f5cf86f8b4ea51e251c4aebda1e33af2c32fd90cbe051e5a0ffd641d:internet_computer
undefined: 0 ICP (0ops) (49a624b4179ec33e0faaa5998246c46ca16673ad9dc0e44f0026f5061177ebfb on 44'/223'/0'/0/7) internet_computer#7 js:2:internet_computer:04be24b119ae8d9a928654291e45eb8711739b524a36b8b1ace88a4ac0ec83ebfbf43eff2650c3bed6cae4898ae56cc59117c746de408dabc99ea37a590a12632c:internet_computer
undefined: 0.00737776 ICX (81ops) (hxdd614da5f057ce32185619f98edd81445a946ea5 on 44'/4801368'/0'/0'/0') icon#0 js:2:icon:hxdd614da5f057ce32185619f98edd81445a946ea5:icon
undefined: 0.0112953 ICX (87ops) (hx895d4e11fae4c0d5280481752a19d819c1657f67 on 44'/4801368'/0'/0'/1') icon#1 js:2:icon:hx895d4e11fae4c0d5280481752a19d819c1657f67:icon
undefined: 0 ICX (84ops) (hx227e5543bd947e939d4f4dd3361627f3963cc7bf on 44'/4801368'/0'/0'/2') icon#2 js:2:icon:hx227e5543bd947e939d4f4dd3361627f3963cc7bf:icon
undefined: 0.00862776 ICX (59ops) (hxce13c96a270a5f5a7cfeba91273e6d726b152ea3 on 44'/4801368'/0'/0'/3') icon#3 js:2:icon:hxce13c96a270a5f5a7cfeba91273e6d726b152ea3:icon
undefined: 0.0131703 ICX (55ops) (hxc11d409cce9c51ba10497e8095802210a41a13c4 on 44'/4801368'/0'/0'/4') icon#4 js:2:icon:hxc11d409cce9c51ba10497e8095802210a41a13c4:icon
undefined: 0.119748 ICX (38ops) (hxdac11c144fd926ed044199586ccdc14df1ac7313 on 44'/4801368'/0'/0'/5') icon#5 js:2:icon:hxdac11c144fd926ed044199586ccdc14df1ac7313:icon
undefined: 9.56853 ICX (31ops) (hx793091df35b221dacb509a7b581c060478329ea2 on 44'/4801368'/0'/0'/6') icon#6 js:2:icon:hx793091df35b221dacb509a7b581c060478329ea2:icon
undefined: 0 ICX (0ops) (hxfc7ad3c322576ea4daa967f6e50200e55ad51ee5 on 44'/4801368'/0'/0'/7') icon#7 js:2:icon:hxfc7ad3c322576ea4daa967f6e50200e55ad51ee5:icon
undefined: 0.444549 NEAR (66ops) (0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf on 44'/397'/0'/0'/0') nearbip44h#0 js:2:near:0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf:nearbip44h
undefined: 0.0519692 NEAR (20ops) (85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798 on 44'/397'/0'/0'/1') nearbip44h#1 js:2:near:85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798:nearbip44h
undefined: 0.0520313 NEAR (28ops) (3cb1e394cc2cdc8923b410dd4d972959f14fd1c0f741e38607db1a3f27a35d65 on 44'/397'/0'/0'/2') nearbip44h#2 js:2:near:3cb1e394cc2cdc8923b410dd4d972959f14fd1c0f741e38607db1a3f27a35d65:nearbip44h
undefined: 0.0518366 NEAR (18ops) (cd21c9f87afdf5bdc49cfb9eb36a21cacdd7f5ce182cf98d0b48a5e9a875398e on 44'/397'/0'/0'/3') nearbip44h#3 js:2:near:cd21c9f87afdf5bdc49cfb9eb36a21cacdd7f5ce182cf98d0b48a5e9a875398e:nearbip44h
undefined: 0.0520987 NEAR (22ops) (aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93 on 44'/397'/0'/0'/4') nearbip44h#4 js:2:near:aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93:nearbip44h
undefined: 0.0525175 NEAR (32ops) (07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce on 44'/397'/0'/0'/5') nearbip44h#5 js:2:near:07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce:nearbip44h
undefined: 0.0519969 NEAR (18ops) (bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7 on 44'/397'/0'/0'/6') nearbip44h#6 js:2:near:bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7:nearbip44h
undefined: 0.4451 NEAR (9ops) (e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2 on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2:nearbip44h
undefined: 0.0521346 NEAR (13ops) (f6c2b6371dd3f335422ea179661698a1e0db6b9cc890e7fe43b669c9f7f16f43 on 44'/397'/0'/0'/8') nearbip44h#8 js:2:near:f6c2b6371dd3f335422ea179661698a1e0db6b9cc890e7fe43b669c9f7f16f43:nearbip44h
undefined: 0 NEAR (0ops) (fe690bacc672f4ac406416f197571c8e520523112949394d18fc137871f13c2f on 44'/397'/0'/0'/9') nearbip44h#9 js:2:near:fe690bacc672f4ac406416f197571c8e520523112949394d18fc137871f13c2f:nearbip44h
undefined: 0 NEAR (0ops) (18e7e0394281c32f1247969729a703866d69008f8845a89f746da3e75970518f on 44'/397'/0'/0'/10') nearbip44h#10 js:2:near:18e7e0394281c32f1247969729a703866d69008f8845a89f746da3e75970518f:nearbip44h
undefined: 0.0128652 SOL (100ops) (5vhAGihUC1uKucJvreCgWWXB6LEptPwkwpqhkq9M6iaz on 44'/501'/0') solanaSub#0 js:2:solana:5vhAGihUC1uKucJvreCgWWXB6LEptPwkwpqhkq9M6iaz:solanaSub
undefined: 3.65619 STX (259ops) (SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2 on 44'/5757'/0'/0/0) #0 js:2:stacks:02d8ff937901982551807aace226a5b1eae3d8c5c89d1eae39ccab9cd1d27a9739:
undefined: 21.8626 STX (269ops) (SP3WE1A84RCG3GWKRXYMXNRVQJ8PG3VDRKE7CMPM4 on 44'/5757'/1'/0/0) #1 js:2:stacks:03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229:
undefined: 3.67427 STX (208ops) (SPJ68NSCQSTQ1AQRY1NJ5D4WWBEPDQ6X24R56J8A on 44'/5757'/2'/0/0) #2 js:2:stacks:02319a870c0e3d22b9c0169df3bae3029a9e5593f8dabbc7e4b6a1e356edafed77:
undefined: 0 STX (0ops) (SP20VP4RY6P3WFDTFGA6A7WFK3ZNN1P305SDWPB3Q on 44'/5757'/3'/0/0) #3 js:2:stacks:02ba832a893132328c5459add91b296287a70b4cbb889eaf1e53542864a853eb8e:
undefined: 9.34162 XLM (601ops) (GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC on 44'/148'/0') sep5#0 js:2:stellar:GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC:sep5
undefined: 1.5005 XLM (579ops) (GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ on 44'/148'/1') sep5#1 js:2:stellar:GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ:sep5
undefined: 36.3728 XLM (598ops) (GA4A2FH4YYI2RXPUC3NPGZQP7XX4CEJNREB27XVX7B7D5RIA3KOLSKTI on 44'/148'/2') sep5#2 js:2:stellar:GA4A2FH4YYI2RXPUC3NPGZQP7XX4CEJNREB27XVX7B7D5RIA3KOLSKTI:sep5
undefined: 1.5005 XLM (560ops) (GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM on 44'/148'/3') sep5#3 js:2:stellar:GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM:sep5
undefined: 17.7625 XLM (533ops) (GBV2ROL25KKDSFCZC2TQPMUEN567YQHRWTRBYHCO5AKYWVIV4JKJ56AF on 44'/148'/4') sep5#4 js:2:stellar:GBV2ROL25KKDSFCZC2TQPMUEN567YQHRWTRBYHCO5AKYWVIV4JKJ56AF:sep5
undefined: 0 XLM (0ops) (GCMN2KYJPPHB4TMXXF2OZPMWVM5EQSDD76IMFOMET7YMN64VJDVHVNCM on 44'/148'/5') sep5#5 js:2:stellar:GCMN2KYJPPHB4TMXXF2OZPMWVM5EQSDD76IMFOMET7YMN64VJDVHVNCM:sep5
undefined: 5.28869 XTZ (152ops) (tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF on 44'/1729'/0'/0') tezbox#0 js:2:tezos:0240051fc51799e60dcc8870415b87fc4fd948e71b23fdc0d9b8ac7438cf7d4708:tezbox
undefined: 0 XTZ (4ops) (tz1he4fPXP3c9fFrztYT3k7KyYuLb28arFNn on 44'/1729'/1'/0') tezbox#1 js:2:tezos:02fe3d777af5380ef0a431c4985772c9669743050cee5feff717c3c3272d7a2810:tezbox
undefined: 0 XTZ (0ops) (tz1SApkt3kmMaqNE1qtgADc6m3B49HZkFVDA on 44'/1729'/2'/0') tezbox#2 js:2:tezos:029d7bcf10737806147b22ba4578747ce4ac53e26b443c9eb1ac0e4d5bfbb8f67e:tezbox
undefined: 0.01009 TON (29ops) (UQDL7vAIogYGacmfO0xTS1bwPEMJNh1g1Jliwq2p-qWkS1J0 on 44'/607'/0'/0'/0'/0') ton#0 js:2:ton:3f0a4cc222f4d9b4d8bcfb5d0cb4a8908bbcb4a5e375c7ef745e6e78b780669d:ton
undefined: 0 TON (47ops) (UQCgFq3YfNA6MbXU__1AX1iSOy-iS5O5iIvqVprRQINAfACO on 44'/607'/0'/0'/1'/0') ton#1 js:2:ton:160444af87a5a38726dbe60ed81906095cb3e196ea1f7d5ec1be614945346359:ton
undefined: 0.0080161 TON (25ops) (UQCrRfsP_wKs6y2TfaBzZUzPDcH-gRignkJkeOkP3KXlParY on 44'/607'/0'/0'/2'/0') ton#2 js:2:ton:bb17bd2bb498dacdb2f2463285608bdee79f93b0300767a0729102f44cfec852:ton
undefined: 0.0131815 TON (28ops) (UQDkfo-2gm0LAN6Rs80vnTTHUtlEAn7TomCLKLhvbcw1LSHG on 44'/607'/0'/0'/3'/0') ton#3 js:2:ton:0ca11456791dafa4f1bd25138797661aaf6fa6e4d7d4606efc6757c8ef907291:ton
undefined: 0.0151678 TON (17ops) (UQCn-JC2p2S4NWRhqrHkuNmoziSwZ2rSYOIlq-GDUd2V0cq2 on 44'/607'/0'/0'/4'/0') ton#4 js:2:ton:00eb62bbc9b4515d20d3381b34c542c3cfdfdf1a3603eea8a25996ff01342b6a:ton
undefined: 0 TON (19ops) (UQA1a4iC0Zft5IaIfHEZvL9UH6XDT21vhezrmtOJGtSbMvFs on 44'/607'/0'/0'/5'/0') ton#5 js:2:ton:dedd6076377fcb492a47dba85c9cbfcec6f9b9df123355f1ac41a06890b1679b:ton
undefined: 0 TON (0ops) (UQAh3HfAveN89UPrnRe8jGWc9gGQRX6B2kY706gRUUsba10A on 44'/607'/0'/0'/6'/0') ton#6 js:2:ton:cd66d0f8aed63caa55661c8d43c5bfcf08d24e007275757711bbf3e4980d5075:ton
undefined: 0 VET (10ops) (0xc4B17901FECf86932c3bb296BB00E7c6816Fd416 on 44'/818'/0'/0/0) vechain#0 js:2:vechain:0xc4B17901FECf86932c3bb296BB00E7c6816Fd416:vechain
undefined: 2.65625 VET (7ops) (0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD on 44'/818'/0'/0/1) vechain#1 js:2:vechain:0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD:vechain
undefined: 2.34375 VET (2ops) (0x6fc5998724338CDe55Bba798273FAdcDE79c5074 on 44'/818'/0'/0/2) vechain#2 js:2:vechain:0x6fc5998724338CDe55Bba798273FAdcDE79c5074:vechain
undefined: 0 VET (0ops) (0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3 on 44'/818'/0'/0/3) vechain#3 js:2:vechain:0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3:vechain
undefined: 2.36777 XRP (201ops) (r9etPtq3oboweMPju5gdYufmvwhH2euz8z on 44'/144'/0'/0/0) #0 js:2:ripple:r9etPtq3oboweMPju5gdYufmvwhH2euz8z:
undefined: 1.05641 XRP (200ops) (rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH on 44'/144'/1'/0/0) #1 js:2:ripple:rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH:
undefined: 2.39859 XRP (201ops) (rMoFGec38toFg9ncbi9YbrYYmrP3G5exqn on 44'/144'/2'/0/0) #2 js:2:ripple:rMoFGec38toFg9ncbi9YbrYYmrP3G5exqn:
undefined: 38.1799 XRP (39ops) (rrnxW3THwB1ubsE9V78Lek6V1XYnNrodxC on 44'/144'/3'/0/0) #3 js:2:ripple:rrnxW3THwB1ubsE9V78Lek6V1XYnNrodxC:
undefined: 0 XRP (0ops) (rPX1z7bA8Mz7KQHetnwuqbEQMGApv8XKAu on 44'/144'/4'/0/0) #4 js:2:ripple:rPX1z7bA8Mz7KQHetnwuqbEQMGApv8XKAu:
Performance ⏲ 17min 14s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 15.2s 41min 8s 16.8s 54.9s 6min 49s 17.1s 15min 58s 9min 36s
Casper (7) 0.39ms 48.2s 2.66ms 7ms N/A N/A N/A N/A
Celo (11) 1003ms 94.7s 2938ms 2352ms 10.5s 5.7s 14.8s N/A
Algorand (5) 0.92ms 1min 57s 11ms 1027ms 11.5s 382ms 10.5s 10.5s
Aptos (1) 0.71ms 19.3s 0.97ms 3.4s N/A N/A N/A N/A
Bitcoin Testnet (9) 0.48ms 2min 1s 2.97ms N/A N/A N/A N/A N/A
Bitcoin Cash (6) 0.26ms 67.9s 9ms 1294ms 27.4s 323ms 36.3s 34.9s
Bitcoin Gold (4) 0.37ms 56.6s 3.28ms 984ms 36.3s 496ms 52.1s 49s
Dash (6) 1.84ms 56.3s 1.90ms 1359ms 39s 528ms 49.9s 48.4s
Digibyte (6) 0.18ms 72.2s 9ms 693ms 27.7s 566ms 50.1s 50.6s
DogeCoin (6) 0.21ms 55s 5ms N/A N/A N/A N/A N/A
Komodo (4) 0.26ms 24s 15ms 945ms 32.7s 613ms 46.7s 48.7s
Litecoin (6) 0.21ms 42.3s 7ms 766ms 24s 387ms 48.3s 47.3s
ZCash (4) 0.34ms 21.2s 1.36ms N/A N/A N/A N/A N/A
Horizen (4) 0.29ms 15.9s 1.41ms 815ms 23.4s 353ms 35s 34.3s
osmosis (17) 2081ms 22.7s 11ms 1816ms 5.7s 94ms 10.7s 10.3s
desmos (17) 1723ms 89.2s 4.6s 4.2s 9.7s N/A N/A N/A
dydx (17) 239ms 30.7s 15ms N/A N/A N/A N/A N/A
umee (17) 312ms 24.8s 21ms 580ms 6.9s 139ms 0.44ms N/A
persistence (17) 262ms 25.9s 22ms 340ms 8.4s 61ms 0.30ms N/A
quicksilver (17) 518ms 54.9s 22ms 419ms 8.2s 60ms 0.28ms N/A
onomy (17) 351ms 29.6s 24ms 744ms 6.7s 77ms 0.32ms N/A
sei_network (15) 362ms 22.8s 17ms N/A N/A N/A N/A N/A
stargaze (17) 588ms 22.1s 18ms 466ms 7.4s 83ms 0.26ms N/A
coreum (17) 284ms 45.7s 23ms 452ms 5.7s 155ms 0.30ms N/A
injective (0) 249ms N/A N/A N/A N/A N/A N/A N/A
mantra (17) 1095ms 72.1s 26ms 1975ms 4.5s 253ms 0.34ms N/A
crypto_org (13) 347ms 24.8s 22ms 509ms 9.8s 163ms 0.38ms N/A
xion (8) 238ms 16.2s 8ms N/A N/A N/A N/A N/A
zenrock (6) 135ms 9.8s 16ms 66ms 9.7s 48ms 8ms N/A
Elrond (7) 235ms 57.4s 8ms 4.01ms 3.7s 181ms 12.5s 22.3s
Ethereum Classic (5) 73ms 27.8s 1.75ms N/A N/A N/A N/A N/A
Polygon (9) 146ms 86.2s 20ms 637ms 4.1s 48ms 10.3s 10.4s
Ethereum Sepolia (5) 37ms 39.3s 3.92ms N/A N/A N/A N/A N/A
Ethereum Holesky (5) 34ms 1min 45s 14ms 715ms 3.5s 54ms 10.2s 10.3s
Arbitrum (5) 84ms 13.4s 6ms 1129ms 4.7s 504ms 11s 11.4s
Arbitrum Sepolia (5) 41ms 13s 5ms 833ms 3.9s 313ms 11.6s 11.6s
Flare (5) 35ms 8.5s 16ms N/A N/A N/A N/A N/A
Songbird (5) 43ms 6.3s 6ms 234ms 4.9s 111ms 10.6s 10.6s
Moonbeam (5) 37ms 14.7s 1.55ms 423ms 3.2s 129ms 21.5s 11.8s
Rootstock (4) 44ms 23.8s 3.04ms N/A N/A N/A N/A N/A
Bittorent Chain (5) 44ms 18.7s 6ms 436ms 3.2s 156ms 11.6s 11.9s
OP Mainnet (4) 610ms 6.4s 1.11ms N/A N/A N/A N/A N/A
OP Sepolia (0) 52ms 2493ms N/A N/A N/A N/A N/A N/A
Energy Web (5) 36ms 9.4s 9ms 1692ms 3.6s 519ms 11.2s 10.7s
Astar (5) 41ms 9.7s 11ms 789ms 3.5s 95ms 11.1s 11.2s
Metis (5) 43ms 46.5s 1.49ms 198ms 3.4s 385ms 21.1s 10.9s
Moonriver (5) 100ms 16.2s 23ms 293ms 3.3s 128ms 31.7s 11.7s
Velas EVM (5) 94ms 8s 21ms 617ms 3.2s 342ms 20.9s 10.8s
Syscoin (5) 46ms 4.2s 28ms 248ms 3.3s 84ms 3min 42s 10.4s
Polygon zkEVM Testnet (0) 84ms N/A N/A N/A N/A N/A N/A N/A
Base (4) 146ms 6.3s 1.29ms N/A N/A N/A N/A N/A
Base Sepolia (5) 53ms 5.1s 2.10ms 990ms 3.7s 255ms 10.8s 10.5s
Klaytn (0) 94ms N/A N/A N/A N/A N/A N/A N/A
Neon EVM (5) 40ms 7.9s 7ms N/A N/A N/A N/A N/A
Lukso (5) 39ms 4.5s 1.68ms 161ms 3.6s 71ms 10.3s 10.4s
Linea (5) 40ms 16s 7ms 1145ms 6.7s 368ms 13.4s 11.8s
Linea Sepolia (0) 97ms 2791ms N/A N/A N/A N/A N/A N/A
Blast (5) 42ms 5.5s 669ms 197ms 4.6s 216ms N/A N/A
Blast Sepolia (1) 41ms 3.2s 0.39ms 540ms N/A N/A N/A N/A
Scroll (1) 43ms 2408ms 0.49ms N/A N/A N/A N/A N/A
Scroll Sepolia (1) 90ms 2684ms 0.29ms N/A N/A N/A N/A N/A
Etherlink (0) 58ms 1247ms N/A N/A N/A N/A N/A N/A
ZKsync (1) 57ms 6.6s 2.07ms N/A N/A N/A N/A N/A
ZKsync Sepolia (0) 91ms 2343ms N/A N/A N/A N/A N/A N/A
Hedera (4) 0.42ms 4min 13s 17ms 343ms 7s 785ms 21.2s 20.7s
InternetComputer (7) 0.51ms 17s 1.38ms 1898ms 6.2s 552ms 11.4s 10.7s
Icon (7) 0.66ms 22.9s 2178ms 2829ms 919ms 354ms 12s N/A
NEAR (9) 2164ms 37.1s 4.44ms 409ms N/A N/A N/A N/A
Solana (0) 164ms 37.2s N/A N/A N/A N/A N/A N/A
Stacks (3) 0.38ms 27.9s 5.9s 4.2s 5.3s 702ms 95.9s N/A
Stellar (5) 0.72ms 2min 22s 6ms 1260ms N/A N/A N/A N/A
Tezos (2) 148ms 10.5s 54ms 835ms N/A N/A N/A N/A
TON (6) 0.96ms 15s 1.86ms 4s N/A N/A N/A N/A
VeChain VTHO (0) N/A N/A N/A N/A N/A N/A N/A N/A
VeChain VET (3) 0.64ms 11.4s 1.60ms N/A N/A N/A N/A N/A
XRP (4) 0.35ms 9.5s 1.48ms 2672ms 4.1s 354ms 11.1s 11.6s

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

Please sign in to comment.