Skip to content

Commit

Permalink
LLM - Growth Landing Pages (#7224)
Browse files Browse the repository at this point in the history
feat(llm): Added landing pages and deeplinks that uses braze cards
  • Loading branch information
cgrellard-ledger authored Jun 28, 2024
1 parent c149ddc commit 72e957e
Show file tree
Hide file tree
Showing 11 changed files with 137 additions and 9 deletions.
5 changes: 5 additions & 0 deletions .changeset/metal-buses-judge.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"live-mobile": minor
---

LLM - Added growth landing pages and deelinks that leverages Braze cards
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ import { RootDrawer } from "../RootDrawer/RootDrawer";
import EditTransactionNavigator from "~/families/evm/EditTransactionFlow/EditTransactionNavigator";
import { DrawerProps } from "../RootDrawer/types";
import AnalyticsOptInPromptNavigator from "./AnalyticsOptInPromptNavigator";
import LandingPagesNavigator from "./LandingPagesNavigator";
import FirmwareUpdateScreen from "~/screens/FirmwareUpdate";
import EditCurrencyUnits from "~/screens/Settings/CryptoAssets/Currencies/EditCurrencyUnits";
import WalletSyncNavigator from "LLM/features/WalletSync/Navigator";
Expand Down Expand Up @@ -530,6 +531,11 @@ export default function BaseNavigator() {
options={{ headerShown: false }}
component={AnalyticsOptInPromptNavigator}
/>
<Stack.Screen
name={NavigatorName.LandingPages}
options={{ headerShown: false }}
component={LandingPagesNavigator}
/>
<Stack.Screen
name={ScreenName.FirmwareUpdate}
component={FirmwareUpdateScreen}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import React, { useMemo } from "react";
import { createStackNavigator } from "@react-navigation/stack";
import { useTheme } from "styled-components/native";
import { ScreenName } from "~/const";
import { getStackNavigatorConfig } from "~/navigation/navigatorConfig";
import { LandingPagesNavigatorParamList } from "./types/LandingPagesNavigator";
import GenericLandingPage from "~/newArch/features/LandingPages/screens/GenericLandingPage";
import { NavigationHeaderCloseButton } from "../NavigationHeaderCloseButton";

const Stack = createStackNavigator<LandingPagesNavigatorParamList>();

export default function LandingPagesNavigator() {
const { colors } = useTheme();
const stackNavigationConfig = useMemo(() => getStackNavigatorConfig(colors), [colors]);

const navigationOptions = {
title: "",
headerLeft: () => null,
headerRight: () => <NavigationHeaderCloseButton />,
};

return (
<Stack.Navigator screenOptions={stackNavigationConfig}>
<Stack.Screen
name={ScreenName.GenericLandingPage}
component={GenericLandingPage}
options={navigationOptions}
/>
</Stack.Navigator>
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ import type { NoFundsNavigatorParamList } from "./NoFundsNavigator";
import type { StakeNavigatorParamList } from "./StakeNavigator";
import type { ExploreTabNavigatorStackParamList } from "./ExploreTabNavigator";
import { AnalyticsOptInPromptNavigatorParamList } from "./AnalyticsOptInPromptNavigator";
import { LandingPagesNavigatorParamList } from "./LandingPagesNavigator";

export type NavigateInput<
ParamList extends ParamListBase = ParamListBase,
Expand Down Expand Up @@ -308,4 +309,5 @@ export type BaseNavigatorStackParamList = {
onBackFromUpdate: FirmwareUpdateProps["onBackFromUpdate"];
isBeforeOnboarding?: boolean;
};
[NavigatorName.LandingPages]: NavigatorScreenParams<LandingPagesNavigatorParamList>;
};
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { ScreenName } from "~/const";
import { LandingPageUseCase } from "~/dynamicContent/types";

export type LandingPagesNavigatorParamList = {
[ScreenName.GenericLandingPage]: { useCase: LandingPageUseCase };
};
2 changes: 2 additions & 0 deletions apps/ledger-live-mobile/src/const/navigation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,7 @@ export enum ScreenName {

WalletSyncActivationSettings = "WalletSyncActivationSettings",
MockedAddAssetButton = "MockedAddAssetButton",
GenericLandingPage = "GenericLandingPage",
}

export enum NavigatorName {
Expand Down Expand Up @@ -618,4 +619,5 @@ export enum NavigatorName {

AnalyticsOptInPrompt = "AnalyticsOptInPrompt",
WalletSyncActivationSettings = "WalletSyncActivationSettings",
LandingPages = "LandingPages",
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { FlatList, ListRenderItem } from "react-native";
import { Flex } from "@ledgerhq/native-ui";
import type { FlexBoxProps } from "@ledgerhq/native-ui/components/Layout/Flex/index";
import useDynamicContent from "./useDynamicContent";
import { BrazeContentCard, CategoryContentCard, ContentCardLocation } from "./types";
import { AllLocations, BrazeContentCard, CategoryContentCard } from "./types";
import ContentCardsCategory from "./ContentCardsCategory";
import { FeatureToggle } from "@ledgerhq/live-common/featureFlags/index";
import { filterCategoriesByLocation, formatCategories } from "./utils";
Expand All @@ -13,15 +13,15 @@ const Category: ListRenderItem<CategoriesWithCards> = ({ item }) => (
);

type Props = FlexBoxProps & {
locationId: ContentCardLocation;
locationId: AllLocations;
};

type CategoriesWithCards = {
category: CategoryContentCard;
cards: BrazeContentCard[];
};

const ContentCardsLocation = ({ locationId, ...containerProps }: Props) => {
const ContentCardsLocationComponent = ({ locationId, ...containerProps }: Props) => {
const { categoriesCards, mobileCards } = useDynamicContent();

const categoriesToDisplay = filterCategoriesByLocation(categoriesCards, locationId);
Expand All @@ -42,10 +42,10 @@ const ContentCardsLocation = ({ locationId, ...containerProps }: Props) => {
);
};

const ContentCardsLocationFeatureFlagged = (props: Props) => (
const ContentCardsLocation = (props: Props) => (
<FeatureToggle featureId="flexibleContentCards">
<ContentCardsLocation {...props} />
<ContentCardsLocationComponent {...props} />
</FeatureToggle>
);

export default ContentCardsLocationFeatureFlagged;
export default ContentCardsLocation;
31 changes: 29 additions & 2 deletions apps/ledger-live-mobile/src/dynamicContent/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,24 @@ enum ContentCardsLayout {
grid = "grid",
}

enum LandingPageUseCase {
LP_Recover = "LP_Recover",
LP_Buy = "LP_Buy",
LP_Receive = "LP_Receive",
LP_Swap = "LP_Swap",
LP_Stake = "LP_Stake",
LP_Earn = "LP_Earn",
LP_Referral = "LP_Referral",
LP_Shop = "LP_Shop",
LP_Website_Promo = "LP_Website_Promo",
LP_Discover_1 = "LP_Discover_1",
LP_Discover_2 = "LP_Discover_2",
LP_Discover_3 = "LP_Discover_3",
LP_Wallet_Connect = "LP_Wallet_Connect",
LP_Security_Key = "LP_Security_Key",
LP_Generic = "LP_Generic",
}

enum ContentCardLocation {
TopWallet = "top_wallet",
Wallet = "wallet",
Expand All @@ -26,6 +44,8 @@ enum ContentCardLocation {
NotificationCenter = "notification_center",
}

type AllLocations = ContentCardLocation | LandingPageUseCase;

enum Background {
purple = "purple",
red = "red",
Expand All @@ -34,7 +54,7 @@ enum Background {
type ContentCardCommonProperties = {
id: string;
categoryId?: string;
location?: ContentCardLocation;
location?: AllLocations;
createdAt: number;
viewed: boolean;
order?: number;
Expand Down Expand Up @@ -139,5 +159,12 @@ export type {
VerticalContentCard,
BrazeContentCard,
AnyContentCard,
AllLocations,
};
export {
ContentCardLocation,
LandingPageUseCase,
Background,
ContentCardsLayout,
ContentCardsType,
};
export { ContentCardLocation, Background, ContentCardsLayout, ContentCardsType };
3 changes: 2 additions & 1 deletion apps/ledger-live-mobile/src/dynamicContent/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import {
ContentCardsLayout,
VerticalContentCard,
HeroContentCard,
AllLocations,
} from "~/dynamicContent/types";

export const getMobileContentCards = (array: BrazeContentCard[]) =>
Expand All @@ -41,7 +42,7 @@ export const compareCards = (a: ContentCardCommonProperties, b: ContentCardCommo

export const filterCategoriesByLocation = (
categories: CategoryContentCard[],
locationId: ContentCardLocation,
locationId: AllLocations,
) => {
const categoriesToDisplay = categories.filter(category => category.location === locationId);

Expand Down
10 changes: 10 additions & 0 deletions apps/ledger-live-mobile/src/navigation/DeeplinksProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,16 @@ const linkingOptions = () => ({
[ScreenName.ScanAccounts]: "scan-accounts",
},
},
[NavigatorName.LandingPages]: {
screens: {
/**
* @params ?useCase: LandingPageUseCase
* ie: "ledgerlive://landing-page?useCase=LP_Generic" will open the landing page screen with the use case LP_Generic
*
*/
[ScreenName.GenericLandingPage]: "landing-page",
},
},
},
},
},
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import React, { useEffect } from "react";
import { Flex } from "@ledgerhq/native-ui";
import { LandingPagesNavigatorParamList } from "~/components/RootNavigator/types/LandingPagesNavigator";
import { BaseComposite, StackNavigatorProps } from "~/components/RootNavigator/types/helpers";
import { ScreenName } from "~/const";
import ContentCardsLocation from "~/dynamicContent/ContentCardsLocation";
import { TrackScreen } from "~/analytics";
import { LandingPageUseCase } from "~/dynamicContent/types";
import useDynamicContent from "~/dynamicContent/useDynamicContent";
import { filterCategoriesByLocation } from "~/dynamicContent/utils";

type NavigationProps = BaseComposite<
StackNavigatorProps<LandingPagesNavigatorParamList, ScreenName.GenericLandingPage>
>;

const GenericLandingPage = (props: NavigationProps) => {
const useCase = props.route.params?.useCase;
const { categoriesCards } = useDynamicContent();

useEffect(() => {
if (!useCase || !Object.values(LandingPageUseCase).includes(useCase)) {
props.navigation.goBack();
}
const categoriesToDisplay = filterCategoriesByLocation(categoriesCards, useCase);
if (categoriesToDisplay.length === 0) {
props.navigation.goBack();
}
}, [categoriesCards, props.navigation, useCase]);

return (
<Flex>
<TrackScreen name="Landing Page" useCase={useCase} />
<ContentCardsLocation locationId={props.route.params?.useCase} />
</Flex>
);
};

export default GenericLandingPage;

4 comments on commit 72e957e

@github-actions
Copy link

Choose a reason for hiding this comment

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

[Bot] Daily non-reg on develop with 'Nitrogen' ✅ 157 txs ❌ 26 txs 💰 12 miss funds ($1,163.52) ⏲ 37min 5s

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

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

3 critical spec errors

Spec injective failed!

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

Spec Polygon zkEVM Testnet failed!

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

Spec Solana failed!

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

- Expected  - 1
+ Received  + 1

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

- Expected  - 1
+ Received  + 1

  Object {
-   "Target": "C0794bc80eDfa58D3427Cb4E2861630900b3bf30390447B6b0A1614f2bff9234",
+   "Target": "02026B93627Ed2F76551E7CeF0466468B12db8Fab806266107b69947D9c95CEd9E7c",
  }
(totally spent 5.2s – ends at 2024-06-28T17:13:54.720Z)
necessary accounts resynced in 0.30ms
▬ Crypto.orgChain 2.17.1 on nanoS 2.1.0
→ FROM undefined: 17.3755 CRO (44ops) (cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra on 44'/394'/0'/0/0) #0 js:2:crypto_org:cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra: (! sum of ops 17.37656309 CRO)
max spendable ~17.3755
★ using mutation 'move 50%'
→ TO undefined: 0 CRO (39ops) (cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2 on 44'/394'/2'/0/0) #2 js:2:crypto_org:cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2:
✔️ transaction 
SEND  8.68778155 CRO
TO cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2
STATUS (2.41ms)
  amount: 8.68778155 CRO
  estimated fees: 0.00005 CRO
  total spent: 8.68783155 CRO
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"review","x":47,"y":10,"w":81,"h":11}
{"text":"Please","x":48,"y":-1,"w":80,"h":11}
{"text":"review","x":47,"y":10,"w":81,"h":11}
{"text":"Please","x":48,"y":-1,"w":80,"h":11}
{"text":"review","x":47,"y":10,"w":81,"h":11}
(totally spent 60.1s – ends at 2024-06-28T17:13:54.722Z)
necessary accounts resynced in 0.23ms
▬ Crypto.orgChain 2.17.1 on nanoS 2.1.0
→ FROM undefined: 17.3755 CRO (30ops) (cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd on 44'/394'/3'/0/0) #3 js:2:crypto_org:cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd: (! sum of ops 17.37636309 CRO)
max spendable ~17.3754
★ using mutation 'send max'
→ TO undefined: 0 CRO (35ops) (cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl on 44'/394'/1'/0/0) #1 js:2:crypto_org:cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl:
✔️ transaction 
SEND MAX
TO cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl
STATUS (1.90ms)
  amount: 17.37546309 CRO
  estimated fees: 0.00005 CRO
  total spent: 17.37551309 CRO
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"review","x":47,"y":10,"w":81,"h":11}
{"text":"Please","x":48,"y":-1,"w":80,"h":11}
{"text":"review","x":47,"y":10,"w":81,"h":11}
{"text":"Please","x":48,"y":-1,"w":80,"h":11}
{"text":"review","x":47,"y":10,"w":81,"h":11}
(totally spent 60s – ends at 2024-06-28T17:13:54.724Z)
necessary accounts resynced in 1.02ms
▬ Hedera 1.0.8 on nanoS 2.1.0
→ FROM undefined: 0.196476 HBAR (321ops) (0.0.3664539 on 44/3030) hederaBip44#2 js:2:hedera:0.0.3664539:hederaBip44
max spendable ~0.195203
★ using mutation 'Send max'
→ TO undefined: 0.212643 HBAR (296ops) (0.0.3664563 on 44/3030) hederaBip44#3 js:2:hedera:0.0.3664563:hederaBip44
✔️ transaction SEND 0.19520304 HBAR
TO 0.0.3664563
STATUS (233ms)
  amount: 0.19520304 HBAR
  estimated fees: 0.00127378 HBAR
  total spent: 0.19647682 HBAR
errors: 
warnings: 
✔️ has been signed! (8.4s) 
✔️ broadcasted! (392ms) optimistic operation: 
  -0.19520304 HBAR   OUT        3bwfDOsR1wMIJadiE7UiXJAOkH77bJbYyy34sebw5EVUbLMTv_h9W72CzrF5mqZ4 2024-06-28T16:40
✔️ operation confirmed (10.2s): 
  -0.00128161 HBAR   OUT        3bwfDOsR1wMIJadiE7UiXJAOkH77bJbYyy34sebw5EVUbLMTv_h9W72CzrF5mqZ4 2024-06-28T16:40
✔️ undefined: 0.195195 HBAR (322ops) (0.0.3664539 on 44/3030) hederaBip44#2 js:2:hedera:0.0.3664539:hederaBip44(in 10.2s)
(in 4min 51s)
⚠️ TEST destination account should receive an operation (by tx hash)
Invariant Violation: no operation found with hash 3bwfDOsR1wMIJadiE7UiXJAOkH77bJbYyy34sebw5EVUbLMTv_h9W72CzrF5mqZ4
(totally spent 5min 10s – ends at 2024-06-28T17:13:54.727Z)
necessary accounts resynced in 178ms
▬ Hedera 1.0.8 on nanoS 2.1.0
→ FROM undefined: 0.212643 HBAR (296ops) (0.0.3664563 on 44/3030) hederaBip44#3 js:2:hedera:0.0.3664563:hederaBip44
max spendable ~0.211365
★ using mutation 'Send max'
→ TO undefined: 28.7634 HBAR (404ops) (0.0.3663977 on 44/3030) hederaBip44#0 js:2:hedera:0.0.3663977:hederaBip44
✔️ transaction SEND 0.21136538 HBAR
TO 0.0.3663977
STATUS (182ms)
  amount: 0.21136538 HBAR
  estimated fees: 0.00127783 HBAR
  total spent: 0.21264321 HBAR
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (401ms) optimistic operation: 
  -0.21136538 HBAR   OUT        ov9cji0EASZo56cz5_8cBjr6vL1F7zgns8_d109RMdvsWW6E4yL1RibcpMkJWLnG 2024-06-28T16:45
✔️ operation confirmed (10.2s): 
  -0.00128161 HBAR   OUT        ov9cji0EASZo56cz5_8cBjr6vL1F7zgns8_d109RMdvsWW6E4yL1RibcpMkJWLnG 2024-06-28T16:45
✔️ undefined: 0.211361 HBAR (297ops) (0.0.3664563 on 44/3030) hederaBip44#3 js:2:hedera:0.0.3664563:hederaBip44(in 10.2s)
(in 4min 50s)
⚠️ TEST destination account should receive an operation (by tx hash)
Invariant Violation: no operation found with hash ov9cji0EASZo56cz5_8cBjr6vL1F7zgns8_d109RMdvsWW6E4yL1RibcpMkJWLnG
(totally spent 5min 4s – ends at 2024-06-28T17:13:54.780Z)
necessary accounts resynced in 3.1s
▬ Stacks 0.23.3 on nanoSP 1.1.1
→ FROM undefined: 29.0415 STX (153ops) (SPJ68NSCQSTQ1AQRY1NJ5D4WWBEPDQ6X24R56J8A on 44'/5757'/2'/0/0) #2 js:2:stacks:02319a870c0e3d22b9c0169df3bae3029a9e5593f8dabbc7e4b6a1e356edafed77:
max spendable ~29.0385
★ using mutation 'Transfer Max'
→ TO undefined: 0 STX (191ops) (SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2 on 44'/5757'/0'/0/0) #0 js:2:stacks:02d8ff937901982551807aace226a5b1eae3d8c5c89d1eae39ccab9cd1d27a9739:
✔️ transaction 
SEND MAX
TO SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2
STATUS (1463ms)
  amount: 29.038595 STX
  estimated fees: 0.003001 STX
  total spent: 29.041596 STX
errors: 
warnings: 
✔️ has been signed! (3s) 
✔️ broadcasted! (339ms) optimistic operation: 
  -29.041596 STX     OUT        0xd4c2d4ab60f675d41d597d6e43a8fda74bd5901543f12ce281c38064b9c561a3 2024-06-28T16:47
(in 25min 3s)
⚠️ TEST account balance is 0
Error: expect(received).toBe(expected) // Object.is equality

Expected: "0"
Received: "29041596"
(totally spent 25min 8s – ends at 2024-06-28T17:13:54.796Z)
necessary accounts resynced in 0.19ms
▬ Stellar 5.0.3 on nanoS 2.1.0
→ FROM undefined: 28.4805 XLM (570ops) (GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC on 44'/148'/0') sep5#0 js:2:stellar:GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC:sep5 (! sum of ops 28.4979862 XLM)  TokenAccount USDC: 0 usdc (0 ops)
max spendable ~26.9805
★ using mutation 'Send max XLM'
→ TO undefined: 20.1438 XLM (563ops) (GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ on 44'/148'/1') sep5#1 js:2:stellar:GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ:sep5
✔️ transaction 
    SEND MAX
    TO GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ
    with fees=0.0005 XLM
  memo=Ledger Live
STATUS (1112ms)
  amount: 26.9800363 XLM
  estimated fees: 0.0005 XLM
  total spent: 26.9800363 XLM
errors: 
warnings: 
✔️ has been signed! (4.7s) {"operation":{"id":"js:2:stellar:GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC:sep5--OUT","hash":"","type":"OUT","senders":["GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC"],"recipients":["GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ"],"accountId":"js:2:stellar:GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC:sep5","blockHash":null,"blockHeight":null,"extra":{"ledgerOpType":"OUT"},"date":"2024-06-28T16:40:35.322Z","value":"269800363","fee":"5000","transactionSequenceNumber":192705329916543260},"signature":"AAAAAgAAAADS/L3WRN4g33NBw+b8nLCPLyQ5VJtjU3yGBJuqwZ0zjgAAE4gCrKB6AAABEQAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAtMZWRnZXIgTGl2ZQAAAAABAAAAAAAAAAEAAAAAtdkFOy6ua0Zy2MzxNKA0FtGEtFUTEiWHrXSUUDmVcaMAAAAAAAAAABAU06sAAAAAAAAAAcGdM44AAABAVjLw9auV+dZGhAyiTfOhx5kD4cnpYGDlW9jeODM3xYDSj0ATMrIZz1C2LWdmbB7IyvKZxJyFeQ/egd2bpQ9HCw=="}
⚠️ TEST during broadcast
AxiosError: Request failed with status code 503
(totally spent 21.1s – ends at 2024-06-28T17:13:54.800Z)
necessary accounts resynced in 0.11ms
▬ VeChain 1.1.1 on nanoSP 1.1.1
→ FROM undefined: 0.625 VET (7ops) (0xc4B17901FECf86932c3bb296BB00E7c6816Fd416 on 44'/818'/0'/0/0) vechain#0 js:2:vechain:0xc4B17901FECf86932c3bb296BB00E7c6816Fd416:vechain  TokenAccount Vethor: 53.9674285 VTHO (2 ops) (! sum of ops 55 VTHO)
max spendable ~0.625
★ using mutation 'move ~50% VTHO'
→ TO undefined: 3.125 VET (5ops) (0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD on 44'/818'/0'/0/1) vechain#1 js:2:vechain:0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD:vechain
✔️ transaction SEND  26.98371425 VET TO 0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD
STATUS (1521ms)
  amount: 26.98371425 VTHO
  estimated fees: 0.51646 VET
  total spent: 27.50017425 VTHO
errors: 
warnings: 
⚠️ VechainAppPleaseEnableContractDataAndMultiClause: Please enable contract data in Vechain app settings
(totally spent 1562ms – ends at 2024-06-28T17:13:54.803Z)
necessary accounts resynced in 0.26ms
▬ Algorand 2.1.11 on nanoS 2.1.0
→ FROM undefined: 6.8801 ALGO (450ops) (YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE on 44'/283'/2'/0/0) #2 js:2:algorand:YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE: 4.180104 ALGO spendable. 
  TokenAccount Asia Reserve Currency Coin: 0 ARCC (0 ops)
  TokenAccount MESE USD Exchange Token: 0 USD-MESE (0 ops)
  TokenAccount MESE Index Fund: 0 MESX (0 ops)
  TokenAccount Micro-Microsoft: 0 M-MSFT (0 ops)
  TokenAccount Micro-Amazon: 0 M-AMZN (0 ops)
  TokenAccount Micro-Twitter: 0 M-TWTR (0 ops)
  TokenAccount Micro-Netflix: 0 M-NFLX (0 ops)
  TokenAccount Micro-Google: 0 M-GOOGL (0 ops)
  TokenAccount Micro-Apple: 0 M-AAPL (0 ops)
  TokenAccount Micro-Tesla: 0 M-TSLA (0 ops)
  TokenAccount Realio Token: 0 RIO (0 ops)
  TokenAccount realioUSD: 0 RUSD (0 ops)
  TokenAccount Liquid Mining Fund I: 0 RHO 1 (0 ops)
  TokenAccount Credit Opportunities Fund I: 0 VAL 1 (0 ops)
  TokenAccount Meld Gold: 0 MCAU (0 ops)
  TokenAccount Meld Silver: 0 MCAG (0 ops)
  TokenAccount PLANET: 0 PLANETS (0 ops)
  TokenAccount USDC: 0 USDC (0 ops)
  TokenAccount HEADLINE: 0 HDL (0 ops)
  TokenAccount Yieldly: 0 YLDY (0 ops)
  TokenAccount AlgoGems: 0 GEMS (0 ops)
  TokenAccount goBTC: 0 goBTC (0 ops)
  TokenAccount goETH: 0 goETH (0 ops)
  TokenAccount goMINT: 0 goMINT (0 ops)
  TokenAccount Nimble: 0 NIMBLE (0 ops)
  TokenAccount CollecteursX: 0 CLTR (0 ops)
max spendable ~4.1791
★ using mutation 'opt-In ASA available'
→ TO undefined: 6.8801 ALGO (450ops) (YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE on 44'/283'/2'/0/0) #2 js:2:algorand:YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE:
✔️ transaction 
    OPT_IN 0 ALGO
    TO YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE
    with fees=0.001 ALGO
STATUS (288ms)
  amount: 0 ALGO
  estimated fees: 0.001 ALGO
  total spent: 0.001 ALGO
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Amount'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Amount": "USDT 0.0",
+   "Amount": "USDt 0.0",
  }
(totally spent 3s – ends at 2024-06-28T17:13:54.814Z)
necessary accounts resynced in 0.20ms
▬ BitcoinTest 2.1.1 on nanoS 2.1.0
→ FROM undefined [native segwit]: 0.0003395 𝚝BTC (158ops) (tb1qanprwv7n3y7emg20u4gazzs8x4cfc6s9xpq8k8 on 84'/1'/1'/0/79) native_segwit#1 js:2:bitcoin_testnet:tpubDCgDNn312aj5YVQsroTmVAWSVMpx2PM7m4toPJsHUricGUh457AwMZK55f2uNVxYdKeW8qDZDngveqFFcsFTWW7eZFbnYerfsf5YAdxU3K8:native_segwit
2 UTXOs
0.00022589   tb1q3cswzyehd0yxzkqtuvt3g02yfdzffdg9vfd33u 1d99a31b67097bbe86aa2af1069b43559d3d709dabb7c3d6f2a7c701c4f129c8 @0 (1498)
0.00011361   tb1qrlys0xw3ze6yrdg0l65fhavw75sjp8w4x6epe4 d1a7a17526c8706b85196f0897f960f1c5f062dc5c3c3e778b3ede6eedf651d7 @0 (1499)

max spendable ~0.00030924
★ using mutation 'optimize-size'
→ TO undefined [taproot]: 0.00009319 𝚝BTC (183ops) (tb1phpf60ff7kk5t4s5hd36pr6e6jkv6uhl869gs642gmytd05tqe0as2s58w7 on 86'/1'/0'/0/86) taproot#0 js:2:bitcoin_testnet:tpubDD1s2jBEVuSpzKea6ie3HMCmkanzcfvc9BbQq8nRDUaAUJPGFi83RWFCNMartYsuxksbFR6tDmVGMaaRP7ng7uovwKT1WNjcuDW34st9R56:taproot
✔️ transaction 
SEND 0.00005716 𝚝BTC
TO tb1phpf60ff7kk5t4s5hd36pr6e6jkv6uhl869gs642gmytd05tqe0as2s58w7
with feePerByte=17 (network fees: 0=18, 1=17, 2=16)
OPTIMIZE_SIZE pick-unconfirmed
STATUS (215ms)
TX INPUTS (1):
0.00011361   tb1qrlys0xw3ze6yrdg0l65fhavw75sjp8w4x6epe4 d1a7a17526c8706b85196f0897f960f1c5f062dc5c3c3e778b3ede6eedf651d7@0
TX OUTPUTS (2):
0.00005716   tb1phpf60ff7kk5t4s5hd36pr6e6jkv6uhl869gs642gmytd05tqe0as2s58w7 @0 (0)
0.00003044   tb1qnwk2m8dnp2qyqvjmmc7mry52ct7d2mestn4we5 (change) @1 (0)
  amount: 0.00005716 𝚝BTC
  estimated fees: 0.00002601 𝚝BTC
  total spent: 0.00008317 𝚝BTC
errors: 
warnings: feeTooHigh FeeTooHigh
✔️ has been signed! (6.8s) 
✔️ broadcasted! (103ms) optimistic operation: 
  -0.00008317 𝚝BTC  OUT        db236227d81bf0ee72f521c45534b1a30aff8a658a319097ced6a565b0f5ea3a 2024-06-28T16:40
(in 5min 1s)
⚠️ TEST operation.date must not be in future
Error: expect(received).toBeGreaterThan(expected)

Expected: > -60000
Received:   -2386428
(totally spent 5min 8s – ends at 2024-06-28T17:13:54.818Z)
necessary accounts resynced in 0.16ms
▬ PivX 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 0.107428 PIVX (674ops) (DDLrzXfLAMcnbWhWPbUngVsXrvYDc8xMMc on 44'/77'/0'/0/324) #0 js:2:pivx:ToEA6mkkScBzPS3QGwz3pD9XiPf8YynSCGuC65sMGexuJ8oLkqEAZRAcR5VqKvRV5Phzid1ZG7myNKF6XtRBtVKT5JhgUpaKZtwAq3XzeH3Qnmz:
2 UTXOs
0.107278     DQuJTf9gLSzfovrMR2yDVcrZBCnmXbvf41 (change) rbf 1fbd6e677c5e996ece6b53d4e60d83ab189a553923ec08ffd97d74739dc9a9e5 @1 (1404)
0.00015      DTQf1FN1FWXJdzWSekjcgA8H9W2S4nJswc df5b57888ade5cbb48a4e07c67dfc83a31abc8d828a46723de7de350294267da @0 (1404)

max spendable ~0.107391
★ using mutation 'send OP_RETURN transaction'
→ TO undefined: 0.0979942 PIVX (618ops) (D6X8J93nZ2ix1ufUaxjxtCFfSo1RVKxHXo on 44'/77'/1'/0/296) #1 js:2:pivx:ToEA6mkkScBzPS3QK9QkPuwWHUEA284HMW86PxW1zkXJAAJa9zXWJjVwBvYEt5HTwDHyDpyfC2VRj3Sy9MBegtxX3kBM1dyiPx81KcwoA8DT75c:
✔️ transaction 
SEND 0.00015 PIVX
TO D6X8J93nZ2ix1ufUaxjxtCFfSo1RVKxHXo
with feePerByte=11 (network fees: 0=12, 1=11, 2=10)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (161ms)
TX INPUTS (1):
0.107278     DQuJTf9gLSzfovrMR2yDVcrZBCnmXbvf41 1fbd6e677c5e996ece6b53d4e60d83ab189a553923ec08ffd97d74739dc9a9e5@1
TX OUTPUTS (3):
0.00015      D6X8J93nZ2ix1ufUaxjxtCFfSo1RVKxHXo @0 (0)
0            @1 (0)
0.1071       D76FsMVrDjtEJHo13tLuEqWFpV3PZGPUCr (change) @2 (0)
  amount: 0.00015 PIVX
  estimated fees: 0.00002816 PIVX
  total spent: 0.00017816 PIVX
errors: 
warnings: feeTooHigh FeeTooHigh
✔️ has been signed! (5.9s) 
✔️ broadcasted! (76ms) optimistic operation: 
  -0.00017816 PIVX   OUT        5b9583e251305d47c67fb19980461bfeceef916b5a6bab416f59f85b13bc084c 2024-06-28T16:42
✔️ operation confirmed (12.1s): 
  -0.10727872 PIVX   OUT        5b9583e251305d47c67fb19980461bfeceef916b5a6bab416f59f85b13bc084c 2024-06-28T16:42
✔️ undefined: 0.00015 PIVX (675ops) (DDLrzXfLAMcnbWhWPbUngVsXrvYDc8xMMc on 44'/77'/0'/0/324) #0 js:2:pivx:ToEA6mkkScBzPS3QGwz3pD9XiPf8YynSCGuC65sMGexuJ8oLkqEAZRAcR5VqKvRV5Phzid1ZG7myNKF6XtRBtVKT5JhgUpaKZtwAq3XzeH3Qnmz:
1 UTXOs
0.00015      DTQf1FN1FWXJdzWSekjcgA8H9W2S4nJswc df5b57888ade5cbb48a4e07c67dfc83a31abc8d828a46723de7de350294267da @0 (1404)
(in 12.1s)
(in 4min 52s)
⚠️ TEST destination > account balance increased with transaction amount
Error: expect(received).toBe(expected) // Object.is equality

Expected: "20524483"
Received: "9814427"
(totally spent 5min 10s – ends at 2024-06-28T17:13:54.881Z)
necessary accounts resynced in 1909ms
▬ PivX 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 0.0981442 PIVX (619ops) (DRnJ7b8DZ82K6XmDmY5cgNFpcLaYWer1pB on 44'/77'/1'/0/297) #1 js:2:pivx:ToEA6mkkScBzPS3QK9QkPuwWHUEA284HMW86PxW1zkXJAAJa9zXWJjVwBvYEt5HTwDHyDpyfC2VRj3Sy9MBegtxX3kBM1dyiPx81KcwoA8DT75c:
2 UTXOs
0.0979942    DBCR6KeuveWQqwaCghh3UuimYEtVtxn1vi rbf 1fbd6e677c5e996ece6b53d4e60d83ab189a553923ec08ffd97d74739dc9a9e5 @0 (1410)
0.00015      D6X8J93nZ2ix1ufUaxjxtCFfSo1RVKxHXo 5b9583e251305d47c67fb19980461bfeceef916b5a6bab416f59f85b13bc084c @0 (5)

max spendable ~0.0981068
★ using mutation 'optimize-size'
→ TO undefined: 0.00015 PIVX (675ops) (DDLrzXfLAMcnbWhWPbUngVsXrvYDc8xMMc on 44'/77'/0'/0/324) #0 js:2:pivx:ToEA6mkkScBzPS3QGwz3pD9XiPf8YynSCGuC65sMGexuJ8oLkqEAZRAcR5VqKvRV5Phzid1ZG7myNKF6XtRBtVKT5JhgUpaKZtwAq3XzeH3Qnmz:
✔️ transaction 
SEND 0.02318738 PIVX
TO DDLrzXfLAMcnbWhWPbUngVsXrvYDc8xMMc
with feePerByte=11 (network fees: 0=12, 1=11, 2=10)
OPTIMIZE_SIZE pick-unconfirmed
STATUS (311ms)
TX INPUTS (1):
0.0979942    DBCR6KeuveWQqwaCghh3UuimYEtVtxn1vi 1fbd6e677c5e996ece6b53d4e60d83ab189a553923ec08ffd97d74739dc9a9e5@0
TX OUTPUTS (2):
0.0231873    DDLrzXfLAMcnbWhWPbUngVsXrvYDc8xMMc @0 (0)
0.074782     DCYAT2zKSF4AT64sb935oFPWukYagZq3CE (change) @1 (0)
  amount: 0.02318738 PIVX
  estimated fees: 0.00002486 PIVX
  total spent: 0.02321224 PIVX
errors: 
warnings: 
✔️ has been signed! (3.5s) 
✔️ broadcasted! (122ms) optimistic operation: 
  -0.02321224 PIVX   OUT        0827eae07ab31abd02fcddd22f1157269daf81249fd025f317a21372826442a5 2024-06-28T16:47
✔️ operation confirmed (11.7s): 
  -0.09799427 PIVX   OUT        0827eae07ab31abd02fcddd22f1157269daf81249fd025f317a21372826442a5 2024-06-28T16:47
✔️ undefined: 0.00015 PIVX (620ops) (DRnJ7b8DZ82K6XmDmY5cgNFpcLaYWer1pB on 44'/77'/1'/0/297) #1 js:2:pivx:ToEA6mkkScBzPS3QK9QkPuwWHUEA284HMW86PxW1zkXJAAJa9zXWJjVwBvYEt5HTwDHyDpyfC2VRj3Sy9MBegtxX3kBM1dyiPx81KcwoA8DT75c:
1 UTXOs
0.00015      D6X8J93nZ2ix1ufUaxjxtCFfSo1RVKxHXo 5b9583e251305d47c67fb19980461bfeceef916b5a6bab416f59f85b13bc084c @0 (5)
(in 11.7s)
(in 4min 54s)
⚠️ TEST destination > account balance increased with transaction amount
Error: expect(received).toBe(expected) // Object.is equality

Expected: "9811941"
Received: "13043794"
(totally spent 5min 9s – ends at 2024-06-28T17:13:54.891Z)
necessary accounts resynced in 2004ms
▬ PivX 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 28.3848 PIVX (630ops) (DR84CJgDr6Dt7Pdpud6eDrWTkp3rhKzPoJ on 44'/77'/2'/0/329) #2 js:2:pivx:ToEA6mkkScBzPS3QNaWms316jJrjhxFoXsKpv21fDZnZUqeqnX1FpofXYA3ARA7qSEHn2wmdd7EPMM1qJ36CiFP3Ycu6p4EMHKYgV49aAFQYdwt:
2 UTXOs
14.4234      DP3uu1uBtpqcgniH5j8pAYQdFK4yEZsqC3 (change) df5b57888ade5cbb48a4e07c67dfc83a31abc8d828a46723de7de350294267da @2 (1404)
13.9614      DJRMB6AvsxuNuvfs3omJiHABPTrrTXAHBj ba320fa8b54c7eb2cf7843e83c3887ef611aff3190f09e097c62d1cd1ed594a1 @0 (1404)

max spendable ~28.3848
★ using mutation 'send max'
→ TO undefined: 0.00015 PIVX (620ops) (DRnJ7b8DZ82K6XmDmY5cgNFpcLaYWer1pB on 44'/77'/1'/0/297) #1 js:2:pivx:ToEA6mkkScBzPS3QK9QkPuwWHUEA284HMW86PxW1zkXJAAJa9zXWJjVwBvYEt5HTwDHyDpyfC2VRj3Sy9MBegtxX3kBM1dyiPx81KcwoA8DT75c:
✔️ transaction 
SEND MAX
TO DRnJ7b8DZ82K6XmDmY5cgNFpcLaYWer1pB
with feePerByte=11 (network fees: 0=12, 1=11, 2=10)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (216ms)
TX INPUTS (2):
14.4234      DP3uu1uBtpqcgniH5j8pAYQdFK4yEZsqC3 df5b57888ade5cbb48a4e07c67dfc83a31abc8d828a46723de7de350294267da@2
13.9614      DJRMB6AvsxuNuvfs3omJiHABPTrrTXAHBj ba320fa8b54c7eb2cf7843e83c3887ef611aff3190f09e097c62d1cd1ed594a1@0
TX OUTPUTS (1):
28.3848      DRnJ7b8DZ82K6XmDmY5cgNFpcLaYWer1pB @0 (0)
  amount: 28.38485462 PIVX
  estimated fees: 0.0000374 PIVX
  total spent: 28.38489202 PIVX
errors: 
warnings: 
✔️ has been signed! (4.7s) 
✔️ broadcasted! (102ms) optimistic operation: 
  -0.0000374 PIVX    OUT        696b3852ebe66960b2121e3b61da77a8b3106c7925b9ea02a050f0731a6200ab 2024-06-28T16:52
✔️ operation confirmed (22.8s): 
  -28.38489202 PIVX  OUT        696b3852ebe66960b2121e3b61da77a8b3106c7925b9ea02a050f0731a6200ab 2024-06-28T16:52
✔️ undefined: 0 PIVX (631ops) (DR84CJgDr6Dt7Pdpud6eDrWTkp3rhKzPoJ on 44'/77'/2'/0/329) #2 js:2:pivx:ToEA6mkkScBzPS3QNaWms316jJrjhxFoXsKpv21fDZnZUqeqnX1FpofXYA3ARA7qSEHn2wmdd7EPMM1qJ36CiFP3Ycu6p4EMHKYgV49aAFQYdwt:
0 UTXOs
(in 22.8s)
(in 4min 43s)
⚠️ TEST destination > account balance increased with transaction amount
Error: expect(received).toBe(expected) // Object.is equality

Expected: "2838500462"
Received: "2845978665"
(totally spent 5min 11s – ends at 2024-06-28T17:13:54.917Z)
necessary accounts resynced in 0.22ms
▬ Horizen 2.1.0-rc on nanoS 2.1.0
→ FROM undefined: 0.0490631 ZEN (488ops) (znmdzXqxiquszWfi3Q3Maxuz7QfP9hRfNHE on 44'/121'/1'/0/234) #1 js:2:zencash:xpub6C68jAb8xasfrBmUVvZbdXydhq15bdfePn1qhjb32azt3GkzoqBCQuRaZKPYp9T9uhr7TYCANdXanzeXfXp4qMjw7ijiPPNbBKmGRZRFeoa:
3 UTXOs
0.0184268    znn1vA1kdyPmvaGsAZ9Qddm5t66EhHhuTfJ (change) 1488b3abeb04c62422439d62ebee029a96db6a6836c23fb0487d7707bee7b724 @1 (1152)
0.0172129    znYqVGwUB56picSrJyvfthzXc8oaMpqZuPt c75f4f4a5bba44679e22e65db2dd3f33441e2b498b0358829cf8329075679007 @0 (1153)
0.0134234    znSSqwCHE6z7Un9b4UGaTc2gFdrds4iZH24 (change) 04a4ea6b227f379be341465b04369de71123b10971cc8c8443ba9df6d5887452 @1 (1719)

max spendable ~0.0490534
★ using mutation 'send OP_RETURN transaction'
→ TO undefined: 0.187966 ZEN (491ops) (zncJcZu6JSDPyzos5RqDHKqypaCuebZNTmG on 44'/121'/3'/0/259) #3 js:2:zencash:xpub6C68jAb8xasfwaE1WeCTh2JhK4KMh64oUaNn2MJCpVdjBmV7cdLhW8xqAfrb8eerM3wtiwMg9sMZkjA62QMH1rMDNbr97uLKNZohEX7c1cq:
✔️ transaction 
SEND 0.01 ZEN
TO zncJcZu6JSDPyzos5RqDHKqypaCuebZNTmG
with feePerByte=2 (network fees: 0=3, 1=2, 2=1)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (113ms)
TX INPUTS (1):
0.0134234    znSSqwCHE6z7Un9b4UGaTc2gFdrds4iZH24 04a4ea6b227f379be341465b04369de71123b10971cc8c8443ba9df6d5887452@1
TX OUTPUTS (3):
0.01         zncJcZu6JSDPyzos5RqDHKqypaCuebZNTmG @0 (0)
0            @1 (0)
0.0034168    znS2Epr2XTHpxoYQ3xLAgdkdbg6kBZjwDBa (change) @2 (0)
  amount: 0.01 ZEN
  estimated fees: 0.00000664 ZEN
  total spent: 0.01000664 ZEN
errors: 
warnings: 
✔️ has been signed! (5.8s) {"operation":{"id":"js:2:zencash:xpub6C68jAb8xasfrBmUVvZbdXydhq15bdfePn1qhjb32azt3GkzoqBCQuRaZKPYp9T9uhr7TYCANdXanzeXfXp4qMjw7ijiPPNbBKmGRZRFeoa:--OUT","hash":"","type":"OUT","senders":["znSSqwCHE6z7Un9b4UGaTc2gFdrds4iZH24"],"recipients":["zncJcZu6JSDPyzos5RqDHKqypaCuebZNTmG"],"accountId":"js:2:zencash:xpub6C68jAb8xasfrBmUVvZbdXydhq15bdfePn1qhjb32azt3GkzoqBCQuRaZKPYp9T9uhr7TYCANdXanzeXfXp4qMjw7ijiPPNbBKmGRZRFeoa:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-06-28T16:43:09.042Z","value":"1000664","fee":"664"},"signature":"0100000001527488d5f69dba43848ccc7109b12311e79d36045b4641e39b377f226beaa404010000006b483045022100e0fe96c5236183adbcd5cf7af387063eaa7f6bd7e537b69e12570e4d9f6e901402206c9b2e12c67f348126b1a98a05b20035696cdd07932b33117fad581461d66aa0012103660583acc5eb8ad98f5df29d390db1d81e8f02cee74c3899950efb1e7e0b9811ffffffff0340420f00000000003f76a9147b103f4b6323e30ed6d65af88beb7319a219924788ac209ec9845acb02fab24e1c0368b3b517c1a4488fba97f0e3459ac053ea0100000003c01f02b40000000000000000156a13636861726c6579206c6f766573206865696469b0360500000000003f76a9140a462f3944b2fef00897a7e2207f9c4a198ca44e88ac209ec9845acb02fab24e1c0368b3b517c1a4488fba97f0e3459ac053ea0100000003c01f02b400000000"}
⚠️ TEST during broadcast
LedgerAPI4xx: An exception occurred during transaction send: 68: op-checkblockatheight-needed
(totally spent 6.3s – ends at 2024-06-28T17:13:54.922Z)
necessary accounts resynced in 0.10ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00162281 𝚝ETH (148ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
max spendable ~0.00162281
★ using mutation 'move 50%'
→ TO undefined: 0.00134412 𝚝ETH (178ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
✔️ transaction 
SEND  0.000811409786930162 𝚝ETH
TO 0x90bD48144e08b66490BcA9a756BDe9f004F17857
STATUS (1199ms)
  amount: 0.000811409786930162 𝚝ETH
  estimated fees: 0.002079949154661 𝚝ETH
  total spent: 0.002891358941591162 𝚝ETH
errors: gasPrice NotEnoughGas, amount NotEnoughBalance
warnings: feeTooHigh FeeTooHigh
⚠️ TEST mutation must not have tx status errors
NotEnoughGas: NotEnoughGas
(totally spent 1200ms – ends at 2024-06-28T17:13:54.924Z)
necessary accounts resynced in 0.24ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00134412 𝚝ETH (178ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
max spendable ~0.00134412
★ using mutation 'move 50%'
→ TO undefined: 0.00026874 𝚝ETH (132ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:ethereum_sepolia:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
✔️ transaction 
SEND  0.000672064758666243 𝚝ETH
TO 0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9
STATUS (975ms)
  amount: 0.000672064758666243 𝚝ETH
  estimated fees: 0.001872214972677 𝚝ETH
  total spent: 0.002544279731343243 𝚝ETH
errors: gasPrice NotEnoughGas, amount NotEnoughBalance
warnings: feeTooHigh FeeTooHigh
⚠️ TEST mutation must not have tx status errors
NotEnoughGas: NotEnoughGas
(totally spent 984ms – ends at 2024-06-28T17:13:54.927Z)
necessary accounts resynced in 0.25ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00121636 ETH (8ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892: (! sum of ops 0.001212784223263104 ETH)  TokenAccount PacMoon: 45.888580082276544433 PAC (4 ops)
max spendable ~0.00121506
★ using mutation 'send max'
→ TO undefined: 0.00328625 ETH (3ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:blast:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
✔️ transaction 
SEND MAX
TO 0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25
STATUS (277ms)
  amount: 0.001215852006919081 ETH
  estimated fees: 0.000000513747192 ETH
  total spent: 0.001216365754111081 ETH
errors: 
warnings: 
✔️ has been signed! (5.2s) {"operation":{"id":"js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:--OUT","hash":"","type":"OUT","senders":["0x60A4E7657D8df28594ac4A06CDe01E18E948a892"],"recipients":["0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25"],"accountId":"js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:","blockHash":null,"blockHeight":null,"extra":{},"date":"2024-06-28T16:51:35.547Z","value":"1216365754111081","fee":"513747192000","transactionSequenceNumber":5,"transactionRaw":{"amount":"1215852006919081","recipient":"0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25","useAllAmount":true,"family":"evm","mode":"send","chainId":81457,"nonce":5,"gasLimit":"21000","feesStrategy":"medium","type":2,"maxFeePerGas":"24464152","maxPriorityFeePerGas":"426494"}},"signature":"0x02f87383013e3105830681fe8401754b1882520894b6e8b0371a15cdadf1d8eda34f78870a5e688b25870451cf9af8cba980c080a077a207838d71ac9683a1855bdb05f145da1a4fd3e2d6a9112de35fbcd4a58a03a076a6ed20f495753219a640b6881a383e21c870bad504b8b7dd2fdd9d721416d4"}
⚠️ TEST during broadcast
InsufficientFunds: InsufficientFunds
(totally spent 6.1s – ends at 2024-06-28T17:13:54.929Z)
necessary accounts resynced in 26.4s
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00435857 ETH (5ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:blast:0x90bD48144e08b66490BcA9a756BDe9f004F17857: (! sum of ops 0.004357436172467136 ETH)  TokenAccount PacMoon: 0 PAC (4 ops)
max spendable ~0.00435723
★ using mutation 'move 50%'
→ TO undefined: 0.00328625 ETH (3ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:blast:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
✔️ transaction 
SEND  0.002178619241513318 ETH
TO 0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25
STATUS (166ms)
  amount: 0.002178619241513318 ETH
  estimated fees: 0.000000524189043 ETH
  total spent: 0.002179143430556318 ETH
errors: 
warnings: 
✔️ has been signed! (3.5s) 
✔️ broadcasted! (198ms) optimistic operation: 
  -0.002179143430556318 ETH OUT        0x4b309c7a38b374872bd3d2b4795648099c9609e59cc866466f26ff256dbd4b8d 2024-06-28T16:52
(in 10min 15s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "2179684358158318"
Received: "2179668652698917"
(totally spent 10min 19s – ends at 2024-06-28T17:13:54.930Z)
necessary accounts resynced in 31.4s
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.00121636 ETH (8ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892: (! sum of ops 0.001212784223263104 ETH)  TokenAccount PacMoon: 45.888580082276544433 PAC (4 ops)
max spendable ~0.00121524
★ using mutation 'move 50%'
→ TO undefined: 0 ETH (0ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:blast:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
✔️ transaction 
SEND  0.000607623334113541 ETH
TO 0xe404f128644459C5A0F6FAc6824AdA8F94798c8f
STATUS (156ms)
  amount: 0.000607623334113541 ETH
  estimated fees: 0.000000443411388 ETH
  total spent: 0.000608066745501541 ETH
errors: 
warnings: 
✔️ has been signed! (2911ms) 
✔️ broadcasted! (176ms) optimistic operation: 
  -0.000608066745501541 ETH OUT        0xecf86fb243f3a8aa96fe8149f66c803e04299778c8279945e43dbe237f52f3ee 2024-06-28T17:03
(in 10min 16s)
⚠️ TEST account balance moved with operation value
Error: expect(received).toBe(expected) // Object.is equality

Expected: "608514251805540"
Received: "608499676157825"
(totally spent 10min 19s – ends at 2024-06-28T17:13:54.976Z)
necessary accounts resynced in 3.94ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.0500014 𝚝ETH (1ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892: (! sum of ops 0.05 𝚝ETH)
max spendable ~0.0500014
★ using mutation 'send max'
→ TO undefined: 0 𝚝ETH (0ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:blast_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
✔️ transaction 
SEND MAX
TO 0x90bD48144e08b66490BcA9a756BDe9f004F17857
STATUS (816ms)
  amount: 0.05000146334999558 𝚝ETH
  estimated fees: 0.000000022691445 𝚝ETH
  total spent: 0.05000148604144058 𝚝ETH
errors: 
warnings: 
⚠️ TEST deviceAction confirm step 'Amount'
Error: expect(received).toMatchObject(expected)

- Expected  - 1
+ Received  + 1

  Object {
-   "Amount": "𝚝ETH 0.05000146334999558",
+   "Amount": "ETH 0.05000146334999558",
  }
(totally spent 2117ms – ends at 2024-06-28T17:13:54.979Z)
necessary accounts resynced in 0.15ms
▬ NEAR 2.0.0 on nanoS 2.1.0
→ FROM undefined: 0.444538 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 'Withdraw'
✔️ transaction 
WITHDRAW  0.00003244772989024753 NEAR
TO ledgerbyfigment.poolv1.near
STATUS (283ms)
  amount: 0.00003244772989024753 NEAR
  estimated fees: 0.0015 NEAR
  total spent: 0.0015 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.3s – ends at 2024-06-28T17:13:54.980Z)
necessary accounts resynced in 0.18ms
▬ NEAR 2.0.0 on nanoS 2.1.0
→ FROM undefined: 0.445089 NEAR (9ops) (e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2 on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2:nearbip44h (! sum of ops 0.53976724470021827 NEAR)
max spendable ~0.392221
★ using mutation 'Unstake'
✔️ transaction 
UNSTAKE  0.00010083015178525563 NEAR
TO ledgerbyfigment.poolv1.near
STATUS (309ms)
  amount: 0.00010083015178525563 NEAR
  estimated fees: 0.0015 NEAR
  total spent: 0.0015 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.3s – ends at 2024-06-28T17:13:54.982Z)
necessary accounts resynced in 0.22ms
▬ Solana 1.2.0 on nanoS 2.1.0
→ FROM undefined: 0.0332662 SOL (99ops) (BsQzVpyrHi5ivGaouc46w9GekQgbiJcWNAhsmzzRuo9M on 44'/501'/4') solanaSub#4 js:2:solana:BsQzVpyrHi5ivGaouc46w9GekQgbiJcWNAhsmzzRuo9M:solanaSub (! sum of ops -0.001476812 SOL)
max spendable ~0.0299721
★ using mutation 'Delegate'
✔️ transaction 
  CREATE STAKE ACCOUNT: FUDwhz6mRTwh1U4TrBeajZTQVmPWJqzjBuZ6niSuPi2j
  FROM: BsQzVpyrHi5ivGaouc46w9GekQgbiJcWNAhsmzzRuo9M
  AMOUNT: 0.00238288 SOL
  SEED: stake:0.25036318432592375
  VALIDATOR: FVhMWs3bbayWpUqDAbWUPH813gzFzJEo8fzhLhhkGstp
STATUS (3.2s)
  amount: 0.0001 SOL
  estimated fees: 0.00228788 SOL
  total spent: 0.00238788 SOL
errors: 
warnings: 
✔️ has been signed! (2661ms) 
✔️ broadcasted! (9.8s) optimistic operation: 
  -0.00238788 SOL    DELEGATE   WSbxZyRET4GSe1rT6qUVenVqH1S5xr2hq5FyFw67GL6oerDGQWvopFFXRJS3JuzMkxg37HyS68DbkULzGSzEVCf 2024-06-28T17:01
(in 2min 9s)
⚠️ Error: expected delegation not found in account resources
(totally spent 2min 25s – ends at 2024-06-28T17:13:54.985Z)
necessary accounts resynced in 8.3s
▬ Solana 1.2.0 on nanoS 2.1.0
→ FROM undefined: 0.111244 SOL (99ops) (2kd3E2Kh7xvcQ1UVVfpys5GHVo1KKKRZXVmuTmkYWK4n on 44'/501'/5') solanaSub#5 js:2:solana:2kd3E2Kh7xvcQ1UVVfpys5GHVo1KKKRZXVmuTmkYWK4n:solanaSub (! sum of ops 0.110306033 SOL)
max spendable ~0.0887732
★ using mutation 'Withdraw Delegation'
✔️ transaction 
  WITHDRAW FROM: 5aqFPx2oUrHd3W8RGtJXk3kjjJhCQJQd5YZNLSrxpVUA
  AMOUNT: 0.002386809 SOL
  TO: 2kd3E2Kh7xvcQ1UVVfpys5GHVo1KKKRZXVmuTmkYWK4n
STATUS (630ms)
  amount: 0.002386809 SOL
  estimated fees: 0.000005 SOL
  total spent: 0.000005 SOL
errors: 
warnings: 
✔️ has been signed! (2180ms) 
✔️ broadcasted! (10.6s) optimistic operation: 
  +0.002381809 SOL   IN         4XrWSipRgK6Z9fYJMaZWUrW7agHBgkwnJ8RikVLi6gSVQeqdBEQqzi9MncRiZCDhvjVmSpZhjdjxKPQEpK5D1Jwk 2024-06-28T17:04
⚠️ NetworkError: failed to get Stake Activation 5aqFPx2oUrHd3W8RGtJXk3kjjJhCQJQd5YZNLSrxpVUA: Invalid param: account not found
(totally spent 32.6s – ends at 2024-06-28T17:13:54.987Z)
necessary accounts resynced in 0.12ms
▬ TezosWallet 3.0.3 on nanoS 2.1.0
→ FROM undefined: 5.28869 XTZ (152ops) (tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF on 44'/1729'/0'/0') tezbox#0 js:2:tezos:0240051fc51799e60dcc8870415b87fc4fd948e71b23fdc0d9b8ac7438cf7d4708:tezbox
max spendable ~5.28803
★ 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.644017 XTZ
TO tz1he4fPXP3c9fFrztYT3k7KyYuLb28arFNn
with fees=0.000189
with gasLimit=101
with storageLimit=277
(estimatedFees 0.000563)
STATUS (1733ms)
  amount: 2.644017 XTZ
  estimated fees: 0.000563 XTZ
  total spent: 2.64458 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.4s – ends at 2024-06-28T17:13:54.990Z)
⚠️ 43 spec hints
  • Spec Celo:
    • mutations should define a test(): Celo: Move 50% to another account, Celo: Send max to another account, Celo: Register Account, Celo: Unlock, Celo: Lock, Celo: Vote, Celo: Activate Vote, Celo: RevokeVote, Celo: Withdraw
    • mutations should define a testDestination(): Celo: Move 50% to another account, Celo: Send max to another account
    • mutation Celo: Send max to another account: unexpected status.warnings.amount = CeloAllFundsWarning: CeloAllFundsWarning – Please implement expectStatusWarnings on the mutation if expected
  • Spec osmosis:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
  • Spec dydx:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec umee:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
    • mutation claim rewards: unexpected status.warnings.claimReward = ClaimRewardsFeesWarning: ClaimRewardsFeesWarning – Please implement expectStatusWarnings on the mutation if expected
  • Spec quicksilver:
    • mutation claim rewards: unexpected status.warnings.claimReward = ClaimRewardsFeesWarning: ClaimRewardsFeesWarning – Please implement expectStatusWarnings on the mutation if expected
  • Spec onomy:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
  • Spec sei_network:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Crypto org:
    • mutations should define a test(): move 50%, send max
    • mutations should define a testDestination(): move 50%, send max
  • Spec Elrond:
    • mutations should define a testDestination(): move some ESDT
  • Spec Stacks:
    • mutations should define a testDestination(): Send 50%~, Transfer Max
  • Spec Stellar:
    • mutations should define a testDestination(): Send max XLM, move ~50% XLM
    • mutation Send max XLM: unexpected status.warnings.transaction = StellarFeeSmallerThanRecommended: StellarFeeSmallerThanRecommended – Please implement expectStatusWarnings on the mutation if expected
  • Spec VeChain VTHO:
    • mutations should define a testDestination(): move ~50% VTHO
  • Spec VeChain VET:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Algorand:
    • mutations should define a testDestination(): opt-In ASA available
  • Spec Bitcoin Testnet:
    • mutation optimize-size: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
    • mutation move ~50%: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Bitcoin Gold:
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Komodo:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
  • Spec PivX:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec ZCash:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Horizen:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
  • Spec Ethereum Classic:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Flare:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec RSK:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec OP Mainnet:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec OP Sepolia:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Base:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Linea Sepolia:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Blast Sepolia:
    • There are not enough accounts (2) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Scroll:
    • There are not enough accounts (2) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Scroll Sepolia:
    • There are not enough accounts (2) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Tezos:
    • mutations should define a test(): send unrevealed, send revealed, send max (non delegating), delegate unrevealed, delegate revealed, undelegate unrevealed, undelegate revealed
    • There are not enough accounts (3) to cover all mutations (7).
      Please increase the account target to at least 8 accounts
Portfolio ($1,163.52) – Details of the 68 currencies
Spec (accounts) State Remaining Runs (est) funds?
Casper (8) 421 ops , 24,979 CSPR ($525.56) 💪 999+ 02026b93627ed2f76551e7cef0466468b12db8fab806266107b69947d9c95ced9e7c
Celo (12) 1627 ops (+10), 17.0484 CELO ($10.46) 💪 512 0x246FFDB387F1F8c48072E1C13443540017bC71b7
osmosis (18) 76 ops (+8), 20.1974 OSMO ($10.93) 👍 392 osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l
desmos (18) 158 ops , 138.233 DSM ($0.40) 💪 999+ desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454
dydx (18) 4 ops , 0.00956286 dydx ($0.02) ⚠️ 1 dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6
umee (18) 77 ops , 719.189 UMEE ($1.29) 💪 999+ umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l
persistence (18) 1068 ops , 28.4626 XPRT ($5.55) 💪 702 persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf
quicksilver (18) 15 ops , 21.1741 QCK ($0.36) 💪 999+ quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l
onomy (18) 692 ops , 1.80472 NOM ($0.18) 💪 999+ onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg
sei_network (16) 0 ops , 0.077475 SEI ($0.00) sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v
stargaze (18) 164 ops , 879.334 STARS ($10.26) 💪 696 stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu
coreum (18) 1558 ops , 40.7128 CORE ($4.73) 👍 233 core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk
injective (0) 0 ops , 🤷‍♂️ ``
Crypto org (7) 209 ops , 34.751 CRO ($3.18) 💪 999+ cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra
Elrond (8) 2402 ops (+6), 0.943863 EGLD ($27.95) 💪 999+ erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp
Hedera (4) 1374 ops (+6), 39.0886 HBAR ($3.06) 💪 999+ 0.0.3663977
InternetComputer (8) 640 ops (+4), 1.01397 ICP ($8.28) 💪 999+ f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209
Stacks (4) 540 ops (+2), 32.3536 STX ($54.66) 💪 636 SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2
Stellar (6) 2753 ops (+6), 58.9791 XLM ($6.12) 💪 999+ GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ
VeChain VTHO (4) 13 ops , 5 VET ($0.26) ⚠️ 12 0xc4B17901FECf86932c3bb296BB00E7c6816Fd416
VeChain VET (4) 13 ops , 5 VET ($0.26) ⚠️ 12 0xc4B17901FECf86932c3bb296BB00E7c6816Fd416
Algorand (6) 2223 ops (+6), 9.58561 ALGO ($3.26) 💪 999+ TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4
Bitcoin Testnet (13) 1445 ops (+6), 0.00141343 𝚝BTC ($0.00) ⚠️ 1 tb1qztngvvxhun0a0jgg3jugynfenmcckdhvtkfa2l
Bitcoin Cash (7) 3509 ops (+10), 0.0470228 BCH ($18.21) 💪 754 qpmewr8nhqsjrp3q84ryrtqeafm3nacfh5dapuy2lw
Bitcoin Gold (6) 2685 ops (+6), 0.389422 BTG ($9.92) 💪 999+ AVcG3GAuUgZiRsppM9cFvgw8BKFSzvY7r5
Dash (7) 2896 ops (+8), 0.106918 DASH ($2.64) 💪 999+ Xr2bgKi7rV4Kfef8wxyarYwRraphrwSMdJ
Digibyte (9) 3722 ops (+10), 443.928 DGB ($3.69) 💪 999+ dgb1q2l8jvxa5tnt4nz24l5gndlvqafszjxtvhlcku2
DogeCoin (7) 1924 ops (+4), 25.4137 DOGE ($3.14) ⚠️ 46 DG2j2QoUDVbH1QCG5crtXAF7NLJrxruzX3
Komodo (5) 2003 ops (+8), 17.508 KMD ($5.76) 💪 999+ RJThtiSLRokvTGfkKTyhJ2cJ1FXfuR5x9d
Litecoin (9) 3673 ops (+8), 0.342289 LTC ($24.98) 💪 999+ ltc1q2nwmf47ue0dckcfyhvhe3et39n0mtw05ccqa4z
PivX (5) 2593 ops (+8), 46.6252 PIVX ($12.49) 💪 999+ DRGkvbXytwU9zUUmoXzXu95NTBWStXWCrm
ZCash (5) 1502 ops , 0.00368057 ZEC ($0.07) ⚠️ 2 t1SDpcaNZmbCH5TCCb5vNAh5bXs3isDtA5h
Horizen (5) 1968 ops (+4), 0.420869 ZEN ($2.80) 💪 999+ znkr3rWWmAZWXdc7kJyHgmj7geSXJKSdBTF
Ethereum Classic (6) 685 ops , 0.232476 ETC ($5.52) 💪 999+ 0x7584df0780C5eB83b26aE55abBc265014f8bf897
Polygon (10) 2524 ops (+9), 18.8629 MATIC ($10.63) ⚠️ 21 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Sepolia (6) 773 ops , 0.00386354 𝚝ETH ($0.00) ⚠️ 1 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Ethereum Holesky (6) 757 ops (+6), 0.233805 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum (6) 292 ops (+6), 0.00548699 ETH ($18.58) 💪 670 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Arbitrum Sepolia (6) 537 ops (+6), 0.990498 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Flare (6) 2158 ops , 4.00005 FLR ($0.10) 👍 295 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Songbird (6) 2528 ops (+6), 937.26 SGB ($8.55) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonbeam (6) 2337 ops (+6), 59.613 GLMR ($12.91) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
RSK (5) 794 ops , 0.00030914 RBTC ($18.84) 👍 56 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Bittorent Chain (6) 2152 ops (+6), 1,491,223 BTT ($1.29) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Mainnet (5) 121 ops , 0.00286711 ETH ($28.46) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
OP Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Energy Web (6) 1906 ops (+6), 7.52831 EWT ($16.34) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Astar (6) 2078 ops (+6), 327.756 ASTR ($22.34) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Metis (6) 2004 ops (+6), 0.145478 METIS ($7.03) 👍 121 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Moonriver (6) 1978 ops (+6), 2.23577 MOVR ($25.07) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Velas EVM (6) 506 ops (+6), 912.014 VLX ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Syscoin (6) 2024 ops (+6), 57.0756 SYS ($7.35) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Polygon zkEVM Testnet (0) 0 ops , 🤷‍♂️ ``
Base (5) 249 ops , 0.00269293 ETH ($9.12) 👍 76 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Base Sepolia (6) 529 ops (+6), 0.99003 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Klaytn (6) 207 ops (+6), 8.81624 KLAY ($1.43) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Neon EVM (6) 1036 ops (+6), 16.0946 NEON ($10.50) 👍 290 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Lukso (6) 929 ops (+6), 0.490562 LYX ($1.27) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea (6) 641 ops (+6), 0.0068217 ETH ($23.10) 👍 75 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Linea Sepolia (1) 0 ops , 0 𝚝ETH ($0.00) 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Blast (4) 20 ops (+4), 0.00886119 ETH ($34.44) 👍 101 0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25
Blast Sepolia (2) 1 ops , 0.0500014 𝚝ETH ($0.00) 💪 999+ 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Scroll (2) 2 ops , 0.01 ETH ($39.11) 💪 768 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
Scroll Sepolia (2) 1 ops , 0.05 𝚝ETH ($0.00) 💪 996 0x60A4E7657D8df28594ac4A06CDe01E18E948a892
NEAR (11) 226 ops , 0.785485 NEAR ($6.33) 👍 175 0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf
Solana (11) 946 ops (+5), 0.345451 SOL ($69.87) 💪 999+ 5vhAGihUC1uKucJvreCgWWXB6LEptPwkwpqhkq9M6iaz
Tezos (3) 156 ops , 5.28869 XTZ ($4.05) 👍 182 tz1aDK1uFAmnUXZ7KJPEmcCEFeYHiVZ56zVF
XRP (4) 604 ops (+4), 14.0048 XRP ($20.82) 💪 999+ r9etPtq3oboweMPju5gdYufmvwhH2euz8z
undefined: 0 CSPR (77ops) (02026b93627ed2f76551e7cef0466468b12db8fab806266107b69947d9c95ced9e7c on 44'/506'/0'/0/0) casper_wallet#0 js:2:casper:02026b93627ed2f76551e7cef0466468b12db8fab806266107b69947d9c95ced9e7c:casper_wallet
undefined: 0 CSPR (76ops) (02034a7c5519d553bc282f768dca044e18746b7be9b711f2f310c190f33b3cbc4a4f on 44'/506'/0'/0/1) casper_wallet#1 js:2:casper:02034a7c5519d553bc282f768dca044e18746b7be9b711f2f310c190f33b3cbc4a4f:casper_wallet
undefined: 3,124.98 CSPR (59ops) (0203b56bc181780f8fb173bafd8d483d6911282ec46d72692d0a5bbbb29ea242ed76 on 44'/506'/0'/0/2) casper_wallet#2 js:2:casper:0203b56bc181780f8fb173bafd8d483d6911282ec46d72692d0a5bbbb29ea242ed76:casper_wallet
undefined: 3,122.33 CSPR (75ops) (0203d14bf1367769813e9c7233db26dc2208ca211532a0c2b1189992dc01d4bc098e on 44'/506'/0'/0/3) casper_wallet#3 js:2:casper:0203d14bf1367769813e9c7233db26dc2208ca211532a0c2b1189992dc01d4bc098e:casper_wallet
undefined: 0 CSPR (60ops) (02039ae761a635a37868cf35e6de9799cba9fc4cdb9a3afbba6ab5c83291f13bbec8 on 44'/506'/0'/0/4) casper_wallet#4 js:2:casper:02039ae761a635a37868cf35e6de9799cba9fc4cdb9a3afbba6ab5c83291f13bbec8:casper_wallet
undefined: 0 CSPR (35ops) (02033ceac656c99270c432fd59a60102b4e807977f67c429298ea3436f2ce41a1b1b on 44'/506'/0'/0/5) casper_wallet#5 js:2:casper:02033ceac656c99270c432fd59a60102b4e807977f67c429298ea3436f2ce41a1b1b:casper_wallet
undefined: 18,731.6 CSPR (39ops) (02035addb3ef3863b0b44054e638f7c61f74319d5da70b8e98fef9ea984f7db6edac on 44'/506'/0'/0/6) casper_wallet#6 js:2:casper:02035addb3ef3863b0b44054e638f7c61f74319d5da70b8e98fef9ea984f7db6edac:casper_wallet
undefined: 0 CSPR (0ops) (0202b75fd56f06b03e675b33b0a136b6c87810c5a0435281dfe567c79596e0876fa4 on 44'/506'/0'/0/7) casper_wallet#7 js:2:casper:0202b75fd56f06b03e675b33b0a136b6c87810c5a0435281dfe567c79596e0876fa4:casper_wallet
undefined: 3.31407 CELO (221ops) (0x246FFDB387F1F8c48072E1C13443540017bC71b7 on 44'/52752'/0'/0/0) #0 js:2:celo:0x246FFDB387F1F8c48072E1C13443540017bC71b7:
undefined: 0.0288969 CELO (179ops) (0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8 on 44'/52752'/1'/0/0) #1 js:2:celo:0xfbD6f2Ee91DdEFFB77FA360d851d5f305BE9ceF8:
undefined: 3.22617 CELO (182ops) (0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0 on 44'/52752'/2'/0/0) #2 js:2:celo:0x7993d97bbB2328a9Daf24f3d9855d7cc85f0c2A0:
undefined: 0.405281 CELO (134ops) (0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2 on 44'/52752'/3'/0/0) #3 js:2:celo:0x709b0F0Ba5719F76320d96195D17a56d35dcf1f2:
undefined: 3.21084 CELO (151ops) (0xA6EB5541E3527d07CaD4dD14E5454820DB858160 on 44'/52752'/4'/0/0) #4 js:2:celo:0xA6EB5541E3527d07CaD4dD14E5454820DB858160:
undefined: 0.014363 CELO (142ops) (0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE on 44'/52752'/5'/0/0) #5 js:2:celo:0x6baA538b3eC946E822E1cE1D1E55849A3cfc52EE:
undefined: 0.00528132 CELO (133ops) (0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc on 44'/52752'/6'/0/0) #6 js:2:celo:0x0119a3BCC7140f0cab7bBcA6340838B05Ab80bBc:
undefined: 0.00051924 CELO (143ops) (0xc054A142A0e8793bC860A34971C3eb549064A54a on 44'/52752'/7'/0/0) #7 js:2:celo:0xc054A142A0e8793bC860A34971C3eb549064A54a:
undefined: 0.393453 CELO (137ops) (0x78AB368133f5Bf101849475dD4a5747E6d1A897a on 44'/52752'/8'/0/0) #8 js:2:celo:0x78AB368133f5Bf101849475dD4a5747E6d1A897a:
undefined: 2.27393 CELO (104ops) (0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8 on 44'/52752'/9'/0/0) #9 js:2:celo:0xC9832b63fd0ADb1a2F59C9616E282398aDEcC0a8:
undefined: 4.2593 CELO (101ops) (0x3f6AB52EDA4a9d38b3cf208E3fB4c3f87C53002D on 44'/52752'/10'/0/0) #10 js:2:celo:0x3f6AB52EDA4a9d38b3cf208E3fB4c3f87C53002D:
undefined: 0 CELO (0ops) (0xA07f9fb2bd5A8799081d5519897dB27B257D036D on 44'/52752'/11'/0/0) #11 js:2:celo:0xA07f9fb2bd5A8799081d5519897dB27B257D036D:
undefined: 0.004937 OSMO (6ops) (osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l on 44'/118'/0'/0/0) #0 js:2:osmo:osmo1rs97j43nfyvc689y5rjvnnhrq3tes6ghn8m44l:
undefined: 0.194514 OSMO (4ops) (osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf on 44'/118'/1'/0/0) #1 js:2:osmo:osmo1qvtnzptp30maznnhdg30xl2jtdq2shpn08kxaf:
undefined: 2.09796 OSMO (4ops) (osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv on 44'/118'/2'/0/0) #2 js:2:osmo:osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv:
undefined: 0.002544 OSMO (3ops) (osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k on 44'/118'/3'/0/0) #3 js:2:osmo:osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k:
undefined: 0.006384 OSMO (4ops) (osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0 on 44'/118'/4'/0/0) #4 js:2:osmo:osmo1vc7s929uh2yxyhau4wsg5th9jzedvkurt8rqd0:
undefined: 0.069908 OSMO (11ops) (osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw on 44'/118'/5'/0/0) #5 js:2:osmo:osmo1qgrd8srhvald995uvpeyncvwg7afgkmr88spsw:
undefined: 0 OSMO (7ops) (osmo1n6vccpa77x7xyhnk98jy6gg3rmgjkazxuyk2ng on 44'/118'/6'/0/0) #6 js:2:osmo:osmo1n6vccpa77x7xyhnk98jy6gg3rmgjkazxuyk2ng:
undefined: 0.152769 OSMO (3ops) (osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp on 44'/118'/7'/0/0) #7 js:2:osmo:osmo1v283e7h2plllyjwgqrexv2ge5e4z252u26g0qp:
undefined: 0 OSMO (5ops) (osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d on 44'/118'/8'/0/0) #8 js:2:osmo:osmo1g9t7sv8y0mvu2qd0xguc40xujnu94rh5teku2d:
undefined: 0.133128 OSMO (9ops) (osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5 on 44'/118'/9'/0/0) #9 js:2:osmo:osmo1jgk668h53gd9wn09mndq7uzgk80nr5d82trkg5:
undefined: 0.256206 OSMO (2ops) (osmo1733g3dfzj6tulcqtvz628ypuqj0hvlrzruntc8 on 44'/118'/10'/0/0) #10 js:2:osmo:osmo1733g3dfzj6tulcqtvz628ypuqj0hvlrzruntc8:
undefined: 0.274639 OSMO (6ops) (osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg on 44'/118'/11'/0/0) #11 js:2:osmo:osmo1q09970dekm5hdku5tta7p9w6kldyyf25xfc0yg:
undefined: 0.441947 OSMO (1ops) (osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m on 44'/118'/12'/0/0) #12 js:2:osmo:osmo1yhlye27fl05kg4nhmeu5d579m8ups9ew74425m:
undefined: 0.577045 OSMO (4ops) (osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9 on 44'/118'/13'/0/0) #13 js:2:osmo:osmo1890w5jltm6wmq2jr9f9e8x4vhs5fx30qc05uc9:
undefined: 1.49692 OSMO (5ops) (osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd on 44'/118'/14'/0/0) #14 js:2:osmo:osmo1yq6ehsdwpsvae9exgjmzt4dx78y4j5aps96qjd:
undefined: 13.3795 OSMO (2ops) (osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau on 44'/118'/15'/0/0) #15 js:2:osmo:osmo10wwjgt3uluxt4zq4qxnkcv96nyz4catal4vpau:
undefined: 1.36541 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 (4ops) (desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454 on 44'/118'/0'/0/0) #0 js:2:desmos:desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454:
undefined: 0.000317 DSM (8ops) (desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur on 44'/118'/1'/0/0) #1 js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:
undefined: 0.000745 DSM (6ops) (desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx on 44'/118'/2'/0/0) #2 js:2:desmos:desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx:
undefined: 0 DSM (13ops) (desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu on 44'/118'/3'/0/0) #3 js:2:desmos:desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu:
undefined: 0 DSM (11ops) (desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9 on 44'/118'/4'/0/0) #4 js:2:desmos:desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9:
undefined: 0.002098 DSM (18ops) (desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y on 44'/118'/5'/0/0) #5 js:2:desmos:desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y:
undefined: 0 DSM (6ops) (desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz on 44'/118'/6'/0/0) #6 js:2:desmos:desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz:
undefined: 0.00846 DSM (9ops) (desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt on 44'/118'/7'/0/0) #7 js:2:desmos:desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt:
undefined: 0.003844 DSM (9ops) (desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8 on 44'/118'/8'/0/0) #8 js:2:desmos:desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8:
undefined: 0.009818 DSM (10ops) (desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7 on 44'/118'/9'/0/0) #9 js:2:desmos:desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7:
undefined: 0 DSM (7ops) (desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted on 44'/118'/10'/0/0) #10 js:2:desmos:desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted:
undefined: 0.000569 DSM (2ops) (desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z on 44'/118'/11'/0/0) #11 js:2:desmos:desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z:
undefined: 0.087107 DSM (5ops) (desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243 on 44'/118'/12'/0/0) #12 js:2:desmos:desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243:
undefined: 76.0722 DSM (23ops) (desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0 on 44'/118'/13'/0/0) #13 js:2:desmos:desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0:
undefined: 16.1559 DSM (5ops) (desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8 on 44'/118'/14'/0/0) #14 js:2:desmos:desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8:
undefined: 22.9587 DSM (20ops) (desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk on 44'/118'/15'/0/0) #15 js:2:desmos:desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk:
undefined: 29.6404 DSM (2ops) (desmos1xr8krhp99mp9ncrz6dfgre542nv0rc8llq6jdf on 44'/118'/16'/0/0) #16 js:2:desmos:desmos1xr8krhp99mp9ncrz6dfgre542nv0rc8llq6jdf:
undefined: 0 DSM (0ops) (desmos102w826rmvswfhs4zsv2ujhylmd92c28pxuklpn on 44'/118'/17'/0/0) #17 js:2:desmos:desmos102w826rmvswfhs4zsv2ujhylmd92c28pxuklpn:
undefined: 0.00028612 dydx (0ops) (dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6 on 44'/118'/0'/0/0) #0 js:2:dydx:dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6:
undefined: 0.0006465 dydx (1ops) (dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv on 44'/118'/1'/0/0) #1 js:2:dydx:dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv:
undefined: 0.00081036 dydx (0ops) (dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf on 44'/118'/2'/0/0) #2 js:2:dydx:dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf:
undefined: 0.00103948 dydx (0ops) (dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en on 44'/118'/3'/0/0) #3 js:2:dydx:dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en:
undefined: 0 dydx (0ops) (dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2 on 44'/118'/4'/0/0) #4 js:2:dydx:dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2:
undefined: 0.00034181 dydx (2ops) (dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt on 44'/118'/5'/0/0) #5 js:2:dydx:dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt:
undefined: 0.00123005 dydx (0ops) (dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d on 44'/118'/6'/0/0) #6 js:2:dydx:dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d:
undefined: 0.0005327 dydx (0ops) (dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky on 44'/118'/7'/0/0) #7 js:2:dydx:dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky:
undefined: 0.00108568 dydx (0ops) (dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug on 44'/118'/8'/0/0) #8 js:2:dydx:dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug:
undefined: 0.00002859 dydx (1ops) (dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73 on 44'/118'/9'/0/0) #9 js:2:dydx:dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73:
undefined: 0.00032301 dydx (0ops) (dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz on 44'/118'/10'/0/0) #10 js:2:dydx:dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz:
undefined: 0.00079267 dydx (0ops) (dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd on 44'/118'/11'/0/0) #11 js:2:dydx:dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd:
undefined: 0.00117506 dydx (0ops) (dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7 on 44'/118'/12'/0/0) #12 js:2:dydx:dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7:
undefined: 0.0133491 dydx (0ops) (dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq on 44'/118'/13'/0/0) #13 js:2:dydx:dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq:
undefined: 0.00070996 dydx (0ops) (dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg on 44'/118'/14'/0/0) #14 js:2:dydx:dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg:
undefined: 0.00090914 dydx (0ops) (dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te on 44'/118'/15'/0/0) #15 js:2:dydx:dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te:
undefined: 0 dydx (0ops) (dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x on 44'/118'/16'/0/0) #16 js:2:dydx:dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x:
undefined: 0 dydx (0ops) (dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku on 44'/118'/17'/0/0) #17 js:2:dydx:dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku:
undefined: 0 UMEE (2ops) (umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l on 44'/118'/0'/0/0) #0 js:2:umee:umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l:
undefined: 1.89604 UMEE (6ops) (umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f on 44'/118'/1'/0/0) #1 js:2:umee:umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f:
undefined: 0.023772 UMEE (0ops) (umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv on 44'/118'/2'/0/0) #2 js:2:umee:umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv:
undefined: 3.19961 UMEE (1ops) (umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak on 44'/118'/3'/0/0) #3 js:2:umee:umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak:
undefined: 0 UMEE (5ops) (umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0 on 44'/118'/4'/0/0) #4 js:2:umee:umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0:
undefined: 0.243184 UMEE (2ops) (umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw on 44'/118'/5'/0/0) #5 js:2:umee:umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw:
undefined: 0.014473 UMEE (3ops) (umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg on 44'/118'/6'/0/0) #6 js:2:umee:umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg:
undefined: 16.6596 UMEE (10ops) (umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp on 44'/118'/7'/0/0) #7 js:2:umee:umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp:
undefined: 0 UMEE (2ops) (umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd on 44'/118'/8'/0/0) #8 js:2:umee:umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd:
undefined: 0.074829 UMEE (8ops) (umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65 on 44'/118'/9'/0/0) #9 js:2:umee:umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65:
undefined: 0.045937 UMEE (5ops) (umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28 on 44'/118'/10'/0/0) #10 js:2:umee:umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28:
undefined: 2.08479 UMEE (7ops) (umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg on 44'/118'/11'/0/0) #11 js:2:umee:umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg:
undefined: 1.86795 UMEE (3ops) (umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm on 44'/118'/12'/0/0) #12 js:2:umee:umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm:
undefined: 77.7822 UMEE (9ops) (umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29 on 44'/118'/13'/0/0) #13 js:2:umee:umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29:
undefined: 41.3306 UMEE (2ops) (umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd on 44'/118'/14'/0/0) #14 js:2:umee:umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd:
undefined: 407.44 UMEE (8ops) (umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u on 44'/118'/15'/0/0) #15 js:2:umee:umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u:
undefined: 187.754 UMEE (4ops) (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.001916 XPRT (51ops) (persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf on 44'/118'/0'/0/0) #0 js:2:persistence:persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf:
undefined: 0.11003 XPRT (77ops) (persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l on 44'/118'/1'/0/0) #1 js:2:persistence:persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l:
undefined: 0 XPRT (42ops) (persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6 on 44'/118'/2'/0/0) #2 js:2:persistence:persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6:
undefined: 0.009715 XPRT (77ops) (persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq on 44'/118'/3'/0/0) #3 js:2:persistence:persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq:
undefined: 0 XPRT (18ops) (persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e on 44'/118'/4'/0/0) #4 js:2:persistence:persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e:
undefined: 0.007567 XPRT (75ops) (persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc on 44'/118'/5'/0/0) #5 js:2:persistence:persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc:
undefined: 0.019902 XPRT (79ops) (persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7 on 44'/118'/6'/0/0) #6 js:2:persistence:persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7:
undefined: 0.404265 XPRT (141ops) (persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch on 44'/118'/7'/0/0) #7 js:2:persistence:persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch:
undefined: 0 XPRT (56ops) (persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm on 44'/118'/8'/0/0) #8 js:2:persistence:persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm:
undefined: 0.002954 XPRT (89ops) (persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz on 44'/118'/9'/0/0) #9 js:2:persistence:persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz:
undefined: 0.108314 XPRT (54ops) (persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3 on 44'/118'/10'/0/0) #10 js:2:persistence:persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3:
undefined: 0.66667 XPRT (100ops) (persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7 on 44'/118'/11'/0/0) #11 js:2:persistence:persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7:
undefined: 1.19879 XPRT (44ops) (persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd on 44'/118'/12'/0/0) #12 js:2:persistence:persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd:
undefined: 5.71538 XPRT (62ops) (persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn on 44'/118'/13'/0/0) #13 js:2:persistence:persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn:
undefined: 10.4311 XPRT (35ops) (persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m on 44'/118'/14'/0/0) #14 js:2:persistence:persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m:
undefined: 8.06454 XPRT (51ops) (persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92 on 44'/118'/15'/0/0) #15 js:2:persistence:persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92:
undefined: 2.33347 XPRT (17ops) (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 (1ops) (quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l on 44'/118'/0'/0/0) #0 js:2:quicksilver:quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l:
undefined: 0 QCK (0ops) (quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf on 44'/118'/1'/0/0) #1 js:2:quicksilver:quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf:
undefined: 0.071595 QCK (0ops) (quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev on 44'/118'/2'/0/0) #2 js:2:quicksilver:quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev:
undefined: 0.000654 QCK (0ops) (quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk on 44'/118'/3'/0/0) #3 js:2:quicksilver:quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk:
undefined: 0.002602 QCK (0ops) (quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0 on 44'/118'/4'/0/0) #4 js:2:quicksilver:quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0:
undefined: 0.008977 QCK (0ops) (quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw on 44'/118'/5'/0/0) #5 js:2:quicksilver:quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw:
undefined: 0.022827 QCK (0ops) (quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug on 44'/118'/6'/0/0) #6 js:2:quicksilver:quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug:
undefined: 0 QCK (0ops) (quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p on 44'/118'/7'/0/0) #7 js:2:quicksilver:quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p:
undefined: 0 QCK (12ops) (quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d on 44'/118'/8'/0/0) #8 js:2:quicksilver:quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d:
undefined: 0.010863 QCK (0ops) (quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585 on 44'/118'/9'/0/0) #9 js:2:quicksilver:quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585:
undefined: 0.005126 QCK (0ops) (quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8 on 44'/118'/10'/0/0) #10 js:2:quicksilver:quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8:
undefined: 0.737741 QCK (0ops) (quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg on 44'/118'/11'/0/0) #11 js:2:quicksilver:quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg:
undefined: 0.097119 QCK (0ops) (quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm on 44'/118'/12'/0/0) #12 js:2:quicksilver:quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm:
undefined: 7.61417 QCK (0ops) (quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9 on 44'/118'/13'/0/0) #13 js:2:quicksilver:quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9:
undefined: 0.000572 QCK (2ops) (quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad on 44'/118'/14'/0/0) #14 js:2:quicksilver:quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad:
undefined: 3.65611 QCK (0ops) (quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju on 44'/118'/15'/0/0) #15 js:2:quicksilver:quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju:
undefined: 10.9817 QCK (0ops) (quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr on 44'/118'/16'/0/0) #16 js:2:quicksilver:quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr:
undefined: 0 QCK (0ops) (quick102w826rmvswfhs4zsv2ujhylmd92c28peqta0e on 44'/118'/17'/0/0) #17 js:2:quicksilver:quick102w826rmvswfhs4zsv2ujhylmd92c28peqta0e:
undefined: 0 NOM (23ops) (onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg on 44'/118'/0'/0/0) #0 js:2:onomy:onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg:
undefined: 0.00001607 NOM (58ops) (onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67 on 44'/118'/1'/0/0) #1 js:2:onomy:onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67:
undefined: 0.0000001 NOM (37ops) (onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m on 44'/118'/2'/0/0) #2 js:2:onomy:onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m:
undefined: 0.00000173 NOM (76ops) (onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp on 44'/118'/3'/0/0) #3 js:2:onomy:onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp:
undefined: 0.00000678 NOM (45ops) (onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c on 44'/118'/4'/0/0) #4 js:2:onomy:onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c:
undefined: 0.00000023 NOM (74ops) (onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he on 44'/118'/5'/0/0) #5 js:2:onomy:onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he:
undefined: 0 NOM (49ops) (onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l on 44'/118'/6'/0/0) #6 js:2:onomy:onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l:
undefined: 0.00001285 NOM (65ops) (onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k on 44'/118'/7'/0/0) #7 js:2:onomy:onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k:
undefined: 0.00000008 NOM (36ops) (onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6 on 44'/118'/8'/0/0) #8 js:2:onomy:onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6:
undefined: 0.00001936 NOM (74ops) (onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r on 44'/118'/9'/0/0) #9 js:2:onomy:onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r:
undefined: 0.00002031 NOM (19ops) (onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls on 44'/118'/10'/0/0) #10 js:2:onomy:onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls:
undefined: 0.00314244 NOM (60ops) (onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl on 44'/118'/11'/0/0) #11 js:2:onomy:onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl:
undefined: 0.00094749 NOM (16ops) (onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv on 44'/118'/12'/0/0) #12 js:2:onomy:onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv:
undefined: 0.214328 NOM (15ops) (onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj on 44'/118'/13'/0/0) #13 js:2:onomy:onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj:
undefined: 0.399657 NOM (21ops) (onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46 on 44'/118'/14'/0/0) #14 js:2:onomy:onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46:
undefined: 0.0528671 NOM (10ops) (onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t on 44'/118'/15'/0/0) #15 js:2:onomy:onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t:
undefined: 1.13529 NOM (14ops) (onomy1xr8krhp99mp9ncrz6dfgre542nv0rc8l3er5t5 on 44'/118'/16'/0/0) #16 js:2:onomy:onomy1xr8krhp99mp9ncrz6dfgre542nv0rc8l3er5t5:
undefined: 0 NOM (0ops) (onomy102w826rmvswfhs4zsv2ujhylmd92c28pg90e8w on 44'/118'/17'/0/0) #17 js:2:onomy:onomy102w826rmvswfhs4zsv2ujhylmd92c28pg90e8w:
undefined: 0.005246 SEI (0ops) (sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v on 44'/118'/0'/0/0) #0 js:2:sei_network:sei1rs97j43nfyvc689y5rjvnnhrq3tes6ghksen9v:
undefined: 0.010124 SEI (0ops) (sei1qvtnzptp30maznnhdg30xl2jtdq2shpn2s5qd6 on 44'/118'/1'/0/0) #1 js:2:sei_network:sei1qvtnzptp30maznnhdg30xl2jtdq2shpn2s5qd6:
undefined: 0 SEI (0ops) (sei1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw4vusxl on 44'/118'/2'/0/0) #2 js:2:sei_network:sei1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw4vusxl:
undefined: 0.027521 SEI (0ops) (sei1hgyf054qztvmty3cayuw9nedftlhejv5xd54l9 on 44'/118'/3'/0/0) #3 js:2:sei_network:sei1hgyf054qztvmty3cayuw9nedftlhejv5xd54l9:
undefined: 0 SEI (0ops) (sei1vc7s929uh2yxyhau4wsg5th9jzedvkurwspxau on 44'/118'/4'/0/0) #4 js:2:sei_network:sei1vc7s929uh2yxyhau4wsg5th9jzedvkurwspxau:
undefined: 0 SEI (0ops) (sei1qgrd8srhvald995uvpeyncvwg7afgkmrzsj8qa on 44'/118'/5'/0/0) #5 js:2:sei_network:sei1qgrd8srhvald995uvpeyncvwg7afgkmrzsj8qa:
undefined: 0.013449 SEI (0ops) (sei1n6vccpa77x7xyhnk98jy6gg3rmgjkazxen5vrm on 44'/118'/6'/0/0) #6 js:2:sei_network:sei1n6vccpa77x7xyhnk98jy6gg3rmgjkazxen5vrm:
undefined: 0.004018 SEI (0ops) (sei1v283e7h2plllyjwgqrexv2ge5e4z252u0d2fsj on 44'/118'/7'/0/0) #7 js:2:sei_network:sei1v283e7h2plllyjwgqrexv2ge5e4z252u0d2fsj:
undefined: 0 SEI (0ops) (sei1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ww5667 on 44'/118'/8'/0/0) #8 js:2:sei_network:sei1g9t7sv8y0mvu2qd0xguc40xujnu94rh5ww5667:
undefined: 0.014582 SEI (0ops) (sei1jgk668h53gd9wn09mndq7uzgk80nr5d80upsc8 on 44'/118'/9'/0/0) #9 js:2:sei_network:sei1jgk668h53gd9wn09mndq7uzgk80nr5d80upsc8:
undefined: 0.01225 SEI (0ops) (sei1733g3dfzj6tulcqtvz628ypuqj0hvlrzxt3dg5 on 44'/118'/10'/0/0) #10 js:2:sei_network:sei1733g3dfzj6tulcqtvz628ypuqj0hvlrzxt3dg5:
undefined: 0 SEI (0ops) (sei1q09970dekm5hdku5tta7p9w6kldyyf25r76f5m on 44'/118'/11'/0/0) #11 js:2:sei_network:sei1q09970dekm5hdku5tta7p9w6kldyyf25r76f5m:
undefined: 0.005197 SEI (0ops) (sei1yhlye27fl05kg4nhmeu5d579m8ups9ewmzhvyg on 44'/118'/12'/0/0) #12 js:2:sei_network:sei1yhlye27fl05kg4nhmeu5d579m8ups9ewmzhvyg:
undefined: 0.00525 SEI (0ops) (sei1890w5jltm6wmq2jr9f9e8x4vhs5fx30qack6gk on 44'/118'/13'/0/0) #13 js:2:sei_network:sei1890w5jltm6wmq2jr9f9e8x4vhs5fx30qack6gk:
undefined: 0.014868 SEI (0ops) (sei1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap4jcxz7 on 44'/118'/14'/0/0) #14 js:2:sei_network:sei1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap4jcxz7:
undefined: 0 SEI (0ops) (sei10wwjgt3uluxt4zq4qxnkcv96nyz4cata6zw8d0 on 44'/118'/15'/0/0) #15 js:2:sei_network:sei10wwjgt3uluxt4zq4qxnkcv96nyz4cata6zw8d0:
undefined: 0 STARS (15ops) (stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu on 44'/118'/0'/0/0) #0 js:2:stargaze:stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu:
undefined: 2.52355 STARS (23ops) (stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2 on 44'/118'/1'/0/0) #1 js:2:stargaze:stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2:
undefined: 0.392273 STARS (12ops) (stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0 on 44'/118'/2'/0/0) #2 js:2:stargaze:stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0:
undefined: 0.105851 STARS (15ops) (stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4 on 44'/118'/3'/0/0) #3 js:2:stargaze:stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4:
undefined: 0.16107 STARS (11ops) (stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv on 44'/118'/4'/0/0) #4 js:2:stargaze:stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv:
undefined: 18.0455 STARS (13ops) (stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd on 44'/118'/5'/0/0) #5 js:2:stargaze:stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd:
undefined: 3.93362 STARS (5ops) (stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt on 44'/118'/6'/0/0) #6 js:2:stargaze:stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt:
undefined: 8.10528 STARS (12ops) (stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz on 44'/118'/7'/0/0) #7 js:2:stargaze:stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz:
undefined: 0 STARS (5ops) (stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw on 44'/118'/8'/0/0) #8 js:2:stargaze:stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw:
undefined: 7.42578 STARS (10ops) (stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h on 44'/118'/9'/0/0) #9 js:2:stargaze:stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h:
undefined: 7.45904 STARS (14ops) (stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y on 44'/118'/10'/0/0) #10 js:2:stargaze:stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y:
undefined: 6.34934 STARS (9ops) (stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet on 44'/118'/11'/0/0) #11 js:2:stargaze:stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet:
undefined: 27.6823 STARS (6ops) (stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc on 44'/118'/12'/0/0) #12 js:2:stargaze:stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc:
undefined: 0.683077 STARS (5ops) (stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x on 44'/118'/13'/0/0) #13 js:2:stargaze:stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x:
undefined: 32.7534 STARS (3ops) (stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w on 44'/118'/14'/0/0) #14 js:2:stargaze:stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w:
undefined: 449.46 STARS (6ops) (stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql on 44'/118'/15'/0/0) #15 js:2:stargaze:stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql:
undefined: 318.893 STARS (0ops) (stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q on 44'/118'/16'/0/0) #16 js:2:stargaze:stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q:
undefined: 0 STARS (0ops) (stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6 on 44'/118'/17'/0/0) #17 js:2:stargaze:stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6:
undefined: 0 CORE (78ops) (core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk on 44'/118'/0'/0/0) #0 js:2:coreum:core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk:
undefined: 0.024863 CORE (117ops) (core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq on 44'/118'/1'/0/0) #1 js:2:coreum:core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq:
undefined: 0 CORE (97ops) (core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89 on 44'/118'/2'/0/0) #2 js:2:coreum:core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89:
undefined: 0.049346 CORE (151ops) (core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l on 44'/118'/3'/0/0) #3 js:2:coreum:core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l:
undefined: 0.016046 CORE (84ops) (core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux on 44'/118'/4'/0/0) #4 js:2:coreum:core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux:
undefined: 0.006781 CORE (121ops) (core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8 on 44'/118'/5'/0/0) #5 js:2:coreum:core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8:
undefined: 0.023366 CORE (80ops) (core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp on 44'/118'/6'/0/0) #6 js:2:coreum:core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp:
undefined: 0 CORE (110ops) (core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g on 44'/118'/7'/0/0) #7 js:2:coreum:core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g:
undefined: 0 CORE (74ops) (core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy on 44'/118'/8'/0/0) #8 js:2:coreum:core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy:
undefined: 0.113361 CORE (135ops) (core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea on 44'/118'/9'/0/0) #9 js:2:coreum:core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea:
undefined: 0.025752 CORE (74ops) (core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw on 44'/118'/10'/0/0) #10 js:2:coreum:core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw:
undefined: 0 CORE (107ops) (core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p on 44'/118'/11'/0/0) #11 js:2:coreum:core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p:
undefined: 0 CORE (51ops) (core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j on 44'/118'/12'/0/0) #12 js:2:coreum:core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j:
undefined: 0.06013 CORE (115ops) (core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv on 44'/118'/13'/0/0) #13 js:2:coreum:core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv:
undefined: 0.382184 CORE (52ops) (core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try on 44'/118'/14'/0/0) #14 js:2:coreum:core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try:
undefined: 23.0133 CORE (84ops) (core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4 on 44'/118'/15'/0/0) #15 js:2:coreum:core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4:
undefined: 19.3438 CORE (28ops) (core1xr8krhp99mp9ncrz6dfgre542nv0rc8lck0ea2 on 44'/118'/16'/0/0) #16 js:2:coreum:core1xr8krhp99mp9ncrz6dfgre542nv0rc8lck0ea2:
undefined: 0 CORE (0ops) (core102w826rmvswfhs4zsv2ujhylmd92c28pp2r53s on 44'/118'/17'/0/0) #17 js:2:coreum:core102w826rmvswfhs4zsv2ujhylmd92c28pp2r53s:
undefined: 17.3755 CRO (44ops) (cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra on 44'/394'/0'/0/0) #0 js:2:crypto_org:cro14zpaxs3msrdnx5ch3m3y3yue0wwwevrf2hmwra:
undefined: 0 CRO (35ops) (cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl on 44'/394'/1'/0/0) #1 js:2:crypto_org:cro1h95uwv25le8rd0fl80qyp0438kn57xl4cp64dl:
undefined: 0 CRO (39ops) (cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2 on 44'/394'/2'/0/0) #2 js:2:crypto_org:cro1uxjd9r5yz6muu5fzhf8gj9dzvevpyzcc822je2:
undefined: 17.3755 CRO (30ops) (cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd on 44'/394'/3'/0/0) #3 js:2:crypto_org:cro1w58ly7vcu7a57pfa25zt3kdvt89z38690aedcd:
undefined: 0 CRO (30ops) (cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l on 44'/394'/4'/0/0) #4 js:2:crypto_org:cro17dv59jpz5tfk54sj9cdwqzjj8e22hp7g5a4v4l:
undefined: 0 CRO (31ops) (cro1zfhcf2htapdkjlw4ffqzce7yfe6mhscd2su05p on 44'/394'/5'/0/0) #5 js:2:crypto_org:cro1zfhcf2htapdkjlw4ffqzce7yfe6mhscd2su05p:
undefined: 0 CRO (0ops) (cro1gfrsr7eerpuc0zpl4j6wp3aj55gqahtls2hj9h on 44'/394'/6'/0/0) #6 js:2:crypto_org:cro1gfrsr7eerpuc0zpl4j6wp3aj55gqahtls2hj9h:
undefined: 0.644493 EGLD (368ops) (erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp on 44'/508'/0'/0/0) #0 js:2:elrond:erd18n5sk95fq9dtgdsa9m9q5ddp66ch9cq5lpjflwn5j9z8x2e9h0qqrvk5qp:
undefined: 0.116129 EGLD (402ops) (erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6 on 44'/508'/1'/0/0) #1 js:2:elrond:erd172muqtk2ka5ath64284fm0av4tarkg6l040c595uswwz3tgngh9s9dtgp6:
undefined: 0 EGLD (373ops) (erd1ql9pxrhe29cjr8qgxx3rtmh9lyax5x9dkvu3mfzrgt4e8hwk536ssl4sea on 44'/508'/2'/0/0) #2 js:2:elrond:erd1ql9pxrhe29cjr8qgxx3rtmh9lyax5x9dkvu3mfzrgt4e8hwk536ssl4sea:
undefined: 0.183011 EGLD (385ops) (erd1sjvd5mh946cty4wq0ya0d82509tc8eulxjujrad5ztfwjlhkqz0qy5yzmn on 44'/508'/3'/0/0) #3 js:2:elrond:erd1sjvd5mh946cty4wq0ya0d82509tc8eulxjujrad5ztfwjlhkqz0qy5yzmn:
undefined: 0 EGLD (333ops) (erd149kzxgtymzzaddanlj02zhyhwves9wspvk8p69u325tjln5en9aqf8x8el on 44'/508'/4'/0/0) #4 js:2:elrond:erd149kzxgtymzzaddanlj02zhyhwves9wspvk8p69u325tjln5en9aqf8x8el:
undefined: 0 EGLD (307ops) (erd143yn6uvrfzjptq5g7wvzntl3fcthsxtxrp9f3dgasluj6q5n0pxq2td67n on 44'/508'/5'/0/0) #5 js:2:elrond:erd143yn6uvrfzjptq5g7wvzntl3fcthsxtxrp9f3dgasluj6q5n0pxq2td67n:
undefined: 0 EGLD (234ops) (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: 28.7634 HBAR (404ops) (0.0.3663977 on 44/3030) hederaBip44#0 js:2:hedera:0.0.3663977:hederaBip44
undefined: 9.91347 HBAR (351ops) (0.0.3664525 on 44/3030) hederaBip44#1 js:2:hedera:0.0.3664525:hederaBip44
undefined: 0.195195 HBAR (322ops) (0.0.3664539 on 44/3030) hederaBip44#2 js:2:hedera:0.0.3664539:hederaBip44
undefined: 0.211361 HBAR (297ops) (0.0.3664563 on 44/3030) hederaBip44#3 js:2:hedera:0.0.3664563:hederaBip44
undefined: 0.00000459 ICP (116ops) (f2ed4c9253d3aca7d679bfa9f528d13e85c7f522b8857e094c850a157b750209 on 44'/223'/0'/0/0) internet_computer#0 js:2:internet_computer:04e529ca9ff4709b35af64dce4f0719e770d5e185e4ee972729b75495b27628fad0990203fe3ac7079c643a6dd23384e597c65b7bbebbf994b8304253f1bd124e4:internet_computer
undefined: 0 ICP (103ops) (6084b3d34e7d4efd544ea0c3617a816577d00feb0de0db71b560b7687e7d3c14 on 44'/223'/0'/0/1) internet_computer#1 js:2:internet_computer:0404b6a7df5dd483be4711fbdc9248af1e49b3a205334120118fe1dd9567da874d2655f681d9935b02139ffe1997c7fcb7781c04917303d90c7ea157d495ec30d3:internet_computer
undefined: 0.14927 ICP (101ops) (ff5ed1dc2538d7a8b3158e7c9d9b05f80bc5f49f292f1ad2a59576a70bfc4721 on 44'/223'/0'/0/2) internet_computer#2 js:2:internet_computer:04c6d5dab70167c7b104904e57ee8afc84e8b4809c927ceec353a217f1402438b86bb9515e5bdbcc8f187c2c0c5f539d6459fc99c86af1244f452175fd9b736714:internet_computer
undefined: 0.00000459 ICP (107ops) (a45d0e0afb2c416464342615b6ee1902ac6895cf5e9eab2ccc184978164e9310 on 44'/223'/0'/0/3) internet_computer#3 js:2:internet_computer:040e411918ebc5963b5f89938dd674d6cb95131ce3d335957cd8efd99cce3521ea22b3f0fc53996b9ce3373a86ca57def22b89829ae905fde5d22c4522a7af5aa2:internet_computer
undefined: 0 ICP (96ops) (5084840b6ed50fa97b40c93863092770dc74f42bd2fbc742b76ec2999e789262 on 44'/223'/0'/0/4) internet_computer#4 js:2:internet_computer:046036d79bf131623410cfe77b7ccc32c923c6f8dc1b62448111328a2a791b1a7df2d1d4ca80659f3f0613e2334df370ab1c4e38c724decdf7f9f650a61e4ea090:internet_computer
undefined: 0.0497901 ICP (73ops) (0ec8cbc167cf495b7800efe653586d14ee0a53ef8880c63129b180580b02a8af on 44'/223'/0'/0/5) internet_computer#5 js:2:internet_computer:04e3bde2b3aeee5ae2af7ffdd25cc416df033c04d084ac02166ee52281e81be7945b119ab171b224984a8ff45adf4cbf28a392524dbefff12edf5d2470efd43375:internet_computer
undefined: 0.814708 ICP (44ops) (1d571d508b3c8901b3c4a8fdb733f5b831b9eab4f1f7443890ae04b36117fad5 on 44'/223'/0'/0/6) internet_computer#6 js:2:internet_computer:04000cb53ebc7761d8c976856db22cebbdf438fc7b3f9568ac90788d82be9890ac74d8a8f4f5cf86f8b4ea51e251c4aebda1e33af2c32fd90cbe051e5a0ffd641d:internet_computer
undefined: 0 ICP (0ops) (49a624b4179ec33e0faaa5998246c46ca16673ad9dc0e44f0026f5061177ebfb on 44'/223'/0'/0/7) internet_computer#7 js:2:internet_computer:04be24b119ae8d9a928654291e45eb8711739b524a36b8b1ace88a4ac0ec83ebfbf43eff2650c3bed6cae4898ae56cc59117c746de408dabc99ea37a590a12632c:internet_computer
undefined: 0 STX (191ops) (SP2J4VHFRAT94KY6NFT6129HBA382S6R98W9ABFG2 on 44'/5757'/0'/0/0) #0 js:2:stacks:02d8ff937901982551807aace226a5b1eae3d8c5c89d1eae39ccab9cd1d27a9739:
undefined: 3.30405 STX (196ops) (SP3WE1A84RCG3GWKRXYMXNRVQJ8PG3VDRKE7CMPM4 on 44'/5757'/1'/0/0) #1 js:2:stacks:03605da21826a4d81bb5f593d51882c55303cda788a22f1d2eb427ce764fea6229:
undefined: 29.0415 STX (153ops) (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: 47.1238 XLM (564ops) (GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ on 44'/148'/1') sep5#1 js:2:stellar:GC25SBJ3F2XGWRTS3DGPCNFAGQLNDBFUKUJREJMHVV2JIUBZSVY2GAHZ:sep5
undefined: 1.50023 XLM (571ops) (GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC on 44'/148'/0') sep5#0 js:2:stellar:GDJPZPOWITPCBX3TIHB6N7E4WCHS6JBZKSNWGU34QYCJXKWBTUZY5RYC:sep5
undefined: 8.31098 XLM (568ops) (GA4A2FH4YYI2RXPUC3NPGZQP7XX4CEJNREB27XVX7B7D5RIA3KOLSKTI on 44'/148'/2') sep5#2 js:2:stellar:GA4A2FH4YYI2RXPUC3NPGZQP7XX4CEJNREB27XVX7B7D5RIA3KOLSKTI:sep5
undefined: 8.04332 XLM (546ops) (GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM on 44'/148'/3') sep5#3 js:2:stellar:GDTKZ5E53DELQO33QAYYR6TS4JX44MP2PGCRGKY3RE42IT7PUNLU2SHM:sep5
undefined: 1.5005 XLM (504ops) (GBV2ROL25KKDSFCZC2TQPMUEN567YQHRWTRBYHCO5AKYWVIV4JKJ56AF on 44'/148'/4') sep5#4 js:2:stellar:GBV2ROL25KKDSFCZC2TQPMUEN567YQHRWTRBYHCO5AKYWVIV4JKJ56AF:sep5
undefined: 0 XLM (0ops) (GCMN2KYJPPHB4TMXXF2OZPMWVM5EQSDD76IMFOMET7YMN64VJDVHVNCM on 44'/148'/5') sep5#5 js:2:stellar:GCMN2KYJPPHB4TMXXF2OZPMWVM5EQSDD76IMFOMET7YMN64VJDVHVNCM:sep5
undefined: 0.625 VET (7ops) (0xc4B17901FECf86932c3bb296BB00E7c6816Fd416 on 44'/818'/0'/0/0) vechain#0 js:2:vechain:0xc4B17901FECf86932c3bb296BB00E7c6816Fd416:vechain
undefined: 3.125 VET (5ops) (0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD on 44'/818'/0'/0/1) vechain#1 js:2:vechain:0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD:vechain
undefined: 1.25 VET (1ops) (0x6fc5998724338CDe55Bba798273FAdcDE79c5074 on 44'/818'/0'/0/2) vechain#2 js:2:vechain:0x6fc5998724338CDe55Bba798273FAdcDE79c5074:vechain
undefined: 0 VET (0ops) (0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3 on 44'/818'/0'/0/3) vechain#3 js:2:vechain:0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3:vechain
undefined: 0.625 VET (7ops) (0xc4B17901FECf86932c3bb296BB00E7c6816Fd416 on 44'/818'/0'/0/0) vechain#0 js:2:vechain:0xc4B17901FECf86932c3bb296BB00E7c6816Fd416:vechain
undefined: 3.125 VET (5ops) (0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD on 44'/818'/0'/0/1) vechain#1 js:2:vechain:0x7850ddc6a26AF0C078b9f1569Ca16746B2ACd3bD:vechain
undefined: 1.25 VET (1ops) (0x6fc5998724338CDe55Bba798273FAdcDE79c5074 on 44'/818'/0'/0/2) vechain#2 js:2:vechain:0x6fc5998724338CDe55Bba798273FAdcDE79c5074:vechain
undefined: 0 VET (0ops) (0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3 on 44'/818'/0'/0/3) vechain#3 js:2:vechain:0xD92303FAA32B2b75619EDd89f4fAa8d4890186E3:vechain
undefined: 6.05137 ALGO (444ops) (TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4 on 44'/283'/0'/0/0) #0 js:2:algorand:TM4WJOS4MZ2TD775W7GSXZMBUF74YT6SKSBXCZY3N7OUIAPXE54MZ5FCD4:
undefined: 3.1 ALGO (435ops) (RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ on 44'/283'/1'/0/0) #1 js:2:algorand:RWYWVHL3QJSTOLJTM6TIQ65LZX5IUJMHRMSEISS5FGJ7CRLTJSH3S5UAQQ:
undefined: 6.8801 ALGO (450ops) (YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE on 44'/283'/2'/0/0) #2 js:2:algorand:YHPWECPNX7OU2AS5NGEC6JUFZRUZWKXKO5RK267DEMQZ2R7IBCE2MAAYNE:
undefined: 3.78833 ALGO (491ops) (WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA on 44'/283'/3'/0/0) #3 js:2:algorand:WNBXHLRE6IL5W5S3UO2FUWW7DJ6NUBVIVCYV2K66MFE3ABLAPDVEJX5ILA:
undefined: 3.1628 ALGO (403ops) (GEPEPFCOO7TRQ3HKU5IKQPARS7DDXDHH6Y2VNMUJWH7TMLLOZ3Z6JKRQAI on 44'/283'/4'/0/0) #4 js:2:algorand:GEPEPFCOO7TRQ3HKU5IKQPARS7DDXDHH6Y2VNMUJWH7TMLLOZ3Z6JKRQAI:
undefined: 0 ALGO (0ops) (X3TNYJCHUW6UBWVEN5K2ULWMLRWRGBEUWZLR4V2XR3UDN4TWNZP3Q6EAQU on 44'/283'/5'/0/0) #5 js:2:algorand:X3TNYJCHUW6UBWVEN5K2ULWMLRWRGBEUWZLR4V2XR3UDN4TWNZP3Q6EAQU:
undefined [native segwit]: 0.0000975 𝚝BTC (185ops) (tb1qztngvvxhun0a0jgg3jugynfenmcckdhvtkfa2l on 84'/1'/0'/0/80) native_segwit#0 js:2:bitcoin_testnet:tpubDCgDNn312aj5XtrdMeA9TeQbp2HkMW2a1JNw2qhRLzUaFiDAAQK3Jzh6jzHpc6Agjn68mZgPQB2ZdQzfgRgXVXDi2FVECW7p4xGuK6Pa3b8:native_segwit
undefined [taproot]: 0.00015035 𝚝BTC (184ops) (tb1prx0rzeeaj8u99jfywvc34mg64yhpw4vf44nnpa0cx9gaw98gjxzqklvuqe on 86'/1'/0'/0/87) taproot#0 js:2:bitcoin_testnet:tpubDD1s2jBEVuSpzKea6ie3HMCmkanzcfvc9BbQq8nRDUaAUJPGFi83RWFCNMartYsuxksbFR6tDmVGMaaRP7ng7uovwKT1WNjcuDW34st9R56:taproot
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 [native segwit]: 0.0002629 𝚝BTC (161ops) (tb1qkrca5zd3e7573xljgde2r44hq3wme372cvx52r on 84'/1'/1'/0/80) native_segwit#1 js:2:bitcoin_testnet:tpubDCgDNn312aj5YVQsroTmVAWSVMpx2PM7m4toPJsHUricGUh457AwMZK55f2uNVxYdKeW8qDZDngveqFFcsFTWW7eZFbnYerfsf5YAdxU3K8:native_segwit
undefined [taproot]: 0.00003507 𝚝BTC (175ops) (tb1pf5gdms45c597klfyaz2e595qqzls2xs9hrs92m5wx533e4ercm0skx5l8m on 86'/1'/1'/0/78) taproot#1 js:2:bitcoin_testnet:tpubDD1s2jBEVuSq13eMrn3r2tnwxfuWeBM94Dgtc4D5A6h1Jcx2kheLSgGtZroZCwFnXN4ao5PxViYSFTK57vRZnQ1RS193EETKNMmRuPTcWJH:taproot
undefined [taproot]: 0 𝚝BTC (0ops) (tb1p7t4hdtqlmpfv4vpu2vqre6elaywjvlq5yfl4jnjz9gw7lwcpjl5svzk5yz on 86'/1'/2'/0/0) taproot#2 js:2:bitcoin_testnet:tpubDD1s2jBEVuSq4ewqyyWoJYgCyvXsQ3wRkeSmKa3RW3b4BL2rfdDWzwM2WoefQcPGjetH92smctVjK4qrS89zYShy399s8MqWzhZdnCvHLfF:taproot
undefined [segwit]: 0.00007046 𝚝BTC (158ops) (2NF6ACdBZwbUFcjhZj7cfijaMhDTBFNYy5h on 49'/1'/0'/0/77) 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.00029875 𝚝BTC (109ops) (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.0016374 BCH (646ops) (qpmewr8nhqsjrp3q84ryrtqeafm3nacfh5dapuy2lw on 44'/145'/0'/0/324) #0 js:2:bitcoin_cash:xpub6CYDTh442n9QYTMdQ7Uc7XDC2zCzZ5jM1m1DrWxmfQMToP2ngWZVtptKiksRoGgdcRSLDC6PgEULihbZE3SDt4ndVzoRNUEoZeTCsBUAWWP:
undefined: 0.0238035 BCH (616ops) (qqj3ecywqeepwztju7ft8agnqn5d957kpg66qc3hs9 on 44'/145'/1'/0/312) #1 js:2:bitcoin_cash:xpub6CYDTh442n9QaLF3Z2i5L9QENTixN9kGH5XCYh2J5UTHuu99Y2W1sxm2HcX9sQUe2xmv4r3GVmn8GdTvCsLEof448VdZEmdpfmzX7Dk3AJx:
undefined: 0.00182663 BCH (578ops) (qr49zdfuvrzctxkyttc0jz285gfayevq25f3q7rllr on 44'/145'/2'/0/285) #2 js:2:bitcoin_cash:xpub6CYDTh442n9QdmbZ2RXVmndx8Hv2cFDKjhzANqnPkFjpcqaztmjEdhB9wiiYxJFncp8Et32XZF2YvsC6sXmDRFGEwgjVzQDinZ2xmgZuyb9:
undefined: 0.0144168 BCH (576ops) (qr098vjhhhuujt8ptupghj3fgp7swrw9muz9mv5qsu on 44'/145'/3'/0/283) #3 js:2:bitcoin_cash:xpub6CYDTh442n9QftkdDJbR3GXhop6xxjkHdxgz9xcKkdq8Q7xF9ER8NXJicVwjXbnkBdbF7nc52wrAVhGoraVfQcsGCA2JwjWurCZQU6pNyHH:
undefined: 0.00166153 BCH (548ops) (qq65nguexj4ltly3uu2f7lhd68r5muqkzq9zhp4twr on 44'/145'/4'/0/257) #4 js:2:bitcoin_cash:xpub6CYDTh442n9QiWxQaeXpmh16DkgpNqufRUMcj6rDqW2gF9Ronnvv9okteP6YQHZGYEojUXg8LL3kfrJzWHrfLFKKarvBgZBtSBRgqcX6w1G:
undefined: 0.00364912 BCH (545ops) (qp06j79yr2tq9adqemhyekrmfln3sp6y3gqqd07ljz on 44'/145'/5'/0/292) #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.0475127 BTG (684ops) (AVcG3GAuUgZiRsppM9cFvgw8BKFSzvY7r5 on 49'/156'/0'/0/333) segwit#0 js:2:bitcoin_gold:xpub6DHWENEKDQW8XxvbwvAFdCTGgzmHJkx8eY8bdGrL6iLmiqmPmCEscEvf7MBSDtbZWuLcUeQP9j87rJSgMhtwpUj3JSnQDoGHG2aqRVaSn43:segwit
undefined [segwit]: 0.253557 BTG (655ops) (AZGEJYQv9PAjZC9D7mWUFjoGBwNJ1cogA6 on 49'/156'/1'/0/320) 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.0517193 BTG (683ops) (GdDD7zxYGuUNzoEVT14SzmQ2NUYvHN4GRT on 44'/156'/0'/0/338) #0 js:2:bitcoin_gold:xpub6Cq1sXPAA8ijyqJpdR5hDVYJ7XyunpPgVpCWwPtReGJDwhqnWxBhu7wBJjbtdWHXSQiSyNDhxDXF4GmrXGatK4yDASHE3CgS3tsT41T81Dj:
undefined [legacy]: 0.0365586 BTG (663ops) (GgPLTCRP2kmsRCh6Fb5ihSxwuxSUECxhLs on 44'/156'/1'/0/350) #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.00380776 DASH (510ops) (Xr2bgKi7rV4Kfef8wxyarYwRraphrwSMdJ on 44'/5'/0'/0/254) #0 js:2:dash:drkvjS8m2iwuqAXaxEBNS8ULFEKfoEEVNrSyzsEwioinaxb7TZ6fmP7rB3YiU3xcEoM39WoeDJdTS5sgVHQAeowB9BhdxkvDZhJErQk8AWTyaYk:
undefined: 0.03369 DASH (482ops) (XfjWq4pmfbkr9nR8fjey4fsLePNAz6hXtY on 44'/5'/1'/0/223) #1 js:2:dash:drkvjS8m2iwuqAXayHufe3hHCwpvgLyxxGhMAiCSW4kjQ2jC6FKcYKqC2ePkovCh93HAt2AgXQSt4YdJG3XX1raRMbHwwJz6ezKi4yotkX7mjwb:
undefined: 0.0654974 DASH (510ops) (XtuRJpnU3ktejDzCnN5M8624VzhLsTeySr on 44'/5'/2'/0/254) #2 js:2:dash:drkvjS8m2iwuqAXb2YSrc4u7qMoaf3UtCbF5A1gphQy6soFEDH7sHmvfZiAEzFse5Q3ycaoq6Su8iitWgNoxRriwzitNTWcwBkXrAdaf2xNXuo4:
undefined: 0.00109838 DASH (476ops) (Xx3S8AEFdUYUj52UhWr1angdZrAQniR6cd on 44'/5'/3'/0/238) #3 js:2:dash:drkvjS8m2iwuqAXb4LDphtncxj3UdVEACR5JCjoccMjdxfEkEhu7oB1vpZFyajdUEhapJgwi7uUq24ys47gm3VNj4vRQbVcV5YQkrGCpUyd7hDS:
undefined: 0.00016188 DASH (457ops) (Xez3bN9sDTc8z1TVRdqWmkSg7ZKdvBKbg5 on 44'/5'/4'/0/230) #4 js:2:dash:drkvjS8m2iwuqAXb7uLicFWmFdztLiHpa6PM7iTRQcYT9wX9vF565f9ZQ7ZrwYBKab7ctGrnUyyyn5zFBtBEazazVdBvneLkZ9bUjb83PMLEgpw:
undefined: 0.00263566 DASH (461ops) (Xk5CciizUCNyS8U1TdbyVMqvAAySs5PyYv on 44'/5'/5'/0/245) #5 js:2:dash:drkvjS8m2iwuqAXbBAUgNiSVfsH5TurFQxb3bCTM84wuSY376sNUmXbTzLp6cPT8iLqD43n1GXTaHGAaemq8vEm2rwqu5bxtgemUp719HCTXW4S:
undefined: 0 DASH (0ops) (XiiyHQPZVuxXHnApv1XP2aNbz92zL8u6Hy on 44'/5'/6'/0/0) #6 js:2:dash:drkvjS8m2iwuqAXbCRvDwtZdhj7KX8KWD7NqtKJ3cmdPhKoAsfK26rcmmGGAoHdVCvsCgkkZMeyq9cxfExdrvJfzTXJFU8enhrj8pQ4vnTXXUh9:
undefined [native segwit]: 40.7687 DGB (650ops) (dgb1q2l8jvxa5tnt4nz24l5gndlvqafszjxtvhlcku2 on 84'/20'/0'/0/310) native_segwit#0 js:2:digibyte:xpub6CW9KDgdnS4RwiFZjL1YpEbk1yYvD96EqiBXmq6xKRhe3rJJQaB78voA4DG2dJctnUeWZes6NhysTRpCmBgGxCCy39wcwRwSB4fx3Nd2AxP:native_segwit
undefined [native segwit]: 0 DGB (648ops) (dgb1qut65ls0y6a69cptq6fjw7vvt32dty20nf2qgng on 84'/20'/1'/0/317) 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]: 397.547 DGB (610ops) (SPhgSJi72x2WA1wnG449JwqnB8LDPYu5jU on 49'/20'/0'/0/305) segwit#0 js:2:digibyte:xpub6CrEMM6LnNPxiDTZaMJwXTtYZXUQvvMwYb2Do892dbEYMrLEfFXZ8ygRrywE66brjMWbV948BJAbWGwV1oeyT7L57ZJykK8jVJ26UQiDVfp:segwit
undefined [segwit]: 0.129578 DGB (595ops) (SYk1S3BpupDgVdMe4mVrncPBVPdF7B47kJ on 49'/20'/1'/0/289) segwit#1 js:2:digibyte:xpub6CrEMM6LnNPxkr3nrjR8eEys5nHkysyjVHKAfpchrfj5Y2XEPRoiaSgAN7qtUwVxjaVZmGEnJjtRucoAf91u2W4kL8goUCZUKgGXPUgZkUY:segwit
undefined [segwit]: 0 DGB (0ops) (SZg5s18vy8EVLqNcMhvVi2TNYJeQf5crqK on 49'/20'/2'/0/0) segwit#2 js:2:digibyte:xpub6CrEMM6LnNPxmgxLuvQEz6U4j3FvXh7p8MgYFf1kA87Nm3zU6BTydBUdYrsyTF35zTbzPbDA3FudDtiaQjDs664TbtCyYaFni2GrJbk6oFr:segwit
undefined [legacy]: 0.099398 DGB (621ops) (DMu3n4DruC5xEvDfzvoMYNzYMjnauBjmCc on 44'/20'/0'/0/309) #0 js:2:digibyte:xpub6Cv4emS7S9zviCwMrBM1LhC7EdKY6QgFZ7T46nwEqtmaJda4EPH7Jv19h8GfhAPNTztGNWBBxribdod3wcxXRDkLmzRBxUgyZWxMoYLDgCX:
undefined [legacy]: 5.38249 DGB (598ops) (D59HhiQCtsEPyMkWUSf9jeRxurTihvyyr4 on 44'/20'/1'/0/326) #1 js:2:digibyte:xpub6Cv4emS7S9zvmSxVKstTvb3QR4MYRMR1ySqUZbWc8A1vE2Y2BYw3FjLoxVtVYAeJjzR8PqEDDykAzGBUXsphL3xbgbzx6EtS2D8ikALFT52:
undefined [legacy]: 0 DGB (0ops) (DBWpWpZTMg31XMoamhZjKoSqahTVTG2qHi on 44'/20'/2'/0/0) #2 js:2:digibyte:xpub6Cv4emS7S9zvoT2jPveX3CwptyX75sUdfpgmx6DyVGme8QQit5WYE189GhbBJyPThotPBRdpQ5RaXNn8BCkmPNGCG1cirRswqvyvhhqgnAT:
undefined: 3.16355 DOGE (332ops) (DG2j2QoUDVbH1QCG5crtXAF7NLJrxruzX3 on 44'/3'/0'/0/165) #0 js:2:dogecoin:dgub8sBmteCcuFFejUSqGNBcwXRVJ4ZH33Sx3vTJG1o8Q1XwFRNFgT8fAreoj59VMzuU6EJmVMW9gLc9XJSXuxBeSUEt2s2QjSbfYCKkyBvF3pz:
undefined: 0.212003 DOGE (323ops) (DQtwEqy9g4puaKsSLmMHfVqF6aLmKBmSbT on 44'/3'/1'/0/150) #1 js:2:dogecoin:dgub8sBmteCcuFFenEm7nyLHE2Zxt38inSEWx1bVAvWgAXbsHzuEHPaM4aP4J1oE2UWhoQ6cjN8rLEmuzqZHr9MyJvLE8zj527mdtweCgUBjuxj:
undefined: 1 DOGE (328ops) (D9yXRagC15fHE3Tg7BPnyABaN9FdwMmtn4 on 44'/3'/2'/0/169) #2 js:2:dogecoin:dgub8sBmteCcuFFepPh2rZbmtt3RujGFHSLrQiT7cawEm8PpDRumeEWWM4tsKtqm4vUYtHSJZvsifqbKXgUMGN89Y29Kh6DMoq2JCEBPAE5BVK2:
undefined: 14.8766 DOGE (342ops) (D88kBiDhCQHtt7YJ16FJC2UX5QieivdAGC on 44'/3'/3'/0/173) #3 js:2:dogecoin:dgub8sBmteCcuFFer5KqAKz1JpoYNxNzLP5v2uStDCS6iMYMJz9qssa7cr4EeDGLuPaJ6VRGK6owP43wMFhgHtPXMe56ptKcVF7o5DqVf8mTMDz:
undefined: 6.00669 DOGE (332ops) (DFwY9ZFyunBiKYDzzi5HF6zuGBqXjJsEuN on 44'/3'/4'/0/167) #4 js:2:dogecoin:dgub8sBmteCcuFFev32JBmBE5kkWA9Fz4LHryxURKDHBm8kXT2s5X3cM4eGnk5YDgbRj2cGny85CWZLtFuz4n6SNEff68ZFXZRfeMcKYjM4ZABa:
undefined: 0 DOGE (267ops) (DPurHuQXd53RPobi1tD5T6CqEq3FE7hJVt on 44'/3'/5'/0/136) #5 js:2:dogecoin:dgub8sBmteCcuFFexZUo9SNmC2kEwPEUKxWo4VbEi5sZq9uAa3koQSeoUyxC5Z9XXqHq6hvYUYMvWL1iuVLnneqEfda8PdDDWPbvXggRGYDS2Yy:
undefined: 0 DOGE (0ops) (DNvgzFMvZG3k3o78cqn3y3YksWoSnC3uJ8 on 44'/3'/6'/0/0) #6 js:2:dogecoin:dgub8sBmteCcuFFf1Q45j57nYSbt99vo2P5iHSDdytuEPxtbcaRJrgTJCCJFx9AJhFHvyRNkQ8HxwQ61te2F8hhtChBWAL6RCDZEpbjvKGVRR3T:
undefined: 15.0956 KMD (526ops) (RJThtiSLRokvTGfkKTyhJ2cJ1FXfuR5x9d on 44'/141'/0'/0/254) #0 js:2:komodo:v4PKUB9WZbMS4XNED5V9Jf9KPU8DtK8bggJFrXasVrH4JokFcdaYkTQJyXKWfaFJyqqCMbL92e6yvSpJre2uiXinPT8JwW6wBfu3EDshKooA7a9H:
undefined: 0 KMD (503ops) (RQ39y3u4HxZKVNRJNZkLVggZCVwNGsSQnY on 44'/141'/1'/0/239) #1 js:2:komodo:v4PKUB9WZbMS4XNED6aRRCHCfhWaKTNhNU5g6yu6LFRbf7dMVkKKA1VjmVf7rBGfFFTpLXdvaz2Zh55ouvu86CZgghQwQPJWYob5pZdmXRjkYa9X:
undefined: 2.41208 KMD (503ops) (RTqPaZuvdsa5AHcGLwGWQEcTSeuE3zwrie on 44'/141'/2'/0/259) #2 js:2:komodo:v4PKUB9WZbMS4XNED8S4oAJzXQqPbfLCmNRNPW8QoETCA7opTJLFvrkm39QZAdLg8DygthREBvDRmrHDeVtEQ8C7iQDfXDSPTrzB2FAFkvgsQ9HA:
undefined: 0 KMD (471ops) (RKdJuSKzwHqx6hyMgAwvho2ZfEWV7hZPg3 on 44'/141'/3'/0/248) #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.250454 LTC (642ops) (ltc1q2nwmf47ue0dckcfyhvhe3et39n0mtw05ccqa4z on 84'/2'/0'/0/301) native_segwit#0 js:2:litecoin:Ltub2YLUoe8MGLizFvLnAHJhiz3rdWG8UXqi9A9smDbuwPD44WPa1rB1EwyQwzRiVFKGH4mS6b5DRE3c3S9jZ944uaGcRK2XPinZcbdmo3P2vmq:native_segwit
undefined [native segwit]: 0.00891254 LTC (589ops) (ltc1q0dxseahp65t8nkkkusjlup96mhyst23asylqxt on 84'/2'/1'/0/284) 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.0135867 LTC (633ops) (MC9kHN8chgQgjn2Mnix9XjXnZrvHwoB3PT on 49'/2'/0'/0/311) segwit#0 js:2:litecoin:Ltub2YDfX8FoxTFohkcgknuZr2WLrCNpq6ufHxguxyjoDWGDZ1GBUVSn5wwoD2ifjY13iERFGvauvW55p6ASVCbqiABnreHFCsV5LKps76aWDV3:segwit
undefined [segwit]: 0.0437813 LTC (601ops) (MG9R9Z6EukkRxPfZMAMseSbxUtLjW8odph on 49'/2'/1'/0/307) 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.0128048 LTC (635ops) (LgUn1H1eAnsm32REvTiqCqFKq3kM5h7hkJ on 44'/2'/0'/0/316) #0 js:2:litecoin:Ltub2YwXt3Fm1MVHeGxpcxFhFTe1FkqDdVoeRp9FRnnqGrinFxJSDjXwVTnmjK56jhq83mxWmTKprWjLXqspQCYtxJmCnwCLJUPoZhjJEYMtcFd:
undefined [legacy]: 0.0127182 LTC (573ops) (Lay5Xx9JzcAN7v7bMCMzYH8y6fqwkJnYYt on 44'/2'/1'/0/313) #1 js:2:litecoin:Ltub2YwXt3Fm1MVHgsz1XL8MM6MicGgumPzfpD1pZcsk15P4LZHiF4wpFPGvTi58u9evgMd4dV9K7cMMA532mq1HbEknZZ5UayUuRbSsM5VzptL:
undefined [legacy]: 0 LTC (0ops) (LiDx2poS1M1DwYU2zHuvKEQAAFUdpRgP59 on 44'/2'/2'/0/0) #2 js:2:litecoin:Ltub2YwXt3Fm1MVHgy4nREA2MxDT5Em3QsQv2Yu6gfGSPudxTKgcovLsh1sV3rje75uZ5eAkyJLkbHxPBFU3Wbhd2Q6XF863omV2XfWhsC2ACJ4:
undefined: 0.130437 PIVX (676ops) (DRGkvbXytwU9zUUmoXzXu95NTBWStXWCrm on 44'/77'/0'/0/325) #0 js:2:pivx:ToEA6mkkScBzPS3QGwz3pD9XiPf8YynSCGuC65sMGexuJ8oLkqEAZRAcR5VqKvRV5Phzid1ZG7myNKF6XtRBtVKT5JhgUpaKZtwAq3XzeH3Qnmz:
undefined: 46.4947 PIVX (622ops) (DTpi3gewbWFnnKB7ckrCoe9m5NvNGqEhBB on 44'/77'/1'/0/299) #1 js:2:pivx:ToEA6mkkScBzPS3QK9QkPuwWHUEA284HMW86PxW1zkXJAAJa9zXWJjVwBvYEt5HTwDHyDpyfC2VRj3Sy9MBegtxX3kBM1dyiPx81KcwoA8DT75c:
undefined: 0 PIVX (631ops) (DR84CJgDr6Dt7Pdpud6eDrWTkp3rhKzPoJ on 44'/77'/2'/0/329) #2 js:2:pivx:ToEA6mkkScBzPS3QNaWms316jJrjhxFoXsKpv21fDZnZUqeqnX1FpofXYA3ARA7qSEHn2wmdd7EPMM1qJ36CiFP3Ycu6p4EMHKYgV49aAFQYdwt:
undefined: 0 PIVX (664ops) (DL8LkLyc4Jn2HX6K7w39Fz4u8BdX97BQHf on 44'/77'/3'/0/341) #3 js:2:pivx:ToEA6mkkScBzPS3QRXKa6QiRvZKUYefypt8wZupR6GaqD77SPLwzgmraaKbGgcirVLLXkQ6XjZJcGhoLRL2xP5ZBVjD5TUz6ZY6WkgXBpJW5rNU:
undefined: 0 PIVX (0ops) (DGvVBqdtcbSTuXgf6JjAxG5a8MSRXk76Tw on 44'/77'/4'/0/0) #4 js:2:pivx:ToEA6mkkScBzPS3QS97WZjaF1BidcB1ywJUVPvH1UAbz9BzZ1U8Uzo3zVwrmNHH18cJiwpjFEUnvCu5hqTQs5df1A7f1vBttM65ReXpJhxvKtvh:
undefined: 0.00191538 ZEC (394ops) (t1SDpcaNZmbCH5TCCb5vNAh5bXs3isDtA5h on 44'/133'/0'/0/191) #0 js:2:zcash:xpub6CJCxQneNaGtEsc5RekCewAkzA4HmtexTwe7WEdEmduLVbfPti54Vme5gpsTrTDRB7qGUjn7LPhXitHvjrnMVDTt8LYvj7s34ZzEz6PcS8z:
undefined: 0.0002 ZEC (363ops) (t1PpjmFSysTrpUQra1fNCJJMYFGy6yrCxfu on 44'/133'/1'/0/179) #1 js:2:zcash:xpub6CJCxQneNaGtGzvpwjmx2kuAgbAwTBFFCC9TdvziUaYsPQYQ22mwaJbxvyBDLeW4gAnUBvKFeb5RznU3uxtVZp9AJQuU1Q5LsTMypXhN3dy:
undefined: 0.00156519 ZEC (359ops) (t1Z2giNqRBAcyij9iLRPEPBjaD8emFA5LCc on 44'/133'/2'/0/176) #2 js:2:zcash:xpub6CJCxQneNaGtLNBmM9y9Fm23XfXVewWuDYb5mqH1Fybr2579KAGiPfR2gsjjakYEGwFCL4Hau3C9ns24sPFM1MBrSPRKQLLVdQpiSQkSARY:
undefined: 0 ZEC (386ops) (t1YNMwj3ShjnCweX7dqho2w9rAT4PZABodm on 44'/133'/3'/0/203) #3 js:2:zcash:xpub6CJCxQneNaGtQ86kboo1yi9EsCrvQXMGKy2W6MWtMfSLxhpJQHgeLG4MLs1B6gHmYoWRC5q4CCUR4XzoBjPYAxFTHfdSfdhCWRspU2hJv1A:
undefined: 0 ZEC (0ops) (t1NCYEq5jS9TMQMVA4NeMVShuY7JFmFf89y on 44'/133'/4'/0/0) #4 js:2:zcash:xpub6CJCxQneNaGtQcwqQ4ZBYaBpHPzrTRbyU5S4ziPHtkL5iNHxRv9P7J3oJjerQuPNm3JFpz6Ktcui5Eqv5YW9PiCwYonU5E12pg1hwUAkGxh:
undefined: 0.183835 ZEN (502ops) (znkr3rWWmAZWXdc7kJyHgmj7geSXJKSdBTF on 44'/121'/0'/0/236) #0 js:2:zencash:xpub6C68jAb8xasfmbmg37N3W5TsYWdTb6xLCtjwz5oSVAdi6Jxzx6FeBQcQazySrCXnsGZKaT9MXB9i4Lny4AoFAVZtSy6kVExyheF7X5Msvu3:
undefined: 0.211637 ZEN (492ops) (znnRzMtjFr86qS79HNxHTjNegrVof2J2sSn on 44'/121'/3'/0/260) #3 js:2:zencash:xpub6C68jAb8xasfwaE1WeCTh2JhK4KMh64oUaNn2MJCpVdjBmV7cdLhW8xqAfrb8eerM3wtiwMg9sMZkjA62QMH1rMDNbr97uLKNZohEX7c1cq:
undefined: 0 ZEN (485ops) (znoa4vqSsLgReCMuRHi3sUa4YJiaXhaQCm9 on 44'/121'/2'/0/252) #2 js:2:zencash:xpub6C68jAb8xasfsZCbDtbqPTydFZEHjfzFP75ZQyizidPdLPHNbf41HqQq8RiHMJNuXx71D15Uv9yVpxHkxicSAzKCPVqi1gCKkJTdCN6MK7Q:
undefined: 0.0253829 ZEN (489ops) (znmdzXqxiquszWfi3Q3Maxuz7QfP9hRfNHE on 44'/121'/1'/0/234) #1 js:2:zencash:xpub6C68jAb8xasfrBmUVvZbdXydhq15bdfePn1qhjb32azt3GkzoqBCQuRaZKPYp9T9uhr7TYCANdXanzeXfXp4qMjw7ijiPPNbBKmGRZRFeoa:
undefined: 0 ZEN (0ops) (znm8ELZShHo5gm7aQjcd3qbxT7UF8Mnzyr2 on 44'/121'/4'/0/0) #4 js:2:zencash:xpub6C68jAb8xasfwknWxgLgizrHgqJko7RdnamzFS3DzoKUaA5721xs1HE23NHHqq6LcvmKf43ncaSsz3cEZZpmCrgfK1GhrmDNHkvKfyqpZHF:
undefined: 0.0476209 ETC (159ops) (0x7584df0780C5eB83b26aE55abBc265014f8bf897 on 44'/61'/0'/0/0) #0 js:2:ethereum_classic:0x7584df0780C5eB83b26aE55abBc265014f8bf897:
undefined: 0.0475957 ETC (142ops) (0x62ab4485f7EC0a291540dA31b82BE881166cD786 on 44'/61'/1'/0/0) #1 js:2:ethereum_classic:0x62ab4485f7EC0a291540dA31b82BE881166cD786:
undefined: 0.0476114 ETC (113ops) (0x0b248ABea3Ee9e94C03bc85c37516D16C909875c on 44'/61'/2'/0/0) #2 js:2:ethereum_classic:0x0b248ABea3Ee9e94C03bc85c37516D16C909875c:
undefined: 0.0420533 ETC (140ops) (0x01530f90685821747Eab008Fc217a2411AA6433C on 44'/61'/3'/0/0) #3 js:2:ethereum_classic:0x01530f90685821747Eab008Fc217a2411AA6433C:
undefined: 0.0475946 ETC (131ops) (0xD5fa1a3014A6a24f2C17E532713eb51500AD2bE8 on 44'/61'/4'/0/0) #4 js:2:ethereum_classic:0xD5fa1a3014A6a24f2C17E532713eb51500AD2bE8:
undefined: 0 ETC (0ops) (0x234D2443790764a622430213B6eCcA33272ca575 on 44'/61'/5'/0/0) #5 js:2:ethereum_classic:0x234D2443790764a622430213B6eCcA33272ca575:
undefined: 0 MATIC (358ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:polygon:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0188535 MATIC (321ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:polygon:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0 MATIC (326ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:polygon:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0146803 MATIC (356ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:polygon:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.0146229 MATIC (313ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:polygon:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 MATIC (273ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:polygon:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.284498 MATIC (199ops) (0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E on 44'/60'/6'/0/0) #6 js:2:polygon:0x7C9B9Ef87b589188Dd18D77A8CC715a045C9890E:
undefined: 1.53621 MATIC (194ops) (0x48ec5fC762B9300e3B5e04E8ca634165240A1B15 on 44'/60'/7'/0/0) #7 js:2:polygon:0x48ec5fC762B9300e3B5e04E8ca634165240A1B15:
undefined: 16.9916 MATIC (184ops) (0x6434189D6179FB9DE41b392ED67a85C9F63216F6 on 44'/60'/8'/0/0) #8 js:2:polygon:0x6434189D6179FB9DE41b392ED67a85C9F63216F6:
undefined: 0 MATIC (0ops) (0x401C9CcB29d92ee707C6271ea5126aA6c257a37E on 44'/60'/9'/0/0) #9 js:2:polygon:0x401C9CcB29d92ee707C6271ea5126aA6c257a37E:
undefined: 0.00162281 𝚝ETH (148ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00134412 𝚝ETH (178ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00050863 𝚝ETH (168ops) (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.00026874 𝚝ETH (132ops) (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.0291949 𝚝ETH (167ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:ethereum_holesky:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0292098 𝚝ETH (171ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:ethereum_holesky:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0291712 𝚝ETH (179ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:ethereum_holesky:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0584337 𝚝ETH (145ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:ethereum_holesky:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.0877085 𝚝ETH (95ops) (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.00004751 ETH (66ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00170026 ETH (74ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00002121 ETH (57ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00183662 ETH (51ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00187888 ETH (44ops) (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.373126 𝚝ETH (115ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:arbitrum_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0640381 𝚝ETH (129ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:arbitrum_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00054464 𝚝ETH (122ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:arbitrum_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.307683 𝚝ETH (108ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:arbitrum_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.244851 𝚝ETH (63ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:arbitrum_sepolia:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:arbitrum_sepolia:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.793924 FLR (486ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:flare:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.804325 FLR (543ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:flare:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.800893 FLR (492ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:flare:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.796164 FLR (535ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:flare:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.804751 FLR (102ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:flare:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 FLR (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:flare:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 236.889 SGB (598ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:songbird:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 634.134 SGB (587ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:songbird:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.000525 SGB (606ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:songbird:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 66.2338 SGB (576ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:songbird:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.000525 SGB (161ops) (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: 14.2575 GLMR (566ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonbeam:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.002625 GLMR (568ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonbeam:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 3.32919 GLMR (503ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonbeam:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 14.266 GLMR (556ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonbeam:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 27.7491 GLMR (144ops) (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: 137,773 BTT (492ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:bittorrent:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 137,783 BTT (529ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:bittorrent:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 46,605.4 BTT (521ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:bittorrent:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0 BTT (446ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:bittorrent:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 1,169,042 BTT (164ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:bittorrent:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 BTT (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:bittorrent:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 0.00097436 ETH (32ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:optimism:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00095956 ETH (23ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:optimism:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00000939 ETH (34ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:optimism:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00092379 ETH (32ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:optimism:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 ETH (0ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:optimism:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 𝚝ETH (0ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:optimism_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 1.18231 EWT (397ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:energy_web:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 3.54702 EWT (450ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:energy_web:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 1.88209 EWT (449ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:energy_web:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0 EWT (449ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:energy_web:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.916855 EWT (161ops) (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: 7.06465 ASTR (509ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:astar:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 2.86889 ASTR (511ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:astar:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 9.73091 ASTR (499ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:astar:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0124495 ASTR (428ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:astar:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 307.975 ASTR (131ops) (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.00600759 METIS (464ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:metis:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00655912 METIS (428ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:metis:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00697512 METIS (474ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:metis:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.125117 METIS (465ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:metis:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 METIS (173ops) (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.480308 MOVR (426ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:moonriver:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.637428 MOVR (471ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:moonriver:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00002625 MOVR (485ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:moonriver:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.48039 MOVR (442ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:moonriver:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.63752 MOVR (154ops) (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: 111.218 VLX (101ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:velas_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 697.816 VLX (102ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:velas_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0 VLX (100ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:velas_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 102.98 VLX (101ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:velas_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0 VLX (102ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:velas_evm:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 VLX (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:velas_evm:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 8.43199 SYS (501ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:syscoin:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 3.83277 SYS (489ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:syscoin:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0 SYS (458ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:syscoin:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0 SYS (423ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:syscoin:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 44.8107 SYS (153ops) (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.0581629 𝚝ETH (107ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:base_sepolia:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0581627 𝚝ETH (119ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:base_sepolia:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0730186 𝚝ETH (124ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:base_sepolia:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.262364 𝚝ETH (101ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:base_sepolia:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.538321 𝚝ETH (78ops) (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.01619 KLAY (46ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:klaytn:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 1.67998 KLAY (44ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:klaytn:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 1.41699 KLAY (43ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:klaytn:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 1.68238 KLAY (38ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:klaytn:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 2.01911 KLAY (36ops) (0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9 on 44'/60'/4'/0/0) #4 js:2:klaytn:0x770aB35d6C2Bc4fe41f616be47B626Ef7a2810E9:
undefined: 0 KLAY (0ops) (0xFDa805F0E46fe0b249c5A2DFA677d41033247338 on 44'/60'/5'/0/0) #5 js:2:klaytn:0xFDa805F0E46fe0b249c5A2DFA677d41033247338:
undefined: 6.1944 NEON (207ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:neon_evm:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 1.84516 NEON (221ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:neon_evm:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00524139 NEON (202ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:neon_evm:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 1.35191 NEON (214ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:neon_evm:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 6.6874 NEON (192ops) (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.00001079 LYX (165ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:lukso:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.00000818 LYX (211ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:lukso:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.0779213 LYX (203ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:lukso:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.0266491 LYX (198ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:lukso:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.385896 LYX (152ops) (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 ETH (113ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:linea:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0 ETH (128ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:linea:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0 ETH (152ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:linea:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00454553 ETH (129ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:linea:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00227215 ETH (119ops) (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.00546487 ETH (4ops) (0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25 on 44'/60'/2'/0/0) #2 js:2:blast:0xb6E8b0371A15CDadF1D8EdA34F78870A5e688B25:
undefined: 0.00217966 ETH (6ops) (0x90bD48144e08b66490BcA9a756BDe9f004F17857 on 44'/60'/1'/0/0) #1 js:2:blast:0x90bD48144e08b66490BcA9a756BDe9f004F17857:
undefined: 0.00060762 ETH (1ops) (0xe404f128644459C5A0F6FAc6824AdA8F94798c8f on 44'/60'/3'/0/0) #3 js:2:blast:0xe404f128644459C5A0F6FAc6824AdA8F94798c8f:
undefined: 0.00060849 ETH (9ops) (0x60A4E7657D8df28594ac4A06CDe01E18E948a892 on 44'/60'/0'/0/0) #0 js:2:blast:0x60A4E7657D8df28594ac4A06CDe01E18E948a892:
undefined: 0.0500014 𝚝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.444538 NEAR (66ops) (0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf on 44'/397'/0'/0'/0') nearbip44h#0 js:2:near:0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf:nearbip44h
undefined: 0.0519618 NEAR (20ops) (85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798 on 44'/397'/0'/0'/1') nearbip44h#1 js:2:near:85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798:nearbip44h
undefined: 0.0520233 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.0520873 NEAR (22ops) (aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93 on 44'/397'/0'/0'/4') nearbip44h#4 js:2:near:aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93:nearbip44h
undefined: 0.0524975 NEAR (32ops) (07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce on 44'/397'/0'/0'/5') nearbip44h#5 js:2:near:07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce:nearbip44h
undefined: 0.0519886 NEAR (18ops) (bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7 on 44'/397'/0'/0'/6') nearbip44h#6 js:2:near:bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7:nearbip44h
undefined: 0.445089 NEAR (9ops) (e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2 on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2:nearbip44h
undefined: 0.052119 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.0152515 SOL (101ops) (5vhAGihUC1uKucJvreCgWWXB6LEptPwkwpqhkq9M6iaz on 44'/501'/0') solanaSub#0 js:2:solana:5vhAGihUC1uKucJvreCgWWXB6LEptPwkwpqhkq9M6iaz:solanaSub
undefined: 0.0332117 SOL (101ops) (6iNx5SVYQBGEEooLJiptwqL8YR7qEcZELqpBfd4kwiwx on 44'/501'/1') solanaSub#1 js:2:solana:6iNx5SVYQBGEEooLJiptwqL8YR7qEcZELqpBfd4kwiwx:solanaSub
undefined: 0.0152702 SOL (100ops) (2rUuDdwtM2b6zKWU7y8PNzuHomPPG1uAreDafg2xPnA5 on 44'/501'/2') solanaSub#2 js:2:solana:2rUuDdwtM2b6zKWU7y8PNzuHomPPG1uAreDafg2xPnA5:solanaSub
undefined: 0.080927 SOL (100ops) (Cw4MiEvepwAHkxY6DKYDVK5jDEoCSCoT4JmVbJPYauhk on 44'/501'/3') solanaSub#3 js:2:solana:Cw4MiEvepwAHkxY6DKYDVK5jDEoCSCoT4JmVbJPYauhk:solanaSub
undefined: 0.0308783 SOL (100ops) (BsQzVpyrHi5ivGaouc46w9GekQgbiJcWNAhsmzzRuo9M on 44'/501'/4') solanaSub#4 js:2:solana:BsQzVpyrHi5ivGaouc46w9GekQgbiJcWNAhsmzzRuo9M:solanaSub
undefined: 0.111244 SOL (99ops) (2kd3E2Kh7xvcQ1UVVfpys5GHVo1KKKRZXVmuTmkYWK4n on 44'/501'/5') solanaSub#5 js:2:solana:2kd3E2Kh7xvcQ1UVVfpys5GHVo1KKKRZXVmuTmkYWK4n:solanaSub
undefined: 0.0224648 SOL (100ops) (3ZgtNrSv7F5uhNVWJJkKKvtQVnaubN3QDDJkvTtwMPdF on 44'/501'/6') solanaSub#6 js:2:solana:3ZgtNrSv7F5uhNVWJJkKKvtQVnaubN3QDDJkvTtwMPdF:solanaSub
undefined: 0.0712896 SOL (99ops) (9UP1mN61QFowx7zxTBRw3UrV9o8JoyQ6jjsLQfLedG8N on 44'/501'/7') solanaSub#7 js:2:solana:9UP1mN61QFowx7zxTBRw3UrV9o8JoyQ6jjsLQfLedG8N:solanaSub
undefined: 0.0954752 SOL (73ops) (AAM59Hc6eC3aASjNbVAitFYKnCcirNcu554gj77QBHME on 44'/501'/8') solanaSub#8 js:2:solana:AAM59Hc6eC3aASjNbVAitFYKnCcirNcu554gj77QBHME:solanaSub
undefined: 0.0148924 SOL (73ops) (6nMswXFvmTgzxhGmxjJYVQNoUJaFjM1arwAafHcxDbxK on 44'/501'/9') solanaSub#9 js:2:solana:6nMswXFvmTgzxhGmxjJYVQNoUJaFjM1arwAafHcxDbxK:solanaSub
undefined: 0 SOL (0ops) (GiLkLhWJiNk6EsgwA1KzNbsBoJAANa46M6Rq5bVCxTFG on 44'/501'/10') solanaSub#10 js:2:solana:GiLkLhWJiNk6EsgwA1KzNbsBoJAANa46M6Rq5bVCxTFG:solanaSub
undefined: 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: 10.5471 XRP (201ops) (r9etPtq3oboweMPju5gdYufmvwhH2euz8z on 44'/144'/0'/0/0) #0 js:2:ripple:r9etPtq3oboweMPju5gdYufmvwhH2euz8z:
undefined: 17.0344 XRP (201ops) (rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH on 44'/144'/1'/0/0) #1 js:2:ripple:rX5hKMbYJ2HmKV8se7b2QbbXRiPYArbkH:
undefined: 16.4232 XRP (202ops) (rMoFGec38toFg9ncbi9YbrYYmrP3G5exqn on 44'/144'/2'/0/0) #2 js:2:ripple:rMoFGec38toFg9ncbi9YbrYYmrP3G5exqn:
undefined: 0 XRP (0ops) (rrnxW3THwB1ubsE9V78Lek6V1XYnNrodxC on 44'/144'/3'/0/0) #3 js:2:ripple:rrnxW3THwB1ubsE9V78Lek6V1XYnNrodxC:
Performance ⏲ 37min 5s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 14.3s 36min 29s 2min 19s 2min 11s 14min 14s 2min 13s 59min 27s 44min 39s
Casper (7) 0.42ms 29s 1.43ms 2.82ms N/A N/A N/A N/A
Celo (11) 925ms 45.1s 5.5s 9.7s 36.6s 35.7s 1min 42s N/A
osmosis (17) 291ms 27.1s 8ms 2049ms 31.6s 376ms 52.2s 31.1s
desmos (17) 241ms 25.3s 28ms 5.6s 40.5s 1260ms 1.41ms N/A
dydx (17) 855ms 41.5s 17ms N/A N/A N/A N/A N/A
umee (17) 235ms 25.5s 41ms 2429ms 37.7s 349ms 2.21ms N/A
persistence (17) 912ms 50.3s 32ms 5.3s 34.3s 779ms 1.40ms N/A
quicksilver (17) 457ms 50.7s 33ms 2278ms 42.6s 374ms 3.09ms N/A
onomy (17) 885ms 44.2s 20ms 7s 41.5s 1108ms 12ms N/A
sei_network (15) 178ms 17.6s 4.15ms N/A N/A N/A N/A N/A
stargaze (17) 239ms 20s 36ms 2036ms 31.7s 282ms 1.18ms N/A
coreum (17) 208ms 38.7s 12ms 1437ms 21.7s 331ms 36ms N/A
injective (0) 210ms N/A N/A N/A N/A N/A N/A N/A
Crypto org (6) 0.94ms 21.9s 2.28ms 4.31ms N/A N/A N/A N/A
Elrond (7) 273ms 56s 2622ms 16ms 19.3s 1024ms 40.2s 45.2s
Hedera (4) 0.40ms 30.2s 180ms 791ms 25.7s 1896ms 41.3s 10min 2s
InternetComputer (7) 0.31ms 9.3s 1.60ms 3.7s 10.4s 1095ms 21.3s 21.2s
Stacks (3) 0.40ms 23.9s 3.1s 4.4s 9.8s 554ms 7min 14s N/A
Stellar (5) 0.58ms 1min 45s 2053ms 3.4s 17.1s 11s 21.5s N/A
VeChain VTHO (3) 0.53ms 9.1s 0.79ms 1521ms N/A N/A N/A N/A
VeChain VET (3) 0.12ms 9.8s 1.02ms N/A N/A N/A N/A N/A
Algorand (5) 0.68ms 60.4s 1.63ms 1902ms 29s 299ms 30.8s 30.8s
Bitcoin Testnet (9) 0.54ms 58.5s 815ms 456ms 24.4s 304ms 21.4s 21.3s
Bitcoin Cash (6) 0.46ms 27.4s 8ms 948ms 31.1s 522ms 56.5s 66.9s
Bitcoin Gold (4) 0.33ms 22.2s 2.10ms 584ms 14.3s 331ms 33.6s 34.9s
Dash (6) 0.55ms 12.9s 9ms 721ms 25.5s 508ms 44.8s 44.3s
Digibyte (6) 0.18ms 19.8s 5ms 830ms 30.6s 513ms 57.1s 56.5s
DogeCoin (6) 0.34ms 10.4s 6ms 421ms 10.7s 300ms 22.2s 22s
Komodo (4) 0.22ms 7.7s 9ms 648ms 21.5s 391ms 44.7s 44.4s
Litecoin (6) 0.15ms 20.9s 10ms 653ms 21s 412ms 44.8s 45.2s
PivX (4) 0.20ms 16.2s 6.9s 936ms 17s 368ms 58.9s 14min 40s
ZCash (4) 0.63ms 6.4s 1.33ms N/A N/A N/A N/A N/A
Horizen (4) 2.45ms 8.3s 980ms 568ms 14.9s 611ms 21.9s 21.9s
Ethereum Classic (5) 57ms 12.6s 1.40ms N/A N/A N/A N/A N/A
Polygon (9) 110ms 20.6s 18ms 2805ms 11s 273ms 30.6s 30.7s
Ethereum Sepolia (5) 43ms 6s 1.65ms 2174ms N/A N/A N/A N/A
Ethereum Holesky (5) 33ms 5.6s 27ms 3.5s 9.8s 667ms 61.4s 30.8s
Arbitrum (5) 95ms 84.7s 19ms 3.9s 10s 1573ms 52.6s 58.1s
Arbitrum Sepolia (5) 54ms 7s 30ms 3.8s 9.7s 1610ms 31.9s 31.9s
Flare (5) 30ms 5.4s 18ms N/A N/A N/A N/A N/A
Songbird (5) 45ms 6s 17ms 1562ms 9.4s 370ms 31.6s 31.9s
Moonbeam (5) 43ms 94s 11ms 972ms 9.3s 333ms 1min 53s 62.3s
RSK (4) 53ms 5.5s 1.22ms N/A N/A N/A N/A N/A
Bittorent Chain (5) 53ms 6.4s 16ms 1489ms 9.8s 460ms 32.2s 32.2s
OP Mainnet (4) 77ms 78.1s 12ms N/A N/A N/A N/A N/A
OP Sepolia (0) 55ms 2110ms N/A N/A N/A N/A N/A N/A
Energy Web (5) 61ms 6.8s 33ms 3.6s 9.7s 1069ms 32.6s 32.6s
Astar (5) 48ms 8.1s 91ms 4.7s 9.9s 994ms 4min 53s 34.1s
Metis (5) 33ms 8.1s 1.69ms 923ms 9.7s 1091ms 64.1s 34.3s
Moonriver (5) 37ms 95.2s 12ms 1831ms 9.3s 358ms 1min 55s 62.9s
Velas EVM (5) 51ms 4.9s 5ms 2053ms 9.7s 3.9s 67.8s 31.3s
Syscoin (5) 51ms 3.9s 9ms 785ms 10.9s 255ms 17min 51s 31.1s
Polygon zkEVM Testnet (0) 53ms N/A N/A N/A N/A N/A N/A N/A
Base (4) 88ms 68.1s 5ms N/A N/A N/A N/A N/A
Base Sepolia (5) 55ms 5.4s 21ms 6.2s 10.2s 748ms 31.8s 31.8s
Klaytn (5) 51ms 11.2s 25ms 6.1s 10.3s 1760ms 34.5s 34s
Neon EVM (5) 53ms 9.8s 13ms 5.6s 11.3s 1293ms 2min 4s 35.5s
Lukso (5) 37ms 4s 26ms 640ms 10.6s 187ms 50.8s 30.9s
Linea (5) 69ms 84.3s 11ms 3.1s 11.3s 908ms 57.5s 52.3s
Linea Sepolia (0) 28ms 12s N/A N/A N/A N/A N/A N/A
Blast (4) 57ms 61.4s 89.3s 599ms 11.6s 374ms N/A N/A
Blast Sepolia (1) 49ms 2751ms 4.20ms 816ms N/A N/A N/A N/A
Scroll (1) 55ms 2498ms 1.76ms N/A N/A N/A N/A N/A
Scroll Sepolia (1) 51ms 2485ms 6ms N/A N/A N/A N/A N/A
NEAR (9) 6.5s 32.4s 3.16ms 591ms N/A N/A N/A N/A
Solana (10) 113ms 7min 40s 26.3s 6.4s 11.3s 54s 1min 41s N/A
Tezos (2) 165ms 12.5s 0.50ms 1733ms N/A N/A N/A N/A
XRP (3) 0.34ms 7.3s 1.28ms 5.2s 8.6s 455ms 22.3s 22.3s

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

@github-actions
Copy link

Choose a reason for hiding this comment

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

[Bot] Testing with 'Nitrogen' ❌ 2 txs ($6.64) ⏲ 2min 29s

❌ 1 specs have problems: NEAR

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

❌ 2 mutation errors
necessary accounts resynced in 0.22ms
▬ NEAR 2.0.0 on nanoS 2.1.0
→ FROM undefined: 0.444538 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 'Send max to another account'
→ TO undefined: 0.445089 NEAR (9ops) (e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2 on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2:nearbip44h
✔️ transaction 
SEND MAX
TO e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2
STATUS (702ms)
  amount: 0.39159366019945095419 NEAR
  estimated fees: 0.0008349895375 NEAR
  total spent: 0.39242864973695095419 NEAR
errors: 
warnings: amount NearRecommendUnstake
⚠️ Error: device action timeout. Recent events was:
{"text":"Near app","x":41,"y":6,"w":48,"h":11}
{"text":"is ready","x":41,"y":17,"w":48,"h":11}
{"text":"Receiving","x":36,"y":3,"w":92,"h":11}
{"text":"Transaction...","x":26,"y":15,"w":102,"h":11}
{"text":"View header","x":29,"y":19,"w":99,"h":11}
(totally spent 60.7s – ends at 2024-07-01T11:06:15.680Z)
necessary accounts resynced in 0.14ms
▬ NEAR 2.0.0 on nanoS 2.1.0
→ FROM undefined: 0.445089 NEAR (9ops) (e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2 on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2:nearbip44h (! sum of ops 0.53976724470021827 NEAR)
max spendable ~0.392221
★ using mutation 'Move 50% to another account'
→ TO undefined: 0.0518366 NEAR (18ops) (cd21c9f87afdf5bdc49cfb9eb36a21cacdd7f5ce182cf98d0b48a5e9a875398e on 44'/397'/0'/0'/3') nearbip44h#3 js:2:near:cd21c9f87afdf5bdc49cfb9eb36a21cacdd7f5ce182cf98d0b48a5e9a875398e:nearbip44h
✔️ transaction 
SEND  0.19611095086854379201 NEAR
TO cd21c9f87afdf5bdc49cfb9eb36a21cacdd7f5ce182cf98d0b48a5e9a875398e
STATUS (427ms)
  amount: 0.19611095086854379201 NEAR
  estimated fees: 0.0008349895375 NEAR
  total spent: 0.19694594040604379201 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.5s – ends at 2024-07-01T11:06:15.683Z)
⚠️ 2 spec hints
  • Spec NEAR:
    • mutations should define a testDestination(): Send max to another account, Move 50% to another account
    • mutation Send max to another account: unexpected status.warnings.amount = NearRecommendUnstake: NearRecommendUnstake – Please implement expectStatusWarnings on the mutation if expected
Details of the 2 mutations

Spec NEAR (11)

Spec NEAR found 11 NEAR accounts (preload: 956ms). Will use NEAR 2.0.0 on nanoS 2.1.0
undefined: 0.444538 NEAR (66ops) (0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf on 44'/397'/0'/0'/0') nearbip44h#0 js:2:near:0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf:nearbip44h
undefined: 0.0519619 NEAR (20ops) (85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798 on 44'/397'/0'/0'/1') nearbip44h#1 js:2:near:85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798:nearbip44h
undefined: 0.0520234 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.0520874 NEAR (22ops) (aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93 on 44'/397'/0'/0'/4') nearbip44h#4 js:2:near:aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93:nearbip44h
undefined: 0.0524977 NEAR (32ops) (07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce on 44'/397'/0'/0'/5') nearbip44h#5 js:2:near:07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce:nearbip44h
undefined: 0.0519887 NEAR (18ops) (bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7 on 44'/397'/0'/0'/6') nearbip44h#6 js:2:near:bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7:nearbip44h
undefined: 0.445089 NEAR (9ops) (e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2 on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2:nearbip44h
undefined: 0.0521191 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
necessary accounts resynced in 0.22ms
▬ NEAR 2.0.0 on nanoS 2.1.0
→ FROM undefined: 0.444538 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 'Send max to another account'
→ TO undefined: 0.445089 NEAR (9ops) (e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2 on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2:nearbip44h
✔️ transaction 
SEND MAX
TO e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2
STATUS (702ms)
  amount: 0.39159366019945095419 NEAR
  estimated fees: 0.0008349895375 NEAR
  total spent: 0.39242864973695095419 NEAR
errors: 
warnings: amount NearRecommendUnstake
⚠️ Error: device action timeout. Recent events was:
{"text":"Near app","x":41,"y":6,"w":48,"h":11}
{"text":"is ready","x":41,"y":17,"w":48,"h":11}
{"text":"Receiving","x":36,"y":3,"w":92,"h":11}
{"text":"Transaction...","x":26,"y":15,"w":102,"h":11}
{"text":"View header","x":29,"y":19,"w":99,"h":11}
(totally spent 60.7s – ends at 2024-07-01T11:06:15.685Z)
necessary accounts resynced in 0.14ms
▬ NEAR 2.0.0 on nanoS 2.1.0
→ FROM undefined: 0.445089 NEAR (9ops) (e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2 on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2:nearbip44h (! sum of ops 0.53976724470021827 NEAR)
max spendable ~0.392221
★ using mutation 'Move 50% to another account'
→ TO undefined: 0.0518366 NEAR (18ops) (cd21c9f87afdf5bdc49cfb9eb36a21cacdd7f5ce182cf98d0b48a5e9a875398e on 44'/397'/0'/0'/3') nearbip44h#3 js:2:near:cd21c9f87afdf5bdc49cfb9eb36a21cacdd7f5ce182cf98d0b48a5e9a875398e:nearbip44h
✔️ transaction 
SEND  0.19611095086854379201 NEAR
TO cd21c9f87afdf5bdc49cfb9eb36a21cacdd7f5ce182cf98d0b48a5e9a875398e
STATUS (427ms)
  amount: 0.19611095086854379201 NEAR
  estimated fees: 0.0008349895375 NEAR
  total spent: 0.19694594040604379201 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.5s – ends at 2024-07-01T11:06:15.686Z)

Details of the 3 uncovered mutations

Spec NEAR (3)

  • Stake: balance is too low (9)
  • Unstake: balance is too low for fees (9)
  • Withdraw: balance is too low for fees (9)
Portfolio ($6.64) – Details of the 1 currencies
Spec (accounts) State Remaining Runs (est) funds?
NEAR (11) 226 ops , 0.785485 NEAR ($6.64) 👍 175 0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf
undefined: 0.444538 NEAR (66ops) (0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf on 44'/397'/0'/0'/0') nearbip44h#0 js:2:near:0573d7a9c745fa9fe224b080832aa93d740760b94f192c9c141c709945e9aaaf:nearbip44h
undefined: 0.0519619 NEAR (20ops) (85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798 on 44'/397'/0'/0'/1') nearbip44h#1 js:2:near:85ee4d429d693859cafc86dcff88892df1f9cbccec810e74e1916662bd408798:nearbip44h
undefined: 0.0520234 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.0520874 NEAR (22ops) (aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93 on 44'/397'/0'/0'/4') nearbip44h#4 js:2:near:aebb4b3826d186898afbe2148163ed672f26764c9505dd51a58491be59679b93:nearbip44h
undefined: 0.0524977 NEAR (32ops) (07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce on 44'/397'/0'/0'/5') nearbip44h#5 js:2:near:07e333a5dd055acb82fb4e340d8e6f39cd74e1250e440e215be291c16c1c2fce:nearbip44h
undefined: 0.0519887 NEAR (18ops) (bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7 on 44'/397'/0'/0'/6') nearbip44h#6 js:2:near:bd9d279f6c0cb1ab5273567b47bd0cfee84fc9b788093cba9d9a70fb4d15b7f7:nearbip44h
undefined: 0.445089 NEAR (9ops) (e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2 on 44'/397'/0'/0'/7') nearbip44h#7 js:2:near:e253418d030acd65f3ad034ee8104d2a3dc3ea67b6f866ba16ed4e3c8564bbb2:nearbip44h
undefined: 0.0521191 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
Performance ⏲ 2min 29s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 956ms 20.4s 2.06ms 1129ms N/A N/A N/A N/A
NEAR (9) 956ms 20.4s 2.06ms 1129ms N/A N/A N/A N/A

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

@github-actions
Copy link

Choose a reason for hiding this comment

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

[Bot] Testing with 'Nitrogen' 💰 1 miss funds ($0.15) ⏲ 11.9s

💰 1 specs may miss funds: cosmos

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

⚠️ 1 spec hints
  • Spec cosmos:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
Details of the 0 mutations

Spec cosmos (10)

Spec cosmos found 10 Cosmos accounts (preload: 289ms). Will use Cosmos 2.35.23 on nanoS 2.1.0
undefined: 0.003586 ATOM (34ops) (cosmos1rs97j43nfyvc689y5rjvnnhrq3tes6ghmug9rd on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos1rs97j43nfyvc689y5rjvnnhrq3tes6ghmug9rd:
undefined: 0 ATOM (18ops) (cosmos1qvtnzptp30maznnhdg30xl2jtdq2shpn8u9ktm on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1qvtnzptp30maznnhdg30xl2jtdq2shpn8u9ktm:
undefined: 0 ATOM (11ops) (cosmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswcqdxq7 on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswcqdxq7:
undefined: 0 ATOM (15ops) (cosmos1hgyf054qztvmty3cayuw9nedftlhejv5tp9rey on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos1hgyf054qztvmty3cayuw9nedftlhejv5tp9rey:
undefined: 0 ATOM (9ops) (cosmos1vc7s929uh2yxyhau4wsg5th9jzedvkurrussma on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos1vc7s929uh2yxyhau4wsg5th9jzedvkurrussma:
undefined: 0.00466 ATOM (9ops) (cosmos1qgrd8srhvald995uvpeyncvwg7afgkmr0ur3xu on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos1qgrd8srhvald995uvpeyncvwg7afgkmr0ur3xu:
undefined: 0.004609 ATOM (8ops) (cosmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazx5l9696 on 44'/118'/6'/0/0) #6 js:2:cosmos:cosmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazx5l9696:
undefined: 0.006491 ATOM (10ops) (cosmos1v283e7h2plllyjwgqrexv2ge5e4z252uzpmlkn on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos1v283e7h2plllyjwgqrexv2ge5e4z252uzpmlkn:
undefined: 0.004927 ATOM (1ops) (cosmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5rz9vul on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5rz9vul:
undefined: 0 ATOM (0ops) (cosmos1jgk668h53gd9wn09mndq7uzgk80nr5d8zssx7x on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos1jgk668h53gd9wn09mndq7uzgk80nr5d8zssx7x:

Details of the 6 uncovered mutations

Spec cosmos (6)

  • send some: balance is too low for send (10)
  • send max: balance is too low for send max (10)
  • delegate new validators: only one out of 2 accounts is not going to delegate (5), can delegate (5)
  • undelegate: balance is too low (10)
  • redelegate: balance is too low for redelegate (10)
  • claim rewards: balance is too low for claim rewards (10)
Portfolio ($0.15) – Details of the 1 currencies
Spec (accounts) State Remaining Runs (est) funds?
cosmos (10) 115 ops , 0.024273 ATOM ($0.15) ⚠️ 0 cosmos1rs97j43nfyvc689y5rjvnnhrq3tes6ghmug9rd
undefined: 0.003586 ATOM (34ops) (cosmos1rs97j43nfyvc689y5rjvnnhrq3tes6ghmug9rd on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos1rs97j43nfyvc689y5rjvnnhrq3tes6ghmug9rd:
undefined: 0 ATOM (18ops) (cosmos1qvtnzptp30maznnhdg30xl2jtdq2shpn8u9ktm on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1qvtnzptp30maznnhdg30xl2jtdq2shpn8u9ktm:
undefined: 0 ATOM (11ops) (cosmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswcqdxq7 on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswcqdxq7:
undefined: 0 ATOM (15ops) (cosmos1hgyf054qztvmty3cayuw9nedftlhejv5tp9rey on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos1hgyf054qztvmty3cayuw9nedftlhejv5tp9rey:
undefined: 0 ATOM (9ops) (cosmos1vc7s929uh2yxyhau4wsg5th9jzedvkurrussma on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos1vc7s929uh2yxyhau4wsg5th9jzedvkurrussma:
undefined: 0.00466 ATOM (9ops) (cosmos1qgrd8srhvald995uvpeyncvwg7afgkmr0ur3xu on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos1qgrd8srhvald995uvpeyncvwg7afgkmr0ur3xu:
undefined: 0.004609 ATOM (8ops) (cosmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazx5l9696 on 44'/118'/6'/0/0) #6 js:2:cosmos:cosmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazx5l9696:
undefined: 0.006491 ATOM (10ops) (cosmos1v283e7h2plllyjwgqrexv2ge5e4z252uzpmlkn on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos1v283e7h2plllyjwgqrexv2ge5e4z252uzpmlkn:
undefined: 0.004927 ATOM (1ops) (cosmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5rz9vul on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5rz9vul:
undefined: 0 ATOM (0ops) (cosmos1jgk668h53gd9wn09mndq7uzgk80nr5d8zssx7x on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos1jgk668h53gd9wn09mndq7uzgk80nr5d8zssx7x:
Performance ⏲ 11.9s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 289ms 6.5s 1.85ms N/A N/A N/A N/A N/A
cosmos (9) 289ms 6.5s 1.85ms N/A N/A N/A N/A N/A

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

@github-actions
Copy link

Choose a reason for hiding this comment

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

[Bot] Testing with 'Nitrogen' ✅ 38 txs 💰 2 miss funds ($24.98) ⏲ 3min 4s

✅ 8 specs are successful: axelar, desmos, umee, persistence, quicksilver, onomy, stargaze, coreum
💰 2 specs may miss funds: cosmos, dydx

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

4 critical spec errors

Spec osmosis failed!

Error: "Error during osmo synchronization: "API HTTP 429 https://osmosis-api.polkachu.com/cosmos/staking/v1beta1/delegations/osmo1vvzwc6l3wfdaqa9rncex8k2uwtpwztswsm7kkv

Spec secret_network failed!

Error: timeout of 60000ms exceeded

Spec sei_network failed!

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

Spec injective failed!

Error: "Error during injective synchronization: "API HTTP 429 https://injective-api.polkachu.com/cosmos/staking/v1beta1/delegators/inj1vzjwweta3hegt99vfgrvmcq7rr5532yjsgxd4a/redelegations
⚠️ 5 spec hints
  • Spec cosmos:
    • 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 umee:
    • mutation claim rewards: unexpected status.warnings.claimReward = ClaimRewardsFeesWarning: ClaimRewardsFeesWarning – Please implement expectStatusWarnings on the mutation if expected
  • Spec persistence:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
  • Spec coreum:
    • mutation claim rewards: unexpected status.warnings.claimReward = ClaimRewardsFeesWarning: ClaimRewardsFeesWarning – Please implement expectStatusWarnings on the mutation if expected
Details of the 38 mutations

Spec axelar (18)

Spec axelar found 18 Axelar accounts (preload: 214ms). Will use Cosmos 2.35.23 on nanoS 2.1.0
undefined: 0.065146 AXL (2ops) (axelar1rs97j43nfyvc689y5rjvnnhrq3tes6ghlj7dgv on 44'/118'/0'/0/0) #0 js:2:axelar:axelar1rs97j43nfyvc689y5rjvnnhrq3tes6ghlj7dgv:
undefined: 0 AXL (6ops) (axelar1qvtnzptp30maznnhdg30xl2jtdq2shpnrjn7q6 on 44'/118'/1'/0/0) #1 js:2:axelar:axelar1qvtnzptp30maznnhdg30xl2jtdq2shpnrjn7q6:
undefined: 0 AXL (3ops) (axelar1vvzwc6l3wfdaqa9rncex8k2uwtpwztswuwmwtl on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1vvzwc6l3wfdaqa9rncex8k2uwtpwztswuwmwtl:
undefined: 0.000549 AXL (1ops) (axelar1hgyf054qztvmty3cayuw9nedftlhejv500ntj9 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar1hgyf054qztvmty3cayuw9nedftlhejv500ntj9:
undefined: 0 AXL (8ops) (axelar1vc7s929uh2yxyhau4wsg5th9jzedvkur8jxcsu on 44'/118'/4'/0/0) #4 js:2:axelar:axelar1vc7s929uh2yxyhau4wsg5th9jzedvkur8jxcsu:
undefined: 0.012207 AXL (14ops) (axelar1qgrd8srhvald995uvpeyncvwg7afgkmrtj4eda on 44'/118'/5'/0/0) #5 js:2:axelar:axelar1qgrd8srhvald995uvpeyncvwg7afgkmrtj4eda:
undefined: 0.047652 AXL (5ops) (axelar1n6vccpa77x7xyhnk98jy6gg3rmgjkazxs3njwm on 44'/118'/6'/0/0) #6 js:2:axelar:axelar1n6vccpa77x7xyhnk98jy6gg3rmgjkazxs3njwm:
undefined: 0.019702 AXL (0ops) (axelar1v283e7h2plllyjwgqrexv2ge5e4z252ux0dhaj on 44'/118'/7'/0/0) #7 js:2:axelar:axelar1v283e7h2plllyjwgqrexv2ge5e4z252ux0dhaj:
undefined: 0.026395 AXL (3ops) (axelar1g9t7sv8y0mvu2qd0xguc40xujnu94rh58vnyh7 on 44'/118'/8'/0/0) #8 js:2:axelar:axelar1g9t7sv8y0mvu2qd0xguc40xujnu94rh58vnyh7:
undefined: 0.671528 AXL (13ops) (axelar1jgk668h53gd9wn09mndq7uzgk80nr5d8x7xw48 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar1jgk668h53gd9wn09mndq7uzgk80nr5d8x7xw48:
undefined: 0.081875 AXL (3ops) (axelar1733g3dfzj6tulcqtvz628ypuqj0hvlrz0fkn95 on 44'/118'/10'/0/0) #10 js:2:axelar:axelar1733g3dfzj6tulcqtvz628ypuqj0hvlrz0fkn95:
undefined: 0 AXL (3ops) (axelar1q09970dekm5hdku5tta7p9w6kldyyf252uahem on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1q09970dekm5hdku5tta7p9w6kldyyf252uahem:
undefined: 0.355148 AXL (2ops) (axelar1yhlye27fl05kg4nhmeu5d579m8ups9ewjqsjfg on 44'/118'/12'/0/0) #12 js:2:axelar:axelar1yhlye27fl05kg4nhmeu5d579m8ups9ewjqsjfg:
undefined: 0.107013 AXL (2ops) (axelar1890w5jltm6wmq2jr9f9e8x4vhs5fx30q563y9k on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1890w5jltm6wmq2jr9f9e8x4vhs5fx30q563y9k:
undefined: 0.464741 AXL (1ops) (axelar1yq6ehsdwpsvae9exgjmzt4dx78y4j5apuslc07 on 44'/118'/14'/0/0) #14 js:2:axelar:axelar1yq6ehsdwpsvae9exgjmzt4dx78y4j5apuslc07:
undefined: 0.026737 AXL (0ops) (axelar10wwjgt3uluxt4zq4qxnkcv96nyz4catanqfeq0 on 44'/118'/15'/0/0) #15 js:2:axelar:axelar10wwjgt3uluxt4zq4qxnkcv96nyz4catanqfeq0:
undefined: 0.012753 AXL (0ops) (axelar1xr8krhp99mp9ncrz6dfgre542nv0rc8l0kp23s on 44'/118'/16'/0/0) #16 js:2:axelar:axelar1xr8krhp99mp9ncrz6dfgre542nv0rc8l0kp23s:
undefined: 0 AXL (0ops) (axelar102w826rmvswfhs4zsv2ujhylmd92c28pk2d8a2 on 44'/118'/17'/0/0) #17 js:2:axelar:axelar102w826rmvswfhs4zsv2ujhylmd92c28pk2d8a2:
necessary accounts resynced in 0.10ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.065146 AXL (2ops) (axelar1rs97j43nfyvc689y5rjvnnhrq3tes6ghlj7dgv on 44'/118'/0'/0/0) #0 js:2:axelar:axelar1rs97j43nfyvc689y5rjvnnhrq3tes6ghlj7dgv: 0.065146 AXL spendable. 

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

with fees=0.006166
STATUS (325ms)
  amount: 0.05898 AXL
  estimated fees: 0.006166 AXL
  total spent: 0.065146 AXL
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (53ms) optimistic operation: 
  -0.065146 AXL      OUT        B944525D8815B5A7F4145DC16097726A6D766E24DADBD752499A0E0F27BA2F74 2024-07-01T11:39
✔️ operation confirmed (0.11ms): 
  -0.065146 AXL      OUT        B944525D8815B5A7F4145DC16097726A6D766E24DADBD752499A0E0F27BA2F74 2024-07-01T11:39
✔️ undefined: 0.065146 AXL (2ops) (axelar1rs97j43nfyvc689y5rjvnnhrq3tes6ghlj7dgv on 44'/118'/0'/0/0) #0 js:2:axelar:axelar1rs97j43nfyvc689y5rjvnnhrq3tes6ghlj7dgv: 0.065146 AXL spendable. 
✔️ destination operation 
  ? -65146           OUT        B944525D8815B5A7F4145DC16097726A6D766E24DADBD752499A0E0F27BA2F74 2024-07-01T11:39

necessary accounts resynced in 0.15ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.047652 AXL (5ops) (axelar1n6vccpa77x7xyhnk98jy6gg3rmgjkazxs3njwm on 44'/118'/6'/0/0) #6 js:2:axelar:axelar1n6vccpa77x7xyhnk98jy6gg3rmgjkazxs3njwm: 0.047652 AXL spendable. 

max spendable ~0.040667
★ using mutation 'send some'
→ TO undefined: 0.107013 AXL (2ops) (axelar1890w5jltm6wmq2jr9f9e8x4vhs5fx30q563y9k on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1890w5jltm6wmq2jr9f9e8x4vhs5fx30q563y9k:
✔️ transaction 
SEND  0.013245 AXL
TO axelar1890w5jltm6wmq2jr9f9e8x4vhs5fx30q563y9k

with fees=0.006189
  memo=LedgerLiveBot
STATUS (448ms)
  amount: 0.013245 AXL
  estimated fees: 0.006189 AXL
  total spent: 0.019434 AXL
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (53ms) optimistic operation: 
  -0.019434 AXL      OUT        6F74F9A6CD14CB0C0B3C961DD4216940E126241722D4557B2E4A450992CFC132 2024-07-01T11:39
✔️ operation confirmed (0.14ms): 
  -0.019434 AXL      OUT        6F74F9A6CD14CB0C0B3C961DD4216940E126241722D4557B2E4A450992CFC132 2024-07-01T11:39
✔️ undefined: 0.047652 AXL (5ops) (axelar1n6vccpa77x7xyhnk98jy6gg3rmgjkazxs3njwm on 44'/118'/6'/0/0) #6 js:2:axelar:axelar1n6vccpa77x7xyhnk98jy6gg3rmgjkazxs3njwm: 0.047652 AXL spendable. 
✔️ destination operation 
  ? -19434           OUT        6F74F9A6CD14CB0C0B3C961DD4216940E126241722D4557B2E4A450992CFC132 2024-07-01T11:39

necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.026395 AXL (3ops) (axelar1g9t7sv8y0mvu2qd0xguc40xujnu94rh58vnyh7 on 44'/118'/8'/0/0) #8 js:2:axelar:axelar1g9t7sv8y0mvu2qd0xguc40xujnu94rh58vnyh7: 0.026395 AXL spendable. 

max spendable ~0.01941
★ using mutation 'send some'
→ TO undefined: 0.019702 AXL (0ops) (axelar1v283e7h2plllyjwgqrexv2ge5e4z252ux0dhaj on 44'/118'/7'/0/0) #7 js:2:axelar:axelar1v283e7h2plllyjwgqrexv2ge5e4z252ux0dhaj:
✔️ transaction 
SEND  0.01003 AXL
TO axelar1v283e7h2plllyjwgqrexv2ge5e4z252ux0dhaj

with fees=0.006182
  memo=LedgerLiveBot
STATUS (607ms)
  amount: 0.01003 AXL
  estimated fees: 0.006182 AXL
  total spent: 0.016212 AXL
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (402ms) optimistic operation: 
  -0.016212 AXL      OUT        6AC9307188A1A68938C8E883BA950C96DEBC093040903F7E7A0F6ED3AB925FE0 2024-07-01T11:39
✔️ operation confirmed (0.19ms): 
  -0.016212 AXL      OUT        6AC9307188A1A68938C8E883BA950C96DEBC093040903F7E7A0F6ED3AB925FE0 2024-07-01T11:39
✔️ undefined: 0.026395 AXL (3ops) (axelar1g9t7sv8y0mvu2qd0xguc40xujnu94rh58vnyh7 on 44'/118'/8'/0/0) #8 js:2:axelar:axelar1g9t7sv8y0mvu2qd0xguc40xujnu94rh58vnyh7: 0.026395 AXL spendable. 
✔️ destination operation 
  ? -16212           OUT        6AC9307188A1A68938C8E883BA950C96DEBC093040903F7E7A0F6ED3AB925FE0 2024-07-01T11:39

necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.671528 AXL (13ops) (axelar1jgk668h53gd9wn09mndq7uzgk80nr5d8x7xw48 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar1jgk668h53gd9wn09mndq7uzgk80nr5d8x7xw48: (! sum of ops 0.491805 AXL) 0.671425 AXL spendable. 0.000103 AXL delegated. 
DELEGATIONS
  to axelarvaloper1fgklp9hemczlwtqp9jqzq3xahh38hznx7vd805 0.000103 AXL  (claimable 0.000103)

max spendable ~0.664433
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.000158 AXL
TO 
  0.000158 -> axelarvaloper1qy9uq03rkpqkzwsa4fz7xxetkxttdcj6tf09pg
with fees=0.011392
  memo=LedgerLiveBot
STATUS (439ms)
  amount: 0.000158 AXL
  estimated fees: 0.011392 AXL
  total spent: 0.01155 AXL
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (73ms) optimistic operation: 
  -0.01155 AXL       DELEGATE   A4561501A63E3B72700506F5EF128F575DD2BF32338A8B7E90FBA7F68024EFBC 2024-07-01T11:39
    to axelarvaloper1qy9uq03rkpqkzwsa4fz7xxetkxttdcj6tf09pg 0.000158 AXL    
✔️ operation confirmed (0.12ms): 
  -0.01155 AXL       DELEGATE   A4561501A63E3B72700506F5EF128F575DD2BF32338A8B7E90FBA7F68024EFBC 2024-07-01T11:39
    to axelarvaloper1qy9uq03rkpqkzwsa4fz7xxetkxttdcj6tf09pg 0.000158 AXL    
✔️ undefined: 0.671528 AXL (13ops) (axelar1jgk668h53gd9wn09mndq7uzgk80nr5d8x7xw48 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar1jgk668h53gd9wn09mndq7uzgk80nr5d8x7xw48: (! sum of ops 0.491805 AXL) 0.671425 AXL spendable. 0.000103 AXL delegated. 
DELEGATIONS
  to axelarvaloper1fgklp9hemczlwtqp9jqzq3xahh38hznx7vd805 0.000103 AXL  (claimable 0.000103)


Spec cosmos (10)

Spec cosmos found 10 Cosmos accounts (preload: 478ms). Will use Cosmos 2.35.23 on nanoS 2.1.0
undefined: 0.003586 ATOM (34ops) (cosmos1rs97j43nfyvc689y5rjvnnhrq3tes6ghmug9rd on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos1rs97j43nfyvc689y5rjvnnhrq3tes6ghmug9rd:
undefined: 0 ATOM (18ops) (cosmos1qvtnzptp30maznnhdg30xl2jtdq2shpn8u9ktm on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1qvtnzptp30maznnhdg30xl2jtdq2shpn8u9ktm:
undefined: 0 ATOM (11ops) (cosmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswcqdxq7 on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswcqdxq7:
undefined: 0 ATOM (15ops) (cosmos1hgyf054qztvmty3cayuw9nedftlhejv5tp9rey on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos1hgyf054qztvmty3cayuw9nedftlhejv5tp9rey:
undefined: 0 ATOM (9ops) (cosmos1vc7s929uh2yxyhau4wsg5th9jzedvkurrussma on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos1vc7s929uh2yxyhau4wsg5th9jzedvkurrussma:
undefined: 0.00466 ATOM (9ops) (cosmos1qgrd8srhvald995uvpeyncvwg7afgkmr0ur3xu on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos1qgrd8srhvald995uvpeyncvwg7afgkmr0ur3xu:
undefined: 0.004609 ATOM (8ops) (cosmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazx5l9696 on 44'/118'/6'/0/0) #6 js:2:cosmos:cosmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazx5l9696:
undefined: 0.006491 ATOM (10ops) (cosmos1v283e7h2plllyjwgqrexv2ge5e4z252uzpmlkn on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos1v283e7h2plllyjwgqrexv2ge5e4z252uzpmlkn:
undefined: 0.004927 ATOM (1ops) (cosmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5rz9vul on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5rz9vul:
undefined: 0 ATOM (0ops) (cosmos1jgk668h53gd9wn09mndq7uzgk80nr5d8zssx7x on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos1jgk668h53gd9wn09mndq7uzgk80nr5d8zssx7x:

Spec osmosis (failed)


Spec desmos (18)

Spec desmos found 18 Desmos accounts (preload: 493ms). Will use Cosmos 2.35.23 on nanoS 2.1.0
undefined: 0 DSM (4ops) (desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454 on 44'/118'/0'/0/0) #0 js:2:desmos:desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454:
undefined: 0.000317 DSM (8ops) (desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur on 44'/118'/1'/0/0) #1 js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:
undefined: 0.000745 DSM (6ops) (desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx on 44'/118'/2'/0/0) #2 js:2:desmos:desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx:
undefined: 0 DSM (13ops) (desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu on 44'/118'/3'/0/0) #3 js:2:desmos:desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu:
undefined: 0 DSM (11ops) (desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9 on 44'/118'/4'/0/0) #4 js:2:desmos:desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9:
undefined: 0.001174 DSM (19ops) (desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y on 44'/118'/5'/0/0) #5 js:2:desmos:desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y:
undefined: 0 DSM (6ops) (desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz on 44'/118'/6'/0/0) #6 js:2:desmos:desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz:
undefined: 0 DSM (10ops) (desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt on 44'/118'/7'/0/0) #7 js:2:desmos:desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt:
undefined: 0.00234 DSM (10ops) (desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8 on 44'/118'/8'/0/0) #8 js:2:desmos:desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8:
undefined: 0.009259 DSM (11ops) (desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7 on 44'/118'/9'/0/0) #9 js:2:desmos:desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7:
undefined: 0.000726 DSM (8ops) (desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted on 44'/118'/10'/0/0) #10 js:2:desmos:desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted:
undefined: 0.000569 DSM (2ops) (desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z on 44'/118'/11'/0/0) #11 js:2:desmos:desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z:
undefined: 0.088435 DSM (6ops) (desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243 on 44'/118'/12'/0/0) #12 js:2:desmos:desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243:
undefined: 76.0799 DSM (25ops) (desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0 on 44'/118'/13'/0/0) #13 js:2:desmos:desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0:
undefined: 16.1559 DSM (5ops) (desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8 on 44'/118'/14'/0/0) #14 js:2:desmos:desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8:
undefined: 22.9588 DSM (21ops) (desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk on 44'/118'/15'/0/0) #15 js:2:desmos:desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk:
undefined: 29.6404 DSM (2ops) (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:
necessary accounts resynced in 0.12ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.001174 DSM (19ops) (desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y on 44'/118'/5'/0/0) #5 js:2:desmos:desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y: (! sum of ops 0.000443 DSM) 0.001174 DSM spendable. 

max spendable ~0.000849
★ using mutation 'send max'
→ TO undefined: 0 DSM (13ops) (desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu on 44'/118'/3'/0/0) #3 js:2:desmos:desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu:
✔️ transaction 
SEND MAX
TO desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu

with fees=0.000325
STATUS (276ms)
  amount: 0.000849 DSM
  estimated fees: 0.000325 DSM
  total spent: 0.001174 DSM
errors: 
warnings: 
✔️ has been signed! (3.2s) 
✔️ broadcasted! (35ms) optimistic operation: 
  -0.001174 DSM      OUT        580B5F6178D409691CA6D0F9D3E843F865EE3E2831E39C33622266268823733B 2024-07-01T11:39
✔️ operation confirmed (0.13ms): 
  -0.001174 DSM      OUT        580B5F6178D409691CA6D0F9D3E843F865EE3E2831E39C33622266268823733B 2024-07-01T11:39
✔️ undefined: 0.001174 DSM (19ops) (desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y on 44'/118'/5'/0/0) #5 js:2:desmos:desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y: (! sum of ops 0.000443 DSM) 0.001174 DSM spendable. 
✔️ destination operation 
  ? -1174            OUT        580B5F6178D409691CA6D0F9D3E843F865EE3E2831E39C33622266268823733B 2024-07-01T11:39

necessary accounts resynced in 0.10ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.00234 DSM (10ops) (desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8 on 44'/118'/8'/0/0) #8 js:2:desmos:desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8: (! sum of ops 0.000556 DSM) 0.00234 DSM spendable. 

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

with fees=0.000189
  memo=LedgerLiveBot
STATUS (428ms)
  amount: 0.000995 DSM
  estimated fees: 0.000189 DSM
  total spent: 0.001184 DSM
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (56ms) optimistic operation: 
  -0.001184 DSM      OUT        AA47F631F832C2A98B8F67485F48B8F76AB5817CFD92827FBE1DA804D07EFA4A 2024-07-01T11:39
✔️ operation confirmed (0.19ms): 
  -0.001184 DSM      OUT        AA47F631F832C2A98B8F67485F48B8F76AB5817CFD92827FBE1DA804D07EFA4A 2024-07-01T11:39
✔️ undefined: 0.00234 DSM (10ops) (desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8 on 44'/118'/8'/0/0) #8 js:2:desmos:desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8: (! sum of ops 0.000556 DSM) 0.00234 DSM spendable. 
✔️ destination operation 
  ? -1184            OUT        AA47F631F832C2A98B8F67485F48B8F76AB5817CFD92827FBE1DA804D07EFA4A 2024-07-01T11:39

necessary accounts resynced in 0.17ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.009259 DSM (11ops) (desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7 on 44'/118'/9'/0/0) #9 js:2:desmos:desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7: (! sum of ops 0.005407 DSM) 0.007684 DSM spendable. 0.001575 DSM unbonding. 
UNDELEGATIONS
  from desmosvaloper1mxt66nphve6pgkcwvjqmvjg9f7w569f5e500k4 0.001575 DSM

max spendable ~0.007459
★ using mutation 'send some'
→ TO undefined: 0.000726 DSM (8ops) (desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted on 44'/118'/10'/0/0) #10 js:2:desmos:desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted:
✔️ transaction 
SEND  0.003545 DSM
TO desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted

with fees=0.000176
STATUS (426ms)
  amount: 0.003545 DSM
  estimated fees: 0.000176 DSM
  total spent: 0.003721 DSM
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (29ms) optimistic operation: 
  -0.003721 DSM      OUT        4BE3C3C807A061381F03D9EAAB1CA7A2FEE32FAF13EAF289767397898406B4B4 2024-07-01T11:39
✔️ operation confirmed (0.18ms): 
  -0.003721 DSM      OUT        4BE3C3C807A061381F03D9EAAB1CA7A2FEE32FAF13EAF289767397898406B4B4 2024-07-01T11:39
✔️ undefined: 0.009259 DSM (11ops) (desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7 on 44'/118'/9'/0/0) #9 js:2:desmos:desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7: (! sum of ops 0.005407 DSM) 0.007684 DSM spendable. 0.001575 DSM unbonding. 
UNDELEGATIONS
  from desmosvaloper1mxt66nphve6pgkcwvjqmvjg9f7w569f5e500k4 0.001575 DSM
✔️ destination operation 
  ? -3721            OUT        4BE3C3C807A061381F03D9EAAB1CA7A2FEE32FAF13EAF289767397898406B4B4 2024-07-01T11:39

necessary accounts resynced in 0.12ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 76.0799 DSM (25ops) (desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0 on 44'/118'/13'/0/0) #13 js:2:desmos:desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0: (! sum of ops 0.04386 DSM) 70.846426 DSM spendable. 4.737987 DSM delegated. 0.495579 DSM unbonding. 
DELEGATIONS
  to desmosvaloper1tlra0c7evdg3kdxfg723e68rdlt5nn78rr39jz 3.337545 DSM  (claimable 3.337545)
  to desmosvaloper1dux454jcazr9kmw2dejyswp3uqa6l70v78697m 1.400442 DSM  (claimable 1.400442)
UNDELEGATIONS
  from desmosvaloper1zngdx77g9ywnwmwpwvj9w2eqcs6fhw78gn02d8 0.219006 DSM
  from desmosvaloper10kd0latxcyfv7x45pgfffq0uv2d4pcxelw8jek 0.276573 DSM
REDELEGATIONS
  from desmosvaloper19du9hugzezkd47g4pttgjvu6ggc3nvnzx3qsv8 to desmosvaloper1tlra0c7evdg3kdxfg723e68rdlt5nn78rr39jz 0.070551 DSM
  from desmosvaloper19du9hugzezkd47g4pttgjvu6ggc3nvnzx3qsv8 to desmosvaloper1tlra0c7evdg3kdxfg723e68rdlt5nn78rr39jz 0.312543 DSM
  from desmosvaloper19du9hugzezkd47g4pttgjvu6ggc3nvnzx3qsv8 to desmosvaloper1tlra0c7evdg3kdxfg723e68rdlt5nn78rr39jz 0.170368 DSM
  from desmosvaloper1tlra0c7evdg3kdxfg723e68rdlt5nn78rr39jz to desmosvaloper1dux454jcazr9kmw2dejyswp3uqa6l70v78697m 1.045594 DSM

max spendable ~70.8462
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  1.794215 DSM
TO 
  1.794215 -> desmosvaloper17yx9jullk7enj8rtsqz6zsaze0wnnxqmfwrxq4
with fees=0.000373
  memo=LedgerLiveBot
STATUS (1505ms)
  amount: 1.794215 DSM
  estimated fees: 0.000373 DSM
  total spent: 1.794588 DSM
errors: 
warnings: 
✔️ has been signed! (3.5s) 
✔️ broadcasted! (154ms) optimistic operation: 
  -1.794588 DSM      DELEGATE   091197F2783C2A1F4478DA43F9F3F2698A41FE1B61F827415B1EB81F8D8EBD7C 2024-07-01T11:39
    to desmosvaloper17yx9jullk7enj8rtsqz6zsaze0wnnxqmfwrxq4 1.794215 DSM    
✔️ operation confirmed (0.17ms): 
  -1.794588 DSM      DELEGATE   091197F2783C2A1F4478DA43F9F3F2698A41FE1B61F827415B1EB81F8D8EBD7C 2024-07-01T11:39
    to desmosvaloper17yx9jullk7enj8rtsqz6zsaze0wnnxqmfwrxq4 1.794215 DSM    
✔️ undefined: 76.0799 DSM (25ops) (desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0 on 44'/118'/13'/0/0) #13 js:2:desmos:desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0: (! sum of ops 0.04386 DSM) 70.846426 DSM spendable. 4.737987 DSM delegated. 0.495579 DSM unbonding. 
DELEGATIONS
  to desmosvaloper1tlra0c7evdg3kdxfg723e68rdlt5nn78rr39jz 3.337545 DSM  (claimable 3.337545)
  to desmosvaloper1dux454jcazr9kmw2dejyswp3uqa6l70v78697m 1.400442 DSM  (claimable 1.400442)
UNDELEGATIONS
  from desmosvaloper1zngdx77g9ywnwmwpwvj9w2eqcs6fhw78gn02d8 0.219006 DSM
  from desmosvaloper10kd0latxcyfv7x45pgfffq0uv2d4pcxelw8jek 0.276573 DSM
REDELEGATIONS
  from desmosvaloper19du9hugzezkd47g4pttgjvu6ggc3nvnzx3qsv8 to desmosvaloper1tlra0c7evdg3kdxfg723e68rdlt5nn78rr39jz 0.070551 DSM
  from desmosvaloper19du9hugzezkd47g4pttgjvu6ggc3nvnzx3qsv8 to desmosvaloper1tlra0c7evdg3kdxfg723e68rdlt5nn78rr39jz 0.312543 DSM
  from desmosvaloper19du9hugzezkd47g4pttgjvu6ggc3nvnzx3qsv8 to desmosvaloper1tlra0c7evdg3kdxfg723e68rdlt5nn78rr39jz 0.170368 DSM
  from desmosvaloper1tlra0c7evdg3kdxfg723e68rdlt5nn78rr39jz to desmosvaloper1dux454jcazr9kmw2dejyswp3uqa6l70v78697m 1.045594 DSM


Spec dydx (18)

Spec dydx found 18 dYdX accounts (preload: 1002ms). Will use Cosmos 2.35.23 on nanoS 2.1.0
undefined: 0.00028612 dydx (0ops) (dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6 on 44'/118'/0'/0/0) #0 js:2:dydx:dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6:
undefined: 0.0006465 dydx (1ops) (dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv on 44'/118'/1'/0/0) #1 js:2:dydx:dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv:
undefined: 0.00081036 dydx (0ops) (dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf on 44'/118'/2'/0/0) #2 js:2:dydx:dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf:
undefined: 0.00103948 dydx (0ops) (dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en on 44'/118'/3'/0/0) #3 js:2:dydx:dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en:
undefined: 0 dydx (0ops) (dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2 on 44'/118'/4'/0/0) #4 js:2:dydx:dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2:
undefined: 0.00034181 dydx (2ops) (dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt on 44'/118'/5'/0/0) #5 js:2:dydx:dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt:
undefined: 0.00123005 dydx (0ops) (dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d on 44'/118'/6'/0/0) #6 js:2:dydx:dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d:
undefined: 0.0005327 dydx (0ops) (dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky on 44'/118'/7'/0/0) #7 js:2:dydx:dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky:
undefined: 0.00108568 dydx (0ops) (dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug on 44'/118'/8'/0/0) #8 js:2:dydx:dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug:
undefined: 0.00002859 dydx (1ops) (dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73 on 44'/118'/9'/0/0) #9 js:2:dydx:dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73:
undefined: 0.00032301 dydx (0ops) (dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz on 44'/118'/10'/0/0) #10 js:2:dydx:dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz:
undefined: 0.00079267 dydx (0ops) (dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd on 44'/118'/11'/0/0) #11 js:2:dydx:dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd:
undefined: 0.00117506 dydx (0ops) (dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7 on 44'/118'/12'/0/0) #12 js:2:dydx:dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7:
undefined: 0.0133491 dydx (0ops) (dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq on 44'/118'/13'/0/0) #13 js:2:dydx:dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq:
undefined: 0.00070996 dydx (0ops) (dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg on 44'/118'/14'/0/0) #14 js:2:dydx:dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg:
undefined: 0.00090914 dydx (0ops) (dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te on 44'/118'/15'/0/0) #15 js:2:dydx:dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te:
undefined: 0 dydx (0ops) (dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x on 44'/118'/16'/0/0) #16 js:2:dydx:dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x:
undefined: 0 dydx (0ops) (dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku on 44'/118'/17'/0/0) #17 js:2:dydx:dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku:

Spec umee (18)

Spec umee found 18 Umee accounts (preload: 276ms). Will use Cosmos 2.35.23 on nanoS 2.1.0
undefined: 0 UMEE (2ops) (umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l on 44'/118'/0'/0/0) #0 js:2:umee:umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l:
undefined: 1.86043 UMEE (7ops) (umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f on 44'/118'/1'/0/0) #1 js:2:umee:umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f:
undefined: 0.023772 UMEE (0ops) (umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv on 44'/118'/2'/0/0) #2 js:2:umee:umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv:
undefined: 1.80817 UMEE (2ops) (umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak on 44'/118'/3'/0/0) #3 js:2:umee:umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak:
undefined: 0 UMEE (5ops) (umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0 on 44'/118'/4'/0/0) #4 js:2:umee:umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0:
undefined: 0.243184 UMEE (2ops) (umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw on 44'/118'/5'/0/0) #5 js:2:umee:umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw:
undefined: 0.014473 UMEE (3ops) (umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg on 44'/118'/6'/0/0) #6 js:2:umee:umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg:
undefined: 0.408615 UMEE (12ops) (umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp on 44'/118'/7'/0/0) #7 js:2:umee:umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp:
undefined: 0 UMEE (2ops) (umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd on 44'/118'/8'/0/0) #8 js:2:umee:umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd:
undefined: 0.074829 UMEE (8ops) (umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65 on 44'/118'/9'/0/0) #9 js:2:umee:umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65:
undefined: 0.024931 UMEE (6ops) (umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28 on 44'/118'/10'/0/0) #10 js:2:umee:umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28:
undefined: 18.2775 UMEE (9ops) (umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg on 44'/118'/11'/0/0) #11 js:2:umee:umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg:
undefined: 1.86795 UMEE (3ops) (umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm on 44'/118'/12'/0/0) #12 js:2:umee:umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm:
undefined: 77.7822 UMEE (9ops) (umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29 on 44'/118'/13'/0/0) #13 js:2:umee:umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29:
undefined: 41.3306 UMEE (2ops) (umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd on 44'/118'/14'/0/0) #14 js:2:umee:umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd:
undefined: 407.37 UMEE (9ops) (umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u on 44'/118'/15'/0/0) #15 js:2:umee:umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u:
undefined: 189.138 UMEE (5ops) (umee1xr8krhp99mp9ncrz6dfgre542nv0rc8lew2a7r on 44'/118'/16'/0/0) #16 js:2:umee:umee1xr8krhp99mp9ncrz6dfgre542nv0rc8lew2a7r:
undefined: 0 UMEE (0ops) (umee102w826rmvswfhs4zsv2ujhylmd92c28pqjxsje on 44'/118'/17'/0/0) #17 js:2:umee:umee102w826rmvswfhs4zsv2ujhylmd92c28pqjxsje:
necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 1.86043 UMEE (7ops) (umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f on 44'/118'/1'/0/0) #1 js:2:umee:umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f: (! sum of ops 1.814104 UMEE) 1.765017 UMEE spendable. 0.049731 UMEE delegated. 0.045689 UMEE unbonding. 
DELEGATIONS
  to umeevaloper1zu47e76gf46uqgv9mcvkacul9jl9l2alq45qwe 0.04973 UMEE  (claimable 0.04973)
  to umeevaloper1uw0uy65pdrpge0xjp492qfqywqpvl5q44ggnsv 0.000001 UMEE  (claimable 0.000001)
UNDELEGATIONS
  from umeevaloper1qa5gkv8a4rzpncgkguv2szh5s83kh69l082zz3 0 UMEE
  from umeevaloper1l3ltveezgyctwfflk660qv7gvxz2xp4lr2x064 0.045689 UMEE

max spendable ~1.756
★ using mutation 'redelegate'
✔️ transaction 
REDELEGATE 
TO 
  0.000001 -> umeevaloper1zu47e76gf46uqgv9mcvkacul9jl9l2alq45qwe
  source validator=umeevaloper1uw0uy65pdrpge0xjp492qfqywqpvl5q44ggnsv
with fees=0.013
  memo=LedgerLiveBot
STATUS (227ms)
  amount: 0 UMEE
  estimated fees: 0.013 UMEE
  total spent: 0.013 UMEE
errors: 
warnings: 
✔️ has been signed! (3.8s) 
✔️ broadcasted! (58ms) optimistic operation: 
  -0.013 UMEE        REDELEGATE BFAB3B6E7AC48F9EF07352814F8485EB1D2C62CB0D9F6B4D870D843D123F74F1 2024-07-01T11:39
    to umeevaloper1zu47e76gf46uqgv9mcvkacul9jl9l2alq45qwe 0.000001 UMEE   
✔️ operation confirmed (0.59ms): 
  -0.013 UMEE        REDELEGATE BFAB3B6E7AC48F9EF07352814F8485EB1D2C62CB0D9F6B4D870D843D123F74F1 2024-07-01T11:39
    to umeevaloper1zu47e76gf46uqgv9mcvkacul9jl9l2alq45qwe 0.000001 UMEE   
✔️ undefined: 1.86043 UMEE (7ops) (umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f on 44'/118'/1'/0/0) #1 js:2:umee:umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f: (! sum of ops 1.814104 UMEE) 1.765017 UMEE spendable. 0.049731 UMEE delegated. 0.045689 UMEE unbonding. 
DELEGATIONS
  to umeevaloper1zu47e76gf46uqgv9mcvkacul9jl9l2alq45qwe 0.04973 UMEE  (claimable 0.04973)
  to umeevaloper1uw0uy65pdrpge0xjp492qfqywqpvl5q44ggnsv 0.000001 UMEE  (claimable 0.000001)
UNDELEGATIONS
  from umeevaloper1qa5gkv8a4rzpncgkguv2szh5s83kh69l082zz3 0 UMEE
  from umeevaloper1l3ltveezgyctwfflk660qv7gvxz2xp4lr2x064 0.045689 UMEE

necessary accounts resynced in 0.12ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 1.80817 UMEE (2ops) (umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak on 44'/118'/3'/0/0) #3 js:2:umee:umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak: (! sum of ops 0.628616 UMEE) 0.651252 UMEE spendable. 1.156922 UMEE delegated. 
DELEGATIONS
  to umeevaloper1zu47e76gf46uqgv9mcvkacul9jl9l2alq45qwe 1.156922 UMEE  (claimable 1.156922)

max spendable ~0.642242
★ using mutation 'claim rewards'
✔️ transaction 
CLAIMREWARD 
TO 
  0.015986 -> umeevaloper1zu47e76gf46uqgv9mcvkacul9jl9l2alq45qwe
with fees=0.070398
  memo=LedgerLiveBot
STATUS (241ms)
  amount: 0 UMEE
  estimated fees: 0.070398 UMEE
  total spent: 0.070398 UMEE
errors: 
warnings: claimReward ClaimRewardsFeesWarning
✔️ has been signed! (3.1s) 
✔️ broadcasted! (55ms) optimistic operation: 
  +0 UMEE            REWARD     0CB7727CF5E93F260E483329701AE2B46C864DF3B53127EA2759ED3126AF6947 2024-07-01T11:39
    to umeevaloper1zu47e76gf46uqgv9mcvkacul9jl9l2alq45qwe 0.015986 UMEE   
✔️ operation confirmed (0.13ms): 
  +0 UMEE            REWARD     0CB7727CF5E93F260E483329701AE2B46C864DF3B53127EA2759ED3126AF6947 2024-07-01T11:39
    to umeevaloper1zu47e76gf46uqgv9mcvkacul9jl9l2alq45qwe 0.015986 UMEE   
✔️ undefined: 1.80817 UMEE (2ops) (umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak on 44'/118'/3'/0/0) #3 js:2:umee:umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak: (! sum of ops 0.628616 UMEE) 0.651252 UMEE spendable. 1.156922 UMEE delegated. 
DELEGATIONS
  to umeevaloper1zu47e76gf46uqgv9mcvkacul9jl9l2alq45qwe 1.156922 UMEE  (claimable 1.156922)

necessary accounts resynced in 0.10ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.024931 UMEE (6ops) (umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28 on 44'/118'/10'/0/0) #10 js:2:umee:umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28: 0.024931 UMEE spendable. 

max spendable ~0.015931
★ using mutation 'send max'
→ TO undefined: 0 UMEE (5ops) (umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0 on 44'/118'/4'/0/0) #4 js:2:umee:umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0:
✔️ transaction 
SEND MAX
TO umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0

with fees=0.007418
STATUS (323ms)
  amount: 0.017513 UMEE
  estimated fees: 0.007418 UMEE
  total spent: 0.024931 UMEE
errors: 
warnings: 
✔️ has been signed! (3.2s) 
✔️ broadcasted! (98ms) optimistic operation: 
  -0.024931 UMEE     OUT        A59B333F3AEE1EDF60F66DA9603A95CAD90C2B3C6C178E770B7AB2859BB0DEF2 2024-07-01T11:39
✔️ operation confirmed (0.14ms): 
  -0.024931 UMEE     OUT        A59B333F3AEE1EDF60F66DA9603A95CAD90C2B3C6C178E770B7AB2859BB0DEF2 2024-07-01T11:39
✔️ undefined: 0.024931 UMEE (6ops) (umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28 on 44'/118'/10'/0/0) #10 js:2:umee:umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28: 0.024931 UMEE spendable. 
✔️ destination operation 
  ? -24931           OUT        A59B333F3AEE1EDF60F66DA9603A95CAD90C2B3C6C178E770B7AB2859BB0DEF2 2024-07-01T11:39

necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 18.2775 UMEE (9ops) (umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg on 44'/118'/11'/0/0) #11 js:2:umee:umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg: (! sum of ops 14.130421 UMEE) 18.088416 UMEE spendable. 0.102825 UMEE delegated. 0.086343 UMEE unbonding. 
DELEGATIONS
  to umeevaloper1wwl9f8wcc0am9wruvmx4hjzdv7ewfcex0lz9vp 0.073412 UMEE  (claimable 0.073412)
  to umeevaloper13elcqgu20pwrhexsz783jsvrdlf045edw3k8ar 0.006029 UMEE  (claimable 0.006029)
  to umeevaloper1uw0uy65pdrpge0xjp492qfqywqpvl5q44ggnsv 0.023384 UMEE  (claimable 0.023384)
UNDELEGATIONS
  from umeevaloper1wwl9f8wcc0am9wruvmx4hjzdv7ewfcex0lz9vp 0.086343 UMEE
  from umeevaloper1fnd772gjha0kxldh5npcr0v7vcmc94ca5r9h4m 0 UMEE
REDELEGATIONS
  from umeevaloper18jnrd4knfwxvqeyj3ppwp5pw8527egy4u2xun4 to umeevaloper1wwl9f8wcc0am9wruvmx4hjzdv7ewfcex0lz9vp 0.009733 UMEE
  from umeevaloper1wusrw8nzgs6d8d47xqej5xqttvsu2geftfgu5f to umeevaloper1wwl9f8wcc0am9wruvmx4hjzdv7ewfcex0lz9vp 0.000001 UMEE

max spendable ~18.0793
★ using mutation 'send some'
→ TO undefined: 77.7822 UMEE (9ops) (umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29 on 44'/118'/13'/0/0) #13 js:2:umee:umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29:
✔️ transaction 
SEND  8.55619 UMEE
TO umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29

with fees=0.007088
STATUS (338ms)
  amount: 8.55619 UMEE
  estimated fees: 0.007088 UMEE
  total spent: 8.563278 UMEE
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (54ms) optimistic operation: 
  -8.563278 UMEE     OUT        2FA592D1686A335E9100E399F918093B8D7408120F6E98AF517C0C074EDED33A 2024-07-01T11:39
✔️ operation confirmed (0.13ms): 
  -8.563278 UMEE     OUT        2FA592D1686A335E9100E399F918093B8D7408120F6E98AF517C0C074EDED33A 2024-07-01T11:39
✔️ undefined: 18.2775 UMEE (9ops) (umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg on 44'/118'/11'/0/0) #11 js:2:umee:umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg: (! sum of ops 14.130421 UMEE) 18.088416 UMEE spendable. 0.102825 UMEE delegated. 0.086343 UMEE unbonding. 
DELEGATIONS
  to umeevaloper1wwl9f8wcc0am9wruvmx4hjzdv7ewfcex0lz9vp 0.073412 UMEE  (claimable 0.073412)
  to umeevaloper13elcqgu20pwrhexsz783jsvrdlf045edw3k8ar 0.006029 UMEE  (claimable 0.006029)
  to umeevaloper1uw0uy65pdrpge0xjp492qfqywqpvl5q44ggnsv 0.023384 UMEE  (claimable 0.023384)
UNDELEGATIONS
  from umeevaloper1wwl9f8wcc0am9wruvmx4hjzdv7ewfcex0lz9vp 0.086343 UMEE
  from umeevaloper1fnd772gjha0kxldh5npcr0v7vcmc94ca5r9h4m 0 UMEE
REDELEGATIONS
  from umeevaloper18jnrd4knfwxvqeyj3ppwp5pw8527egy4u2xun4 to umeevaloper1wwl9f8wcc0am9wruvmx4hjzdv7ewfcex0lz9vp 0.009733 UMEE
  from umeevaloper1wusrw8nzgs6d8d47xqej5xqttvsu2geftfgu5f to umeevaloper1wwl9f8wcc0am9wruvmx4hjzdv7ewfcex0lz9vp 0.000001 UMEE
✔️ destination operation 
  ? -8563278         OUT        2FA592D1686A335E9100E399F918093B8D7408120F6E98AF517C0C074EDED33A 2024-07-01T11:39

necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 1.86795 UMEE (3ops) (umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm on 44'/118'/12'/0/0) #12 js:2:umee:umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm: (! sum of ops 1.661916 UMEE) 1.867958 UMEE spendable. 

max spendable ~1.85893
★ using mutation 'send some'
→ TO undefined: 18.2775 UMEE (9ops) (umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg on 44'/118'/11'/0/0) #11 js:2:umee:umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg:
✔️ transaction 
SEND  0.988217 UMEE
TO umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg

with fees=0.007078
STATUS (352ms)
  amount: 0.988217 UMEE
  estimated fees: 0.007078 UMEE
  total spent: 0.995295 UMEE
errors: 
warnings: 
✔️ has been signed! (3.2s) 
✔️ broadcasted! (133ms) optimistic operation: 
  -0.995295 UMEE     OUT        444A6BB27EA0D79B04DCA3B138756F94DBF2D69DA626FED547F7DC75E2EF4750 2024-07-01T11:39
✔️ operation confirmed (0.12ms): 
  -0.995295 UMEE     OUT        444A6BB27EA0D79B04DCA3B138756F94DBF2D69DA626FED547F7DC75E2EF4750 2024-07-01T11:39
✔️ undefined: 1.86795 UMEE (3ops) (umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm on 44'/118'/12'/0/0) #12 js:2:umee:umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm: (! sum of ops 1.661916 UMEE) 1.867958 UMEE spendable. 
✔️ destination operation 
  ? -995295          OUT        444A6BB27EA0D79B04DCA3B138756F94DBF2D69DA626FED547F7DC75E2EF4750 2024-07-01T11:39

necessary accounts resynced in 0.10ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 77.7822 UMEE (9ops) (umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29 on 44'/118'/13'/0/0) #13 js:2:umee:umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29: (! sum of ops -0.250466 UMEE) 70.462208 UMEE spendable. 7.320028 UMEE unbonding. 
UNDELEGATIONS
  from umeevaloper15q60m3zpraugqjxty79hynl3vf92aux068wjmt 2.839274 UMEE
  from umeevaloper13elcqgu20pwrhexsz783jsvrdlf045edw3k8ar 1.413026 UMEE
  from umeevaloper1agzky2ak6xs5vve3c2wzjtqdq7fwadcgjwufc0 3.067728 UMEE

max spendable ~70.4531
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.228667 UMEE
TO 
  0.228667 -> umeevaloper1dh7p3dvvjst60h62fymrqdcwx6tmatyyet2zan
with fees=0.036243
  memo=LedgerLiveBot
STATUS (449ms)
  amount: 0.228667 UMEE
  estimated fees: 0.036243 UMEE
  total spent: 0.26491 UMEE
errors: 
warnings: 
✔️ has been signed! (3.4s) 
✔️ broadcasted! (61ms) optimistic operation: 
  -0.26491 UMEE      DELEGATE   85A4B03AF27FBF0FD3FC502CE62AB8A2E8C782A399C3AD3C3CC92EBAAB48D5F5 2024-07-01T11:39
    to umeevaloper1dh7p3dvvjst60h62fymrqdcwx6tmatyyet2zan 0.228667 UMEE   
✔️ operation confirmed (0.14ms): 
  -0.26491 UMEE      DELEGATE   85A4B03AF27FBF0FD3FC502CE62AB8A2E8C782A399C3AD3C3CC92EBAAB48D5F5 2024-07-01T11:39
    to umeevaloper1dh7p3dvvjst60h62fymrqdcwx6tmatyyet2zan 0.228667 UMEE   
✔️ undefined: 77.7822 UMEE (9ops) (umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29 on 44'/118'/13'/0/0) #13 js:2:umee:umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29: (! sum of ops -0.250466 UMEE) 70.462208 UMEE spendable. 7.320028 UMEE unbonding. 
UNDELEGATIONS
  from umeevaloper15q60m3zpraugqjxty79hynl3vf92aux068wjmt 2.839274 UMEE
  from umeevaloper13elcqgu20pwrhexsz783jsvrdlf045edw3k8ar 1.413026 UMEE
  from umeevaloper1agzky2ak6xs5vve3c2wzjtqdq7fwadcgjwufc0 3.067728 UMEE


Spec persistence (18)

Spec persistence found 18 Persistence accounts (preload: 887ms). Will use Cosmos 2.35.23 on nanoS 2.1.0
undefined: 0.001916 XPRT (51ops) (persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf on 44'/118'/0'/0/0) #0 js:2:persistence:persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf:
undefined: 0.090963 XPRT (46ops) (persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l on 44'/118'/1'/0/0) #1 js:2:persistence:persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l:
undefined: 0 XPRT (30ops) (persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6 on 44'/118'/2'/0/0) #2 js:2:persistence:persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6:
undefined: 0.009715 XPRT (58ops) (persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq on 44'/118'/3'/0/0) #3 js:2:persistence:persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq:
undefined: 0 XPRT (44ops) (persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e on 44'/118'/4'/0/0) #4 js:2:persistence:persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e:
undefined: 0.007567 XPRT (49ops) (persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc on 44'/118'/5'/0/0) #5 js:2:persistence:persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc:
undefined: 0.01498 XPRT (97ops) (persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7 on 44'/118'/6'/0/0) #6 js:2:persistence:persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7:
undefined: 0.40562 XPRT (128ops) (persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch on 44'/118'/7'/0/0) #7 js:2:persistence:persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch:
undefined: 0 XPRT (79ops) (persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm on 44'/118'/8'/0/0) #8 js:2:persistence:persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm:
undefined: 0.002954 XPRT (122ops) (persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz on 44'/118'/9'/0/0) #9 js:2:persistence:persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz:
undefined: 0.034906 XPRT (53ops) (persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3 on 44'/118'/10'/0/0) #10 js:2:persistence:persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3:
undefined: 0.660656 XPRT (101ops) (persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7 on 44'/118'/11'/0/0) #11 js:2:persistence:persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7:
undefined: 1.27037 XPRT (23ops) (persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd on 44'/118'/12'/0/0) #12 js:2:persistence:persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd:
undefined: 5.71538 XPRT (62ops) (persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn on 44'/118'/13'/0/0) #13 js:2:persistence:persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn:
undefined: 10.4311 XPRT (22ops) (persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m on 44'/118'/14'/0/0) #14 js:2:persistence:persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m:
undefined: 8.06454 XPRT (56ops) (persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92 on 44'/118'/15'/0/0) #15 js:2:persistence:persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92:
undefined: 2.33347 XPRT (23ops) (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:
necessary accounts resynced in 0.12ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.090963 XPRT (46ops) (persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l on 44'/118'/1'/0/0) #1 js:2:persistence:persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l: (! sum of ops -0.303785 XPRT) 0.090271 XPRT spendable. 0.000692 XPRT delegated. 
DELEGATIONS
  to persistencevaloper1j6zfn2ydfgy0nx02ud98h3v8ptnr5jfx6ncckp 0.000692 XPRT  (claimable 0.000692)

max spendable ~0.087993
★ using mutation 'send max'
→ TO undefined: 2.33347 XPRT (23ops) (persistence1xr8krhp99mp9ncrz6dfgre542nv0rc8l953354 on 44'/118'/16'/0/0) #16 js:2:persistence:persistence1xr8krhp99mp9ncrz6dfgre542nv0rc8l953354:
✔️ transaction 
SEND MAX
TO persistence1xr8krhp99mp9ncrz6dfgre542nv0rc8l953354

with fees=0.001785
STATUS (1018ms)
  amount: 0.088486 XPRT
  estimated fees: 0.001785 XPRT
  total spent: 0.090271 XPRT
errors: 
warnings: amount RecommendUndelegation
✔️ has been signed! (3.5s) 
✔️ broadcasted! (173ms) optimistic operation: 
  -0.090271 XPRT     OUT        6278A853B12911C44F4760D618AED312811F5C311200B03D4FE608221975218D 2024-07-01T11:39
✔️ operation confirmed (0.12ms): 
  -0.090271 XPRT     OUT        6278A853B12911C44F4760D618AED312811F5C311200B03D4FE608221975218D 2024-07-01T11:39
✔️ undefined: 0.090963 XPRT (46ops) (persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l on 44'/118'/1'/0/0) #1 js:2:persistence:persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l: (! sum of ops -0.303785 XPRT) 0.090271 XPRT spendable. 0.000692 XPRT delegated. 
DELEGATIONS
  to persistencevaloper1j6zfn2ydfgy0nx02ud98h3v8ptnr5jfx6ncckp 0.000692 XPRT  (claimable 0.000692)
✔️ destination operation 
  ? -90271           OUT        6278A853B12911C44F4760D618AED312811F5C311200B03D4FE608221975218D 2024-07-01T11:39

necessary accounts resynced in 0.12ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.01498 XPRT (97ops) (persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7 on 44'/118'/6'/0/0) #6 js:2:persistence:persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7: (! sum of ops -1.353807 XPRT) 0.01498 XPRT spendable. 

max spendable ~0.012702
★ using mutation 'send some'
→ TO undefined: 0 XPRT (79ops) (persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm on 44'/118'/8'/0/0) #8 js:2:persistence:persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm:
✔️ transaction 
SEND  0.006687 XPRT
TO persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm

with fees=0.001913
  memo=LedgerLiveBot
STATUS (1480ms)
  amount: 0.006687 XPRT
  estimated fees: 0.001913 XPRT
  total spent: 0.0086 XPRT
errors: 
warnings: 
✔️ has been signed! (3.7s) 
✔️ broadcasted! (166ms) optimistic operation: 
  -0.0086 XPRT       OUT        A6E44EFF71DAADD1A401A326DCB2443845816B9FE41943CA5571047C2197FCC9 2024-07-01T11:39
✔️ operation confirmed (0.10ms): 
  -0.0086 XPRT       OUT        A6E44EFF71DAADD1A401A326DCB2443845816B9FE41943CA5571047C2197FCC9 2024-07-01T11:39
✔️ undefined: 0.01498 XPRT (97ops) (persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7 on 44'/118'/6'/0/0) #6 js:2:persistence:persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7: (! sum of ops -1.353807 XPRT) 0.01498 XPRT spendable. 
✔️ destination operation 
  ? -8600            OUT        A6E44EFF71DAADD1A401A326DCB2443845816B9FE41943CA5571047C2197FCC9 2024-07-01T11:39

necessary accounts resynced in 0.10ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.40562 XPRT (128ops) (persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch on 44'/118'/7'/0/0) #7 js:2:persistence:persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch: (! sum of ops -31.512097 XPRT) 0.026911 XPRT spendable. 0.378709 XPRT unbonding. 
UNDELEGATIONS
  from persistencevaloper1wzn3djmqn2wq6apjg50xnlhuwarwuv99q9y3yn 0 XPRT
  from persistencevaloper1c386cr9kzxs83h60qsuwyv8f0gnl2y47t744sq 0.378709 XPRT

max spendable ~0.024633
★ using mutation 'send some'
→ TO undefined: 0.660656 XPRT (101ops) (persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7 on 44'/118'/11'/0/0) #11 js:2:persistence:persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7:
✔️ transaction 
SEND  0.015462 XPRT
TO persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7

with fees=0.001785
STATUS (1024ms)
  amount: 0.015462 XPRT
  estimated fees: 0.001785 XPRT
  total spent: 0.017247 XPRT
errors: 
warnings: 
✔️ has been signed! (3.5s) 
✔️ broadcasted! (197ms) optimistic operation: 
  -0.017247 XPRT     OUT        7CF4256F2B21C77D960570C441D56DF3DE43FC03843A11B7E8ACA55EB7D711D4 2024-07-01T11:40
✔️ operation confirmed (0.16ms): 
  -0.017247 XPRT     OUT        7CF4256F2B21C77D960570C441D56DF3DE43FC03843A11B7E8ACA55EB7D711D4 2024-07-01T11:40
✔️ undefined: 0.40562 XPRT (128ops) (persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch on 44'/118'/7'/0/0) #7 js:2:persistence:persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch: (! sum of ops -31.512097 XPRT) 0.026911 XPRT spendable. 0.378709 XPRT unbonding. 
UNDELEGATIONS
  from persistencevaloper1wzn3djmqn2wq6apjg50xnlhuwarwuv99q9y3yn 0 XPRT
  from persistencevaloper1c386cr9kzxs83h60qsuwyv8f0gnl2y47t744sq 0.378709 XPRT
✔️ destination operation 
  ? -17247           OUT        7CF4256F2B21C77D960570C441D56DF3DE43FC03843A11B7E8ACA55EB7D711D4 2024-07-01T11:40

necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.660656 XPRT (101ops) (persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7 on 44'/118'/11'/0/0) #11 js:2:persistence:persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7: (! sum of ops 0.658694 XPRT) 0.610461 XPRT spendable. 0.001318 XPRT delegated. 0.048877 XPRT unbonding. 
DELEGATIONS
  to persistencevaloper12lkrzza9rem2mv7d247cmxjvh7cql6rcug82qk 0.001104 XPRT  (claimable 0.001104)
  to persistencevaloper1e53aagys6ksj9yqpq65g78qmtcj5jplhg8u8ws 0.000214 XPRT  (claimable 0.000214)
UNDELEGATIONS
  from persistencevaloper1055u0llfcdrvr5uqajldxpnkzd2pangl4vjeuu 0.0132 XPRT
  from persistencevaloper1x3ecxjgg6mlq34g3pm7dyuz8n4jz2exxx7eh0n 0.00016 XPRT
  from persistencevaloper1hmwny3xptmzlhc5kvqgp89stpynywezsjvsmp5 0.000104 XPRT
  from persistencevaloper1f9p23ru4sw8p2044237ckfhwdpklrn0ahdaujg 0.019018 XPRT
  from persistencevaloper1gydvxcnm95zwdz7h7whpmusy5d5c3ck0p9muc9 0.016144 XPRT
  from persistencevaloper14mpv6jvnze04glh4wx7h6j0gp609rafskjlclx 0.000008 XPRT
  from persistencevaloper1tzn8rk09ez2gm55sffpyzt7ccn5yzshpql8rug 0.000243 XPRT

max spendable ~0.608181
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.000041 XPRT
TO 
  0.000041 -> persistencevaloper19v94c3z7ckarwsum76kaagma0wqsqhh5qzp9t7
with fees=0.006056
  memo=LedgerLiveBot
STATUS (1364ms)
  amount: 0.000041 XPRT
  estimated fees: 0.006056 XPRT
  total spent: 0.006097 XPRT
errors: 
warnings: 
✔️ has been signed! (3.7s) 
✔️ broadcasted! (157ms) optimistic operation: 
  -0.006097 XPRT     DELEGATE   ADAE8113BE2B2E563E26E741BDD746E9E515D7FE2F79725A97C3EB3E6A68446F 2024-07-01T11:40
    to persistencevaloper19v94c3z7ckarwsum76kaagma0wqsqhh5qzp9t7 0.000041 XPRT   
✔️ operation confirmed (0.15ms): 
  -0.006097 XPRT     DELEGATE   ADAE8113BE2B2E563E26E741BDD746E9E515D7FE2F79725A97C3EB3E6A68446F 2024-07-01T11:40
    to persistencevaloper19v94c3z7ckarwsum76kaagma0wqsqhh5qzp9t7 0.000041 XPRT   
✔️ undefined: 0.660656 XPRT (101ops) (persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7 on 44'/118'/11'/0/0) #11 js:2:persistence:persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7: (! sum of ops 0.658694 XPRT) 0.610461 XPRT spendable. 0.001318 XPRT delegated. 0.048877 XPRT unbonding. 
DELEGATIONS
  to persistencevaloper12lkrzza9rem2mv7d247cmxjvh7cql6rcug82qk 0.001104 XPRT  (claimable 0.001104)
  to persistencevaloper1e53aagys6ksj9yqpq65g78qmtcj5jplhg8u8ws 0.000214 XPRT  (claimable 0.000214)
UNDELEGATIONS
  from persistencevaloper1055u0llfcdrvr5uqajldxpnkzd2pangl4vjeuu 0.0132 XPRT
  from persistencevaloper1x3ecxjgg6mlq34g3pm7dyuz8n4jz2exxx7eh0n 0.00016 XPRT
  from persistencevaloper1hmwny3xptmzlhc5kvqgp89stpynywezsjvsmp5 0.000104 XPRT
  from persistencevaloper1f9p23ru4sw8p2044237ckfhwdpklrn0ahdaujg 0.019018 XPRT
  from persistencevaloper1gydvxcnm95zwdz7h7whpmusy5d5c3ck0p9muc9 0.016144 XPRT
  from persistencevaloper14mpv6jvnze04glh4wx7h6j0gp609rafskjlclx 0.000008 XPRT
  from persistencevaloper1tzn8rk09ez2gm55sffpyzt7ccn5yzshpql8rug 0.000243 XPRT


Spec quicksilver (18)

Spec quicksilver found 18 Quicksilver accounts (preload: 315ms). Will use Cosmos 2.35.23 on nanoS 2.1.0
undefined: 0 QCK (1ops) (quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l on 44'/118'/0'/0/0) #0 js:2:quicksilver:quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l:
undefined: 0.000854 QCK (0ops) (quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf on 44'/118'/1'/0/0) #1 js:2:quicksilver:quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf:
undefined: 0 QCK (0ops) (quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev on 44'/118'/2'/0/0) #2 js:2:quicksilver:quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev:
undefined: 0.015149 QCK (1ops) (quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk on 44'/118'/3'/0/0) #3 js:2:quicksilver:quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk:
undefined: 0.001502 QCK (0ops) (quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0 on 44'/118'/4'/0/0) #4 js:2:quicksilver:quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0:
undefined: 0.080326 QCK (0ops) (quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw on 44'/118'/5'/0/0) #5 js:2:quicksilver:quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw:
undefined: 0.008095 QCK (0ops) (quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug on 44'/118'/6'/0/0) #6 js:2:quicksilver:quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug:
undefined: 0 QCK (0ops) (quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p on 44'/118'/7'/0/0) #7 js:2:quicksilver:quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p:
undefined: 0 QCK (12ops) (quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d on 44'/118'/8'/0/0) #8 js:2:quicksilver:quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d:
undefined: 0.007423 QCK (0ops) (quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585 on 44'/118'/9'/0/0) #9 js:2:quicksilver:quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585:
undefined: 0.005126 QCK (0ops) (quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8 on 44'/118'/10'/0/0) #10 js:2:quicksilver:quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8:
undefined: 0.736809 QCK (0ops) (quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg on 44'/118'/11'/0/0) #11 js:2:quicksilver:quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg:
undefined: 0.097119 QCK (0ops) (quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm on 44'/118'/12'/0/0) #12 js:2:quicksilver:quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm:
undefined: 7.61386 QCK (0ops) (quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9 on 44'/118'/13'/0/0) #13 js:2:quicksilver:quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9:
undefined: 0.000572 QCK (2ops) (quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad on 44'/118'/14'/0/0) #14 js:2:quicksilver:quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad:
undefined: 3.65447 QCK (0ops) (quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju on 44'/118'/15'/0/0) #15 js:2:quicksilver:quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju:
undefined: 10.9817 QCK (0ops) (quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr on 44'/118'/16'/0/0) #16 js:2:quicksilver:quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr:
undefined: 0 QCK (0ops) (quick102w826rmvswfhs4zsv2ujhylmd92c28peqta0e on 44'/118'/17'/0/0) #17 js:2:quicksilver:quick102w826rmvswfhs4zsv2ujhylmd92c28peqta0e:
necessary accounts resynced in 0.12ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.015149 QCK (1ops) (quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk on 44'/118'/3'/0/0) #3 js:2:quicksilver:quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk: (! sum of ops 0.014495 QCK) 0.015149 QCK spendable. 

max spendable ~0.014864
★ using mutation 'send max'
→ TO undefined: 0 QCK (0ops) (quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev on 44'/118'/2'/0/0) #2 js:2:quicksilver:quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev:
✔️ transaction 
SEND MAX
TO quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev

with fees=0.000246
STATUS (297ms)
  amount: 0.014903 QCK
  estimated fees: 0.000246 QCK
  total spent: 0.015149 QCK
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (49ms) optimistic operation: 
  -0.015149 QCK      OUT        10D0B09FD5FF3C7D9EA21F8A62FC41B0425F6E70FBA22C9CCDC4E3637083DA69 2024-07-01T11:39
✔️ operation confirmed (0.12ms): 
  -0.015149 QCK      OUT        10D0B09FD5FF3C7D9EA21F8A62FC41B0425F6E70FBA22C9CCDC4E3637083DA69 2024-07-01T11:39
✔️ undefined: 0.015149 QCK (1ops) (quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk on 44'/118'/3'/0/0) #3 js:2:quicksilver:quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk: (! sum of ops 0.014495 QCK) 0.015149 QCK spendable. 
✔️ destination operation 
  ? -15149           OUT        10D0B09FD5FF3C7D9EA21F8A62FC41B0425F6E70FBA22C9CCDC4E3637083DA69 2024-07-01T11:39

necessary accounts resynced in 0.09ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.001502 QCK (0ops) (quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0 on 44'/118'/4'/0/0) #4 js:2:quicksilver:quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0: (! sum of ops 0 QCK) 0.001502 QCK spendable. 

max spendable ~0.001177
★ using mutation 'send some'
→ TO undefined: 0 QCK (0ops) (quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev on 44'/118'/2'/0/0) #2 js:2:quicksilver:quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev:
✔️ transaction 
SEND  0.000596 QCK
TO quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev

with fees=0.000245
STATUS (298ms)
  amount: 0.000596 QCK
  estimated fees: 0.000245 QCK
  total spent: 0.000841 QCK
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (50ms) optimistic operation: 
  -0.000841 QCK      OUT        79A318FEDBBEB04F02DA0992D44FFBA67A5212F521BD2BB52A5E407B6A701A1E 2024-07-01T11:39
✔️ operation confirmed (0.10ms): 
  -0.000841 QCK      OUT        79A318FEDBBEB04F02DA0992D44FFBA67A5212F521BD2BB52A5E407B6A701A1E 2024-07-01T11:39
✔️ undefined: 0.001502 QCK (0ops) (quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0 on 44'/118'/4'/0/0) #4 js:2:quicksilver:quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0: (! sum of ops 0 QCK) 0.001502 QCK spendable. 
✔️ destination operation 
  ? -841             OUT        79A318FEDBBEB04F02DA0992D44FFBA67A5212F521BD2BB52A5E407B6A701A1E 2024-07-01T11:39

necessary accounts resynced in 0.10ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.080326 QCK (0ops) (quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw on 44'/118'/5'/0/0) #5 js:2:quicksilver:quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw: (! sum of ops 0 QCK) 0.071349 QCK spendable. 0.008977 QCK unbonding. 
UNDELEGATIONS
  from quickvaloper1fgklp9hemczlwtqp9jqzq3xahh38hznx02n4pp 0.005157 QCK
  from quickvaloper16pj5gljqnqs0ajxakccfjhu05yczp987nmxvcw 0.001177 QCK
  from quickvaloper18zrpan47cz7gmu5y7ze06xget83lzq9gzdyyp2 0.002643 QCK

max spendable ~0.071063
★ using mutation 'send some'
→ TO undefined: 7.61386 QCK (0ops) (quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9 on 44'/118'/13'/0/0) #13 js:2:quicksilver:quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9:
✔️ transaction 
SEND  0.04628 QCK
TO quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9

with fees=0.000237
STATUS (296ms)
  amount: 0.04628 QCK
  estimated fees: 0.000237 QCK
  total spent: 0.046517 QCK
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (50ms) optimistic operation: 
  -0.046517 QCK      OUT        DCD4181A345276E6490FC84BBF81F45BD58497B6FE95A9FB9AADE3E45233F57B 2024-07-01T11:39
✔️ operation confirmed (0.15ms): 
  -0.046517 QCK      OUT        DCD4181A345276E6490FC84BBF81F45BD58497B6FE95A9FB9AADE3E45233F57B 2024-07-01T11:39
✔️ undefined: 0.080326 QCK (0ops) (quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw on 44'/118'/5'/0/0) #5 js:2:quicksilver:quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw: (! sum of ops 0 QCK) 0.071349 QCK spendable. 0.008977 QCK unbonding. 
UNDELEGATIONS
  from quickvaloper1fgklp9hemczlwtqp9jqzq3xahh38hznx02n4pp 0.005157 QCK
  from quickvaloper16pj5gljqnqs0ajxakccfjhu05yczp987nmxvcw 0.001177 QCK
  from quickvaloper18zrpan47cz7gmu5y7ze06xget83lzq9gzdyyp2 0.002643 QCK
✔️ destination operation 
  ? -46517           OUT        DCD4181A345276E6490FC84BBF81F45BD58497B6FE95A9FB9AADE3E45233F57B 2024-07-01T11:39

necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.736809 QCK (0ops) (quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg on 44'/118'/11'/0/0) #11 js:2:quicksilver:quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg: (! sum of ops 0 QCK) 0.694285 QCK spendable. 0.040308 QCK delegated. 0.002216 QCK unbonding. 
DELEGATIONS
  to quickvaloper1qc8gf4qfemx5jahr5j4varpmhhs35q9pgl2w58 0.011531 QCK  (claimable 0.011531)
  to quickvaloper1tu8zn2yfyxsjfcd39qnmtnut7gjjxzjxqvnclp 0.021372 QCK  (claimable 0.021372)
  to quickvaloper156q9etvvrvy2d7ev0naxz0ld4cdts7xzf6s98n 0.007405 QCK  (claimable 0.007405)
UNDELEGATIONS
  from quickvaloper15c237w8j2nc2qumcvphr8m4pd8gh82whtzztzz 0.000004 QCK
  from quickvaloper1tkyjfca8mj5s7l7r7cgdn9h9x3x2rpd957ca8k 0.001784 QCK
  from quickvaloper16s96n9k9zztdgjy8q4qcxp4hn7ww98qknthle7 0.000428 QCK
REDELEGATIONS
  from quickvaloper1wtg08l9nlmr77geq98tssrrnjegyxazwq2vhrp to quickvaloper156q9etvvrvy2d7ev0naxz0ld4cdts7xzf6s98n 0.002806 QCK
  from quickvaloper1c2sjgwad8g6ajnhhhyndc285eumsf9hldktjum to quickvaloper1qc8gf4qfemx5jahr5j4varpmhhs35q9pgl2w58 0.006378 QCK

max spendable ~0.693999
★ using mutation 'redelegate'
✔️ transaction 
REDELEGATE 
TO 
  0.021372 -> quickvaloper1qc8gf4qfemx5jahr5j4varpmhhs35q9pgl2w58
  source validator=quickvaloper1tu8zn2yfyxsjfcd39qnmtnut7gjjxzjxqvnclp
with fees=0.003533
  memo=LedgerLiveBot
STATUS (249ms)
  amount: 0 QCK
  estimated fees: 0.003533 QCK
  total spent: 0.003533 QCK
errors: 
warnings: 
✔️ has been signed! (3.7s) 
✔️ broadcasted! (50ms) optimistic operation: 
  -0.003533 QCK      REDELEGATE 8DCF64E3106F120E339C8CE363637B9820EEEB5F88DDCC1BCAE63398F21DA301 2024-07-01T11:39
    to quickvaloper1qc8gf4qfemx5jahr5j4varpmhhs35q9pgl2w58 0.021372 QCK    
✔️ operation confirmed (0.11ms): 
  -0.003533 QCK      REDELEGATE 8DCF64E3106F120E339C8CE363637B9820EEEB5F88DDCC1BCAE63398F21DA301 2024-07-01T11:39
    to quickvaloper1qc8gf4qfemx5jahr5j4varpmhhs35q9pgl2w58 0.021372 QCK    
✔️ undefined: 0.736809 QCK (0ops) (quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg on 44'/118'/11'/0/0) #11 js:2:quicksilver:quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg: (! sum of ops 0 QCK) 0.694285 QCK spendable. 0.040308 QCK delegated. 0.002216 QCK unbonding. 
DELEGATIONS
  to quickvaloper1qc8gf4qfemx5jahr5j4varpmhhs35q9pgl2w58 0.011531 QCK  (claimable 0.011531)
  to quickvaloper1tu8zn2yfyxsjfcd39qnmtnut7gjjxzjxqvnclp 0.021372 QCK  (claimable 0.021372)
  to quickvaloper156q9etvvrvy2d7ev0naxz0ld4cdts7xzf6s98n 0.007405 QCK  (claimable 0.007405)
UNDELEGATIONS
  from quickvaloper15c237w8j2nc2qumcvphr8m4pd8gh82whtzztzz 0.000004 QCK
  from quickvaloper1tkyjfca8mj5s7l7r7cgdn9h9x3x2rpd957ca8k 0.001784 QCK
  from quickvaloper16s96n9k9zztdgjy8q4qcxp4hn7ww98qknthle7 0.000428 QCK
REDELEGATIONS
  from quickvaloper1wtg08l9nlmr77geq98tssrrnjegyxazwq2vhrp to quickvaloper156q9etvvrvy2d7ev0naxz0ld4cdts7xzf6s98n 0.002806 QCK
  from quickvaloper1c2sjgwad8g6ajnhhhyndc285eumsf9hldktjum to quickvaloper1qc8gf4qfemx5jahr5j4varpmhhs35q9pgl2w58 0.006378 QCK

necessary accounts resynced in 0.10ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 7.61386 QCK (0ops) (quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9 on 44'/118'/13'/0/0) #13 js:2:quicksilver:quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9: (! sum of ops 0 QCK) 5.65274 QCK spendable. 1.818993 QCK delegated. 0.14213 QCK unbonding. 
DELEGATIONS
  to quickvaloper1p0w2ztl8swhpvtr8qccr448q25lh663jqht04a 1.818993 QCK  (claimable 1.818993)
UNDELEGATIONS
  from quickvaloper1ys5m6cy4yuufra26nfvkdf9g807g46rsjggxvj 0.14213 QCK
REDELEGATIONS
  from quickvaloper1tkyjfca8mj5s7l7r7cgdn9h9x3x2rpd957ca8k to quickvaloper1p0w2ztl8swhpvtr8qccr448q25lh663jqht04a 0.075037 QCK

max spendable ~5.65245
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.029663 QCK
TO 
  0.029663 -> quickvaloper1psgm4efq6ts4dlglcu0y4pw6lcn7kl8d86r8u3
with fees=0.001166
  memo=LedgerLiveBot
STATUS (395ms)
  amount: 0.029663 QCK
  estimated fees: 0.001166 QCK
  total spent: 0.030829 QCK
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (512ms) optimistic operation: 
  -0.030829 QCK      DELEGATE   232BB7A67064895125B1D86387F5AD56790D102AB8E1F39C1BDFFA2808C9BF38 2024-07-01T11:39
    to quickvaloper1psgm4efq6ts4dlglcu0y4pw6lcn7kl8d86r8u3 0.029663 QCK    
✔️ operation confirmed (0.11ms): 
  -0.030829 QCK      DELEGATE   232BB7A67064895125B1D86387F5AD56790D102AB8E1F39C1BDFFA2808C9BF38 2024-07-01T11:39
    to quickvaloper1psgm4efq6ts4dlglcu0y4pw6lcn7kl8d86r8u3 0.029663 QCK    
✔️ undefined: 7.61386 QCK (0ops) (quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9 on 44'/118'/13'/0/0) #13 js:2:quicksilver:quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9: (! sum of ops 0 QCK) 5.65274 QCK spendable. 1.818993 QCK delegated. 0.14213 QCK unbonding. 
DELEGATIONS
  to quickvaloper1p0w2ztl8swhpvtr8qccr448q25lh663jqht04a 1.818993 QCK  (claimable 1.818993)
UNDELEGATIONS
  from quickvaloper1ys5m6cy4yuufra26nfvkdf9g807g46rsjggxvj 0.14213 QCK
REDELEGATIONS
  from quickvaloper1tkyjfca8mj5s7l7r7cgdn9h9x3x2rpd957ca8k to quickvaloper1p0w2ztl8swhpvtr8qccr448q25lh663jqht04a 0.075037 QCK


Spec onomy (18)

Spec onomy found 18 Onomy accounts (preload: 1261ms). Will use Cosmos 2.35.23 on nanoS 2.1.0
undefined: 0.00000004 NOM (24ops) (onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg on 44'/118'/0'/0/0) #0 js:2:onomy:onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg:
undefined: 0.00001776 NOM (60ops) (onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67 on 44'/118'/1'/0/0) #1 js:2:onomy:onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67:
undefined: 0.00000006 NOM (38ops) (onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m on 44'/118'/2'/0/0) #2 js:2:onomy:onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m:
undefined: 0.00000004 NOM (77ops) (onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp on 44'/118'/3'/0/0) #3 js:2:onomy:onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp:
undefined: 0.00000212 NOM (46ops) (onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c on 44'/118'/4'/0/0) #4 js:2:onomy:onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c:
undefined: 0.00000023 NOM (74ops) (onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he on 44'/118'/5'/0/0) #5 js:2:onomy:onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he:
undefined: 0 NOM (49ops) (onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l on 44'/118'/6'/0/0) #6 js:2:onomy:onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l:
undefined: 0.00001285 NOM (66ops) (onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k on 44'/118'/7'/0/0) #7 js:2:onomy:onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k:
undefined: 0.00000008 NOM (36ops) (onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6 on 44'/118'/8'/0/0) #8 js:2:onomy:onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6:
undefined: 0.00001937 NOM (75ops) (onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r on 44'/118'/9'/0/0) #9 js:2:onomy:onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r:
undefined: 0.00002031 NOM (19ops) (onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls on 44'/118'/10'/0/0) #10 js:2:onomy:onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls:
undefined: 0.00314245 NOM (61ops) (onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl on 44'/118'/11'/0/0) #11 js:2:onomy:onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl:
undefined: 0.00094749 NOM (16ops) (onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv on 44'/118'/12'/0/0) #12 js:2:onomy:onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv:
undefined: 0.214328 NOM (15ops) (onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj on 44'/118'/13'/0/0) #13 js:2:onomy:onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj:
undefined: 0.399657 NOM (21ops) (onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46 on 44'/118'/14'/0/0) #14 js:2:onomy:onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46:
undefined: 0.0528671 NOM (10ops) (onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t on 44'/118'/15'/0/0) #15 js:2:onomy:onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t:
undefined: 1.13529 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:
necessary accounts resynced in 0.07ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.00000004 NOM (24ops) (onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg on 44'/118'/0'/0/0) #0 js:2:onomy:onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg: (! sum of ops -0.000010731967029601 NOM) 0.000000046125486709 NOM spendable. 

max spendable ~0.00000004
★ using mutation 'send max'
→ TO undefined: 0.00001776 NOM (60ops) (onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67 on 44'/118'/1'/0/0) #1 js:2:onomy:onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67:
✔️ transaction 
SEND MAX
TO onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67

with fees=0
STATUS (927ms)
  amount: 0.000000046125486445 NOM
  estimated fees: 0.000000000000000264 NOM
  total spent: 0.000000046125486709 NOM
errors: 
warnings: 
✔️ has been signed! (3.5s) 
✔️ broadcasted! (157ms) optimistic operation: 
  -0.000000046125486709 NOM OUT        60B1D9C2B5551D8B94ECA1C87EA9146BFAB504A9EA42ABCE42E03D1FB1FC96A2 2024-07-01T11:39
✔️ operation confirmed (0.13ms): 
  -0.000000046125486709 NOM OUT        60B1D9C2B5551D8B94ECA1C87EA9146BFAB504A9EA42ABCE42E03D1FB1FC96A2 2024-07-01T11:39
✔️ undefined: 0.00000004 NOM (24ops) (onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg on 44'/118'/0'/0/0) #0 js:2:onomy:onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg: (! sum of ops -0.000010731967029601 NOM) 0.000000046125486709 NOM spendable. 
✔️ destination operation 
  ? -46125486709     OUT        60B1D9C2B5551D8B94ECA1C87EA9146BFAB504A9EA42ABCE42E03D1FB1FC96A2 2024-07-01T11:39

necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.00001776 NOM (60ops) (onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67 on 44'/118'/1'/0/0) #1 js:2:onomy:onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67: (! sum of ops -0.002811956932564303 NOM) 0.000001821952996005 NOM spendable. 0.000015942789031 NOM delegated. 0.000000002345336591 NOM unbonding. 
DELEGATIONS
  to onomyvaloper1fgklp9hemczlwtqp9jqzq3xahh38hznxu9mtmf 0.000015934882991565 NOM  (claimable 0.000015934882991565)
  to onomyvaloper1vpj283gw4qzl8ytlesz0fvksxa3v24k3jc4wnz 0.000000001817149853 NOM  (claimable 0.000000001817149853)
  to onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000000006088889582 NOM  (claimable 0.000000006088889582)
UNDELEGATIONS
  from onomyvaloper1525nrrumgc6cd3fexj9cyaanmh93j9a4vzf334 0.000000000000291303 NOM
  from onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000000002345045288 NOM
REDELEGATIONS
  from onomyvaloper1x6mlfjektdjgum6hfgfgcz57dl4s9dssgzfvwj to onomyvaloper1fgklp9hemczlwtqp9jqzq3xahh38hznxu9mtmf 0.00001520262321952 NOM
  from onomyvaloper1525nrrumgc6cd3fexj9cyaanmh93j9a4vzf334 to onomyvaloper1fgklp9hemczlwtqp9jqzq3xahh38hznxu9mtmf 0.000000000000854197 NOM

max spendable ~0.00000182
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.000000001817149853 -> onomyvaloper1vpj283gw4qzl8ytlesz0fvksxa3v24k3jc4wnz
with fees=0
  memo=LedgerLiveBot
STATUS (940ms)
  amount: 0 NOM
  estimated fees: 0.000000000000001011 NOM
  total spent: 0.000000000000001011 NOM
errors: 
warnings: 
✔️ has been signed! (3.7s) 
✔️ broadcasted! (154ms) optimistic operation: 
  -0.000000000000001011 NOM UNDELEGATE DB7DD7AB4FA92B1424085D2EEDBDF4F81120EF4F39A97675677D387CEA143F86 2024-07-01T11:39
    to onomyvaloper1vpj283gw4qzl8ytlesz0fvksxa3v24k3jc4wnz 0.000000001817149853 NOM
✔️ operation confirmed (0.12ms): 
  -0.000000000000001011 NOM UNDELEGATE DB7DD7AB4FA92B1424085D2EEDBDF4F81120EF4F39A97675677D387CEA143F86 2024-07-01T11:39
    to onomyvaloper1vpj283gw4qzl8ytlesz0fvksxa3v24k3jc4wnz 0.000000001817149853 NOM
✔️ undefined: 0.00001776 NOM (60ops) (onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67 on 44'/118'/1'/0/0) #1 js:2:onomy:onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67: (! sum of ops -0.002811956932564303 NOM) 0.000001821952996005 NOM spendable. 0.000015942789031 NOM delegated. 0.000000002345336591 NOM unbonding. 
DELEGATIONS
  to onomyvaloper1fgklp9hemczlwtqp9jqzq3xahh38hznxu9mtmf 0.000015934882991565 NOM  (claimable 0.000015934882991565)
  to onomyvaloper1vpj283gw4qzl8ytlesz0fvksxa3v24k3jc4wnz 0.000000001817149853 NOM  (claimable 0.000000001817149853)
  to onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000000006088889582 NOM  (claimable 0.000000006088889582)
UNDELEGATIONS
  from onomyvaloper1525nrrumgc6cd3fexj9cyaanmh93j9a4vzf334 0.000000000000291303 NOM
  from onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000000002345045288 NOM
REDELEGATIONS
  from onomyvaloper1x6mlfjektdjgum6hfgfgcz57dl4s9dssgzfvwj to onomyvaloper1fgklp9hemczlwtqp9jqzq3xahh38hznxu9mtmf 0.00001520262321952 NOM
  from onomyvaloper1525nrrumgc6cd3fexj9cyaanmh93j9a4vzf334 to onomyvaloper1fgklp9hemczlwtqp9jqzq3xahh38hznxu9mtmf 0.000000000000854197 NOM

necessary accounts resynced in 0.10ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.00000006 NOM (38ops) (onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m on 44'/118'/2'/0/0) #2 js:2:onomy:onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m: 0.000000062900821194 NOM spendable. 

max spendable ~0.00000006
★ using mutation 'send some'
→ TO undefined: 0.00000004 NOM (24ops) (onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg on 44'/118'/0'/0/0) #0 js:2:onomy:onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg:
✔️ transaction 
SEND  0.000000022953781829 NOM
TO onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg

with fees=0
STATUS (922ms)
  amount: 0.000000022953781829 NOM
  estimated fees: 0.000000000000000264 NOM
  total spent: 0.000000022953782093 NOM
errors: 
warnings: 
✔️ has been signed! (3.5s) 
✔️ broadcasted! (155ms) optimistic operation: 
  -0.000000022953782093 NOM OUT        FA2748DC23E11B1208771B98DA8D7545007E76E83ABB063AEE8E17487D177EE8 2024-07-01T11:39
✔️ operation confirmed (0.35ms): 
  -0.000000022953782093 NOM OUT        FA2748DC23E11B1208771B98DA8D7545007E76E83ABB063AEE8E17487D177EE8 2024-07-01T11:39
✔️ undefined: 0.00000006 NOM (38ops) (onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m on 44'/118'/2'/0/0) #2 js:2:onomy:onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m: 0.000000062900821194 NOM spendable. 
✔️ destination operation 
  ? -22953782093     OUT        FA2748DC23E11B1208771B98DA8D7545007E76E83ABB063AEE8E17487D177EE8 2024-07-01T11:39

necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.00000212 NOM (46ops) (onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c on 44'/118'/4'/0/0) #4 js:2:onomy:onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c: 0.000002122558166337 NOM spendable. 

max spendable ~0.00000212
★ using mutation 'send some'
→ TO undefined: 0.00094749 NOM (16ops) (onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv on 44'/118'/12'/0/0) #12 js:2:onomy:onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv:
✔️ transaction 
SEND  0.00000103602883367 NOM
TO onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv

with fees=0
STATUS (922ms)
  amount: 0.00000103602883367 NOM
  estimated fees: 0.000000000000000266 NOM
  total spent: 0.000001036028833936 NOM
errors: 
warnings: 
✔️ has been signed! (3.4s) 
✔️ broadcasted! (154ms) optimistic operation: 
  -0.000001036028833936 NOM OUT        C0B9094A8DF9BF8C79ED228FD51EE296DD1672861302E491A60F146CCB1127A4 2024-07-01T11:39
✔️ operation confirmed (0.11ms): 
  -0.000001036028833936 NOM OUT        C0B9094A8DF9BF8C79ED228FD51EE296DD1672861302E491A60F146CCB1127A4 2024-07-01T11:39
✔️ undefined: 0.00000212 NOM (46ops) (onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c on 44'/118'/4'/0/0) #4 js:2:onomy:onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c: 0.000002122558166337 NOM spendable. 
✔️ destination operation 
  ? -1036028833936   OUT        C0B9094A8DF9BF8C79ED228FD51EE296DD1672861302E491A60F146CCB1127A4 2024-07-01T11:39

necessary accounts resynced in 0.09ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.00001285 NOM (66ops) (onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k on 44'/118'/7'/0/0) #7 js:2:onomy:onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k: (! sum of ops -0.000072556407102883 NOM) 0.000011804077504276 NOM spendable. 0.00000000045400055 NOM delegated. 0.000001050793984332 NOM unbonding. 
DELEGATIONS
  to onomyvaloper1fgklp9hemczlwtqp9jqzq3xahh38hznxu9mtmf 0.00000000045400055 NOM  (claimable 0.00000000045400055)
UNDELEGATIONS
  from onomyvaloper1fgklp9hemczlwtqp9jqzq3xahh38hznxu9mtmf 0.000000002944039768 NOM
  from onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000000695595604449 NOM
  from onomyvaloper1se84n9t5ufpjerjxph8rj4c4zw57ylp57jxvu5 0.000000330762057778 NOM
  from onomyvaloper1n426r3jk58la94mhlnufq57gllt2jaz76qhm6h 0.000000021492282337 NOM

max spendable ~0.0000118
★ using mutation 'claim rewards'
✔️ transaction 
CLAIMREWARD 
TO 
  0.000000000000991939 -> onomyvaloper1fgklp9hemczlwtqp9jqzq3xahh38hznxu9mtmf
with fees=0
  memo=LedgerLiveBot
STATUS (635ms)
  amount: 0 NOM
  estimated fees: 0.000000000000000674 NOM
  total spent: 0.000000000000000674 NOM
errors: 
warnings: 
✔️ has been signed! (3.4s) 
✔️ broadcasted! (155ms) optimistic operation: 
  +0 NOM             REWARD     EB72ACC168181DB29F166DBF563279869832B7C10DE3B87DD861F9633EBB7433 2024-07-01T11:39
    to onomyvaloper1fgklp9hemczlwtqp9jqzq3xahh38hznxu9mtmf 0.000000000000991939 NOM
✔️ operation confirmed (0.14ms): 
  +0 NOM             REWARD     EB72ACC168181DB29F166DBF563279869832B7C10DE3B87DD861F9633EBB7433 2024-07-01T11:39
    to onomyvaloper1fgklp9hemczlwtqp9jqzq3xahh38hznxu9mtmf 0.000000000000991939 NOM
✔️ undefined: 0.00001285 NOM (66ops) (onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k on 44'/118'/7'/0/0) #7 js:2:onomy:onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k: (! sum of ops -0.000072556407102883 NOM) 0.000011804077504276 NOM spendable. 0.00000000045400055 NOM delegated. 0.000001050793984332 NOM unbonding. 
DELEGATIONS
  to onomyvaloper1fgklp9hemczlwtqp9jqzq3xahh38hznxu9mtmf 0.00000000045400055 NOM  (claimable 0.00000000045400055)
UNDELEGATIONS
  from onomyvaloper1fgklp9hemczlwtqp9jqzq3xahh38hznxu9mtmf 0.000000002944039768 NOM
  from onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000000695595604449 NOM
  from onomyvaloper1se84n9t5ufpjerjxph8rj4c4zw57ylp57jxvu5 0.000000330762057778 NOM
  from onomyvaloper1n426r3jk58la94mhlnufq57gllt2jaz76qhm6h 0.000000021492282337 NOM

necessary accounts resynced in 0.09ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.00001937 NOM (75ops) (onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r on 44'/118'/9'/0/0) #9 js:2:onomy:onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r: (! sum of ops -0.000130850791383686 NOM) 0.00001401299980637 NOM spendable. 0.000005296045196068 NOM delegated. 0.000000061055174328 NOM unbonding. 
DELEGATIONS
  to onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000003757621695332 NOM  (claimable 0.000003757621695332)
  to onomyvaloper1a80f2tudr06k6jtg8yhgrq4and80slljnf64dy 0.000001538423500736 NOM  (claimable 0.000001538423500736)
UNDELEGATIONS
  from onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc 0.000000061055174328 NOM
REDELEGATIONS
  from onomyvaloper1x6mlfjektdjgum6hfgfgcz57dl4s9dssgzfvwj to onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000000938231988972 NOM
  from onomyvaloper1x6mlfjektdjgum6hfgfgcz57dl4s9dssgzfvwj to onomyvaloper1a80f2tudr06k6jtg8yhgrq4and80slljnf64dy 0.000000006546371211 NOM
  from onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc to onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000000003187679526 NOM
  from onomyvaloper16pj5gljqnqs0ajxakccfjhu05yczp987q5wjzx to onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000001871093856054 NOM

max spendable ~0.00001401
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.000000070179547955 NOM
TO 
  0.000000070179547955 -> onomyvaloper1525nrrumgc6cd3fexj9cyaanmh93j9a4vzf334
with fees=0
  memo=LedgerLiveBot
STATUS (1229ms)
  amount: 0.000000070179547955 NOM
  estimated fees: 0.00000000000000058 NOM
  total spent: 0.000000070179548535 NOM
errors: 
warnings: 
✔️ has been signed! (3.7s) 
✔️ broadcasted! (155ms) optimistic operation: 
  -0.000000070179548535 NOM DELEGATE   B47338629D8D6EDF05C3EDCED67C3C8C247ABC490D34BBE7D8166F4BDDD44B71 2024-07-01T11:40
    to onomyvaloper1525nrrumgc6cd3fexj9cyaanmh93j9a4vzf334 0.000000070179547955 NOM
✔️ operation confirmed (0.13ms): 
  -0.000000070179548535 NOM DELEGATE   B47338629D8D6EDF05C3EDCED67C3C8C247ABC490D34BBE7D8166F4BDDD44B71 2024-07-01T11:40
    to onomyvaloper1525nrrumgc6cd3fexj9cyaanmh93j9a4vzf334 0.000000070179547955 NOM
✔️ undefined: 0.00001937 NOM (75ops) (onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r on 44'/118'/9'/0/0) #9 js:2:onomy:onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r: (! sum of ops -0.000130850791383686 NOM) 0.00001401299980637 NOM spendable. 0.000005296045196068 NOM delegated. 0.000000061055174328 NOM unbonding. 
DELEGATIONS
  to onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000003757621695332 NOM  (claimable 0.000003757621695332)
  to onomyvaloper1a80f2tudr06k6jtg8yhgrq4and80slljnf64dy 0.000001538423500736 NOM  (claimable 0.000001538423500736)
UNDELEGATIONS
  from onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc 0.000000061055174328 NOM
REDELEGATIONS
  from onomyvaloper1x6mlfjektdjgum6hfgfgcz57dl4s9dssgzfvwj to onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000000938231988972 NOM
  from onomyvaloper1x6mlfjektdjgum6hfgfgcz57dl4s9dssgzfvwj to onomyvaloper1a80f2tudr06k6jtg8yhgrq4and80slljnf64dy 0.000000006546371211 NOM
  from onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc to onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000000003187679526 NOM
  from onomyvaloper16pj5gljqnqs0ajxakccfjhu05yczp987q5wjzx to onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000001871093856054 NOM


Spec secret_network (failed)


Spec sei_network (failed)


Spec stargaze (18)

Spec stargaze found 18 Stargaze accounts (preload: 229ms). Will use Cosmos 2.35.23 on nanoS 2.1.0
undefined: 0 STARS (15ops) (stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu on 44'/118'/0'/0/0) #0 js:2:stargaze:stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu:
undefined: 2.52355 STARS (23ops) (stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2 on 44'/118'/1'/0/0) #1 js:2:stargaze:stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2:
undefined: 1.51786 STARS (14ops) (stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0 on 44'/118'/2'/0/0) #2 js:2:stargaze:stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0:
undefined: 4.55587 STARS (16ops) (stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4 on 44'/118'/3'/0/0) #3 js:2:stargaze:stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4:
undefined: 0.16107 STARS (11ops) (stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv on 44'/118'/4'/0/0) #4 js:2:stargaze:stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv:
undefined: 17.7943 STARS (14ops) (stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd on 44'/118'/5'/0/0) #5 js:2:stargaze:stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd:
undefined: 2.33934 STARS (6ops) (stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt on 44'/118'/6'/0/0) #6 js:2:stargaze:stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt:
undefined: 7.9473 STARS (13ops) (stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz on 44'/118'/7'/0/0) #7 js:2:stargaze:stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz:
undefined: 0.31407 STARS (6ops) (stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw on 44'/118'/8'/0/0) #8 js:2:stargaze:stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw:
undefined: 2.9009 STARS (11ops) (stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h on 44'/118'/9'/0/0) #9 js:2:stargaze:stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h:
undefined: 7.45904 STARS (14ops) (stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y on 44'/118'/10'/0/0) #10 js:2:stargaze:stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y:
undefined: 6.34934 STARS (9ops) (stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet on 44'/118'/11'/0/0) #11 js:2:stargaze:stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet:
undefined: 27.6823 STARS (6ops) (stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc on 44'/118'/12'/0/0) #12 js:2:stargaze:stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc:
undefined: 0.683077 STARS (5ops) (stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x on 44'/118'/13'/0/0) #13 js:2:stargaze:stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x:
undefined: 32.7534 STARS (3ops) (stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w on 44'/118'/14'/0/0) #14 js:2:stargaze:stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w:
undefined: 449.46 STARS (6ops) (stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql on 44'/118'/15'/0/0) #15 js:2:stargaze:stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql:
undefined: 318.893 STARS (0ops) (stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q on 44'/118'/16'/0/0) #16 js:2:stargaze:stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q:
undefined: 0 STARS (0ops) (stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6 on 44'/118'/17'/0/0) #17 js:2:stargaze:stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6:
necessary accounts resynced in 0.12ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 1.51786 STARS (14ops) (stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0 on 44'/118'/2'/0/0) #2 js:2:stargaze:stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0: (! sum of ops -0.988014 STARS) 1.517865 STARS spendable. 

max spendable ~1.4237
★ using mutation 'send some'
→ TO undefined: 0.683077 STARS (5ops) (stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x on 44'/118'/13'/0/0) #13 js:2:stargaze:stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x:
✔️ transaction 
SEND  0.673143 STARS
TO stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x

with fees=0.078328
STATUS (328ms)
  amount: 0.673143 STARS
  estimated fees: 0.078328 STARS
  total spent: 0.751471 STARS
errors: 
warnings: 
✔️ has been signed! (3.2s) 
✔️ broadcasted! (57ms) optimistic operation: 
  -0.751471 STARS    OUT        89493D983C2D05B61E85A9ADC65F011535421B46B3EC2D080FF9FE62E8BC5EF7 2024-07-01T11:39
✔️ operation confirmed (0.19ms): 
  -0.751471 STARS    OUT        89493D983C2D05B61E85A9ADC65F011535421B46B3EC2D080FF9FE62E8BC5EF7 2024-07-01T11:39
✔️ undefined: 1.51786 STARS (14ops) (stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0 on 44'/118'/2'/0/0) #2 js:2:stargaze:stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0: (! sum of ops -0.988014 STARS) 1.517865 STARS spendable. 
✔️ destination operation 
  ? -751471          OUT        89493D983C2D05B61E85A9ADC65F011535421B46B3EC2D080FF9FE62E8BC5EF7 2024-07-01T11:39

necessary accounts resynced in 0.10ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 4.55587 STARS (16ops) (stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4 on 44'/118'/3'/0/0) #3 js:2:stargaze:stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4: (! sum of ops 3.464172 STARS) 4.450019 STARS spendable. 0.083421 STARS delegated. 0.022431 STARS unbonding. 
DELEGATIONS
  to starsvaloper1x0dzmfr64nhy9g3sj5w3cjhuyuddzjnm9rweut 0.001641 STARS  (claimable 0.001641)
  to starsvaloper1jg39wazpukeqcytuuad7tsn3end22spg2m4u0x 0.08178 STARS  (claimable 0.08178)
UNDELEGATIONS
  from starsvaloper1jnum75gr8jsn4xn9u48kc9ma5c4mrmvzsvad6j 0.001073 STARS
  from starsvaloper1r6usxgxmrz6ynjz2y5ez5u8ts3fpmtlrl8c9xr 0.021358 STARS

max spendable ~4.35945
★ using mutation 'send some'
→ TO undefined: 318.893 STARS (0ops) (stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q on 44'/118'/16'/0/0) #16 js:2:stargaze:stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q:
✔️ transaction 
SEND  2.131144 STARS
TO stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q

with fees=0.072717
  memo=LedgerLiveBot
STATUS (442ms)
  amount: 2.131144 STARS
  estimated fees: 0.072717 STARS
  total spent: 2.203861 STARS
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (55ms) optimistic operation: 
  -2.203861 STARS    OUT        A1B1A79A90850A478BA8DA48F413B50657BC7A6096EA3D47130B2FA560173A17 2024-07-01T11:39
✔️ operation confirmed (0.12ms): 
  -2.203861 STARS    OUT        A1B1A79A90850A478BA8DA48F413B50657BC7A6096EA3D47130B2FA560173A17 2024-07-01T11:39
✔️ undefined: 4.55587 STARS (16ops) (stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4 on 44'/118'/3'/0/0) #3 js:2:stargaze:stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4: (! sum of ops 3.464172 STARS) 4.450019 STARS spendable. 0.083421 STARS delegated. 0.022431 STARS unbonding. 
DELEGATIONS
  to starsvaloper1x0dzmfr64nhy9g3sj5w3cjhuyuddzjnm9rweut 0.001641 STARS  (claimable 0.001641)
  to starsvaloper1jg39wazpukeqcytuuad7tsn3end22spg2m4u0x 0.08178 STARS  (claimable 0.08178)
UNDELEGATIONS
  from starsvaloper1jnum75gr8jsn4xn9u48kc9ma5c4mrmvzsvad6j 0.001073 STARS
  from starsvaloper1r6usxgxmrz6ynjz2y5ez5u8ts3fpmtlrl8c9xr 0.021358 STARS
✔️ destination operation 
  ? -2203861         OUT        A1B1A79A90850A478BA8DA48F413B50657BC7A6096EA3D47130B2FA560173A17 2024-07-01T11:39

necessary accounts resynced in 0.09ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 17.7943 STARS (14ops) (stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd on 44'/118'/5'/0/0) #5 js:2:stargaze:stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd: (! sum of ops 16.993649 STARS) 17.17342 STARS spendable. 0.000197 STARS delegated. 0.620738 STARS unbonding. 
DELEGATIONS
  to starsvaloper1t70evqe66qedxp3u04d424gxfyncuhp68ffuf7 0.000197 STARS  (claimable 0.000197)
UNDELEGATIONS
  from starsvaloper1t70evqe66qedxp3u04d424gxfyncuhp68ffuf7 0.000085 STARS
  from starsvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje9898petq 0.147618 STARS
  from starsvaloper1vpw942ek3ad8edrfyhyye6vd3zrwy88z3pwnuj 0.473035 STARS

max spendable ~17.0827
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.487541 STARS
TO 
  0.487541 -> starsvaloper13r4kyxcdwd49xekzvlasp23kt67ju85hauy5gw
with fees=0.149725
  memo=LedgerLiveBot
STATUS (446ms)
  amount: 0.487541 STARS
  estimated fees: 0.149725 STARS
  total spent: 0.637266 STARS
errors: 
warnings: 
✔️ has been signed! (3.4s) 
✔️ broadcasted! (60ms) optimistic operation: 
  -0.637266 STARS    DELEGATE   5B5336F8686B67A2EF0A829FDA852DDA4F4FE74E1605CD5C3F96EE1AFFB278D8 2024-07-01T11:39
    to starsvaloper13r4kyxcdwd49xekzvlasp23kt67ju85hauy5gw 0.487541 STARS  
✔️ operation confirmed (0.14ms): 
  -0.637266 STARS    DELEGATE   5B5336F8686B67A2EF0A829FDA852DDA4F4FE74E1605CD5C3F96EE1AFFB278D8 2024-07-01T11:39
    to starsvaloper13r4kyxcdwd49xekzvlasp23kt67ju85hauy5gw 0.487541 STARS  
✔️ undefined: 17.7943 STARS (14ops) (stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd on 44'/118'/5'/0/0) #5 js:2:stargaze:stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd: (! sum of ops 16.993649 STARS) 17.17342 STARS spendable. 0.000197 STARS delegated. 0.620738 STARS unbonding. 
DELEGATIONS
  to starsvaloper1t70evqe66qedxp3u04d424gxfyncuhp68ffuf7 0.000197 STARS  (claimable 0.000197)
UNDELEGATIONS
  from starsvaloper1t70evqe66qedxp3u04d424gxfyncuhp68ffuf7 0.000085 STARS
  from starsvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje9898petq 0.147618 STARS
  from starsvaloper1vpw942ek3ad8edrfyhyye6vd3zrwy88z3pwnuj 0.473035 STARS

necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 2.33934 STARS (6ops) (stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt on 44'/118'/6'/0/0) #6 js:2:stargaze:stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt: 2.339345 STARS spendable. 

max spendable ~2.24873
★ using mutation 'send max'
→ TO undefined: 0 STARS (15ops) (stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu on 44'/118'/0'/0/0) #0 js:2:stargaze:stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu:
✔️ transaction 
SEND MAX
TO stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu

with fees=0.07475
STATUS (334ms)
  amount: 2.264595 STARS
  estimated fees: 0.07475 STARS
  total spent: 2.339345 STARS
errors: 
warnings: 
✔️ has been signed! (3.2s) 
✔️ broadcasted! (61ms) optimistic operation: 
  -2.339345 STARS    OUT        5F2F0E6B5D46864582EEEA68179C90519F959B3350468BDB2A5C5C1FE255E22F 2024-07-01T11:39
✔️ operation confirmed (0.14ms): 
  -2.339345 STARS    OUT        5F2F0E6B5D46864582EEEA68179C90519F959B3350468BDB2A5C5C1FE255E22F 2024-07-01T11:39
✔️ undefined: 2.33934 STARS (6ops) (stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt on 44'/118'/6'/0/0) #6 js:2:stargaze:stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt: 2.339345 STARS spendable. 
✔️ destination operation 
  ? -2339345         OUT        5F2F0E6B5D46864582EEEA68179C90519F959B3350468BDB2A5C5C1FE255E22F 2024-07-01T11:39

necessary accounts resynced in 0.10ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 7.9473 STARS (13ops) (stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz on 44'/118'/7'/0/0) #7 js:2:stargaze:stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz: (! sum of ops 5.646188 STARS) 7.432734 STARS spendable. 0.514567 STARS delegated. 
DELEGATIONS
  to starsvaloper1rkhzx3q59nzmrjrj3lhpazfxaxvm9uxl6q7a70 0.000169 STARS  (claimable 0.000169)
  to starsvaloper1gjtvly9lel6zskvwtvlg5vhwpu9c9wawyx37ju 0.002363 STARS  (claimable 0.002363)
  to starsvaloper12k8za208e5kt0j34w6au6v8py6t6cat2sqjzvw 0.512035 STARS  (claimable 0.512035)
REDELEGATIONS
  from starsvaloper1rkhzx3q59nzmrjrj3lhpazfxaxvm9uxl6q7a70 to starsvaloper12k8za208e5kt0j34w6au6v8py6t6cat2sqjzvw 0.000031 STARS
  from starsvaloper1tylme70t04tua5pd2my6zvzwavs02guvd837ug to starsvaloper12k8za208e5kt0j34w6au6v8py6t6cat2sqjzvw 0.000033 STARS

max spendable ~7.34203
★ using mutation 'redelegate'
✔️ transaction 
REDELEGATE 
TO 
  0.000169 -> starsvaloper1gjtvly9lel6zskvwtvlg5vhwpu9c9wawyx37ju
  source validator=starsvaloper1rkhzx3q59nzmrjrj3lhpazfxaxvm9uxl6q7a70
with fees=0.397674
  memo=LedgerLiveBot
STATUS (220ms)
  amount: 0 STARS
  estimated fees: 0.397674 STARS
  total spent: 0.397674 STARS
errors: 
warnings: 
✔️ has been signed! (3.8s) 
✔️ broadcasted! (55ms) optimistic operation: 
  -0.397674 STARS    REDELEGATE D12A90FE81F654671654D287E111E444BCE42C0593C29B3F9BF330E419CE40F1 2024-07-01T11:39
    to starsvaloper1gjtvly9lel6zskvwtvlg5vhwpu9c9wawyx37ju 0.000169 STARS  
✔️ operation confirmed (0.12ms): 
  -0.397674 STARS    REDELEGATE D12A90FE81F654671654D287E111E444BCE42C0593C29B3F9BF330E419CE40F1 2024-07-01T11:39
    to starsvaloper1gjtvly9lel6zskvwtvlg5vhwpu9c9wawyx37ju 0.000169 STARS  
✔️ undefined: 7.9473 STARS (13ops) (stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz on 44'/118'/7'/0/0) #7 js:2:stargaze:stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz: (! sum of ops 5.646188 STARS) 7.432734 STARS spendable. 0.514567 STARS delegated. 
DELEGATIONS
  to starsvaloper1rkhzx3q59nzmrjrj3lhpazfxaxvm9uxl6q7a70 0.000169 STARS  (claimable 0.000169)
  to starsvaloper1gjtvly9lel6zskvwtvlg5vhwpu9c9wawyx37ju 0.002363 STARS  (claimable 0.002363)
  to starsvaloper12k8za208e5kt0j34w6au6v8py6t6cat2sqjzvw 0.512035 STARS  (claimable 0.512035)
REDELEGATIONS
  from starsvaloper1rkhzx3q59nzmrjrj3lhpazfxaxvm9uxl6q7a70 to starsvaloper12k8za208e5kt0j34w6au6v8py6t6cat2sqjzvw 0.000031 STARS
  from starsvaloper1tylme70t04tua5pd2my6zvzwavs02guvd837ug to starsvaloper12k8za208e5kt0j34w6au6v8py6t6cat2sqjzvw 0.000033 STARS


Spec coreum (18)

Spec coreum found 18 Coreum accounts (preload: 287ms). Will use Cosmos 2.35.23 on nanoS 2.1.0
undefined: 0 CORE (78ops) (core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk on 44'/118'/0'/0/0) #0 js:2:coreum:core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk:
undefined: 0.024863 CORE (117ops) (core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq on 44'/118'/1'/0/0) #1 js:2:coreum:core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq:
undefined: 0 CORE (97ops) (core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89 on 44'/118'/2'/0/0) #2 js:2:coreum:core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89:
undefined: 0.049346 CORE (151ops) (core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l on 44'/118'/3'/0/0) #3 js:2:coreum:core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l:
undefined: 0.016046 CORE (84ops) (core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux on 44'/118'/4'/0/0) #4 js:2:coreum:core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux:
undefined: 0.215798 CORE (122ops) (core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8 on 44'/118'/5'/0/0) #5 js:2:coreum:core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8:
undefined: 0.023366 CORE (80ops) (core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp on 44'/118'/6'/0/0) #6 js:2:coreum:core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp:
undefined: 0 CORE (110ops) (core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g on 44'/118'/7'/0/0) #7 js:2:coreum:core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g:
undefined: 0 CORE (74ops) (core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy on 44'/118'/8'/0/0) #8 js:2:coreum:core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy:
undefined: 0.000255 CORE (135ops) (core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea on 44'/118'/9'/0/0) #9 js:2:coreum:core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea:
undefined: 0.025752 CORE (74ops) (core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw on 44'/118'/10'/0/0) #10 js:2:coreum:core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw:
undefined: 0 CORE (107ops) (core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p on 44'/118'/11'/0/0) #11 js:2:coreum:core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p:
undefined: 0 CORE (51ops) (core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j on 44'/118'/12'/0/0) #12 js:2:coreum:core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j:
undefined: 0.123976 CORE (117ops) (core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv on 44'/118'/13'/0/0) #13 js:2:coreum:core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv:
undefined: 0.158217 CORE (53ops) (core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try on 44'/118'/14'/0/0) #14 js:2:coreum:core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try:
undefined: 23.0049 CORE (86ops) (core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4 on 44'/118'/15'/0/0) #15 js:2:coreum:core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4:
undefined: 19.3438 CORE (28ops) (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:
necessary accounts resynced in 0.13ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.215798 CORE (122ops) (core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8 on 44'/118'/5'/0/0) #5 js:2:coreum:core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8: (! sum of ops 0.213055 CORE) 0.209017 CORE spendable. 0.006781 CORE delegated. 
DELEGATIONS
  to corevaloper1gsneu9egj3u3tml383cw3cvya7ayegfk709msu 0.006118 CORE  (claimable 0.006118)
  to corevaloper1ll9gdh5ur6gyv6swgshcm4zkkw4ttakt0zghmr 0.000663 CORE  (claimable 0.000663)

max spendable ~0.194067
★ using mutation 'send some'
→ TO undefined: 0.025752 CORE (74ops) (core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw on 44'/118'/10'/0/0) #10 js:2:coreum:core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw:
✔️ transaction 
SEND  0.121783 CORE
TO core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw

with fees=0.01495
STATUS (334ms)
  amount: 0.121783 CORE
  estimated fees: 0.01495 CORE
  total spent: 0.136733 CORE
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (317ms) optimistic operation: 
  -0.136733 CORE     OUT        76FFE754B97F60D47A87419A3562C28A8A8EB68BCC9746321F47029B5BF29E74 2024-07-01T11:40
✔️ operation confirmed (0.11ms): 
  -0.136733 CORE     OUT        76FFE754B97F60D47A87419A3562C28A8A8EB68BCC9746321F47029B5BF29E74 2024-07-01T11:40
✔️ undefined: 0.215798 CORE (122ops) (core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8 on 44'/118'/5'/0/0) #5 js:2:coreum:core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8: (! sum of ops 0.213055 CORE) 0.209017 CORE spendable. 0.006781 CORE delegated. 
DELEGATIONS
  to corevaloper1gsneu9egj3u3tml383cw3cvya7ayegfk709msu 0.006118 CORE  (claimable 0.006118)
  to corevaloper1ll9gdh5ur6gyv6swgshcm4zkkw4ttakt0zghmr 0.000663 CORE  (claimable 0.000663)
✔️ destination operation 
  ? -136733          OUT        76FFE754B97F60D47A87419A3562C28A8A8EB68BCC9746321F47029B5BF29E74 2024-07-01T11:40

necessary accounts resynced in 0.09ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.123976 CORE (117ops) (core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv on 44'/118'/13'/0/0) #13 js:2:coreum:core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv: (! sum of ops 0.183771 CORE) 0.123976 CORE spendable. 

max spendable ~0.109026
★ using mutation 'send some'
→ TO undefined: 0 CORE (97ops) (core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89 on 44'/118'/2'/0/0) #2 js:2:coreum:core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89:
✔️ transaction 
SEND  0.06662 CORE
TO core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89

with fees=0.01495
STATUS (472ms)
  amount: 0.06662 CORE
  estimated fees: 0.01495 CORE
  total spent: 0.08157 CORE
errors: 
warnings: 
✔️ has been signed! (3.2s) 
✔️ broadcasted! (149ms) optimistic operation: 
  -0.08157 CORE      OUT        62CEA711474BF00EE8163EBFE4159D8D64D6B7CA3FF057BCCAC0279C0FA2EC88 2024-07-01T11:40
✔️ operation confirmed (0.22ms): 
  -0.08157 CORE      OUT        62CEA711474BF00EE8163EBFE4159D8D64D6B7CA3FF057BCCAC0279C0FA2EC88 2024-07-01T11:40
✔️ undefined: 0.123976 CORE (117ops) (core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv on 44'/118'/13'/0/0) #13 js:2:coreum:core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv: (! sum of ops 0.183771 CORE) 0.123976 CORE spendable. 
✔️ destination operation 
  ? -81570           OUT        62CEA711474BF00EE8163EBFE4159D8D64D6B7CA3FF057BCCAC0279C0FA2EC88 2024-07-01T11:40

necessary accounts resynced in 0.26ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 0.158217 CORE (53ops) (core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try on 44'/118'/14'/0/0) #14 js:2:coreum:core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try: 0.158217 CORE spendable. 

max spendable ~0.143267
★ using mutation 'send max'
→ TO undefined: 0.024863 CORE (117ops) (core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq on 44'/118'/1'/0/0) #1 js:2:coreum:core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq:
✔️ transaction 
SEND MAX
TO core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq

with fees=0.01495
STATUS (304ms)
  amount: 0.143267 CORE
  estimated fees: 0.01495 CORE
  total spent: 0.158217 CORE
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (43ms) optimistic operation: 
  -0.158217 CORE     OUT        719D34C8747602F501E2D37A5305BCBC8471BFA5BD945B084C9E281D2612A8E3 2024-07-01T11:40
✔️ operation confirmed (0.15ms): 
  -0.158217 CORE     OUT        719D34C8747602F501E2D37A5305BCBC8471BFA5BD945B084C9E281D2612A8E3 2024-07-01T11:40
✔️ undefined: 0.158217 CORE (53ops) (core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try on 44'/118'/14'/0/0) #14 js:2:coreum:core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try: 0.158217 CORE spendable. 
✔️ destination operation 
  ? -158217          OUT        719D34C8747602F501E2D37A5305BCBC8471BFA5BD945B084C9E281D2612A8E3 2024-07-01T11:40

necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.23 on nanoS 2.1.0
→ FROM undefined: 23.0049 CORE (86ops) (core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4 on 44'/118'/15'/0/0) #15 js:2:coreum:core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4: (! sum of ops 23.032468 CORE) 20.69315 CORE spendable. 2.311812 CORE delegated. 
DELEGATIONS
  to corevaloper1f3v67lpkha4hhruncehqzjmt6f6t2fdnua6rv9 1.355782 CORE  (claimable 1.355782)
  to corevaloper17qvasmyr7uyt5ykw0dvqqk4yfdgzqdjq6xdfc5 0.95603 CORE  (claimable 0.95603)
REDELEGATIONS
  from corevaloper1xrd2petz764advyjm7ftu37jn32ueglqe7qyeg to corevaloper17qvasmyr7uyt5ykw0dvqqk4yfdgzqdjq6xdfc5 0.001679 CORE
  from corevaloper1dh2vuvhtryv8wl62lrnuw9q5f8jf2ex5lp6glu to corevaloper17qvasmyr7uyt5ykw0dvqqk4yfdgzqdjq6xdfc5 0.081308 CORE

max spendable ~20.6782
★ using mutation 'claim rewards'
✔️ transaction 
CLAIMREWARD 
TO 
  0.001596 -> corevaloper17qvasmyr7uyt5ykw0dvqqk4yfdgzqdjq6xdfc5
with fees=0.01872
  memo=LedgerLiveBot
STATUS (219ms)
  amount: 0 CORE
  estimated fees: 0.01872 CORE
  total spent: 0.01872 CORE
errors: 
warnings: claimReward ClaimRewardsFeesWarning
✔️ has been signed! (3.1s) 
✔️ broadcasted! (49ms) optimistic operation: 
  +0 CORE            REWARD     B60669704B76C1B5BCD6DC9D004EDC5BD4D01C3A7435BDA0CBCFE2CBF9DFA490 2024-07-01T11:40
    to corevaloper17qvasmyr7uyt5ykw0dvqqk4yfdgzqdjq6xdfc5 0.001596 CORE   
✔️ operation confirmed (0.14ms): 
  +0 CORE            REWARD     B60669704B76C1B5BCD6DC9D004EDC5BD4D01C3A7435BDA0CBCFE2CBF9DFA490 2024-07-01T11:40
    to corevaloper17qvasmyr7uyt5ykw0dvqqk4yfdgzqdjq6xdfc5 0.001596 CORE   
✔️ undefined: 23.0049 CORE (86ops) (core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4 on 44'/118'/15'/0/0) #15 js:2:coreum:core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4: (! sum of ops 23.032468 CORE) 20.69315 CORE spendable. 2.311812 CORE delegated. 
DELEGATIONS
  to corevaloper1f3v67lpkha4hhruncehqzjmt6f6t2fdnua6rv9 1.355782 CORE  (claimable 1.355782)
  to corevaloper17qvasmyr7uyt5ykw0dvqqk4yfdgzqdjq6xdfc5 0.95603 CORE  (claimable 0.95603)
REDELEGATIONS
  from corevaloper1xrd2petz764advyjm7ftu37jn32ueglqe7qyeg to corevaloper17qvasmyr7uyt5ykw0dvqqk4yfdgzqdjq6xdfc5 0.001679 CORE
  from corevaloper1dh2vuvhtryv8wl62lrnuw9q5f8jf2ex5lp6glu to corevaloper17qvasmyr7uyt5ykw0dvqqk4yfdgzqdjq6xdfc5 0.081308 CORE


Spec injective (failed)


Details of the 54 uncovered mutations

Spec axelar (3)

  • undelegate: balance is too low (10), already enough delegations (4)
  • redelegate: balance is too low for redelegate (10), none can redelegate (4)
  • claim rewards: balance is too low for claim rewards (10), no delegation to claim (4)

Spec cosmos (6)

  • send some: balance is too low for send (10)
  • send max: balance is too low for send max (10)
  • delegate new validators: only one out of 2 accounts is not going to delegate (5), can delegate (5)
  • undelegate: balance is too low (10)
  • redelegate: balance is too low for redelegate (10)
  • claim rewards: balance is too low for claim rewards (10)

Spec osmosis (6)

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

Spec desmos (3)

  • undelegate: balance is too low (10), already enough delegations (3), already pending (1)
  • redelegate: balance is too low for redelegate (10), none can redelegate (4)
  • claim rewards: balance is too low for claim rewards (10), no delegation to claim (4)

Spec dydx (6)

  • send some: balance is too low for send (18)
  • send max: balance is too low for send max (18)
  • delegate new validators: the spendable part of accounts is sufficient (threshold: 0.5) (17), already enough delegations (1)
  • undelegate: balance is too low (18)
  • redelegate: balance is too low for redelegate (18)
  • claim rewards: balance is too low for claim rewards (18)

Spec umee (1)

  • undelegate: balance is too low (9), already enough delegations (2), already pending (1)

Spec persistence (3)

  • undelegate: balance is too low (8), already enough delegations (5), already pending (1)
  • redelegate: balance is too low for redelegate (8), none can redelegate (5), Cannot read properties of undefined (reading 'validatorAddress') (1)
  • claim rewards: balance is too low for claim rewards (8), no delegation to claim (6)

Spec quicksilver (2)

  • undelegate: balance is too low (7), already enough delegations (4), already pending (2)
  • claim rewards: balance is too low for claim rewards (7), no delegation to claim (6)

Spec onomy (1)

  • redelegate: balance is too low for redelegate (4), none can redelegate (8)

Spec secret_network (6)

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

Spec sei_network (6)

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

Spec stargaze (2)

  • undelegate: balance is too low (6), already enough delegations (6), already pending (1)
  • claim rewards: balance is too low for claim rewards (6), no delegation to claim (7)

Spec coreum (3)

  • delegate new validators: only one out of 2 accounts is not going to delegate (8), can delegate (6)
  • undelegate: balance is too low (13), already enough delegations (1)
  • redelegate: balance is too low for redelegate (13), none can redelegate (1)

Spec injective (6)

  • send some:
  • send max:
  • delegate new validators:
  • undelegate:
  • redelegate:
  • claim rewards:
Portfolio ($24.98) – Details of the 14 currencies
Spec (accounts) State Remaining Runs (est) funds?
axelar (18) 66 ops , 1.87109 AXL ($1.22) ⚠️ 21 axelar1rs97j43nfyvc689y5rjvnnhrq3tes6ghlj7dgv
cosmos (10) 115 ops , 0.024273 ATOM ($0.15) ⚠️ 0 cosmos1rs97j43nfyvc689y5rjvnnhrq3tes6ghmug9rd
osmosis (0) 0 ops , 🤷‍♂️ ``
desmos (18) 167 ops , 138.231 DSM ($0.40) 💪 999+ desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454
dydx (18) 4 ops , 0.00956286 dydx ($0.02) ⚠️ 1 dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6
umee (18) 86 ops , 718.948 UMEE ($1.31) 💪 999+ umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l
persistence (18) 1044 ops , 28.4319 XPRT ($5.52) 💪 695 persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf
quicksilver (18) 16 ops , 21.1456 QCK ($0.43) 💪 999+ quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l
onomy (18) 702 ops , 1.80472 NOM ($0.17) 💪 999+ onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg
secret_network (0) 0 ops , 🤷‍♂️ ``
sei_network (0) 0 ops , 🤷‍♂️ ``
stargaze (18) 172 ops , 878.693 STARS ($10.91) 💪 697 stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu
coreum (18) 1564 ops , 40.6402 CORE ($4.85) 👍 232 core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk
injective (0) 0 ops , 🤷‍♂️ ``
undefined: 0.065146 AXL (2ops) (axelar1rs97j43nfyvc689y5rjvnnhrq3tes6ghlj7dgv on 44'/118'/0'/0/0) #0 js:2:axelar:axelar1rs97j43nfyvc689y5rjvnnhrq3tes6ghlj7dgv:
undefined: 0 AXL (6ops) (axelar1qvtnzptp30maznnhdg30xl2jtdq2shpnrjn7q6 on 44'/118'/1'/0/0) #1 js:2:axelar:axelar1qvtnzptp30maznnhdg30xl2jtdq2shpnrjn7q6:
undefined: 0 AXL (3ops) (axelar1vvzwc6l3wfdaqa9rncex8k2uwtpwztswuwmwtl on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1vvzwc6l3wfdaqa9rncex8k2uwtpwztswuwmwtl:
undefined: 0.000549 AXL (1ops) (axelar1hgyf054qztvmty3cayuw9nedftlhejv500ntj9 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar1hgyf054qztvmty3cayuw9nedftlhejv500ntj9:
undefined: 0 AXL (8ops) (axelar1vc7s929uh2yxyhau4wsg5th9jzedvkur8jxcsu on 44'/118'/4'/0/0) #4 js:2:axelar:axelar1vc7s929uh2yxyhau4wsg5th9jzedvkur8jxcsu:
undefined: 0.012207 AXL (14ops) (axelar1qgrd8srhvald995uvpeyncvwg7afgkmrtj4eda on 44'/118'/5'/0/0) #5 js:2:axelar:axelar1qgrd8srhvald995uvpeyncvwg7afgkmrtj4eda:
undefined: 0.047652 AXL (5ops) (axelar1n6vccpa77x7xyhnk98jy6gg3rmgjkazxs3njwm on 44'/118'/6'/0/0) #6 js:2:axelar:axelar1n6vccpa77x7xyhnk98jy6gg3rmgjkazxs3njwm:
undefined: 0.019702 AXL (0ops) (axelar1v283e7h2plllyjwgqrexv2ge5e4z252ux0dhaj on 44'/118'/7'/0/0) #7 js:2:axelar:axelar1v283e7h2plllyjwgqrexv2ge5e4z252ux0dhaj:
undefined: 0.026395 AXL (3ops) (axelar1g9t7sv8y0mvu2qd0xguc40xujnu94rh58vnyh7 on 44'/118'/8'/0/0) #8 js:2:axelar:axelar1g9t7sv8y0mvu2qd0xguc40xujnu94rh58vnyh7:
undefined: 0.671528 AXL (13ops) (axelar1jgk668h53gd9wn09mndq7uzgk80nr5d8x7xw48 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar1jgk668h53gd9wn09mndq7uzgk80nr5d8x7xw48:
undefined: 0.081875 AXL (3ops) (axelar1733g3dfzj6tulcqtvz628ypuqj0hvlrz0fkn95 on 44'/118'/10'/0/0) #10 js:2:axelar:axelar1733g3dfzj6tulcqtvz628ypuqj0hvlrz0fkn95:
undefined: 0 AXL (3ops) (axelar1q09970dekm5hdku5tta7p9w6kldyyf252uahem on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1q09970dekm5hdku5tta7p9w6kldyyf252uahem:
undefined: 0.355148 AXL (2ops) (axelar1yhlye27fl05kg4nhmeu5d579m8ups9ewjqsjfg on 44'/118'/12'/0/0) #12 js:2:axelar:axelar1yhlye27fl05kg4nhmeu5d579m8ups9ewjqsjfg:
undefined: 0.107013 AXL (2ops) (axelar1890w5jltm6wmq2jr9f9e8x4vhs5fx30q563y9k on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1890w5jltm6wmq2jr9f9e8x4vhs5fx30q563y9k:
undefined: 0.464741 AXL (1ops) (axelar1yq6ehsdwpsvae9exgjmzt4dx78y4j5apuslc07 on 44'/118'/14'/0/0) #14 js:2:axelar:axelar1yq6ehsdwpsvae9exgjmzt4dx78y4j5apuslc07:
undefined: 0.026737 AXL (0ops) (axelar10wwjgt3uluxt4zq4qxnkcv96nyz4catanqfeq0 on 44'/118'/15'/0/0) #15 js:2:axelar:axelar10wwjgt3uluxt4zq4qxnkcv96nyz4catanqfeq0:
undefined: 0.012753 AXL (0ops) (axelar1xr8krhp99mp9ncrz6dfgre542nv0rc8l0kp23s on 44'/118'/16'/0/0) #16 js:2:axelar:axelar1xr8krhp99mp9ncrz6dfgre542nv0rc8l0kp23s:
undefined: 0 AXL (0ops) (axelar102w826rmvswfhs4zsv2ujhylmd92c28pk2d8a2 on 44'/118'/17'/0/0) #17 js:2:axelar:axelar102w826rmvswfhs4zsv2ujhylmd92c28pk2d8a2:
undefined: 0.003586 ATOM (34ops) (cosmos1rs97j43nfyvc689y5rjvnnhrq3tes6ghmug9rd on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos1rs97j43nfyvc689y5rjvnnhrq3tes6ghmug9rd:
undefined: 0 ATOM (18ops) (cosmos1qvtnzptp30maznnhdg30xl2jtdq2shpn8u9ktm on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1qvtnzptp30maznnhdg30xl2jtdq2shpn8u9ktm:
undefined: 0 ATOM (11ops) (cosmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswcqdxq7 on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswcqdxq7:
undefined: 0 ATOM (15ops) (cosmos1hgyf054qztvmty3cayuw9nedftlhejv5tp9rey on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos1hgyf054qztvmty3cayuw9nedftlhejv5tp9rey:
undefined: 0 ATOM (9ops) (cosmos1vc7s929uh2yxyhau4wsg5th9jzedvkurrussma on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos1vc7s929uh2yxyhau4wsg5th9jzedvkurrussma:
undefined: 0.00466 ATOM (9ops) (cosmos1qgrd8srhvald995uvpeyncvwg7afgkmr0ur3xu on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos1qgrd8srhvald995uvpeyncvwg7afgkmr0ur3xu:
undefined: 0.004609 ATOM (8ops) (cosmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazx5l9696 on 44'/118'/6'/0/0) #6 js:2:cosmos:cosmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazx5l9696:
undefined: 0.006491 ATOM (10ops) (cosmos1v283e7h2plllyjwgqrexv2ge5e4z252uzpmlkn on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos1v283e7h2plllyjwgqrexv2ge5e4z252uzpmlkn:
undefined: 0.004927 ATOM (1ops) (cosmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5rz9vul on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5rz9vul:
undefined: 0 ATOM (0ops) (cosmos1jgk668h53gd9wn09mndq7uzgk80nr5d8zssx7x on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos1jgk668h53gd9wn09mndq7uzgk80nr5d8zssx7x:
undefined: 0 DSM (4ops) (desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454 on 44'/118'/0'/0/0) #0 js:2:desmos:desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454:
undefined: 0.000317 DSM (8ops) (desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur on 44'/118'/1'/0/0) #1 js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:
undefined: 0.000745 DSM (6ops) (desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx on 44'/118'/2'/0/0) #2 js:2:desmos:desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx:
undefined: 0 DSM (13ops) (desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu on 44'/118'/3'/0/0) #3 js:2:desmos:desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu:
undefined: 0 DSM (11ops) (desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9 on 44'/118'/4'/0/0) #4 js:2:desmos:desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9:
undefined: 0.001174 DSM (19ops) (desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y on 44'/118'/5'/0/0) #5 js:2:desmos:desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y:
undefined: 0 DSM (6ops) (desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz on 44'/118'/6'/0/0) #6 js:2:desmos:desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz:
undefined: 0 DSM (10ops) (desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt on 44'/118'/7'/0/0) #7 js:2:desmos:desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt:
undefined: 0.00234 DSM (10ops) (desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8 on 44'/118'/8'/0/0) #8 js:2:desmos:desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8:
undefined: 0.009259 DSM (11ops) (desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7 on 44'/118'/9'/0/0) #9 js:2:desmos:desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7:
undefined: 0.000726 DSM (8ops) (desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted on 44'/118'/10'/0/0) #10 js:2:desmos:desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted:
undefined: 0.000569 DSM (2ops) (desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z on 44'/118'/11'/0/0) #11 js:2:desmos:desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z:
undefined: 0.088435 DSM (6ops) (desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243 on 44'/118'/12'/0/0) #12 js:2:desmos:desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243:
undefined: 76.0799 DSM (25ops) (desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0 on 44'/118'/13'/0/0) #13 js:2:desmos:desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0:
undefined: 16.1559 DSM (5ops) (desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8 on 44'/118'/14'/0/0) #14 js:2:desmos:desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8:
undefined: 22.9588 DSM (21ops) (desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk on 44'/118'/15'/0/0) #15 js:2:desmos:desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk:
undefined: 29.6404 DSM (2ops) (desmos1xr8krhp99mp9ncrz6dfgre542nv0rc8llq6jdf on 44'/118'/16'/0/0) #16 js:2:desmos:desmos1xr8krhp99mp9ncrz6dfgre542nv0rc8llq6jdf:
undefined: 0 DSM (0ops) (desmos102w826rmvswfhs4zsv2ujhylmd92c28pxuklpn on 44'/118'/17'/0/0) #17 js:2:desmos:desmos102w826rmvswfhs4zsv2ujhylmd92c28pxuklpn:
undefined: 0.00028612 dydx (0ops) (dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6 on 44'/118'/0'/0/0) #0 js:2:dydx:dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6:
undefined: 0.0006465 dydx (1ops) (dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv on 44'/118'/1'/0/0) #1 js:2:dydx:dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv:
undefined: 0.00081036 dydx (0ops) (dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf on 44'/118'/2'/0/0) #2 js:2:dydx:dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf:
undefined: 0.00103948 dydx (0ops) (dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en on 44'/118'/3'/0/0) #3 js:2:dydx:dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en:
undefined: 0 dydx (0ops) (dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2 on 44'/118'/4'/0/0) #4 js:2:dydx:dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2:
undefined: 0.00034181 dydx (2ops) (dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt on 44'/118'/5'/0/0) #5 js:2:dydx:dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt:
undefined: 0.00123005 dydx (0ops) (dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d on 44'/118'/6'/0/0) #6 js:2:dydx:dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d:
undefined: 0.0005327 dydx (0ops) (dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky on 44'/118'/7'/0/0) #7 js:2:dydx:dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky:
undefined: 0.00108568 dydx (0ops) (dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug on 44'/118'/8'/0/0) #8 js:2:dydx:dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug:
undefined: 0.00002859 dydx (1ops) (dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73 on 44'/118'/9'/0/0) #9 js:2:dydx:dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73:
undefined: 0.00032301 dydx (0ops) (dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz on 44'/118'/10'/0/0) #10 js:2:dydx:dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz:
undefined: 0.00079267 dydx (0ops) (dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd on 44'/118'/11'/0/0) #11 js:2:dydx:dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd:
undefined: 0.00117506 dydx (0ops) (dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7 on 44'/118'/12'/0/0) #12 js:2:dydx:dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7:
undefined: 0.0133491 dydx (0ops) (dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq on 44'/118'/13'/0/0) #13 js:2:dydx:dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq:
undefined: 0.00070996 dydx (0ops) (dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg on 44'/118'/14'/0/0) #14 js:2:dydx:dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg:
undefined: 0.00090914 dydx (0ops) (dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te on 44'/118'/15'/0/0) #15 js:2:dydx:dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te:
undefined: 0 dydx (0ops) (dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x on 44'/118'/16'/0/0) #16 js:2:dydx:dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x:
undefined: 0 dydx (0ops) (dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku on 44'/118'/17'/0/0) #17 js:2:dydx:dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku:
undefined: 0 UMEE (2ops) (umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l on 44'/118'/0'/0/0) #0 js:2:umee:umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l:
undefined: 1.86043 UMEE (7ops) (umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f on 44'/118'/1'/0/0) #1 js:2:umee:umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f:
undefined: 0.023772 UMEE (0ops) (umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv on 44'/118'/2'/0/0) #2 js:2:umee:umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv:
undefined: 1.80817 UMEE (2ops) (umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak on 44'/118'/3'/0/0) #3 js:2:umee:umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak:
undefined: 0 UMEE (5ops) (umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0 on 44'/118'/4'/0/0) #4 js:2:umee:umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0:
undefined: 0.243184 UMEE (2ops) (umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw on 44'/118'/5'/0/0) #5 js:2:umee:umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw:
undefined: 0.014473 UMEE (3ops) (umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg on 44'/118'/6'/0/0) #6 js:2:umee:umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg:
undefined: 0.408615 UMEE (12ops) (umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp on 44'/118'/7'/0/0) #7 js:2:umee:umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp:
undefined: 0 UMEE (2ops) (umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd on 44'/118'/8'/0/0) #8 js:2:umee:umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd:
undefined: 0.074829 UMEE (8ops) (umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65 on 44'/118'/9'/0/0) #9 js:2:umee:umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65:
undefined: 0.024931 UMEE (6ops) (umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28 on 44'/118'/10'/0/0) #10 js:2:umee:umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28:
undefined: 18.2775 UMEE (9ops) (umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg on 44'/118'/11'/0/0) #11 js:2:umee:umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg:
undefined: 1.86795 UMEE (3ops) (umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm on 44'/118'/12'/0/0) #12 js:2:umee:umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm:
undefined: 77.7822 UMEE (9ops) (umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29 on 44'/118'/13'/0/0) #13 js:2:umee:umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29:
undefined: 41.3306 UMEE (2ops) (umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd on 44'/118'/14'/0/0) #14 js:2:umee:umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd:
undefined: 407.37 UMEE (9ops) (umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u on 44'/118'/15'/0/0) #15 js:2:umee:umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u:
undefined: 189.138 UMEE (5ops) (umee1xr8krhp99mp9ncrz6dfgre542nv0rc8lew2a7r on 44'/118'/16'/0/0) #16 js:2:umee:umee1xr8krhp99mp9ncrz6dfgre542nv0rc8lew2a7r:
undefined: 0 UMEE (0ops) (umee102w826rmvswfhs4zsv2ujhylmd92c28pqjxsje on 44'/118'/17'/0/0) #17 js:2:umee:umee102w826rmvswfhs4zsv2ujhylmd92c28pqjxsje:
undefined: 0.001916 XPRT (51ops) (persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf on 44'/118'/0'/0/0) #0 js:2:persistence:persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf:
undefined: 0.090963 XPRT (46ops) (persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l on 44'/118'/1'/0/0) #1 js:2:persistence:persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l:
undefined: 0 XPRT (30ops) (persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6 on 44'/118'/2'/0/0) #2 js:2:persistence:persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6:
undefined: 0.009715 XPRT (58ops) (persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq on 44'/118'/3'/0/0) #3 js:2:persistence:persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq:
undefined: 0 XPRT (44ops) (persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e on 44'/118'/4'/0/0) #4 js:2:persistence:persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e:
undefined: 0.007567 XPRT (49ops) (persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc on 44'/118'/5'/0/0) #5 js:2:persistence:persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc:
undefined: 0.01498 XPRT (97ops) (persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7 on 44'/118'/6'/0/0) #6 js:2:persistence:persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7:
undefined: 0.40562 XPRT (128ops) (persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch on 44'/118'/7'/0/0) #7 js:2:persistence:persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch:
undefined: 0 XPRT (79ops) (persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm on 44'/118'/8'/0/0) #8 js:2:persistence:persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm:
undefined: 0.002954 XPRT (122ops) (persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz on 44'/118'/9'/0/0) #9 js:2:persistence:persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz:
undefined: 0.034906 XPRT (53ops) (persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3 on 44'/118'/10'/0/0) #10 js:2:persistence:persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3:
undefined: 0.660656 XPRT (101ops) (persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7 on 44'/118'/11'/0/0) #11 js:2:persistence:persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7:
undefined: 1.27037 XPRT (23ops) (persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd on 44'/118'/12'/0/0) #12 js:2:persistence:persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd:
undefined: 5.71538 XPRT (62ops) (persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn on 44'/118'/13'/0/0) #13 js:2:persistence:persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn:
undefined: 10.4311 XPRT (22ops) (persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m on 44'/118'/14'/0/0) #14 js:2:persistence:persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m:
undefined: 8.06454 XPRT (56ops) (persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92 on 44'/118'/15'/0/0) #15 js:2:persistence:persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92:
undefined: 2.33347 XPRT (23ops) (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 (1ops) (quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l on 44'/118'/0'/0/0) #0 js:2:quicksilver:quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l:
undefined: 0.000854 QCK (0ops) (quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf on 44'/118'/1'/0/0) #1 js:2:quicksilver:quick1qvtnzptp30maznnhdg30xl2jtdq2shpnvc4yjf:
undefined: 0 QCK (0ops) (quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev on 44'/118'/2'/0/0) #2 js:2:quicksilver:quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev:
undefined: 0.015149 QCK (1ops) (quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk on 44'/118'/3'/0/0) #3 js:2:quicksilver:quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk:
undefined: 0.001502 QCK (0ops) (quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0 on 44'/118'/4'/0/0) #4 js:2:quicksilver:quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0:
undefined: 0.080326 QCK (0ops) (quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw on 44'/118'/5'/0/0) #5 js:2:quicksilver:quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw:
undefined: 0.008095 QCK (0ops) (quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug on 44'/118'/6'/0/0) #6 js:2:quicksilver:quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug:
undefined: 0 QCK (0ops) (quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p on 44'/118'/7'/0/0) #7 js:2:quicksilver:quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p:
undefined: 0 QCK (12ops) (quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d on 44'/118'/8'/0/0) #8 js:2:quicksilver:quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d:
undefined: 0.007423 QCK (0ops) (quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585 on 44'/118'/9'/0/0) #9 js:2:quicksilver:quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585:
undefined: 0.005126 QCK (0ops) (quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8 on 44'/118'/10'/0/0) #10 js:2:quicksilver:quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8:
undefined: 0.736809 QCK (0ops) (quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg on 44'/118'/11'/0/0) #11 js:2:quicksilver:quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg:
undefined: 0.097119 QCK (0ops) (quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm on 44'/118'/12'/0/0) #12 js:2:quicksilver:quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm:
undefined: 7.61386 QCK (0ops) (quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9 on 44'/118'/13'/0/0) #13 js:2:quicksilver:quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9:
undefined: 0.000572 QCK (2ops) (quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad on 44'/118'/14'/0/0) #14 js:2:quicksilver:quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad:
undefined: 3.65447 QCK (0ops) (quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju on 44'/118'/15'/0/0) #15 js:2:quicksilver:quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju:
undefined: 10.9817 QCK (0ops) (quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr on 44'/118'/16'/0/0) #16 js:2:quicksilver:quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr:
undefined: 0 QCK (0ops) (quick102w826rmvswfhs4zsv2ujhylmd92c28peqta0e on 44'/118'/17'/0/0) #17 js:2:quicksilver:quick102w826rmvswfhs4zsv2ujhylmd92c28peqta0e:
undefined: 0.00000004 NOM (24ops) (onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg on 44'/118'/0'/0/0) #0 js:2:onomy:onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg:
undefined: 0.00001776 NOM (60ops) (onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67 on 44'/118'/1'/0/0) #1 js:2:onomy:onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67:
undefined: 0.00000006 NOM (38ops) (onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m on 44'/118'/2'/0/0) #2 js:2:onomy:onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m:
undefined: 0.00000004 NOM (77ops) (onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp on 44'/118'/3'/0/0) #3 js:2:onomy:onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp:
undefined: 0.00000212 NOM (46ops) (onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c on 44'/118'/4'/0/0) #4 js:2:onomy:onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c:
undefined: 0.00000023 NOM (74ops) (onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he on 44'/118'/5'/0/0) #5 js:2:onomy:onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he:
undefined: 0 NOM (49ops) (onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l on 44'/118'/6'/0/0) #6 js:2:onomy:onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l:
undefined: 0.00001285 NOM (66ops) (onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k on 44'/118'/7'/0/0) #7 js:2:onomy:onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k:
undefined: 0.00000008 NOM (36ops) (onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6 on 44'/118'/8'/0/0) #8 js:2:onomy:onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6:
undefined: 0.00001937 NOM (75ops) (onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r on 44'/118'/9'/0/0) #9 js:2:onomy:onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r:
undefined: 0.00002031 NOM (19ops) (onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls on 44'/118'/10'/0/0) #10 js:2:onomy:onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls:
undefined: 0.00314245 NOM (61ops) (onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl on 44'/118'/11'/0/0) #11 js:2:onomy:onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl:
undefined: 0.00094749 NOM (16ops) (onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv on 44'/118'/12'/0/0) #12 js:2:onomy:onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv:
undefined: 0.214328 NOM (15ops) (onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj on 44'/118'/13'/0/0) #13 js:2:onomy:onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj:
undefined: 0.399657 NOM (21ops) (onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46 on 44'/118'/14'/0/0) #14 js:2:onomy:onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46:
undefined: 0.0528671 NOM (10ops) (onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t on 44'/118'/15'/0/0) #15 js:2:onomy:onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t:
undefined: 1.13529 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 STARS (15ops) (stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu on 44'/118'/0'/0/0) #0 js:2:stargaze:stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu:
undefined: 2.52355 STARS (23ops) (stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2 on 44'/118'/1'/0/0) #1 js:2:stargaze:stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2:
undefined: 1.51786 STARS (14ops) (stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0 on 44'/118'/2'/0/0) #2 js:2:stargaze:stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0:
undefined: 4.55587 STARS (16ops) (stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4 on 44'/118'/3'/0/0) #3 js:2:stargaze:stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4:
undefined: 0.16107 STARS (11ops) (stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv on 44'/118'/4'/0/0) #4 js:2:stargaze:stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv:
undefined: 17.7943 STARS (14ops) (stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd on 44'/118'/5'/0/0) #5 js:2:stargaze:stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd:
undefined: 2.33934 STARS (6ops) (stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt on 44'/118'/6'/0/0) #6 js:2:stargaze:stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt:
undefined: 7.9473 STARS (13ops) (stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz on 44'/118'/7'/0/0) #7 js:2:stargaze:stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz:
undefined: 0.31407 STARS (6ops) (stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw on 44'/118'/8'/0/0) #8 js:2:stargaze:stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw:
undefined: 2.9009 STARS (11ops) (stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h on 44'/118'/9'/0/0) #9 js:2:stargaze:stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h:
undefined: 7.45904 STARS (14ops) (stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y on 44'/118'/10'/0/0) #10 js:2:stargaze:stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y:
undefined: 6.34934 STARS (9ops) (stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet on 44'/118'/11'/0/0) #11 js:2:stargaze:stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet:
undefined: 27.6823 STARS (6ops) (stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc on 44'/118'/12'/0/0) #12 js:2:stargaze:stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc:
undefined: 0.683077 STARS (5ops) (stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x on 44'/118'/13'/0/0) #13 js:2:stargaze:stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x:
undefined: 32.7534 STARS (3ops) (stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w on 44'/118'/14'/0/0) #14 js:2:stargaze:stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w:
undefined: 449.46 STARS (6ops) (stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql on 44'/118'/15'/0/0) #15 js:2:stargaze:stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql:
undefined: 318.893 STARS (0ops) (stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q on 44'/118'/16'/0/0) #16 js:2:stargaze:stars1xr8krhp99mp9ncrz6dfgre542nv0rc8llyql3q:
undefined: 0 STARS (0ops) (stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6 on 44'/118'/17'/0/0) #17 js:2:stargaze:stars102w826rmvswfhs4zsv2ujhylmd92c28pxcvja6:
undefined: 0 CORE (78ops) (core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk on 44'/118'/0'/0/0) #0 js:2:coreum:core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk:
undefined: 0.024863 CORE (117ops) (core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq on 44'/118'/1'/0/0) #1 js:2:coreum:core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq:
undefined: 0 CORE (97ops) (core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89 on 44'/118'/2'/0/0) #2 js:2:coreum:core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89:
undefined: 0.049346 CORE (151ops) (core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l on 44'/118'/3'/0/0) #3 js:2:coreum:core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l:
undefined: 0.016046 CORE (84ops) (core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux on 44'/118'/4'/0/0) #4 js:2:coreum:core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux:
undefined: 0.215798 CORE (122ops) (core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8 on 44'/118'/5'/0/0) #5 js:2:coreum:core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8:
undefined: 0.023366 CORE (80ops) (core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp on 44'/118'/6'/0/0) #6 js:2:coreum:core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp:
undefined: 0 CORE (110ops) (core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g on 44'/118'/7'/0/0) #7 js:2:coreum:core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g:
undefined: 0 CORE (74ops) (core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy on 44'/118'/8'/0/0) #8 js:2:coreum:core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy:
undefined: 0.000255 CORE (135ops) (core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea on 44'/118'/9'/0/0) #9 js:2:coreum:core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea:
undefined: 0.025752 CORE (74ops) (core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw on 44'/118'/10'/0/0) #10 js:2:coreum:core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw:
undefined: 0 CORE (107ops) (core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p on 44'/118'/11'/0/0) #11 js:2:coreum:core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p:
undefined: 0 CORE (51ops) (core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j on 44'/118'/12'/0/0) #12 js:2:coreum:core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j:
undefined: 0.123976 CORE (117ops) (core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv on 44'/118'/13'/0/0) #13 js:2:coreum:core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv:
undefined: 0.158217 CORE (53ops) (core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try on 44'/118'/14'/0/0) #14 js:2:coreum:core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try:
undefined: 23.0049 CORE (86ops) (core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4 on 44'/118'/15'/0/0) #15 js:2:coreum:core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4:
undefined: 19.3438 CORE (28ops) (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:
Performance ⏲ 3min 4s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 6.3s 3min 40s 19ms 21.5s 2min 7s 4.5s 6ms N/A
axelar (17) 214ms 9s 2.17ms 1819ms 13.2s 581ms 0.56ms N/A
cosmos (9) 478ms 8.9s 1.17ms N/A N/A N/A N/A N/A
osmosis (0) 332ms N/A N/A N/A N/A N/A N/A N/A
desmos (17) 493ms 24.2s 1.99ms 2635ms 13s 274ms 0.67ms N/A
dydx (17) 1002ms 37.9s 1.80ms N/A N/A N/A N/A N/A
umee (17) 276ms 7.5s 2.31ms 1929ms 19.8s 460ms 1.26ms N/A
persistence (17) 887ms 38.3s 2.22ms 4.9s 14.3s 693ms 0.53ms N/A
quicksilver (17) 315ms 33s 1.92ms 1535ms 16.4s 711ms 0.60ms N/A
onomy (17) 1261ms 28.7s 2.00ms 5.6s 21.1s 929ms 0.98ms N/A
secret_network (0) N/A N/A N/A N/A N/A N/A N/A N/A
sei_network (0) 165ms N/A N/A N/A N/A N/A N/A N/A
stargaze (17) 229ms 7.8s 1.78ms 1769ms 16.8s 288ms 0.70ms N/A
coreum (17) 287ms 24.1s 2.00ms 1330ms 12.5s 559ms 0.62ms N/A
injective (0) 410ms N/A N/A N/A N/A N/A N/A N/A

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

Please sign in to comment.