Skip to content

Commit

Permalink
[FEAT]: User scans instance with same backup or different backup (#7712)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcayuelas-ledger authored Sep 2, 2024
1 parent 8e0ac04 commit a84f3d3
Show file tree
Hide file tree
Showing 23 changed files with 218 additions and 123 deletions.
7 changes: 7 additions & 0 deletions .changeset/giant-beans-wait.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"ledger-live-desktop": patch
"live-mobile": patch
"@ledgerhq/trustchain": patch
---

Handle TrustchainAlreadyInitialized & TrustchainAlreadyInitializedWithOtherSeed on Scan QR
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {
InvalidDigitsError,
NoTrustchainInitialized,
QRCodeWSClosed,
TrustchainAlreadyInitialized,
} from "@ledgerhq/trustchain/errors";
import { MemberCredentials } from "@ledgerhq/trustchain/types";
import { useDispatch, useSelector } from "react-redux";
Expand Down Expand Up @@ -60,7 +61,7 @@ export function useQRCode() {
},
memberCredentials,
memberName,
alreadyHasATrustchain: !!trustchain,
initialTrustchainId: trustchain?.rootId,
}),

// Don't use retry here because it always uses a delay despite setting it to 0
Expand All @@ -75,6 +76,9 @@ export function useQRCode() {
if (e instanceof NoTrustchainInitialized) {
dispatch(setFlow({ flow: Flow.Synchronize, step: Step.UnbackedError }));
}
if (e instanceof TrustchainAlreadyInitialized) {
dispatch(setFlow({ flow: Flow.Synchronize, step: Step.SynchronizeWithQRCode }));
}
},

onSuccess(newTrustchain) {
Expand Down
11 changes: 10 additions & 1 deletion apps/ledger-live-mobile/src/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -6869,8 +6869,17 @@
},
"unbacked": {
"title": "You need to create your encryption key first",
"desc": "Please make sure you’ve created an encryption key on one of your Ledger Live apps before continuing your synchronization.",
"description": "Please make sure you’ve created an encryption key on one of your Ledger Live apps before continuing your synchronization.",
"cta": "Create your encryption key"
},
"backedWithDifferentSeeds": {
"title": "These apps have different backups",
"description": "Delete your encryption key from one of the apps and try again",
"cta": "I understand"
},
"alreadyBacked": {
"title": "These apps are already secured by a Ledger",
"cta": "I understand"
}
},
"alreadySecureError": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ import PinCodeDisplay from "LLM/features/WalletSync/screens/Synchronize/PinCodeD
import PinCodeInput from "LLM/features/WalletSync/screens/Synchronize/PinCodeInput";
import { useInitMemberCredentials } from "LLM/features/WalletSync/hooks/useInitMemberCredentials";
import { useSyncWithQrCode } from "LLM/features/WalletSync/hooks/useSyncWithQrCode";
import UnbackedError from "~/newArch/features/WalletSync/screens/Synchronize/UnbackedError";
import { SpecificError } from "~/newArch/features/WalletSync/components/Error/SpecificError";
import { ErrorReason } from "~/newArch/features/WalletSync/hooks/useSpecificError";

type Props = {
currentStep: Steps;
Expand Down Expand Up @@ -99,8 +100,23 @@ const StepFlow = ({
return <SyncError tryAgain={navigateToQrCodeMethod} />;

case Steps.UnbackedError:
return <UnbackedError create={onCreateKey} />;
return <SpecificError primaryAction={onCreateKey} error={ErrorReason.NO_BACKUP} />;

case Steps.AlreadyBacked:
return (
<SpecificError
primaryAction={() => setCurrentStep(Steps.QrCodeMethod)}
error={ErrorReason.ALREADY_BACKED_SCAN}
/>
);

case Steps.BackedWithDifferentSeeds:
return (
<SpecificError
primaryAction={() => setCurrentStep(Steps.QrCodeMethod)}
error={ErrorReason.DIFFERENT_BACKUPS}
/>
);
default:
return null;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,6 @@ import { track } from "~/analytics";
import { useQRCodeHost } from "LLM/features/WalletSync/hooks/useQRCodeHost";
import { Options, Steps } from "LLM/features/WalletSync/types/Activation";
import { NavigatorName, ScreenName } from "~/const";
import {
AnalyticsButton,
AnalyticsPage,
useLedgerSyncAnalytics,
} from "~/newArch/features/WalletSync/hooks/useLedgerSyncAnalytics";
import { useNavigation } from "@react-navigation/native";
import { BaseComposite, StackNavigatorProps } from "~/components/RootNavigator/types/helpers";
import { WalletSyncNavigatorStackParamList } from "~/components/RootNavigator/types/WalletSyncNavigator";
Expand All @@ -26,7 +21,6 @@ const startingStep = Steps.AddAccountMethod;
const useAddAccountViewModel = ({ isOpened, onClose }: AddAccountDrawerProps) => {
const [currentStep, setCurrentStep] = useState<Steps>(startingStep);
const [currentOption, setCurrentOption] = useState<Options>(Options.SCAN);
const { onClickTrack } = useLedgerSyncAnalytics();
const navigateToChooseSyncMethod = () => setCurrentStep(Steps.ChooseSyncMethod);
const navigateToQrCodeMethod = () => setCurrentStep(Steps.QrCodeMethod);
const navigation = useNavigation<NavigationProps["navigation"]>();
Expand Down Expand Up @@ -68,7 +62,6 @@ const useAddAccountViewModel = ({ isOpened, onClose }: AddAccountDrawerProps) =>
});

const onCreateKey = () => {
onClickTrack({ button: AnalyticsButton.CreateYourKey, page: AnalyticsPage.Unbacked });
navigation.navigate(NavigatorName.WalletSync, {
screen: ScreenName.WalletSyncActivationProcess,
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ import PinCodeInput from "../../screens/Synchronize/PinCodeInput";
import SyncError from "../../screens/Synchronize/SyncError";
import { useInitMemberCredentials } from "../../hooks/useInitMemberCredentials";
import { useSyncWithQrCode } from "../../hooks/useSyncWithQrCode";
import UnbackedError from "../../screens/Synchronize/UnbackedError";
import { SpecificError } from "../Error/SpecificError";
import { ErrorReason } from "../../hooks/useSpecificError";

type Props = {
currentStep: Steps;
Expand Down Expand Up @@ -91,7 +92,23 @@ const ActivationFlow = ({
return <SyncError tryAgain={navigateToQrCodeMethod} />;

case Steps.UnbackedError:
return <UnbackedError create={onCreateKey} />;
return <SpecificError primaryAction={onCreateKey} error={ErrorReason.NO_BACKUP} />;

case Steps.AlreadyBacked:
return (
<SpecificError
primaryAction={() => setCurrentStep(Steps.QrCodeMethod)}
error={ErrorReason.ALREADY_BACKED_SCAN}
/>
);

case Steps.BackedWithDifferentSeeds:
return (
<SpecificError
primaryAction={() => setCurrentStep(Steps.QrCodeMethod)}
error={ErrorReason.DIFFERENT_BACKUPS}
/>
);
default:
return null;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import styled from "styled-components/native";
interface Props {
icon: React.ReactNode;
title: string;
description: string;
description?: string;
info?: string;
cta: string;
ctaSecondary?: string;
Expand Down Expand Up @@ -42,24 +42,29 @@ export function DetailedError(props: Props) {
</Text>

<Flex flexDirection="column" mb={8} rowGap={16}>
<Text variant="bodyLineHeight" color="neutral.c70" textAlign="center">
{description}
</Text>
<Text variant="bodyLineHeight" color="neutral.c70" textAlign="center">
{info}
</Text>
{description && (
<Text variant="bodyLineHeight" color="neutral.c70" textAlign="center">
{description}
</Text>
)}
{info && (
<Text variant="bodyLineHeight" color="neutral.c70" textAlign="center">
{info}
</Text>
)}
</Flex>

<Flex flexDirection="column" rowGap={24} mb={6} width={"100%"} px={"16px"}>
<Button type={buttonType} outline={outline} onPress={primaryAction}>
{cta}
</Button>

<Link onPress={secondaryAction}>
<Text variant="paragraph" fontWeight="semiBold" color="neutral.c70">
{ctaSecondary}
</Text>
</Link>
{ctaSecondary && secondaryAction && (
<Link onPress={secondaryAction}>
<Text variant="paragraph" fontWeight="semiBold" color="neutral.c70">
{ctaSecondary}
</Text>
</Link>
)}
</Flex>
</Flex>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import React from "react";
import styled, { useTheme } from "styled-components/native";
type Props = {
title: string;
desc: string;
desc?: string;
mainButton: {
label: string;
onPress: () => void;
Expand All @@ -22,9 +22,11 @@ export function ErrorComponent({ title, desc, mainButton }: Props) {
<Text variant="h4" color="neutral.c100" textAlign="center" fontWeight="semiBold" mt={7}>
{title}
</Text>
<Text variant="bodyLineHeight" color="neutral.c70" textAlign="center" mt={6}>
{desc}
</Text>
{desc && (
<Text variant="bodyLineHeight" color="neutral.c70" textAlign="center" mt={6}>
{desc}
</Text>
)}
</Flex>
<Flex mt={8}>
<Button type="main" outline={mainButton.outline} onPress={mainButton.onPress}>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,15 @@
import React from "react";
import { ErrorReason, useSpecificError } from "../../hooks/useSpecificError";
import { ErrorReason, SpecificProps, useSpecificError } from "../../hooks/useSpecificError";
import { DetailedError } from "./Detailed";

type Props = {
export const SpecificError = ({
error,
primaryAction,
secondaryAction,
}: SpecificProps & {
error: ErrorReason;
cancel?: () => void;
understood?: () => void;
goToDelete?: () => void;
tryAgain?: () => void;
};

export const SpecificError = ({ error, cancel, goToDelete, understood, tryAgain }: Props) => {
const { getErrorConfig } = useSpecificError({ cancel, goToDelete, understood, tryAgain });
}) => {
const { getErrorConfig } = useSpecificError({ primaryAction, secondaryAction });
const config = getErrorConfig(error);

return <DetailedError {...config} />;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
import React from "react";
import { ErrorReason } from "../../hooks/useSpecificError";
import { ErrorReason, SpecificProps } from "../../hooks/useSpecificError";
import { SpecificError } from "../Error/SpecificError";

type Props = {
type Props = SpecificProps & {
error: ErrorReason;
tryAgain?: () => void;
understood?: () => void;
goToDelete?: () => void;
};

export const DeletionError = (props: Props) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ export enum AnalyticsPage {
Unbacked = "Unbacked",
OtherSeed = "Other seed",
SameSeed = "Same seed",
ScanAttemptWithSameBackup = "Scan attempt with same backup",
ScanAttemptWithDifferentBackups = "Scan attempt with different backups",
}

export enum AnalyticsFlow {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export function useQRCodeHost({ setCurrentStep, currentStep, currentOption }: Pr
},
memberCredentials,
memberName,
alreadyHasATrustchain: !!trustchain,
initialTrustchainId: trustchain?.rootId,
}),

onSuccess: newTrustchain => {
Expand Down
Loading

1 comment on commit a84f3d3

@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' ✅ 44 txs 💰 2 miss funds ($16.70) ⏲ 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/osmo1hgyf054qztvmty3cayuw9nedftlhejv5r6kn0k

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/staking/v1beta1/delegations/sei1hgyf054qztvmty3cayuw9nedftlhejv5xd54l9

Spec injective failed!

Error: "Error during injective synchronization: "API HTTP 429 https://injective-api.polkachu.com/cosmos/distribution/v1beta1/delegators/inj1vzjwweta3hegt99vfgrvmcq7rr5532yjsgxd4a/withdraw_address
⚠️ 8 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 quicksilver:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
  • Spec stargaze:
    • 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 coreum:
    • mutation send max: unexpected status.warnings.amount = RecommendUndelegation: RecommendUndelegation – Please implement expectStatusWarnings on the mutation if expected
Details of the 44 mutations

Spec axelar (18)

Spec axelar found 18 Axelar accounts (preload: 207ms). Will use Cosmos 2.35.24 on nanoS 2.1.0
undefined: 0.00604 AXL (0ops) (axelar1rs97j43nfyvc689y5rjvnnhrq3tes6ghlj7dgv on 44'/118'/0'/0/0) #0 js:2:axelar:axelar1rs97j43nfyvc689y5rjvnnhrq3tes6ghlj7dgv:
undefined: 0.013701 AXL (0ops) (axelar1qvtnzptp30maznnhdg30xl2jtdq2shpnrjn7q6 on 44'/118'/1'/0/0) #1 js:2:axelar:axelar1qvtnzptp30maznnhdg30xl2jtdq2shpnrjn7q6:
undefined: 0 AXL (0ops) (axelar1vvzwc6l3wfdaqa9rncex8k2uwtpwztswuwmwtl on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1vvzwc6l3wfdaqa9rncex8k2uwtpwztswuwmwtl:
undefined: 0.064072 AXL (0ops) (axelar1hgyf054qztvmty3cayuw9nedftlhejv500ntj9 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar1hgyf054qztvmty3cayuw9nedftlhejv500ntj9:
undefined: 0 AXL (0ops) (axelar1vc7s929uh2yxyhau4wsg5th9jzedvkur8jxcsu on 44'/118'/4'/0/0) #4 js:2:axelar:axelar1vc7s929uh2yxyhau4wsg5th9jzedvkur8jxcsu:
undefined: 0.014171 AXL (0ops) (axelar1qgrd8srhvald995uvpeyncvwg7afgkmrtj4eda on 44'/118'/5'/0/0) #5 js:2:axelar:axelar1qgrd8srhvald995uvpeyncvwg7afgkmrtj4eda:
undefined: 0 AXL (0ops) (axelar1n6vccpa77x7xyhnk98jy6gg3rmgjkazxs3njwm on 44'/118'/6'/0/0) #6 js:2:axelar:axelar1n6vccpa77x7xyhnk98jy6gg3rmgjkazxs3njwm:
undefined: 0.160518 AXL (0ops) (axelar1v283e7h2plllyjwgqrexv2ge5e4z252ux0dhaj on 44'/118'/7'/0/0) #7 js:2:axelar:axelar1v283e7h2plllyjwgqrexv2ge5e4z252ux0dhaj:
undefined: 0.010183 AXL (0ops) (axelar1g9t7sv8y0mvu2qd0xguc40xujnu94rh58vnyh7 on 44'/118'/8'/0/0) #8 js:2:axelar:axelar1g9t7sv8y0mvu2qd0xguc40xujnu94rh58vnyh7:
undefined: 0.350394 AXL (0ops) (axelar1jgk668h53gd9wn09mndq7uzgk80nr5d8x7xw48 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar1jgk668h53gd9wn09mndq7uzgk80nr5d8x7xw48:
undefined: 0.011418 AXL (0ops) (axelar1733g3dfzj6tulcqtvz628ypuqj0hvlrz0fkn95 on 44'/118'/10'/0/0) #10 js:2:axelar:axelar1733g3dfzj6tulcqtvz628ypuqj0hvlrz0fkn95:
undefined: 0 AXL (0ops) (axelar1q09970dekm5hdku5tta7p9w6kldyyf252uahem on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1q09970dekm5hdku5tta7p9w6kldyyf252uahem:
undefined: 0.09883 AXL (0ops) (axelar1yhlye27fl05kg4nhmeu5d579m8ups9ewjqsjfg on 44'/118'/12'/0/0) #12 js:2:axelar:axelar1yhlye27fl05kg4nhmeu5d579m8ups9ewjqsjfg:
undefined: 0.032713 AXL (0ops) (axelar1890w5jltm6wmq2jr9f9e8x4vhs5fx30q563y9k on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1890w5jltm6wmq2jr9f9e8x4vhs5fx30q563y9k:
undefined: 0.464741 AXL (0ops) (axelar1yq6ehsdwpsvae9exgjmzt4dx78y4j5apuslc07 on 44'/118'/14'/0/0) #14 js:2:axelar:axelar1yq6ehsdwpsvae9exgjmzt4dx78y4j5apuslc07:
undefined: 0.309191 AXL (0ops) (axelar10wwjgt3uluxt4zq4qxnkcv96nyz4catanqfeq0 on 44'/118'/15'/0/0) #15 js:2:axelar:axelar10wwjgt3uluxt4zq4qxnkcv96nyz4catanqfeq0:
undefined: 0.051714 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.11ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.064072 AXL (0ops) (axelar1hgyf054qztvmty3cayuw9nedftlhejv500ntj9 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar1hgyf054qztvmty3cayuw9nedftlhejv500ntj9: (! sum of ops 0 AXL) 0.064072 AXL spendable. 

max spendable ~0.057087
★ using mutation 'send max'
→ TO undefined: 0.011418 AXL (0ops) (axelar1733g3dfzj6tulcqtvz628ypuqj0hvlrz0fkn95 on 44'/118'/10'/0/0) #10 js:2:axelar:axelar1733g3dfzj6tulcqtvz628ypuqj0hvlrz0fkn95:
✔️ transaction 
SEND MAX
TO axelar1733g3dfzj6tulcqtvz628ypuqj0hvlrz0fkn95

with fees=0.006169
STATUS (528ms)
  amount: 0.057903 AXL
  estimated fees: 0.006169 AXL
  total spent: 0.064072 AXL
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (61ms) optimistic operation: 
  -0.064072 AXL      OUT        8EC82B6CF94F0CDA2A7DDC667F33E796F6CAAD594AAC60A96E17D8BAD5E54CC5 2024-09-02T09:18
✔️ operation confirmed (0.48ms): 
  -0.064072 AXL      OUT        8EC82B6CF94F0CDA2A7DDC667F33E796F6CAAD594AAC60A96E17D8BAD5E54CC5 2024-09-02T09:18
✔️ undefined: 0.064072 AXL (0ops) (axelar1hgyf054qztvmty3cayuw9nedftlhejv500ntj9 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar1hgyf054qztvmty3cayuw9nedftlhejv500ntj9: (! sum of ops 0 AXL) 0.064072 AXL spendable. 
✔️ destination operation 
  ? -64072           OUT        8EC82B6CF94F0CDA2A7DDC667F33E796F6CAAD594AAC60A96E17D8BAD5E54CC5 2024-09-02T09:18

necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.160518 AXL (0ops) (axelar1v283e7h2plllyjwgqrexv2ge5e4z252ux0dhaj on 44'/118'/7'/0/0) #7 js:2:axelar:axelar1v283e7h2plllyjwgqrexv2ge5e4z252ux0dhaj: (! sum of ops 0 AXL) 0.140816 AXL spendable. 0.019702 AXL delegated. 
DELEGATIONS
  to axelarvaloper13j0vglkah4c302pm9y0fr9qrue87d400tv7v57 0.000238 AXL  (claimable 0.000238)
  to axelarvaloper1kj8j6hkmgfvtxpgfuskj602sxs5dsfkm6ewm4l 0.019464 AXL  (claimable 0.019464)

max spendable ~0.133824
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.000238 -> axelarvaloper13j0vglkah4c302pm9y0fr9qrue87d400tv7v57
with fees=0.014971
  memo=LedgerLiveBot
STATUS (337ms)
  amount: 0 AXL
  estimated fees: 0.014971 AXL
  total spent: 0.014971 AXL
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (60ms) optimistic operation: 
  -0.014971 AXL      UNDELEGATE DA46578F5A6570617F6BD201D34B29280BCE003FBCC7352997B2880EDFBC79B6 2024-09-02T09:18
    to axelarvaloper13j0vglkah4c302pm9y0fr9qrue87d400tv7v57 0.000238 AXL    
✔️ operation confirmed (0.11ms): 
  -0.014971 AXL      UNDELEGATE DA46578F5A6570617F6BD201D34B29280BCE003FBCC7352997B2880EDFBC79B6 2024-09-02T09:18
    to axelarvaloper13j0vglkah4c302pm9y0fr9qrue87d400tv7v57 0.000238 AXL    
✔️ undefined: 0.160518 AXL (0ops) (axelar1v283e7h2plllyjwgqrexv2ge5e4z252ux0dhaj on 44'/118'/7'/0/0) #7 js:2:axelar:axelar1v283e7h2plllyjwgqrexv2ge5e4z252ux0dhaj: (! sum of ops 0 AXL) 0.140816 AXL spendable. 0.019702 AXL delegated. 
DELEGATIONS
  to axelarvaloper13j0vglkah4c302pm9y0fr9qrue87d400tv7v57 0.000238 AXL  (claimable 0.000238)
  to axelarvaloper1kj8j6hkmgfvtxpgfuskj602sxs5dsfkm6ewm4l 0.019464 AXL  (claimable 0.019464)

necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.350394 AXL (0ops) (axelar1jgk668h53gd9wn09mndq7uzgk80nr5d8x7xw48 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar1jgk668h53gd9wn09mndq7uzgk80nr5d8x7xw48: (! sum of ops 0 AXL) 0.347329 AXL spendable. 0.002113 AXL delegated. 0.000952 AXL unbonding. 
DELEGATIONS
  to axelarvaloper1q2nyv5mwsu5r07x6djpgvm0jl9l9a5v88qllcd 0.002113 AXL  (claimable 0.002113)
UNDELEGATIONS
  from axelarvaloper19wz0kfzj2czmjg9052h69wk6kgxc848hxs8rhl 0.000952 AXL
REDELEGATIONS
  from axelarvaloper1qy9uq03rkpqkzwsa4fz7xxetkxttdcj6tf09pg to axelarvaloper1q2nyv5mwsu5r07x6djpgvm0jl9l9a5v88qllcd 0.000158 AXL

max spendable ~0.340337
★ using mutation 'send some'
→ TO undefined: 0.00604 AXL (0ops) (axelar1rs97j43nfyvc689y5rjvnnhrq3tes6ghlj7dgv on 44'/118'/0'/0/0) #0 js:2:axelar:axelar1rs97j43nfyvc689y5rjvnnhrq3tes6ghlj7dgv:
✔️ transaction 
SEND  0.132817 AXL
TO axelar1rs97j43nfyvc689y5rjvnnhrq3tes6ghlj7dgv

with fees=0.006195
  memo=LedgerLiveBot
STATUS (453ms)
  amount: 0.132817 AXL
  estimated fees: 0.006195 AXL
  total spent: 0.139012 AXL
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (54ms) optimistic operation: 
  -0.139012 AXL      OUT        392332181ED8933C8AD949AB8B515A17681648E44FE78E534AA0ED4221C3D400 2024-09-02T09:18
✔️ operation confirmed (0.18ms): 
  -0.139012 AXL      OUT        392332181ED8933C8AD949AB8B515A17681648E44FE78E534AA0ED4221C3D400 2024-09-02T09:18
✔️ undefined: 0.350394 AXL (0ops) (axelar1jgk668h53gd9wn09mndq7uzgk80nr5d8x7xw48 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar1jgk668h53gd9wn09mndq7uzgk80nr5d8x7xw48: (! sum of ops 0 AXL) 0.347329 AXL spendable. 0.002113 AXL delegated. 0.000952 AXL unbonding. 
DELEGATIONS
  to axelarvaloper1q2nyv5mwsu5r07x6djpgvm0jl9l9a5v88qllcd 0.002113 AXL  (claimable 0.002113)
UNDELEGATIONS
  from axelarvaloper19wz0kfzj2czmjg9052h69wk6kgxc848hxs8rhl 0.000952 AXL
REDELEGATIONS
  from axelarvaloper1qy9uq03rkpqkzwsa4fz7xxetkxttdcj6tf09pg to axelarvaloper1q2nyv5mwsu5r07x6djpgvm0jl9l9a5v88qllcd 0.000158 AXL
✔️ destination operation 
  ? -139012          OUT        392332181ED8933C8AD949AB8B515A17681648E44FE78E534AA0ED4221C3D400 2024-09-02T09:18

necessary accounts resynced in 0.08ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.09883 AXL (0ops) (axelar1yhlye27fl05kg4nhmeu5d579m8ups9ewjqsjfg on 44'/118'/12'/0/0) #12 js:2:axelar:axelar1yhlye27fl05kg4nhmeu5d579m8ups9ewjqsjfg: (! sum of ops 0 AXL) 0.09883 AXL spendable. 

max spendable ~0.091845
★ using mutation 'send some'
→ TO undefined: 0.014171 AXL (0ops) (axelar1qgrd8srhvald995uvpeyncvwg7afgkmrtj4eda on 44'/118'/5'/0/0) #5 js:2:axelar:axelar1qgrd8srhvald995uvpeyncvwg7afgkmrtj4eda:
✔️ transaction 
SEND  0.058153 AXL
TO axelar1qgrd8srhvald995uvpeyncvwg7afgkmrtj4eda

with fees=0.006186
  memo=LedgerLiveBot
STATUS (478ms)
  amount: 0.058153 AXL
  estimated fees: 0.006186 AXL
  total spent: 0.064339 AXL
errors: 
warnings: 
✔️ has been signed! (3.8s) 
✔️ broadcasted! (59ms) optimistic operation: 
  -0.064339 AXL      OUT        9655BEB85DD3BA2A27022B7834AEDB988850BAAE868904B3A3151490DAB47E92 2024-09-02T09:18
✔️ operation confirmed (0.16ms): 
  -0.064339 AXL      OUT        9655BEB85DD3BA2A27022B7834AEDB988850BAAE868904B3A3151490DAB47E92 2024-09-02T09:18
✔️ undefined: 0.09883 AXL (0ops) (axelar1yhlye27fl05kg4nhmeu5d579m8ups9ewjqsjfg on 44'/118'/12'/0/0) #12 js:2:axelar:axelar1yhlye27fl05kg4nhmeu5d579m8ups9ewjqsjfg: (! sum of ops 0 AXL) 0.09883 AXL spendable. 
✔️ destination operation 
  ? -64339           OUT        9655BEB85DD3BA2A27022B7834AEDB988850BAAE868904B3A3151490DAB47E92 2024-09-02T09:18

necessary accounts resynced in 0.12ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.309191 AXL (0ops) (axelar10wwjgt3uluxt4zq4qxnkcv96nyz4catanqfeq0 on 44'/118'/15'/0/0) #15 js:2:axelar:axelar10wwjgt3uluxt4zq4qxnkcv96nyz4catanqfeq0: (! sum of ops 0 AXL) 0.304094 AXL spendable. 0.005097 AXL delegated. 
DELEGATIONS
  to axelarvaloper1xesqr8vjvy34jhu027zd70ypl0nnev5ezjg5h9 0.000333 AXL  (claimable 0.000333)
  to axelarvaloper1u3asfwr2q0xhshj88sq4yvh89qluunefh270lz 0.004764 AXL  (claimable 0.004764)

max spendable ~0.297102
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.000613 AXL
TO 
  0.000613 -> axelarvaloper1f9laxzwy8u73jlutkg6qrj7yzkkwcjhvw6cf2v
with fees=0.011797
  memo=LedgerLiveBot
STATUS (448ms)
  amount: 0.000613 AXL
  estimated fees: 0.011797 AXL
  total spent: 0.01241 AXL
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (55ms) optimistic operation: 
  -0.01241 AXL       DELEGATE   CB44FA79BBA03DB76C7AEF879688B495F4B0A759967E78C8A1C8317FDFF9495B 2024-09-02T09:18
    to axelarvaloper1f9laxzwy8u73jlutkg6qrj7yzkkwcjhvw6cf2v 0.000613 AXL    
✔️ operation confirmed (0.14ms): 
  -0.01241 AXL       DELEGATE   CB44FA79BBA03DB76C7AEF879688B495F4B0A759967E78C8A1C8317FDFF9495B 2024-09-02T09:18
    to axelarvaloper1f9laxzwy8u73jlutkg6qrj7yzkkwcjhvw6cf2v 0.000613 AXL    
✔️ undefined: 0.309191 AXL (0ops) (axelar10wwjgt3uluxt4zq4qxnkcv96nyz4catanqfeq0 on 44'/118'/15'/0/0) #15 js:2:axelar:axelar10wwjgt3uluxt4zq4qxnkcv96nyz4catanqfeq0: (! sum of ops 0 AXL) 0.304094 AXL spendable. 0.005097 AXL delegated. 
DELEGATIONS
  to axelarvaloper1xesqr8vjvy34jhu027zd70ypl0nnev5ezjg5h9 0.000333 AXL  (claimable 0.000333)
  to axelarvaloper1u3asfwr2q0xhshj88sq4yvh89qluunefh270lz 0.004764 AXL  (claimable 0.004764)


Spec cosmos (10)

Spec cosmos found 10 Cosmos accounts (preload: 317ms). Will use Cosmos 2.35.24 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: 219ms). Will use Cosmos 2.35.24 on nanoS 2.1.0
undefined: 0.000401 DSM (28ops) (desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454 on 44'/118'/0'/0/0) #0 js:2:desmos:desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454:
undefined: 0.001566 DSM (30ops) (desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur on 44'/118'/1'/0/0) #1 js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:
undefined: 0.000779 DSM (23ops) (desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx on 44'/118'/2'/0/0) #2 js:2:desmos:desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx:
undefined: 0 DSM (41ops) (desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu on 44'/118'/3'/0/0) #3 js:2:desmos:desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu:
undefined: 0.000522 DSM (41ops) (desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9 on 44'/118'/4'/0/0) #4 js:2:desmos:desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9:
undefined: 0.000425 DSM (54ops) (desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y on 44'/118'/5'/0/0) #5 js:2:desmos:desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y:
undefined: 0.000362 DSM (33ops) (desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz on 44'/118'/6'/0/0) #6 js:2:desmos:desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz:
undefined: 0 DSM (25ops) (desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt on 44'/118'/7'/0/0) #7 js:2:desmos:desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt:
undefined: 0.016736 DSM (35ops) (desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8 on 44'/118'/8'/0/0) #8 js:2:desmos:desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8:
undefined: 0.004912 DSM (44ops) (desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7 on 44'/118'/9'/0/0) #9 js:2:desmos:desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7:
undefined: 0.000325 DSM (30ops) (desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted on 44'/118'/10'/0/0) #10 js:2:desmos:desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted:
undefined: 0.021416 DSM (12ops) (desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z on 44'/118'/11'/0/0) #11 js:2:desmos:desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z:
undefined: 0 DSM (15ops) (desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243 on 44'/118'/12'/0/0) #12 js:2:desmos:desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243:
undefined: 52.6749 DSM (84ops) (desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0 on 44'/118'/13'/0/0) #13 js:2:desmos:desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0:
undefined: 16.6309 DSM (15ops) (desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8 on 44'/118'/14'/0/0) #14 js:2:desmos:desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8:
undefined: 39.4326 DSM (69ops) (desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk on 44'/118'/15'/0/0) #15 js:2:desmos:desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk:
undefined: 36.1 DSM (11ops) (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.10ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.001566 DSM (30ops) (desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur on 44'/118'/1'/0/0) #1 js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur: 0.001566 DSM spendable. 

max spendable ~0.001241
★ using mutation 'send max'
→ TO undefined: 0.000325 DSM (30ops) (desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted on 44'/118'/10'/0/0) #10 js:2:desmos:desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted:
✔️ transaction 
SEND MAX
TO desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted

with fees=0.000325
STATUS (328ms)
  amount: 0.001241 DSM
  estimated fees: 0.000325 DSM
  total spent: 0.001566 DSM
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (29ms) optimistic operation: 
  -0.001566 DSM      OUT        4896EAD19CF82BBD9585156227D513D5AE08FA1D51F5F5D4C889BCB451C7C044 2024-09-02T09:18
✔️ operation confirmed (0.12ms): 
  -0.001566 DSM      OUT        4896EAD19CF82BBD9585156227D513D5AE08FA1D51F5F5D4C889BCB451C7C044 2024-09-02T09:18
✔️ undefined: 0.001566 DSM (30ops) (desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur on 44'/118'/1'/0/0) #1 js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur: 0.001566 DSM spendable. 
✔️ destination operation 
  ? -1566            OUT        4896EAD19CF82BBD9585156227D513D5AE08FA1D51F5F5D4C889BCB451C7C044 2024-09-02T09:18

necessary accounts resynced in 0.08ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.016736 DSM (35ops) (desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8 on 44'/118'/8'/0/0) #8 js:2:desmos:desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8: (! sum of ops 0.014952 DSM) 0.016736 DSM spendable. 

max spendable ~0.016511
★ using mutation 'send some'
→ TO undefined: 39.4326 DSM (69ops) (desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk on 44'/118'/15'/0/0) #15 js:2:desmos:desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk:
✔️ transaction 
SEND  0.008929 DSM
TO desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk

with fees=0.000177
STATUS (375ms)
  amount: 0.008929 DSM
  estimated fees: 0.000177 DSM
  total spent: 0.009106 DSM
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (34ms) optimistic operation: 
  -0.009106 DSM      OUT        62BFF1FD82A4DF45E9AA433FD7746BBFE047CC6BA55BBDB614C92F79404E758C 2024-09-02T09:18
✔️ operation confirmed (0.10ms): 
  -0.009106 DSM      OUT        62BFF1FD82A4DF45E9AA433FD7746BBFE047CC6BA55BBDB614C92F79404E758C 2024-09-02T09:18
✔️ undefined: 0.016736 DSM (35ops) (desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8 on 44'/118'/8'/0/0) #8 js:2:desmos:desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8: (! sum of ops 0.014952 DSM) 0.016736 DSM spendable. 
✔️ destination operation 
  ? -9106            OUT        62BFF1FD82A4DF45E9AA433FD7746BBFE047CC6BA55BBDB614C92F79404E758C 2024-09-02T09:18

necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.004912 DSM (44ops) (desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7 on 44'/118'/9'/0/0) #9 js:2:desmos:desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7: (! sum of ops 0.001062 DSM) 0.002427 DSM spendable. 0.002485 DSM delegated. 
DELEGATIONS
  to desmosvaloper1pe2fwwffxn2qnykeut8wzm20sv6eevxedlgpfu 0.000001 DSM  (claimable 0.000001)
  to desmosvaloper1xwazl8ftks4gn00y5x3c47auquc62ssu07r7m6 0.001763 DSM  (claimable 0.001763)
  to desmosvaloper10wp34vsylnyru7z3exeq4t3x597skrukyvhp2s 0.000721 DSM  (claimable 0.000721)
REDELEGATIONS
  from desmosvaloper1pe2fwwffxn2qnykeut8wzm20sv6eevxedlgpfu to desmosvaloper10wp34vsylnyru7z3exeq4t3x597skrukyvhp2s 0.00072 DSM

max spendable ~0.002102
★ using mutation 'send some'
→ TO undefined: 0 DSM (25ops) (desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt on 44'/118'/7'/0/0) #7 js:2:desmos:desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt:
✔️ transaction 
SEND  0.001151 DSM
TO desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt

with fees=0.000189
  memo=LedgerLiveBot
STATUS (452ms)
  amount: 0.001151 DSM
  estimated fees: 0.000189 DSM
  total spent: 0.00134 DSM
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (32ms) optimistic operation: 
  -0.00134 DSM       OUT        C314294CE44F7F95E6F4A937C3C5BCA6E538B0433A74AB157BB6950170B4012D 2024-09-02T09:18
✔️ operation confirmed (0.18ms): 
  -0.00134 DSM       OUT        C314294CE44F7F95E6F4A937C3C5BCA6E538B0433A74AB157BB6950170B4012D 2024-09-02T09:18
✔️ undefined: 0.004912 DSM (44ops) (desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7 on 44'/118'/9'/0/0) #9 js:2:desmos:desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7: (! sum of ops 0.001062 DSM) 0.002427 DSM spendable. 0.002485 DSM delegated. 
DELEGATIONS
  to desmosvaloper1pe2fwwffxn2qnykeut8wzm20sv6eevxedlgpfu 0.000001 DSM  (claimable 0.000001)
  to desmosvaloper1xwazl8ftks4gn00y5x3c47auquc62ssu07r7m6 0.001763 DSM  (claimable 0.001763)
  to desmosvaloper10wp34vsylnyru7z3exeq4t3x597skrukyvhp2s 0.000721 DSM  (claimable 0.000721)
REDELEGATIONS
  from desmosvaloper1pe2fwwffxn2qnykeut8wzm20sv6eevxedlgpfu to desmosvaloper10wp34vsylnyru7z3exeq4t3x597skrukyvhp2s 0.00072 DSM
✔️ destination operation 
  ? -1340            OUT        C314294CE44F7F95E6F4A937C3C5BCA6E538B0433A74AB157BB6950170B4012D 2024-09-02T09:18

necessary accounts resynced in 0.09ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 52.6749 DSM (84ops) (desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0 on 44'/118'/13'/0/0) #13 js:2:desmos:desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0: (! sum of ops -23.368679 DSM) 49.556461 DSM spendable. 2.723937 DSM delegated. 0.394504 DSM unbonding. 
DELEGATIONS
  to desmosvaloper1xg2c0k790sc6mdhvj8uunxyu27vw0vj7frs9ey 1.107087 DSM  (claimable 1.107087)
  to desmosvaloper10djdmufyx5hatsh94nt9nw73jnpeq83rvd6n2m 1.61685 DSM  (claimable 1.61685)
UNDELEGATIONS
  from desmosvaloper1xdkzsnr9a978vgalrzy27x4dhwlchzv2a8jrmp 0.394504 DSM
REDELEGATIONS
  from desmosvaloper1zc293uxsp0y9jj0hu8v93cx6sg2s6w3mxxzxv9 to desmosvaloper1xg2c0k790sc6mdhvj8uunxyu27vw0vj7frs9ey 0.027381 DSM
  from desmosvaloper1zc293uxsp0y9jj0hu8v93cx6sg2s6w3mxxzxv9 to desmosvaloper10djdmufyx5hatsh94nt9nw73jnpeq83rvd6n2m 0.133766 DSM
  from desmosvaloper1r75t9axgvcj6zxnn050n4r2tg3manmvy6n7908 to desmosvaloper10djdmufyx5hatsh94nt9nw73jnpeq83rvd6n2m 0.004901 DSM
  from desmosvaloper1fkpnxtn4nvm27zkpyuvcz3rpa9rzxm70q4v8sn to desmosvaloper10djdmufyx5hatsh94nt9nw73jnpeq83rvd6n2m 0.008844 DSM
  from desmosvaloper1w9u9h24gkx35ed9et9vzhjkllcqhla4z6enfyk to desmosvaloper10djdmufyx5hatsh94nt9nw73jnpeq83rvd6n2m 1.098486 DSM

max spendable ~49.5562
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  1.368286 DSM
TO 
  1.368286 -> desmosvaloper13lv6s8tv66xng9td2pxlp5wweq3wnhz8a23pkd
with fees=0.00039
  memo=LedgerLiveBot
STATUS (733ms)
  amount: 1.368286 DSM
  estimated fees: 0.00039 DSM
  total spent: 1.368676 DSM
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (31ms) optimistic operation: 
  -1.368676 DSM      DELEGATE   39ABE2A5B095C5EBA26D56A33707CDF71A4F2B7A72B47AFF491B51C9F5C2E409 2024-09-02T09:18
    to desmosvaloper13lv6s8tv66xng9td2pxlp5wweq3wnhz8a23pkd 1.368286 DSM    
✔️ operation confirmed (0.20ms): 
  -1.368676 DSM      DELEGATE   39ABE2A5B095C5EBA26D56A33707CDF71A4F2B7A72B47AFF491B51C9F5C2E409 2024-09-02T09:18
    to desmosvaloper13lv6s8tv66xng9td2pxlp5wweq3wnhz8a23pkd 1.368286 DSM    
✔️ undefined: 52.6749 DSM (84ops) (desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0 on 44'/118'/13'/0/0) #13 js:2:desmos:desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0: (! sum of ops -23.368679 DSM) 49.556461 DSM spendable. 2.723937 DSM delegated. 0.394504 DSM unbonding. 
DELEGATIONS
  to desmosvaloper1xg2c0k790sc6mdhvj8uunxyu27vw0vj7frs9ey 1.107087 DSM  (claimable 1.107087)
  to desmosvaloper10djdmufyx5hatsh94nt9nw73jnpeq83rvd6n2m 1.61685 DSM  (claimable 1.61685)
UNDELEGATIONS
  from desmosvaloper1xdkzsnr9a978vgalrzy27x4dhwlchzv2a8jrmp 0.394504 DSM
REDELEGATIONS
  from desmosvaloper1zc293uxsp0y9jj0hu8v93cx6sg2s6w3mxxzxv9 to desmosvaloper1xg2c0k790sc6mdhvj8uunxyu27vw0vj7frs9ey 0.027381 DSM
  from desmosvaloper1zc293uxsp0y9jj0hu8v93cx6sg2s6w3mxxzxv9 to desmosvaloper10djdmufyx5hatsh94nt9nw73jnpeq83rvd6n2m 0.133766 DSM
  from desmosvaloper1r75t9axgvcj6zxnn050n4r2tg3manmvy6n7908 to desmosvaloper10djdmufyx5hatsh94nt9nw73jnpeq83rvd6n2m 0.004901 DSM
  from desmosvaloper1fkpnxtn4nvm27zkpyuvcz3rpa9rzxm70q4v8sn to desmosvaloper10djdmufyx5hatsh94nt9nw73jnpeq83rvd6n2m 0.008844 DSM
  from desmosvaloper1w9u9h24gkx35ed9et9vzhjkllcqhla4z6enfyk to desmosvaloper10djdmufyx5hatsh94nt9nw73jnpeq83rvd6n2m 1.098486 DSM

necessary accounts resynced in 0.14ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 39.4326 DSM (69ops) (desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk on 44'/118'/15'/0/0) #15 js:2:desmos:desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk: (! sum of ops 16.48756 DSM) 35.778154 DSM spendable. 2.927826 DSM delegated. 0.726679 DSM unbonding. 
DELEGATIONS
  to desmosvaloper13lcwraxdnelw39jwqr0p9l4m0jph976ahxlkhq 1.856752 DSM  (claimable 1.856752)
  to desmosvaloper1mf9ughepuvgkleeuhmrnvmflgttdesg0vjfnmn 0.827887 DSM  (claimable 0.827887)
  to desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6 0.243187 DSM  (claimable 0.243187)
UNDELEGATIONS
  from desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6 0.035232 DSM
  from desmosvaloper1zc293uxsp0y9jj0hu8v93cx6sg2s6w3mxxzxv9 0.691447 DSM
REDELEGATIONS
  from desmosvaloper1yrkme34styedn56wmltlttj94lkk38d6jztyvr to desmosvaloper13lcwraxdnelw39jwqr0p9l4m0jph976ahxlkhq 0.634757 DSM
  from desmosvaloper134zrg6jn3a5l5jjpzv9eucdlw3nl2qelk0e992 to desmosvaloper13lcwraxdnelw39jwqr0p9l4m0jph976ahxlkhq 0.479434 DSM
  from desmosvaloper1c4gwu6vv0xasf2dysgag90wymw6s327lxz5wqe to desmosvaloper13lcwraxdnelw39jwqr0p9l4m0jph976ahxlkhq 0.028564 DSM
  from desmosvaloper1c4gwu6vv0xasf2dysgag90wymw6s327lxz5wqe to desmosvaloper13lcwraxdnelw39jwqr0p9l4m0jph976ahxlkhq 0.256951 DSM
  from desmosvaloper1mf9ughepuvgkleeuhmrnvmflgttdesg0vjfnmn to desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6 0.243186 DSM

max spendable ~35.7779
★ using mutation 'redelegate'
✔️ transaction 
REDELEGATE 
TO 
  0.827887 -> desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6
  source validator=desmosvaloper1mf9ughepuvgkleeuhmrnvmflgttdesg0vjfnmn
with fees=0.000881
  memo=LedgerLiveBot
STATUS (603ms)
  amount: 0 DSM
  estimated fees: 0.000881 DSM
  total spent: 0.000881 DSM
errors: 
warnings: 
✔️ has been signed! (4s) 
✔️ broadcasted! (30ms) optimistic operation: 
  -0.000881 DSM      REDELEGATE D0278F60F714801380B30A9B31247502C09C365DB1735BCD65C252561D81E389 2024-09-02T09:19
    to desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6 0.827887 DSM    
✔️ operation confirmed (0.12ms): 
  -0.000881 DSM      REDELEGATE D0278F60F714801380B30A9B31247502C09C365DB1735BCD65C252561D81E389 2024-09-02T09:19
    to desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6 0.827887 DSM    
✔️ undefined: 39.4326 DSM (69ops) (desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk on 44'/118'/15'/0/0) #15 js:2:desmos:desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk: (! sum of ops 16.48756 DSM) 35.778154 DSM spendable. 2.927826 DSM delegated. 0.726679 DSM unbonding. 
DELEGATIONS
  to desmosvaloper13lcwraxdnelw39jwqr0p9l4m0jph976ahxlkhq 1.856752 DSM  (claimable 1.856752)
  to desmosvaloper1mf9ughepuvgkleeuhmrnvmflgttdesg0vjfnmn 0.827887 DSM  (claimable 0.827887)
  to desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6 0.243187 DSM  (claimable 0.243187)
UNDELEGATIONS
  from desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6 0.035232 DSM
  from desmosvaloper1zc293uxsp0y9jj0hu8v93cx6sg2s6w3mxxzxv9 0.691447 DSM
REDELEGATIONS
  from desmosvaloper1yrkme34styedn56wmltlttj94lkk38d6jztyvr to desmosvaloper13lcwraxdnelw39jwqr0p9l4m0jph976ahxlkhq 0.634757 DSM
  from desmosvaloper134zrg6jn3a5l5jjpzv9eucdlw3nl2qelk0e992 to desmosvaloper13lcwraxdnelw39jwqr0p9l4m0jph976ahxlkhq 0.479434 DSM
  from desmosvaloper1c4gwu6vv0xasf2dysgag90wymw6s327lxz5wqe to desmosvaloper13lcwraxdnelw39jwqr0p9l4m0jph976ahxlkhq 0.028564 DSM
  from desmosvaloper1c4gwu6vv0xasf2dysgag90wymw6s327lxz5wqe to desmosvaloper13lcwraxdnelw39jwqr0p9l4m0jph976ahxlkhq 0.256951 DSM
  from desmosvaloper1mf9ughepuvgkleeuhmrnvmflgttdesg0vjfnmn to desmosvaloper1u0xqasxgl6qkkckd860pt4xjqryxek4y05jwy6 0.243186 DSM


Spec dydx (18)

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

Spec umee (18)

Spec umee found 18 Umee accounts (preload: 330ms). Will use Cosmos 2.35.24 on nanoS 2.1.0
undefined: 0 UMEE (0ops) (umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l on 44'/118'/0'/0/0) #0 js:2:umee:umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l:
undefined: 0.073343 UMEE (0ops) (umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f on 44'/118'/1'/0/0) #1 js:2:umee:umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f:
undefined: 0 UMEE (0ops) (umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv on 44'/118'/2'/0/0) #2 js:2:umee:umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv:
undefined: 0.071302 UMEE (0ops) (umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak on 44'/118'/3'/0/0) #3 js:2:umee:umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak:
undefined: 1.22154 UMEE (1ops) (umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0 on 44'/118'/4'/0/0) #4 js:2:umee:umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0:
undefined: 5.44187 UMEE (2ops) (umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw on 44'/118'/5'/0/0) #5 js:2:umee:umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw:
undefined: 0.17817 UMEE (1ops) (umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg on 44'/118'/6'/0/0) #6 js:2:umee:umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg:
undefined: 7.57655 UMEE (1ops) (umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp on 44'/118'/7'/0/0) #7 js:2:umee:umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp:
undefined: 0.903327 UMEE (2ops) (umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd on 44'/118'/8'/0/0) #8 js:2:umee:umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd:
undefined: 0.019029 UMEE (1ops) (umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65 on 44'/118'/9'/0/0) #9 js:2:umee:umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65:
undefined: 0 UMEE (0ops) (umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28 on 44'/118'/10'/0/0) #10 js:2:umee:umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28:
undefined: 0.066134 UMEE (0ops) (umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg on 44'/118'/11'/0/0) #11 js:2:umee:umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg:
undefined: 0.585499 UMEE (0ops) (umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm on 44'/118'/12'/0/0) #12 js:2:umee:umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm:
undefined: 63.6618 UMEE (1ops) (umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29 on 44'/118'/13'/0/0) #13 js:2:umee:umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29:
undefined: 34.7159 UMEE (0ops) (umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd on 44'/118'/14'/0/0) #14 js:2:umee:umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd:
undefined: 417.618 UMEE (0ops) (umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u on 44'/118'/15'/0/0) #15 js:2:umee:umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u:
undefined: 196.308 UMEE (0ops) (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.13ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 1.22154 UMEE (1ops) (umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0 on 44'/118'/4'/0/0) #4 js:2:umee:umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0: (! sum of ops -1.870591 UMEE) 1.221546 UMEE spendable. 

max spendable ~1.21253
★ using mutation 'send some'
→ TO undefined: 196.308 UMEE (0ops) (umee1xr8krhp99mp9ncrz6dfgre542nv0rc8lew2a7r on 44'/118'/16'/0/0) #16 js:2:umee:umee1xr8krhp99mp9ncrz6dfgre542nv0rc8lew2a7r:
✔️ transaction 
SEND  0.635316 UMEE
TO umee1xr8krhp99mp9ncrz6dfgre542nv0rc8lew2a7r

with fees=0.007078
STATUS (363ms)
  amount: 0.635316 UMEE
  estimated fees: 0.007078 UMEE
  total spent: 0.642394 UMEE
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (85ms) optimistic operation: 
  -0.642394 UMEE     OUT        C0822384B2E4E0ED03307E75192B1BF8609A791C8D24227DE5D109288D136B41 2024-09-02T09:18
✔️ operation confirmed (0.09ms): 
  -0.642394 UMEE     OUT        C0822384B2E4E0ED03307E75192B1BF8609A791C8D24227DE5D109288D136B41 2024-09-02T09:18
✔️ undefined: 1.22154 UMEE (1ops) (umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0 on 44'/118'/4'/0/0) #4 js:2:umee:umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0: (! sum of ops -1.870591 UMEE) 1.221546 UMEE spendable. 
✔️ destination operation 
  ? -642394          OUT        C0822384B2E4E0ED03307E75192B1BF8609A791C8D24227DE5D109288D136B41 2024-09-02T09:18

necessary accounts resynced in 0.10ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 5.44187 UMEE (2ops) (umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw on 44'/118'/5'/0/0) #5 js:2:umee:umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw: (! sum of ops 1.864536 UMEE) 5.185065 UMEE spendable. 0.248616 UMEE delegated. 0.008196 UMEE unbonding. 
DELEGATIONS
  to umeevaloper1pjmngrwcsatsuyy8m3qrunaun67sr9x74jd0em 0.234909 UMEE  (claimable 0.234909)
  to umeevaloper1r9nvqznfnx5qvjyrqmqe5cjds6pd30xly0aw53 0.000001 UMEE  (claimable 0.000001)
  to umeevaloper1hqpypahsl5gqwtjyda5zjv5cguu4s69d4jft4c 0.013706 UMEE  (claimable 0.013706)
UNDELEGATIONS
  from umeevaloper1gxjptyjm08vsur74lyceueeh9gpyhx04whzeaq 0.008196 UMEE
REDELEGATIONS
  from umeevaloper1r9nvqznfnx5qvjyrqmqe5cjds6pd30xly0aw53 to umeevaloper1pjmngrwcsatsuyy8m3qrunaun67sr9x74jd0em 0.096878 UMEE
  from umeevaloper1hdeemspqtxaw5pk3ddmtzju3xtk0euj5xddr0c to umeevaloper1pjmngrwcsatsuyy8m3qrunaun67sr9x74jd0em 0.004961 UMEE

max spendable ~5.17604
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.013706 -> umeevaloper1hqpypahsl5gqwtjyda5zjv5cguu4s69d4jft4c
with fees=0.086702
  memo=LedgerLiveBot
STATUS (351ms)
  amount: 0 UMEE
  estimated fees: 0.086702 UMEE
  total spent: 0.086702 UMEE
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (58ms) optimistic operation: 
  -0.086702 UMEE     UNDELEGATE EB98B29A04E07847FAF834A93524A5BEAD9E9D0DF539DBF72FFCCF3601D856CC 2024-09-02T09:18
    to umeevaloper1hqpypahsl5gqwtjyda5zjv5cguu4s69d4jft4c 0.013706 UMEE   
✔️ operation confirmed (0.18ms): 
  -0.086702 UMEE     UNDELEGATE EB98B29A04E07847FAF834A93524A5BEAD9E9D0DF539DBF72FFCCF3601D856CC 2024-09-02T09:18
    to umeevaloper1hqpypahsl5gqwtjyda5zjv5cguu4s69d4jft4c 0.013706 UMEE   
✔️ undefined: 5.44187 UMEE (2ops) (umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw on 44'/118'/5'/0/0) #5 js:2:umee:umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw: (! sum of ops 1.864536 UMEE) 5.185065 UMEE spendable. 0.248616 UMEE delegated. 0.008196 UMEE unbonding. 
DELEGATIONS
  to umeevaloper1pjmngrwcsatsuyy8m3qrunaun67sr9x74jd0em 0.234909 UMEE  (claimable 0.234909)
  to umeevaloper1r9nvqznfnx5qvjyrqmqe5cjds6pd30xly0aw53 0.000001 UMEE  (claimable 0.000001)
  to umeevaloper1hqpypahsl5gqwtjyda5zjv5cguu4s69d4jft4c 0.013706 UMEE  (claimable 0.013706)
UNDELEGATIONS
  from umeevaloper1gxjptyjm08vsur74lyceueeh9gpyhx04whzeaq 0.008196 UMEE
REDELEGATIONS
  from umeevaloper1r9nvqznfnx5qvjyrqmqe5cjds6pd30xly0aw53 to umeevaloper1pjmngrwcsatsuyy8m3qrunaun67sr9x74jd0em 0.096878 UMEE
  from umeevaloper1hdeemspqtxaw5pk3ddmtzju3xtk0euj5xddr0c to umeevaloper1pjmngrwcsatsuyy8m3qrunaun67sr9x74jd0em 0.004961 UMEE

necessary accounts resynced in 0.16ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.17817 UMEE (1ops) (umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg on 44'/118'/6'/0/0) #6 js:2:umee:umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg: 0.17817 UMEE spendable. 

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

with fees=0.007432
STATUS (383ms)
  amount: 0.170738 UMEE
  estimated fees: 0.007432 UMEE
  total spent: 0.17817 UMEE
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (67ms) optimistic operation: 
  -0.17817 UMEE      OUT        A3B76BD95434E70E555FB278B50A5DF1674E2DF29D97ED916B47CD6C548CA5EF 2024-09-02T09:18
✔️ operation confirmed (0.21ms): 
  -0.17817 UMEE      OUT        A3B76BD95434E70E555FB278B50A5DF1674E2DF29D97ED916B47CD6C548CA5EF 2024-09-02T09:18
✔️ undefined: 0.17817 UMEE (1ops) (umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg on 44'/118'/6'/0/0) #6 js:2:umee:umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg: 0.17817 UMEE spendable. 
✔️ destination operation 
  ? -178170          OUT        A3B76BD95434E70E555FB278B50A5DF1674E2DF29D97ED916B47CD6C548CA5EF 2024-09-02T09:18

necessary accounts resynced in 0.14ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 7.57655 UMEE (1ops) (umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp on 44'/118'/7'/0/0) #7 js:2:umee:umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp: (! sum of ops -0.154679 UMEE) 5.856492 UMEE spendable. 1.720063 UMEE delegated. 
DELEGATIONS
  to umeevaloper1few3jle0yjl32ap89j35d5y8xzt644zghe9ucy 1.720063 UMEE  (claimable 1.720063)
REDELEGATIONS
  from umeevaloper1r9nvqznfnx5qvjyrqmqe5cjds6pd30xly0aw53 to umeevaloper1few3jle0yjl32ap89j35d5y8xzt644zghe9ucy 1.372092 UMEE
  from umeevaloper1ypj6v3uf6ssnq8947sw6wf3cw2kmx8f2nx2wc7 to umeevaloper1few3jle0yjl32ap89j35d5y8xzt644zghe9ucy 0.334287 UMEE

max spendable ~5.84746
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.084999 UMEE
TO 
  0.084999 -> umeevaloper1gvt9l5tshr0fp8ksl2tuem584z69eyvt9m8yh6
with fees=0.062982
  memo=LedgerLiveBot
STATUS (495ms)
  amount: 0.084999 UMEE
  estimated fees: 0.062982 UMEE
  total spent: 0.147981 UMEE
errors: 
warnings: 
✔️ has been signed! (3.4s) 
✔️ broadcasted! (58ms) optimistic operation: 
  -0.147981 UMEE     DELEGATE   0A5017EA9B515999592AEA62F09EF4179C552226AF17E561FECC3B29F8C9CB10 2024-09-02T09:18
    to umeevaloper1gvt9l5tshr0fp8ksl2tuem584z69eyvt9m8yh6 0.084999 UMEE   
✔️ operation confirmed (0.15ms): 
  -0.147981 UMEE     DELEGATE   0A5017EA9B515999592AEA62F09EF4179C552226AF17E561FECC3B29F8C9CB10 2024-09-02T09:18
    to umeevaloper1gvt9l5tshr0fp8ksl2tuem584z69eyvt9m8yh6 0.084999 UMEE   
✔️ undefined: 7.57655 UMEE (1ops) (umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp on 44'/118'/7'/0/0) #7 js:2:umee:umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp: (! sum of ops -0.154679 UMEE) 5.856492 UMEE spendable. 1.720063 UMEE delegated. 
DELEGATIONS
  to umeevaloper1few3jle0yjl32ap89j35d5y8xzt644zghe9ucy 1.720063 UMEE  (claimable 1.720063)
REDELEGATIONS
  from umeevaloper1r9nvqznfnx5qvjyrqmqe5cjds6pd30xly0aw53 to umeevaloper1few3jle0yjl32ap89j35d5y8xzt644zghe9ucy 1.372092 UMEE
  from umeevaloper1ypj6v3uf6ssnq8947sw6wf3cw2kmx8f2nx2wc7 to umeevaloper1few3jle0yjl32ap89j35d5y8xzt644zghe9ucy 0.334287 UMEE

necessary accounts resynced in 0.10ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.903327 UMEE (2ops) (umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd on 44'/118'/8'/0/0) #8 js:2:umee:umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd: (! sum of ops 0.619369 UMEE) 0.903327 UMEE spendable. 

max spendable ~0.894313
★ using mutation 'send some'
→ TO undefined: 0.073343 UMEE (0ops) (umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f on 44'/118'/1'/0/0) #1 js:2:umee:umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f:
✔️ transaction 
SEND  0.443904 UMEE
TO umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f

with fees=0.00744
STATUS (372ms)
  amount: 0.443904 UMEE
  estimated fees: 0.00744 UMEE
  total spent: 0.451344 UMEE
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (60ms) optimistic operation: 
  -0.451344 UMEE     OUT        573C9C8D50A3DC8189AB57254AB7719DE4FE434B9BBBF97440F8B692B1484A1F 2024-09-02T09:18
✔️ operation confirmed (0.12ms): 
  -0.451344 UMEE     OUT        573C9C8D50A3DC8189AB57254AB7719DE4FE434B9BBBF97440F8B692B1484A1F 2024-09-02T09:18
✔️ undefined: 0.903327 UMEE (2ops) (umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd on 44'/118'/8'/0/0) #8 js:2:umee:umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd: (! sum of ops 0.619369 UMEE) 0.903327 UMEE spendable. 
✔️ destination operation 
  ? -451344          OUT        573C9C8D50A3DC8189AB57254AB7719DE4FE434B9BBBF97440F8B692B1484A1F 2024-09-02T09:18

necessary accounts resynced in 0.10ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 63.6618 UMEE (1ops) (umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29 on 44'/118'/13'/0/0) #13 js:2:umee:umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29: (! sum of ops -0.035037 UMEE) 59.265989 UMEE spendable. 2.612937 UMEE delegated. 1.7829 UMEE unbonding. 
DELEGATIONS
  to umeevaloper1y5w9vx6qe0ta55z44l505lvmcl9qqjx48733ck 0.06485 UMEE  (claimable 0.06485)
  to umeevaloper1ukk6qutqe24hmmwqkumluprms9fu7kannz5gl7 2.548087 UMEE  (claimable 2.548087)
UNDELEGATIONS
  from umeevaloper19za8xxyjqykx5hu34znsq0dj7qcdt3y6r8mg54 1.353096 UMEE
  from umeevaloper1j6l7zpwnmkrdkat5f84d79aanr5em9cumzly8j 0.429804 UMEE
REDELEGATIONS
  from umeevaloper1hn8mjjvgzd07tfhcl8jvux5k72hheg3t2xkhq0 to umeevaloper1ukk6qutqe24hmmwqkumluprms9fu7kannz5gl7 1.577264 UMEE

max spendable ~59.2569
★ using mutation 'claim rewards'
✔️ transaction 
CLAIMREWARD 
TO 
  0.002648 -> umeevaloper1ukk6qutqe24hmmwqkumluprms9fu7kannz5gl7
with fees=0.076101
  memo=LedgerLiveBot
STATUS (249ms)
  amount: 0 UMEE
  estimated fees: 0.076101 UMEE
  total spent: 0.076101 UMEE
errors: 
warnings: claimReward ClaimRewardsFeesWarning
✔️ has been signed! (3.1s) 
✔️ broadcasted! (60ms) optimistic operation: 
  +0 UMEE            REWARD     DC783A267BD63BAD644C4324BB9FAE31651367D04D60825F19AF68B48861AA2B 2024-09-02T09:18
    to umeevaloper1ukk6qutqe24hmmwqkumluprms9fu7kannz5gl7 0.002648 UMEE   
✔️ operation confirmed (0.11ms): 
  +0 UMEE            REWARD     DC783A267BD63BAD644C4324BB9FAE31651367D04D60825F19AF68B48861AA2B 2024-09-02T09:18
    to umeevaloper1ukk6qutqe24hmmwqkumluprms9fu7kannz5gl7 0.002648 UMEE   
✔️ undefined: 63.6618 UMEE (1ops) (umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29 on 44'/118'/13'/0/0) #13 js:2:umee:umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29: (! sum of ops -0.035037 UMEE) 59.265989 UMEE spendable. 2.612937 UMEE delegated. 1.7829 UMEE unbonding. 
DELEGATIONS
  to umeevaloper1y5w9vx6qe0ta55z44l505lvmcl9qqjx48733ck 0.06485 UMEE  (claimable 0.06485)
  to umeevaloper1ukk6qutqe24hmmwqkumluprms9fu7kannz5gl7 2.548087 UMEE  (claimable 2.548087)
UNDELEGATIONS
  from umeevaloper19za8xxyjqykx5hu34znsq0dj7qcdt3y6r8mg54 1.353096 UMEE
  from umeevaloper1j6l7zpwnmkrdkat5f84d79aanr5em9cumzly8j 0.429804 UMEE
REDELEGATIONS
  from umeevaloper1hn8mjjvgzd07tfhcl8jvux5k72hheg3t2xkhq0 to umeevaloper1ukk6qutqe24hmmwqkumluprms9fu7kannz5gl7 1.577264 UMEE


Spec persistence (18)

Spec persistence found 18 Persistence accounts (preload: 862ms). Will use Cosmos 2.35.24 on nanoS 2.1.0
undefined: 0 XPRT (87ops) (persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf on 44'/118'/0'/0/0) #0 js:2:persistence:persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf:
undefined: 0.336591 XPRT (77ops) (persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l on 44'/118'/1'/0/0) #1 js:2:persistence:persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l:
undefined: 0.29121 XPRT (75ops) (persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6 on 44'/118'/2'/0/0) #2 js:2:persistence:persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6:
undefined: 0.00472 XPRT (122ops) (persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq on 44'/118'/3'/0/0) #3 js:2:persistence:persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq:
undefined: 0 XPRT (30ops) (persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e on 44'/118'/4'/0/0) #4 js:2:persistence:persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e:
undefined: 0.0207 XPRT (75ops) (persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc on 44'/118'/5'/0/0) #5 js:2:persistence:persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc:
undefined: 0 XPRT (123ops) (persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7 on 44'/118'/6'/0/0) #6 js:2:persistence:persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7:
undefined: 1.25918 XPRT (187ops) (persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch on 44'/118'/7'/0/0) #7 js:2:persistence:persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch:
undefined: 0 XPRT (80ops) (persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm on 44'/118'/8'/0/0) #8 js:2:persistence:persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm:
undefined: 1.99074 XPRT (170ops) (persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz on 44'/118'/9'/0/0) #9 js:2:persistence:persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz:
undefined: 0.960078 XPRT (94ops) (persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3 on 44'/118'/10'/0/0) #10 js:2:persistence:persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3:
undefined: 0 XPRT (106ops) (persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7 on 44'/118'/11'/0/0) #11 js:2:persistence:persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7:
undefined: 0.086935 XPRT (69ops) (persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd on 44'/118'/12'/0/0) #12 js:2:persistence:persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd:
undefined: 1.01203 XPRT (145ops) (persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn on 44'/118'/13'/0/0) #13 js:2:persistence:persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn:
undefined: 5.8717 XPRT (44ops) (persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m on 44'/118'/14'/0/0) #14 js:2:persistence:persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m:
undefined: 9.15983 XPRT (90ops) (persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92 on 44'/118'/15'/0/0) #15 js:2:persistence:persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92:
undefined: 6.56376 XPRT (38ops) (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.10ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.336591 XPRT (77ops) (persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l on 44'/118'/1'/0/0) #1 js:2:persistence:persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l: (! sum of ops -0.058159 XPRT) 0.293694 XPRT spendable. 0.042897 XPRT delegated. 
DELEGATIONS
  to persistencevaloper12h04lmculrelc2jeqhfd87688jsn8edflk5t5q 0.042897 XPRT  (claimable 0.042897)

max spendable ~0.291414
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.004801 XPRT
TO 
  0.004801 -> persistencevaloper12tpwysx6fqceqg0zpfzwj88kw8wy4dds4z4k6w
with fees=0.006015
  memo=LedgerLiveBot
STATUS (1356ms)
  amount: 0.004801 XPRT
  estimated fees: 0.006015 XPRT
  total spent: 0.010816 XPRT
errors: 
warnings: 
✔️ has been signed! (3.7s) 
✔️ broadcasted! (153ms) optimistic operation: 
  -0.010816 XPRT     DELEGATE   F88FEAF5090B030113BE8F553D70367ADCFF4CEF44BB96D06702E1F9770C69A6 2024-09-02T09:19
    to persistencevaloper12tpwysx6fqceqg0zpfzwj88kw8wy4dds4z4k6w 0.004801 XPRT   
✔️ operation confirmed (0.12ms): 
  -0.010816 XPRT     DELEGATE   F88FEAF5090B030113BE8F553D70367ADCFF4CEF44BB96D06702E1F9770C69A6 2024-09-02T09:19
    to persistencevaloper12tpwysx6fqceqg0zpfzwj88kw8wy4dds4z4k6w 0.004801 XPRT   
✔️ undefined: 0.336591 XPRT (77ops) (persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l on 44'/118'/1'/0/0) #1 js:2:persistence:persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l: (! sum of ops -0.058159 XPRT) 0.293694 XPRT spendable. 0.042897 XPRT delegated. 
DELEGATIONS
  to persistencevaloper12h04lmculrelc2jeqhfd87688jsn8edflk5t5q 0.042897 XPRT  (claimable 0.042897)

necessary accounts resynced in 0.13ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.29121 XPRT (75ops) (persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6 on 44'/118'/2'/0/0) #2 js:2:persistence:persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6: (! sum of ops -22.701758 XPRT) 0.29121 XPRT spendable. 

max spendable ~0.28893
★ using mutation 'send some'
→ TO undefined: 0.960078 XPRT (94ops) (persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3 on 44'/118'/10'/0/0) #10 js:2:persistence:persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3:
✔️ transaction 
SEND  0.111642 XPRT
TO persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3

with fees=0.001827
  memo=LedgerLiveBot
STATUS (1373ms)
  amount: 0.111642 XPRT
  estimated fees: 0.001827 XPRT
  total spent: 0.113469 XPRT
errors: 
warnings: 
✔️ has been signed! (3.7s) 
✔️ broadcasted! (156ms) optimistic operation: 
  -0.113469 XPRT     OUT        999D1C20A5C4E725F2B628931386F137BC0405898AC29458F1C44387337D420B 2024-09-02T09:19
✔️ operation confirmed (0.10ms): 
  -0.113469 XPRT     OUT        999D1C20A5C4E725F2B628931386F137BC0405898AC29458F1C44387337D420B 2024-09-02T09:19
✔️ undefined: 0.29121 XPRT (75ops) (persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6 on 44'/118'/2'/0/0) #2 js:2:persistence:persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6: (! sum of ops -22.701758 XPRT) 0.29121 XPRT spendable. 
✔️ destination operation 
  ? -113469          OUT        999D1C20A5C4E725F2B628931386F137BC0405898AC29458F1C44387337D420B 2024-09-02T09:19

necessary accounts resynced in 0.12ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.0207 XPRT (75ops) (persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc on 44'/118'/5'/0/0) #5 js:2:persistence:persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc: (! sum of ops 15.044086 XPRT) 0.020595 XPRT spendable. 0.000105 XPRT unbonding. 
UNDELEGATIONS
  from persistencevaloper17hjdqkdlcpjwescklzcwzf7evtdhm4g2yccswh 0.000098 XPRT
  from persistencevaloper1tzn8rk09ez2gm55sffpyzt7ccn5yzshpql8rug 0.000007 XPRT

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

with fees=0.001875
STATUS (978ms)
  amount: 0.012293 XPRT
  estimated fees: 0.001875 XPRT
  total spent: 0.014168 XPRT
errors: 
warnings: 
✔️ has been signed! (3.4s) 
✔️ broadcasted! (153ms) optimistic operation: 
  -0.014168 XPRT     OUT        76723E4BCC7EE580C9514AE8CB5A6A880D04B4B7D899BF61AFD49C4BF9D28ED6 2024-09-02T09:19
✔️ operation confirmed (0.17ms): 
  -0.014168 XPRT     OUT        76723E4BCC7EE580C9514AE8CB5A6A880D04B4B7D899BF61AFD49C4BF9D28ED6 2024-09-02T09:19
✔️ undefined: 0.0207 XPRT (75ops) (persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc on 44'/118'/5'/0/0) #5 js:2:persistence:persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc: (! sum of ops 15.044086 XPRT) 0.020595 XPRT spendable. 0.000105 XPRT unbonding. 
UNDELEGATIONS
  from persistencevaloper17hjdqkdlcpjwescklzcwzf7evtdhm4g2yccswh 0.000098 XPRT
  from persistencevaloper1tzn8rk09ez2gm55sffpyzt7ccn5yzshpql8rug 0.000007 XPRT
✔️ destination operation 
  ? -14168           OUT        76723E4BCC7EE580C9514AE8CB5A6A880D04B4B7D899BF61AFD49C4BF9D28ED6 2024-09-02T09:19

necessary accounts resynced in 0.13ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 1.25918 XPRT (187ops) (persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch on 44'/118'/7'/0/0) #7 js:2:persistence:persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch: (! sum of ops 0.003181 XPRT) 1.256853 XPRT spendable. 0.002334 XPRT delegated. 
DELEGATIONS
  to persistencevaloper1psk9f4ll6q2vehkqu3g4ya2ch006ht8z5w9p6m 0.001747 XPRT  (claimable 0.001747)
  to persistencevaloper1x20lytyf6zkcrv5edpkfkn8sz578qg5sj4vdg2 0.000587 XPRT  (claimable 0.000587)
REDELEGATIONS
  from persistencevaloper1qz6xsskhyyd6mrqns2e3empull7el0gqp5dkru to persistencevaloper1psk9f4ll6q2vehkqu3g4ya2ch006ht8z5w9p6m 0.001565 XPRT

max spendable ~1.25456
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.000587 -> persistencevaloper1x20lytyf6zkcrv5edpkfkn8sz578qg5sj4vdg2
with fees=0.008371
  memo=LedgerLiveBot
STATUS (1034ms)
  amount: 0 XPRT
  estimated fees: 0.008371 XPRT
  total spent: 0.008371 XPRT
errors: 
warnings: 
✔️ has been signed! (3.7s) 
✔️ broadcasted! (170ms) optimistic operation: 
  -0.008371 XPRT     UNDELEGATE 6E801CD7607585A5CD6A88571A1E5E82024519BBD890D79B5879C6827E2FD627 2024-09-02T09:19
    to persistencevaloper1x20lytyf6zkcrv5edpkfkn8sz578qg5sj4vdg2 0.000587 XPRT   
✔️ operation confirmed (0.25ms): 
  -0.008371 XPRT     UNDELEGATE 6E801CD7607585A5CD6A88571A1E5E82024519BBD890D79B5879C6827E2FD627 2024-09-02T09:19
    to persistencevaloper1x20lytyf6zkcrv5edpkfkn8sz578qg5sj4vdg2 0.000587 XPRT   
✔️ undefined: 1.25918 XPRT (187ops) (persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch on 44'/118'/7'/0/0) #7 js:2:persistence:persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch: (! sum of ops 0.003181 XPRT) 1.256853 XPRT spendable. 0.002334 XPRT delegated. 
DELEGATIONS
  to persistencevaloper1psk9f4ll6q2vehkqu3g4ya2ch006ht8z5w9p6m 0.001747 XPRT  (claimable 0.001747)
  to persistencevaloper1x20lytyf6zkcrv5edpkfkn8sz578qg5sj4vdg2 0.000587 XPRT  (claimable 0.000587)
REDELEGATIONS
  from persistencevaloper1qz6xsskhyyd6mrqns2e3empull7el0gqp5dkru to persistencevaloper1psk9f4ll6q2vehkqu3g4ya2ch006ht8z5w9p6m 0.001565 XPRT

necessary accounts resynced in 0.12ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 1.99074 XPRT (170ops) (persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz on 44'/118'/9'/0/0) #9 js:2:persistence:persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz: (! sum of ops 1.616014 XPRT) 1.955767 XPRT spendable. 0.000034 XPRT delegated. 0.03494 XPRT unbonding. 
DELEGATIONS
  to persistencevaloper1p509xkuc9a085rjetrp6gs2q6ca2246r59k9q3 0.000034 XPRT  (claimable 0.000034)
UNDELEGATIONS
  from persistencevaloper1055u0llfcdrvr5uqajldxpnkzd2pangl4vjeuu 0.004186 XPRT
  from persistencevaloper1p509xkuc9a085rjetrp6gs2q6ca2246r59k9q3 0.000021 XPRT
  from persistencevaloper1up955mscr5l038qfn786uqjzcu9ruanhqqwsuv 0.030733 XPRT

max spendable ~1.95348
★ using mutation 'send max'
→ TO undefined: 0 XPRT (30ops) (persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e on 44'/118'/4'/0/0) #4 js:2:persistence:persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e:
✔️ transaction 
SEND MAX
TO persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e

with fees=0.00188
STATUS (1002ms)
  amount: 1.953887 XPRT
  estimated fees: 0.00188 XPRT
  total spent: 1.955767 XPRT
errors: 
warnings: amount RecommendUndelegation
✔️ has been signed! (3.4s) 
✔️ broadcasted! (154ms) optimistic operation: 
  -1.955767 XPRT     OUT        AFA5F25AF38BFFFA6C25CCD984440074B1A4E59FCFF9E8EE09311F51F73D54DB 2024-09-02T09:19
✔️ operation confirmed (0.27ms): 
  -1.955767 XPRT     OUT        AFA5F25AF38BFFFA6C25CCD984440074B1A4E59FCFF9E8EE09311F51F73D54DB 2024-09-02T09:19
✔️ undefined: 1.99074 XPRT (170ops) (persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz on 44'/118'/9'/0/0) #9 js:2:persistence:persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz: (! sum of ops 1.616014 XPRT) 1.955767 XPRT spendable. 0.000034 XPRT delegated. 0.03494 XPRT unbonding. 
DELEGATIONS
  to persistencevaloper1p509xkuc9a085rjetrp6gs2q6ca2246r59k9q3 0.000034 XPRT  (claimable 0.000034)
UNDELEGATIONS
  from persistencevaloper1055u0llfcdrvr5uqajldxpnkzd2pangl4vjeuu 0.004186 XPRT
  from persistencevaloper1p509xkuc9a085rjetrp6gs2q6ca2246r59k9q3 0.000021 XPRT
  from persistencevaloper1up955mscr5l038qfn786uqjzcu9ruanhqqwsuv 0.030733 XPRT
✔️ destination operation 
  ? -1955767         OUT        AFA5F25AF38BFFFA6C25CCD984440074B1A4E59FCFF9E8EE09311F51F73D54DB 2024-09-02T09:19

necessary accounts resynced in 0.14ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 9.15983 XPRT (90ops) (persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92 on 44'/118'/15'/0/0) #15 js:2:persistence:persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92: (! sum of ops 6.898529 XPRT) 8.259975 XPRT spendable. 0.579297 XPRT delegated. 0.320567 XPRT unbonding. 
DELEGATIONS
  to persistencevaloper1x6t7qgm8yrf3sxl5gl5uhv44rgxv2jccr8kf7t 0.370772 XPRT  (claimable 0.370772)
  to persistencevaloper184flc20s3n62lvlqdkuwdvuf8hpu9pgp83x4ru 0.000001 XPRT  (claimable 0.000001)
  to persistencevaloper1j6zfn2ydfgy0nx02ud98h3v8ptnr5jfx6ncckp 0.208524 XPRT  (claimable 0.208524)
UNDELEGATIONS
  from persistencevaloper1j6zfn2ydfgy0nx02ud98h3v8ptnr5jfx6ncckp 0.001686 XPRT
  from persistencevaloper1gydvxcnm95zwdz7h7whpmusy5d5c3ck0p9muc9 0.174157 XPRT
  from persistencevaloper1vyp0kjsqz4rc5hj25qaad55agatf4k3xr6gq6n 0.144724 XPRT
REDELEGATIONS
  from persistencevaloper1qkzx5erdullhqkxg9qzkzl96de9qpvmcr97xwu to persistencevaloper1x6t7qgm8yrf3sxl5gl5uhv44rgxv2jccr8kf7t 0.263632 XPRT
  from persistencevaloper184flc20s3n62lvlqdkuwdvuf8hpu9pgp83x4ru to persistencevaloper1j6zfn2ydfgy0nx02ud98h3v8ptnr5jfx6ncckp 0.194045 XPRT
  from persistencevaloper1v4jth2h9nmkgewvs83ncw4m2r7xqkalwhdgpy2 to persistencevaloper1x6t7qgm8yrf3sxl5gl5uhv44rgxv2jccr8kf7t 0.010076 XPRT
  from persistencevaloper1v4jth2h9nmkgewvs83ncw4m2r7xqkalwhdgpy2 to persistencevaloper1j6zfn2ydfgy0nx02ud98h3v8ptnr5jfx6ncckp 0.014113 XPRT
  from persistencevaloper1wzn3djmqn2wq6apjg50xnlhuwarwuv99q9y3yn to persistencevaloper1j6zfn2ydfgy0nx02ud98h3v8ptnr5jfx6ncckp 0.000001 XPRT

max spendable ~8.25769
★ using mutation 'redelegate'
✔️ transaction 
REDELEGATE 
TO 
  0.000001 -> persistencevaloper1x6t7qgm8yrf3sxl5gl5uhv44rgxv2jccr8kf7t
  source validator=persistencevaloper184flc20s3n62lvlqdkuwdvuf8hpu9pgp83x4ru
with fees=0.00325
  memo=LedgerLiveBot
STATUS (659ms)
  amount: 0 XPRT
  estimated fees: 0.00325 XPRT
  total spent: 0.00325 XPRT
errors: 
warnings: 
✔️ has been signed! (4.1s) 
✔️ broadcasted! (154ms) optimistic operation: 
  -0.00325 XPRT      REDELEGATE 31F34FB13CD437CA5D26DC29C599C379B9365B48AC6586D56A45917CFA78274B 2024-09-02T09:19
    to persistencevaloper1x6t7qgm8yrf3sxl5gl5uhv44rgxv2jccr8kf7t 0.000001 XPRT   
✔️ operation confirmed (0.18ms): 
  -0.00325 XPRT      REDELEGATE 31F34FB13CD437CA5D26DC29C599C379B9365B48AC6586D56A45917CFA78274B 2024-09-02T09:19
    to persistencevaloper1x6t7qgm8yrf3sxl5gl5uhv44rgxv2jccr8kf7t 0.000001 XPRT   
✔️ undefined: 9.15983 XPRT (90ops) (persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92 on 44'/118'/15'/0/0) #15 js:2:persistence:persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92: (! sum of ops 6.898529 XPRT) 8.259975 XPRT spendable. 0.579297 XPRT delegated. 0.320567 XPRT unbonding. 
DELEGATIONS
  to persistencevaloper1x6t7qgm8yrf3sxl5gl5uhv44rgxv2jccr8kf7t 0.370772 XPRT  (claimable 0.370772)
  to persistencevaloper184flc20s3n62lvlqdkuwdvuf8hpu9pgp83x4ru 0.000001 XPRT  (claimable 0.000001)
  to persistencevaloper1j6zfn2ydfgy0nx02ud98h3v8ptnr5jfx6ncckp 0.208524 XPRT  (claimable 0.208524)
UNDELEGATIONS
  from persistencevaloper1j6zfn2ydfgy0nx02ud98h3v8ptnr5jfx6ncckp 0.001686 XPRT
  from persistencevaloper1gydvxcnm95zwdz7h7whpmusy5d5c3ck0p9muc9 0.174157 XPRT
  from persistencevaloper1vyp0kjsqz4rc5hj25qaad55agatf4k3xr6gq6n 0.144724 XPRT
REDELEGATIONS
  from persistencevaloper1qkzx5erdullhqkxg9qzkzl96de9qpvmcr97xwu to persistencevaloper1x6t7qgm8yrf3sxl5gl5uhv44rgxv2jccr8kf7t 0.263632 XPRT
  from persistencevaloper184flc20s3n62lvlqdkuwdvuf8hpu9pgp83x4ru to persistencevaloper1j6zfn2ydfgy0nx02ud98h3v8ptnr5jfx6ncckp 0.194045 XPRT
  from persistencevaloper1v4jth2h9nmkgewvs83ncw4m2r7xqkalwhdgpy2 to persistencevaloper1x6t7qgm8yrf3sxl5gl5uhv44rgxv2jccr8kf7t 0.010076 XPRT
  from persistencevaloper1v4jth2h9nmkgewvs83ncw4m2r7xqkalwhdgpy2 to persistencevaloper1j6zfn2ydfgy0nx02ud98h3v8ptnr5jfx6ncckp 0.014113 XPRT
  from persistencevaloper1wzn3djmqn2wq6apjg50xnlhuwarwuv99q9y3yn to persistencevaloper1j6zfn2ydfgy0nx02ud98h3v8ptnr5jfx6ncckp 0.000001 XPRT


Spec quicksilver (18)

Spec quicksilver found 18 Quicksilver accounts (preload: 322ms). Will use Cosmos 2.35.24 on nanoS 2.1.0
undefined: 0.000339 QCK (0ops) (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 QCK (0ops) (quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev on 44'/118'/2'/0/0) #2 js:2:quicksilver:quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev:
undefined: 0.009388 QCK (0ops) (quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk on 44'/118'/3'/0/0) #3 js:2:quicksilver:quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk:
undefined: 0.00034 QCK (0ops) (quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0 on 44'/118'/4'/0/0) #4 js:2:quicksilver:quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0:
undefined: 0.001372 QCK (0ops) (quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw on 44'/118'/5'/0/0) #5 js:2:quicksilver:quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw:
undefined: 0 QCK (0ops) (quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug on 44'/118'/6'/0/0) #6 js:2:quicksilver:quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug:
undefined: 0.854709 QCK (0ops) (quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p on 44'/118'/7'/0/0) #7 js:2:quicksilver:quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p:
undefined: 0.000513 QCK (0ops) (quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d on 44'/118'/8'/0/0) #8 js:2:quicksilver:quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d:
undefined: 0.000366 QCK (0ops) (quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585 on 44'/118'/9'/0/0) #9 js:2:quicksilver:quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585:
undefined: 0 QCK (0ops) (quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8 on 44'/118'/10'/0/0) #10 js:2:quicksilver:quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8:
undefined: 0.026117 QCK (0ops) (quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg on 44'/118'/11'/0/0) #11 js:2:quicksilver:quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg:
undefined: 0 QCK (1ops) (quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm on 44'/118'/12'/0/0) #12 js:2:quicksilver:quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm:
undefined: 5.66294 QCK (0ops) (quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9 on 44'/118'/13'/0/0) #13 js:2:quicksilver:quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9:
undefined: 1.36168 QCK (2ops) (quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad on 44'/118'/14'/0/0) #14 js:2:quicksilver:quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad:
undefined: 3.76677 QCK (0ops) (quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju on 44'/118'/15'/0/0) #15 js:2:quicksilver:quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju:
undefined: 11.3643 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.10ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.854709 QCK (0ops) (quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p on 44'/118'/7'/0/0) #7 js:2:quicksilver:quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p: (! sum of ops 0 QCK) 0.854709 QCK spendable. 

max spendable ~0.854414
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.012005 QCK
TO 
  0.012005 -> quickvaloper1sz25prcf4z7avyj8adtey8uxmaufwgv0kq5n4c
with fees=0.00119
  memo=LedgerLiveBot
STATUS (382ms)
  amount: 0.012005 QCK
  estimated fees: 0.00119 QCK
  total spent: 0.013195 QCK
errors: 
warnings: 
✔️ has been signed! (3.4s) 
✔️ broadcasted! (48ms) optimistic operation: 
  -0.013195 QCK      DELEGATE   C70FD86408D000C61397AA2259D5AD8428DC300CE1C68E69A604657AB5D090D5 2024-09-02T09:19
    to quickvaloper1sz25prcf4z7avyj8adtey8uxmaufwgv0kq5n4c 0.012005 QCK    
✔️ operation confirmed (0.15ms): 
  -0.013195 QCK      DELEGATE   C70FD86408D000C61397AA2259D5AD8428DC300CE1C68E69A604657AB5D090D5 2024-09-02T09:19
    to quickvaloper1sz25prcf4z7avyj8adtey8uxmaufwgv0kq5n4c 0.012005 QCK    
✔️ undefined: 0.854709 QCK (0ops) (quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p on 44'/118'/7'/0/0) #7 js:2:quicksilver:quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p: (! sum of ops 0 QCK) 0.854709 QCK spendable. 

necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.026117 QCK (0ops) (quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg on 44'/118'/11'/0/0) #11 js:2:quicksilver:quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg: (! sum of ops 0 QCK) 0.026117 QCK spendable. 

max spendable ~0.025831
★ using mutation 'send some'
→ TO undefined: 11.3643 QCK (0ops) (quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr on 44'/118'/16'/0/0) #16 js:2:quicksilver:quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr:
✔️ transaction 
SEND  0.014457 QCK
TO quick1xr8krhp99mp9ncrz6dfgre542nv0rc8lqu8srr

with fees=0.000237
STATUS (293ms)
  amount: 0.014457 QCK
  estimated fees: 0.000237 QCK
  total spent: 0.014694 QCK
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (48ms) optimistic operation: 
  -0.014694 QCK      OUT        6DFA2144A36AADB854483307527005BE170FF2D84EE1643771C8ADE1C28B13A3 2024-09-02T09:19
✔️ operation confirmed (0.18ms): 
  -0.014694 QCK      OUT        6DFA2144A36AADB854483307527005BE170FF2D84EE1643771C8ADE1C28B13A3 2024-09-02T09:19
✔️ undefined: 0.026117 QCK (0ops) (quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg on 44'/118'/11'/0/0) #11 js:2:quicksilver:quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg: (! sum of ops 0 QCK) 0.026117 QCK spendable. 
✔️ destination operation 
  ? -14694           OUT        6DFA2144A36AADB854483307527005BE170FF2D84EE1643771C8ADE1C28B13A3 2024-09-02T09:19

necessary accounts resynced in 0.15ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 5.66294 QCK (0ops) (quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9 on 44'/118'/13'/0/0) #13 js:2:quicksilver:quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9: (! sum of ops 0 QCK) 3.168192 QCK spendable. 2.233823 QCK delegated. 0.260933 QCK unbonding. 
DELEGATIONS
  to quickvaloper1p0w2ztl8swhpvtr8qccr448q25lh663jqht04a 2.146488 QCK  (claimable 2.146488)
  to quickvaloper1z73hsngsu7nu0p5hvhc0u6uqrx9g05l8gj6k6r 0.087335 QCK  (claimable 0.087335)
UNDELEGATIONS
  from quickvaloper1z73hsngsu7nu0p5hvhc0u6uqrx9g05l8gj6k6r 0.134191 QCK
  from quickvaloper1wgvu8aflrsm3a4wldvuu3ak8vshjsv6lkmn4t9 0.002064 QCK
  from quickvaloper1y9zar06lzhj8wrsdw7yjny0xj3zk82q3dh9n2a 0.124678 QCK
REDELEGATIONS
  from quickvaloper1gn9cjw3u495cxsz5llfqup0ymxtsf98mgnss49 to quickvaloper1p0w2ztl8swhpvtr8qccr448q25lh663jqht04a 0.148137 QCK
  from quickvaloper1gn9cjw3u495cxsz5llfqup0ymxtsf98mgnss49 to quickvaloper1p0w2ztl8swhpvtr8qccr448q25lh663jqht04a 0.051303 QCK
  from quickvaloper1gn9cjw3u495cxsz5llfqup0ymxtsf98mgnss49 to quickvaloper1z73hsngsu7nu0p5hvhc0u6uqrx9g05l8gj6k6r 0.03764 QCK
  from quickvaloper1gn9cjw3u495cxsz5llfqup0ymxtsf98mgnss49 to quickvaloper1z73hsngsu7nu0p5hvhc0u6uqrx9g05l8gj6k6r 0.018963 QCK
  from quickvaloper1vkxvpekagj5544w8cxey4p9r0m0xy6s2c0p7u3 to quickvaloper1p0w2ztl8swhpvtr8qccr448q25lh663jqht04a 0.029857 QCK
  from quickvaloper1vkxvpekagj5544w8cxey4p9r0m0xy6s2c0p7u3 to quickvaloper1z73hsngsu7nu0p5hvhc0u6uqrx9g05l8gj6k6r 0.030731 QCK

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

with fees=0.000247
STATUS (288ms)
  amount: 3.167945 QCK
  estimated fees: 0.000247 QCK
  total spent: 3.168192 QCK
errors: 
warnings: amount RecommendUndelegation
✔️ has been signed! (3.1s) 
✔️ broadcasted! (48ms) optimistic operation: 
  -3.168192 QCK      OUT        C9558FCBF8469196AA5158D1EE8C01294F1413EE1010729A0509F79D4D894413 2024-09-02T09:19
✔️ operation confirmed (0.13ms): 
  -3.168192 QCK      OUT        C9558FCBF8469196AA5158D1EE8C01294F1413EE1010729A0509F79D4D894413 2024-09-02T09:19
✔️ undefined: 5.66294 QCK (0ops) (quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9 on 44'/118'/13'/0/0) #13 js:2:quicksilver:quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9: (! sum of ops 0 QCK) 3.168192 QCK spendable. 2.233823 QCK delegated. 0.260933 QCK unbonding. 
DELEGATIONS
  to quickvaloper1p0w2ztl8swhpvtr8qccr448q25lh663jqht04a 2.146488 QCK  (claimable 2.146488)
  to quickvaloper1z73hsngsu7nu0p5hvhc0u6uqrx9g05l8gj6k6r 0.087335 QCK  (claimable 0.087335)
UNDELEGATIONS
  from quickvaloper1z73hsngsu7nu0p5hvhc0u6uqrx9g05l8gj6k6r 0.134191 QCK
  from quickvaloper1wgvu8aflrsm3a4wldvuu3ak8vshjsv6lkmn4t9 0.002064 QCK
  from quickvaloper1y9zar06lzhj8wrsdw7yjny0xj3zk82q3dh9n2a 0.124678 QCK
REDELEGATIONS
  from quickvaloper1gn9cjw3u495cxsz5llfqup0ymxtsf98mgnss49 to quickvaloper1p0w2ztl8swhpvtr8qccr448q25lh663jqht04a 0.148137 QCK
  from quickvaloper1gn9cjw3u495cxsz5llfqup0ymxtsf98mgnss49 to quickvaloper1p0w2ztl8swhpvtr8qccr448q25lh663jqht04a 0.051303 QCK
  from quickvaloper1gn9cjw3u495cxsz5llfqup0ymxtsf98mgnss49 to quickvaloper1z73hsngsu7nu0p5hvhc0u6uqrx9g05l8gj6k6r 0.03764 QCK
  from quickvaloper1gn9cjw3u495cxsz5llfqup0ymxtsf98mgnss49 to quickvaloper1z73hsngsu7nu0p5hvhc0u6uqrx9g05l8gj6k6r 0.018963 QCK
  from quickvaloper1vkxvpekagj5544w8cxey4p9r0m0xy6s2c0p7u3 to quickvaloper1p0w2ztl8swhpvtr8qccr448q25lh663jqht04a 0.029857 QCK
  from quickvaloper1vkxvpekagj5544w8cxey4p9r0m0xy6s2c0p7u3 to quickvaloper1z73hsngsu7nu0p5hvhc0u6uqrx9g05l8gj6k6r 0.030731 QCK
✔️ destination operation 
  ? -3168192         OUT        C9558FCBF8469196AA5158D1EE8C01294F1413EE1010729A0509F79D4D894413 2024-09-02T09:19

necessary accounts resynced in 0.09ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 1.36168 QCK (2ops) (quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad on 44'/118'/14'/0/0) #14 js:2:quicksilver:quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad: (! sum of ops -0.924329 QCK) 1.361681 QCK spendable. 

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

with fees=0.000247
  memo=LedgerLiveBot
STATUS (382ms)
  amount: 0.709225 QCK
  estimated fees: 0.000247 QCK
  total spent: 0.709472 QCK
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (48ms) optimistic operation: 
  -0.709472 QCK      OUT        F96A0E61D0CD355247A3A61286044844C2FD31D0CDBC000C10E755C6015ACF83 2024-09-02T09:19
✔️ operation confirmed (0.13ms): 
  -0.709472 QCK      OUT        F96A0E61D0CD355247A3A61286044844C2FD31D0CDBC000C10E755C6015ACF83 2024-09-02T09:19
✔️ undefined: 1.36168 QCK (2ops) (quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad on 44'/118'/14'/0/0) #14 js:2:quicksilver:quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad: (! sum of ops -0.924329 QCK) 1.361681 QCK spendable. 
✔️ destination operation 
  ? -709472          OUT        F96A0E61D0CD355247A3A61286044844C2FD31D0CDBC000C10E755C6015ACF83 2024-09-02T09:19


Spec onomy (18)

Spec onomy found 18 Onomy accounts (preload: 329ms). Will use Cosmos 2.35.24 on nanoS 2.1.0
undefined: 0 NOM (52ops) (onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg on 44'/118'/0'/0/0) #0 js:2:onomy:onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg:
undefined: 0.00001594 NOM (99ops) (onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67 on 44'/118'/1'/0/0) #1 js:2:onomy:onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67:
undefined: 0 NOM (72ops) (onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m on 44'/118'/2'/0/0) #2 js:2:onomy:onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m:
undefined: 0.00000793 NOM (129ops) (onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp on 44'/118'/3'/0/0) #3 js:2:onomy:onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp:
undefined: 0 NOM (64ops) (onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c on 44'/118'/4'/0/0) #4 js:2:onomy:onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c:
undefined: 0.00001201 NOM (123ops) (onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he on 44'/118'/5'/0/0) #5 js:2:onomy:onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he:
undefined: 0 NOM (80ops) (onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l on 44'/118'/6'/0/0) #6 js:2:onomy:onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l:
undefined: 0.00000047 NOM (123ops) (onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k on 44'/118'/7'/0/0) #7 js:2:onomy:onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k:
undefined: 0.0000001 NOM (58ops) (onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6 on 44'/118'/8'/0/0) #8 js:2:onomy:onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6:
undefined: 0.0000046 NOM (126ops) (onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r on 44'/118'/9'/0/0) #9 js:2:onomy:onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r:
undefined: 0.00000082 NOM (33ops) (onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls on 44'/118'/10'/0/0) #10 js:2:onomy:onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls:
undefined: 0.00076335 NOM (93ops) (onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl on 44'/118'/11'/0/0) #11 js:2:onomy:onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl:
undefined: 0.00110231 NOM (29ops) (onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv on 44'/118'/12'/0/0) #12 js:2:onomy:onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv:
undefined: 0.216351 NOM (26ops) (onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj on 44'/118'/13'/0/0) #13 js:2:onomy:onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj:
undefined: 0.399884 NOM (35ops) (onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46 on 44'/118'/14'/0/0) #14 js:2:onomy:onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46:
undefined: 0.0528679 NOM (15ops) (onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t on 44'/118'/15'/0/0) #15 js:2:onomy:onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t:
undefined: 1.1353 NOM (25ops) (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.10ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.00000793 NOM (129ops) (onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp on 44'/118'/3'/0/0) #3 js:2:onomy:onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp: (! sum of ops 0.000006564691726733 NOM) 0.00000000003135939 NOM spendable. 0.000000284518208943 NOM delegated. 0.000007649560965522 NOM unbonding. 
DELEGATIONS
  to onomyvaloper10vh7xn60lpyrwuq86hu3majv9gqtcrfl7flejg 0.000000005508434634 NOM  (claimable 0.000000005508434634)
  to onomyvaloper16pj5gljqnqs0ajxakccfjhu05yczp987q5wjzx 0.000000279009774309 NOM  (claimable 0.000000279009774309)
UNDELEGATIONS
  from onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000007648072951659 NOM
  from onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc 0.000000001488013863 NOM
REDELEGATIONS
  from onomyvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qxnjc4l to onomyvaloper10vh7xn60lpyrwuq86hu3majv9gqtcrfl7flejg 0.000000000028007906 NOM
  from onomyvaloper1zn4rulkv33xu6y0tgzda4qn3tedahwa7l4zg7q to onomyvaloper10vh7xn60lpyrwuq86hu3majv9gqtcrfl7flejg 0.000000000135046273 NOM

max spendable ~0
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.000000000000122132 NOM
TO 
  0.000000000000122132 -> onomyvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qxnjc4l
with fees=0
  memo=LedgerLiveBot
STATUS (602ms)
  amount: 0.000000000000122132 NOM
  estimated fees: 0.000000000000000582 NOM
  total spent: 0.000000000000122714 NOM
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (77ms) optimistic operation: 
  -0.000000000000122714 NOM DELEGATE   30FB2B41CE305BA7E67805B1A57F2F53CD3121DE900B9CA217DAA70EEABA35C7 2024-09-02T09:18
    to onomyvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qxnjc4l 0.000000000000122132 NOM
✔️ operation confirmed (0.09ms): 
  -0.000000000000122714 NOM DELEGATE   30FB2B41CE305BA7E67805B1A57F2F53CD3121DE900B9CA217DAA70EEABA35C7 2024-09-02T09:18
    to onomyvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qxnjc4l 0.000000000000122132 NOM
✔️ undefined: 0.00000793 NOM (129ops) (onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp on 44'/118'/3'/0/0) #3 js:2:onomy:onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp: (! sum of ops 0.000006564691726733 NOM) 0.00000000003135939 NOM spendable. 0.000000284518208943 NOM delegated. 0.000007649560965522 NOM unbonding. 
DELEGATIONS
  to onomyvaloper10vh7xn60lpyrwuq86hu3majv9gqtcrfl7flejg 0.000000005508434634 NOM  (claimable 0.000000005508434634)
  to onomyvaloper16pj5gljqnqs0ajxakccfjhu05yczp987q5wjzx 0.000000279009774309 NOM  (claimable 0.000000279009774309)
UNDELEGATIONS
  from onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000007648072951659 NOM
  from onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc 0.000000001488013863 NOM
REDELEGATIONS
  from onomyvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qxnjc4l to onomyvaloper10vh7xn60lpyrwuq86hu3majv9gqtcrfl7flejg 0.000000000028007906 NOM
  from onomyvaloper1zn4rulkv33xu6y0tgzda4qn3tedahwa7l4zg7q to onomyvaloper10vh7xn60lpyrwuq86hu3majv9gqtcrfl7flejg 0.000000000135046273 NOM

necessary accounts resynced in 0.13ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0 NOM (64ops) (onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c on 44'/118'/4'/0/0) #4 js:2:onomy:onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c: 0.000000001037485858 NOM spendable. 

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

with fees=0
STATUS (452ms)
  amount: 0.000000001037485595 NOM
  estimated fees: 0.000000000000000263 NOM
  total spent: 0.000000001037485858 NOM
errors: 
warnings: 
✔️ has been signed! (3.2s) 
✔️ broadcasted! (79ms) optimistic operation: 
  -0.000000001037485858 NOM OUT        02B87B1BAEC88A13150E31B42BA8DD4B2395158B435B1EFE5BA906742A806078 2024-09-02T09:18
✔️ operation confirmed (0.12ms): 
  -0.000000001037485858 NOM OUT        02B87B1BAEC88A13150E31B42BA8DD4B2395158B435B1EFE5BA906742A806078 2024-09-02T09:18
✔️ undefined: 0 NOM (64ops) (onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c on 44'/118'/4'/0/0) #4 js:2:onomy:onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c: 0.000000001037485858 NOM spendable. 
✔️ destination operation 
  ? -1037485858      OUT        02B87B1BAEC88A13150E31B42BA8DD4B2395158B435B1EFE5BA906742A806078 2024-09-02T09:18

necessary accounts resynced in 0.10ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.00001201 NOM (123ops) (onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he on 44'/118'/5'/0/0) #5 js:2:onomy:onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he: (! sum of ops -0.000095523687902202 NOM) 0.000011430224029716 NOM spendable. 0.000000584345116934 NOM delegated. 0.000000000542179375 NOM unbonding. 
DELEGATIONS
  to onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc 0.000000584345013163 NOM  (claimable 0.000000584345013163)
  to onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000000000000062634 NOM  (claimable 0.000000000000062634)
  to onomyvaloper1sl97x54v0u3extuj2zrf7h0qrrtpgpslmsh6zu 0.000000000000041137 NOM  (claimable 0.000000000000041137)
UNDELEGATIONS
  from onomyvaloper1se84n9t5ufpjerjxph8rj4c4zw57ylp57jxvu5 0.000000000542179375 NOM

max spendable ~0.00001143
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.000000000000062634 -> onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5
with fees=0
  memo=LedgerLiveBot
STATUS (470ms)
  amount: 0 NOM
  estimated fees: 0.000000000000001067 NOM
  total spent: 0.000000000000001067 NOM
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (76ms) optimistic operation: 
  -0.000000000000001067 NOM UNDELEGATE A404DFD774AE307334053F8F83535F12B8B7DEBDC44051EA294CB55FF6C9FDB7 2024-09-02T09:19
    to onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000000000000062634 NOM
✔️ operation confirmed (0.16ms): 
  -0.000000000000001067 NOM UNDELEGATE A404DFD774AE307334053F8F83535F12B8B7DEBDC44051EA294CB55FF6C9FDB7 2024-09-02T09:19
    to onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000000000000062634 NOM
✔️ undefined: 0.00001201 NOM (123ops) (onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he on 44'/118'/5'/0/0) #5 js:2:onomy:onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he: (! sum of ops -0.000095523687902202 NOM) 0.000011430224029716 NOM spendable. 0.000000584345116934 NOM delegated. 0.000000000542179375 NOM unbonding. 
DELEGATIONS
  to onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc 0.000000584345013163 NOM  (claimable 0.000000584345013163)
  to onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000000000000062634 NOM  (claimable 0.000000000000062634)
  to onomyvaloper1sl97x54v0u3extuj2zrf7h0qrrtpgpslmsh6zu 0.000000000000041137 NOM  (claimable 0.000000000000041137)
UNDELEGATIONS
  from onomyvaloper1se84n9t5ufpjerjxph8rj4c4zw57ylp57jxvu5 0.000000000542179375 NOM

necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0 NOM (80ops) (onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l on 44'/118'/6'/0/0) #6 js:2:onomy:onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l: 0.000000004439896873 NOM spendable. 

max spendable ~0
★ using mutation 'send some'
→ TO undefined: 0.0000046 NOM (126ops) (onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r on 44'/118'/9'/0/0) #9 js:2:onomy:onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r:
✔️ transaction 
SEND  0.000000001948372486 NOM
TO onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r

with fees=0
STATUS (450ms)
  amount: 0.000000001948372486 NOM
  estimated fees: 0.000000000000000264 NOM
  total spent: 0.00000000194837275 NOM
errors: 
warnings: 
✔️ has been signed! (3.2s) 
✔️ broadcasted! (76ms) optimistic operation: 
  -0.00000000194837275 NOM OUT        8B600594E1342EAEE57E2606BDC87CFD9792848313016BE019CD9D339B092EEC 2024-09-02T09:19
✔️ operation confirmed (0.16ms): 
  -0.00000000194837275 NOM OUT        8B600594E1342EAEE57E2606BDC87CFD9792848313016BE019CD9D339B092EEC 2024-09-02T09:19
✔️ undefined: 0 NOM (80ops) (onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l on 44'/118'/6'/0/0) #6 js:2:onomy:onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l: 0.000000004439896873 NOM spendable. 
✔️ destination operation 
  ? -1948372750      OUT        8B600594E1342EAEE57E2606BDC87CFD9792848313016BE019CD9D339B092EEC 2024-09-02T09:19

necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.00000047 NOM (123ops) (onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k on 44'/118'/7'/0/0) #7 js:2:onomy:onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k: (! sum of ops -0.000084939553551129 NOM) 0.000000460595231092 NOM spendable. 0.000000019169522928 NOM delegated. 0.000000000015320114 NOM unbonding. 
DELEGATIONS
  to onomyvaloper1vpj283gw4qzl8ytlesz0fvksxa3v24k3jc4wnz 0.000000019169522928 NOM  (claimable 0.000000019169522928)
UNDELEGATIONS
  from onomyvaloper1sl97x54v0u3extuj2zrf7h0qrrtpgpslmsh6zu 0.00000000000135633 NOM
  from onomyvaloper16pj5gljqnqs0ajxakccfjhu05yczp987q5wjzx 0.000000000003678479 NOM
  from onomyvaloper10vh7xn60lpyrwuq86hu3majv9gqtcrfl7flejg 0.000000000010285305 NOM
REDELEGATIONS
  from onomyvaloper1zn4rulkv33xu6y0tgzda4qn3tedahwa7l4zg7q to onomyvaloper1vpj283gw4qzl8ytlesz0fvksxa3v24k3jc4wnz 0.000000000031320235 NOM
  from onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc to onomyvaloper1vpj283gw4qzl8ytlesz0fvksxa3v24k3jc4wnz 0.000000005932259394 NOM
  from onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc to onomyvaloper1vpj283gw4qzl8ytlesz0fvksxa3v24k3jc4wnz 0.000000004509412313 NOM
  from onomyvaloper1sl97x54v0u3extuj2zrf7h0qrrtpgpslmsh6zu to onomyvaloper1vpj283gw4qzl8ytlesz0fvksxa3v24k3jc4wnz 0.00000000000790734 NOM

max spendable ~0.00000046
★ using mutation 'send some'
→ TO undefined: 0 NOM (72ops) (onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m on 44'/118'/2'/0/0) #2 js:2:onomy:onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m:
✔️ transaction 
SEND  0.000000309533720445 NOM
TO onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m

with fees=0
  memo=LedgerLiveBot
STATUS (599ms)
  amount: 0.000000309533720445 NOM
  estimated fees: 0.000000000000000265 NOM
  total spent: 0.00000030953372071 NOM
errors: 
warnings: 
✔️ has been signed! (3.4s) 
✔️ broadcasted! (76ms) optimistic operation: 
  -0.00000030953372071 NOM OUT        4C0F6F3E1EDB9471E02CCD8D5AECAD5DA4D1FC6033D0DC0AB1F31F7A91997836 2024-09-02T09:19
✔️ operation confirmed (0.19ms): 
  -0.00000030953372071 NOM OUT        4C0F6F3E1EDB9471E02CCD8D5AECAD5DA4D1FC6033D0DC0AB1F31F7A91997836 2024-09-02T09:19
✔️ undefined: 0.00000047 NOM (123ops) (onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k on 44'/118'/7'/0/0) #7 js:2:onomy:onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k: (! sum of ops -0.000084939553551129 NOM) 0.000000460595231092 NOM spendable. 0.000000019169522928 NOM delegated. 0.000000000015320114 NOM unbonding. 
DELEGATIONS
  to onomyvaloper1vpj283gw4qzl8ytlesz0fvksxa3v24k3jc4wnz 0.000000019169522928 NOM  (claimable 0.000000019169522928)
UNDELEGATIONS
  from onomyvaloper1sl97x54v0u3extuj2zrf7h0qrrtpgpslmsh6zu 0.00000000000135633 NOM
  from onomyvaloper16pj5gljqnqs0ajxakccfjhu05yczp987q5wjzx 0.000000000003678479 NOM
  from onomyvaloper10vh7xn60lpyrwuq86hu3majv9gqtcrfl7flejg 0.000000000010285305 NOM
REDELEGATIONS
  from onomyvaloper1zn4rulkv33xu6y0tgzda4qn3tedahwa7l4zg7q to onomyvaloper1vpj283gw4qzl8ytlesz0fvksxa3v24k3jc4wnz 0.000000000031320235 NOM
  from onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc to onomyvaloper1vpj283gw4qzl8ytlesz0fvksxa3v24k3jc4wnz 0.000000005932259394 NOM
  from onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc to onomyvaloper1vpj283gw4qzl8ytlesz0fvksxa3v24k3jc4wnz 0.000000004509412313 NOM
  from onomyvaloper1sl97x54v0u3extuj2zrf7h0qrrtpgpslmsh6zu to onomyvaloper1vpj283gw4qzl8ytlesz0fvksxa3v24k3jc4wnz 0.00000000000790734 NOM
✔️ destination operation 
  ? -309533720710    OUT        4C0F6F3E1EDB9471E02CCD8D5AECAD5DA4D1FC6033D0DC0AB1F31F7A91997836 2024-09-02T09:19

necessary accounts resynced in 0.13ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.0000046 NOM (126ops) (onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r on 44'/118'/9'/0/0) #9 js:2:onomy:onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r: (! sum of ops -0.000145763261259787 NOM) 0.000000669500210767 NOM spendable. 0.000003210947588695 NOM delegated. 0.000000722910617271 NOM unbonding. 
DELEGATIONS
  to onomyvaloper1vpj283gw4qzl8ytlesz0fvksxa3v24k3jc4wnz 0.000000008039536348 NOM  (claimable 0.000000008039536348)
  to onomyvaloper140apyzxhhf38kn7pxkdhhy27vuxytdltzcdrd9 0.000003195163173834 NOM  (claimable 0.000003195163173834)
  to onomyvaloper1a80f2tudr06k6jtg8yhgrq4and80slljnf64dy 0.000000007744878513 NOM  (claimable 0.000000007744878513)
UNDELEGATIONS
  from onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000000698901862568 NOM
  from onomyvaloper1fgklp9hemczlwtqp9jqzq3xahh38hznxu9mtmf 0.000000000812560196 NOM
  from onomyvaloper1w09kn8ykzcn0ugxgplqal9akvs94pp8kytgw2j 0.000000000009632462 NOM
  from onomyvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qxnjc4l 0.000000023186562045 NOM
REDELEGATIONS
  from onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 to onomyvaloper140apyzxhhf38kn7pxkdhhy27vuxytdltzcdrd9 0.000003135403737679 NOM
  from onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 to onomyvaloper140apyzxhhf38kn7pxkdhhy27vuxytdltzcdrd9 0.000000000331819715 NOM
  from onomyvaloper1w09kn8ykzcn0ugxgplqal9akvs94pp8kytgw2j to onomyvaloper140apyzxhhf38kn7pxkdhhy27vuxytdltzcdrd9 0.000000000003474842 NOM

max spendable ~0.00000066
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.000000003310533585 -> onomyvaloper1a80f2tudr06k6jtg8yhgrq4and80slljnf64dy
with fees=0
  memo=LedgerLiveBot
STATUS (453ms)
  amount: 0 NOM
  estimated fees: 0.000000000000001022 NOM
  total spent: 0.000000000000001022 NOM
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (76ms) optimistic operation: 
  -0.000000000000001022 NOM UNDELEGATE 6EA23B290FDB9E96F981617BC421314AC69B140A2230FC788868F1D841394A28 2024-09-02T09:19
    to onomyvaloper1a80f2tudr06k6jtg8yhgrq4and80slljnf64dy 0.000000003310533585 NOM
✔️ operation confirmed (0.17ms): 
  -0.000000000000001022 NOM UNDELEGATE 6EA23B290FDB9E96F981617BC421314AC69B140A2230FC788868F1D841394A28 2024-09-02T09:19
    to onomyvaloper1a80f2tudr06k6jtg8yhgrq4and80slljnf64dy 0.000000003310533585 NOM
✔️ undefined: 0.0000046 NOM (126ops) (onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r on 44'/118'/9'/0/0) #9 js:2:onomy:onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r: (! sum of ops -0.000145763261259787 NOM) 0.000000669500210767 NOM spendable. 0.000003210947588695 NOM delegated. 0.000000722910617271 NOM unbonding. 
DELEGATIONS
  to onomyvaloper1vpj283gw4qzl8ytlesz0fvksxa3v24k3jc4wnz 0.000000008039536348 NOM  (claimable 0.000000008039536348)
  to onomyvaloper140apyzxhhf38kn7pxkdhhy27vuxytdltzcdrd9 0.000003195163173834 NOM  (claimable 0.000003195163173834)
  to onomyvaloper1a80f2tudr06k6jtg8yhgrq4and80slljnf64dy 0.000000007744878513 NOM  (claimable 0.000000007744878513)
UNDELEGATIONS
  from onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 0.000000698901862568 NOM
  from onomyvaloper1fgklp9hemczlwtqp9jqzq3xahh38hznxu9mtmf 0.000000000812560196 NOM
  from onomyvaloper1w09kn8ykzcn0ugxgplqal9akvs94pp8kytgw2j 0.000000000009632462 NOM
  from onomyvaloper1qe8uuf5x69c526h4nzxwv4ltftr73v7qxnjc4l 0.000000023186562045 NOM
REDELEGATIONS
  from onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 to onomyvaloper140apyzxhhf38kn7pxkdhhy27vuxytdltzcdrd9 0.000003135403737679 NOM
  from onomyvaloper1v02smz2732gmaahvnwyz2qjlpq5uckr5nuhmy5 to onomyvaloper140apyzxhhf38kn7pxkdhhy27vuxytdltzcdrd9 0.000000000331819715 NOM
  from onomyvaloper1w09kn8ykzcn0ugxgplqal9akvs94pp8kytgw2j to onomyvaloper140apyzxhhf38kn7pxkdhhy27vuxytdltzcdrd9 0.000000000003474842 NOM

necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.00076335 NOM (93ops) (onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl on 44'/118'/11'/0/0) #11 js:2:onomy:onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl: (! sum of ops -0.003143933731031436 NOM) 0.000523616859921296 NOM spendable. 0.000008503542066704 NOM delegated. 0.000231238380017423 NOM unbonding. 
DELEGATIONS
  to onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc 0.000008503542066704 NOM  (claimable 0.000008503542066704)
UNDELEGATIONS
  from onomyvaloper1sl97x54v0u3extuj2zrf7h0qrrtpgpslmsh6zu 0.000226725475802287 NOM
  from onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc 0.000004453760729633 NOM
  from onomyvaloper1n426r3jk58la94mhlnufq57gllt2jaz76qhm6h 0.000000059143485503 NOM
REDELEGATIONS
  from onomyvaloper140apyzxhhf38kn7pxkdhhy27vuxytdltzcdrd9 to onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc 0.000008475465393133 NOM

max spendable ~0.00052361
★ using mutation 'claim rewards'
✔️ transaction 
CLAIMREWARD 
TO 
  0.000000077583386059 -> onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc
with fees=0
  memo=LedgerLiveBot
STATUS (300ms)
  amount: 0 NOM
  estimated fees: 0.000000000000000639 NOM
  total spent: 0.000000000000000639 NOM
errors: 
warnings: 
✔️ has been signed! (3.1s) 
✔️ broadcasted! (76ms) optimistic operation: 
  +0 NOM             REWARD     06684C1778B921C5FE29B1DC2F3BAC261F0B25E9E9AF6EF89093D86F81104114 2024-09-02T09:19
    to onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc 0.000000077583386059 NOM
✔️ operation confirmed (0.14ms): 
  +0 NOM             REWARD     06684C1778B921C5FE29B1DC2F3BAC261F0B25E9E9AF6EF89093D86F81104114 2024-09-02T09:19
    to onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc 0.000000077583386059 NOM
✔️ undefined: 0.00076335 NOM (93ops) (onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl on 44'/118'/11'/0/0) #11 js:2:onomy:onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl: (! sum of ops -0.003143933731031436 NOM) 0.000523616859921296 NOM spendable. 0.000008503542066704 NOM delegated. 0.000231238380017423 NOM unbonding. 
DELEGATIONS
  to onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc 0.000008503542066704 NOM  (claimable 0.000008503542066704)
UNDELEGATIONS
  from onomyvaloper1sl97x54v0u3extuj2zrf7h0qrrtpgpslmsh6zu 0.000226725475802287 NOM
  from onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc 0.000004453760729633 NOM
  from onomyvaloper1n426r3jk58la94mhlnufq57gllt2jaz76qhm6h 0.000000059143485503 NOM
REDELEGATIONS
  from onomyvaloper140apyzxhhf38kn7pxkdhhy27vuxytdltzcdrd9 to onomyvaloper1fewecfptznhtdvxe5sqw2m6axyes6kst384lhc 0.000008475465393133 NOM


Spec secret_network (failed)


Spec sei_network (failed)


Spec stargaze (18)

Spec stargaze found 18 Stargaze accounts (preload: 231ms). Will use Cosmos 2.35.24 on nanoS 2.1.0
undefined: 0 STARS (1ops) (stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu on 44'/118'/0'/0/0) #0 js:2:stargaze:stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu:
undefined: 0.559142 STARS (0ops) (stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2 on 44'/118'/1'/0/0) #1 js:2:stargaze:stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2:
undefined: 0 STARS (0ops) (stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0 on 44'/118'/2'/0/0) #2 js:2:stargaze:stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0:
undefined: 0.565555 STARS (1ops) (stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4 on 44'/118'/3'/0/0) #3 js:2:stargaze:stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4:
undefined: 0.123852 STARS (0ops) (stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv on 44'/118'/4'/0/0) #4 js:2:stargaze:stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv:
undefined: 0.23511 STARS (1ops) (stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd on 44'/118'/5'/0/0) #5 js:2:stargaze:stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd:
undefined: 0.112748 STARS (1ops) (stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt on 44'/118'/6'/0/0) #6 js:2:stargaze:stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt:
undefined: 1.31284 STARS (1ops) (stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz on 44'/118'/7'/0/0) #7 js:2:stargaze:stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz:
undefined: 0 STARS (0ops) (stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw on 44'/118'/8'/0/0) #8 js:2:stargaze:stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw:
undefined: 0.051315 STARS (0ops) (stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h on 44'/118'/9'/0/0) #9 js:2:stargaze:stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h:
undefined: 1.51681 STARS (0ops) (stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y on 44'/118'/10'/0/0) #10 js:2:stargaze:stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y:
undefined: 2.25024 STARS (1ops) (stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet on 44'/118'/11'/0/0) #11 js:2:stargaze:stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet:
undefined: 3.97283 STARS (0ops) (stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc on 44'/118'/12'/0/0) #12 js:2:stargaze:stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc:
undefined: 16.4129 STARS (2ops) (stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x on 44'/118'/13'/0/0) #13 js:2:stargaze:stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x:
undefined: 10.4518 STARS (0ops) (stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w on 44'/118'/14'/0/0) #14 js:2:stargaze:stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w:
undefined: 463.111 STARS (0ops) (stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql on 44'/118'/15'/0/0) #15 js:2:stargaze:stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql:
undefined: 337.79 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.10ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.565555 STARS (1ops) (stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4 on 44'/118'/3'/0/0) #3 js:2:stargaze:stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4: (! sum of ops -0.410634 STARS) 0.391846 STARS spendable. 0.173709 STARS delegated. 
DELEGATIONS
  to starsvaloper18u3wyvmmh2lq008gtwdsqcvj3m22aqyxt3ymaq 0.173709 STARS  (claimable 0.173709)
REDELEGATIONS
  from starsvaloper1jnum75gr8jsn4xn9u48kc9ma5c4mrmvzsvad6j to starsvaloper18u3wyvmmh2lq008gtwdsqcvj3m22aqyxt3ymaq 0.155419 STARS

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

with fees=0.074665
STATUS (351ms)
  amount: 0.317181 STARS
  estimated fees: 0.074665 STARS
  total spent: 0.391846 STARS
errors: 
warnings: amount RecommendUndelegation
✔️ has been signed! (3.3s) 
✔️ broadcasted! (59ms) optimistic operation: 
  -0.391846 STARS    OUT        CFEC95F5F10A96FF2E8BC680E5C1859D3A3627288AE0238D84DDCA06B1646274 2024-09-02T09:19
✔️ operation confirmed (0.18ms): 
  -0.391846 STARS    OUT        CFEC95F5F10A96FF2E8BC680E5C1859D3A3627288AE0238D84DDCA06B1646274 2024-09-02T09:19
✔️ undefined: 0.565555 STARS (1ops) (stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4 on 44'/118'/3'/0/0) #3 js:2:stargaze:stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4: (! sum of ops -0.410634 STARS) 0.391846 STARS spendable. 0.173709 STARS delegated. 
DELEGATIONS
  to starsvaloper18u3wyvmmh2lq008gtwdsqcvj3m22aqyxt3ymaq 0.173709 STARS  (claimable 0.173709)
REDELEGATIONS
  from starsvaloper1jnum75gr8jsn4xn9u48kc9ma5c4mrmvzsvad6j to starsvaloper18u3wyvmmh2lq008gtwdsqcvj3m22aqyxt3ymaq 0.155419 STARS
✔️ destination operation 
  ? -391846          OUT        CFEC95F5F10A96FF2E8BC680E5C1859D3A3627288AE0238D84DDCA06B1646274 2024-09-02T09:19

necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 1.31284 STARS (1ops) (stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz on 44'/118'/7'/0/0) #7 js:2:stargaze:stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz: (! sum of ops 0.476161 STARS) 0.678678 STARS spendable. 0.532668 STARS delegated. 0.101503 STARS unbonding. 
DELEGATIONS
  to starsvaloper1f4tj483qfrt3yemjdlx5e577h7e3r52ydyqd3s 0.532615 STARS  (claimable 0.532615)
  to starsvaloper1msylh4vxq8uyz6cwcerme3yyq3cjpanpuw72pf 0.000053 STARS  (claimable 0.000053)
UNDELEGATIONS
  from starsvaloper1t70evqe66qedxp3u04d424gxfyncuhp68ffuf7 0.092414 STARS
  from starsvaloper1qy8vu3r6gcm3ydjglh427p8p036ya798hev2s8 0.009089 STARS

max spendable ~0.588131
★ using mutation 'claim rewards'
✔️ transaction 
CLAIMREWARD 
TO 
  0.001567 -> starsvaloper1f4tj483qfrt3yemjdlx5e577h7e3r52ydyqd3s
with fees=0.166009
  memo=LedgerLiveBot
STATUS (240ms)
  amount: 0 STARS
  estimated fees: 0.166009 STARS
  total spent: 0.166009 STARS
errors: 
warnings: claimReward ClaimRewardsFeesWarning
✔️ has been signed! (3.4s) 
✔️ broadcasted! (58ms) optimistic operation: 
  +0 STARS           REWARD     C4E26FC3B5427200301BD9BD3854C764FAC1CEDDDF6395029A64739C0CCB0719 2024-09-02T09:19
    to starsvaloper1f4tj483qfrt3yemjdlx5e577h7e3r52ydyqd3s 0.001567 STARS  
✔️ operation confirmed (0.15ms): 
  +0 STARS           REWARD     C4E26FC3B5427200301BD9BD3854C764FAC1CEDDDF6395029A64739C0CCB0719 2024-09-02T09:19
    to starsvaloper1f4tj483qfrt3yemjdlx5e577h7e3r52ydyqd3s 0.001567 STARS  
✔️ undefined: 1.31284 STARS (1ops) (stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz on 44'/118'/7'/0/0) #7 js:2:stargaze:stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz: (! sum of ops 0.476161 STARS) 0.678678 STARS spendable. 0.532668 STARS delegated. 0.101503 STARS unbonding. 
DELEGATIONS
  to starsvaloper1f4tj483qfrt3yemjdlx5e577h7e3r52ydyqd3s 0.532615 STARS  (claimable 0.532615)
  to starsvaloper1msylh4vxq8uyz6cwcerme3yyq3cjpanpuw72pf 0.000053 STARS  (claimable 0.000053)
UNDELEGATIONS
  from starsvaloper1t70evqe66qedxp3u04d424gxfyncuhp68ffuf7 0.092414 STARS
  from starsvaloper1qy8vu3r6gcm3ydjglh427p8p036ya798hev2s8 0.009089 STARS

necessary accounts resynced in 0.10ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 1.51681 STARS (0ops) (stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y on 44'/118'/10'/0/0) #10 js:2:stargaze:stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y: (! sum of ops 0 STARS) 1.516812 STARS spendable. 

max spendable ~1.4262
★ using mutation 'send some'
→ TO undefined: 463.111 STARS (0ops) (stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql on 44'/118'/15'/0/0) #15 js:2:stargaze:stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql:
✔️ transaction 
SEND  0.812943 STARS
TO stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql

with fees=0.072708
  memo=LedgerLiveBot
STATUS (509ms)
  amount: 0.812943 STARS
  estimated fees: 0.072708 STARS
  total spent: 0.885651 STARS
errors: 
warnings: 
✔️ has been signed! (3.5s) 
✔️ broadcasted! (67ms) optimistic operation: 
  -0.885651 STARS    OUT        0C58C033273C2FB36F344E6B60158EDC8DD7848995B9470805413A0820817636 2024-09-02T09:19
✔️ operation confirmed (0.17ms): 
  -0.885651 STARS    OUT        0C58C033273C2FB36F344E6B60158EDC8DD7848995B9470805413A0820817636 2024-09-02T09:19
✔️ undefined: 1.51681 STARS (0ops) (stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y on 44'/118'/10'/0/0) #10 js:2:stargaze:stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y: (! sum of ops 0 STARS) 1.516812 STARS spendable. 
✔️ destination operation 
  ? -885651          OUT        0C58C033273C2FB36F344E6B60158EDC8DD7848995B9470805413A0820817636 2024-09-02T09:19

necessary accounts resynced in 0.11ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 2.25024 STARS (1ops) (stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet on 44'/118'/11'/0/0) #11 js:2:stargaze:stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet: (! sum of ops -0.381748 STARS) 1.356448 STARS spendable. 0.563978 STARS delegated. 0.329814 STARS unbonding. 
DELEGATIONS
  to starsvaloper1wlagucxdxvsmvj6330864x8q3vxz4x02edm8vx 0.456247 STARS  (claimable 0.456247)
  to starsvaloper172ctu72nuvxzrc0ser6xuzr735ay82g0tnxfyk 0.107731 STARS  (claimable 0.107731)
UNDELEGATIONS
  from starsvaloper14ysq6pfyxh5jmhddvjhxu6du8nh7r8248y90lc 0.32924 STARS
  from starsvaloper1s679uyrt0uhljj8ws905hetwn87jqdz3n33klw 0.000574 STARS
REDELEGATIONS
  from starsvaloper14ysq6pfyxh5jmhddvjhxu6du8nh7r8248y90lc to starsvaloper172ctu72nuvxzrc0ser6xuzr735ay82g0tnxfyk 0.10286 STARS
  from starsvaloper1k5pyrxxd3usuneeeh4gssqh7sw0f73kvamt8vd to starsvaloper172ctu72nuvxzrc0ser6xuzr735ay82g0tnxfyk 0.00487 STARS
  from starsvaloper17dn5e2n6w60pzyxeq79apr05r6jzfw7w7d8xrj to starsvaloper1wlagucxdxvsmvj6330864x8q3vxz4x02edm8vx 0.013218 STARS

max spendable ~1.26576
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.001551 STARS
TO 
  0.001551 -> starsvaloper16s96n9k9zztdgjy8q4qcxp4hn7ww98qkeq2f7v
with fees=0.155317
  memo=LedgerLiveBot
STATUS (484ms)
  amount: 0.001551 STARS
  estimated fees: 0.155317 STARS
  total spent: 0.156868 STARS
errors: 
warnings: 
✔️ has been signed! (3.5s) 
✔️ broadcasted! (60ms) optimistic operation: 
  -0.156868 STARS    DELEGATE   84DE4B7E55F72DB377256594BAE0DED69D4509343CE76D23970F5F8BE3908E31 2024-09-02T09:19
    to starsvaloper16s96n9k9zztdgjy8q4qcxp4hn7ww98qkeq2f7v 0.001551 STARS  
✔️ operation confirmed (0.15ms): 
  -0.156868 STARS    DELEGATE   84DE4B7E55F72DB377256594BAE0DED69D4509343CE76D23970F5F8BE3908E31 2024-09-02T09:19
    to starsvaloper16s96n9k9zztdgjy8q4qcxp4hn7ww98qkeq2f7v 0.001551 STARS  
✔️ undefined: 2.25024 STARS (1ops) (stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet on 44'/118'/11'/0/0) #11 js:2:stargaze:stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet: (! sum of ops -0.381748 STARS) 1.356448 STARS spendable. 0.563978 STARS delegated. 0.329814 STARS unbonding. 
DELEGATIONS
  to starsvaloper1wlagucxdxvsmvj6330864x8q3vxz4x02edm8vx 0.456247 STARS  (claimable 0.456247)
  to starsvaloper172ctu72nuvxzrc0ser6xuzr735ay82g0tnxfyk 0.107731 STARS  (claimable 0.107731)
UNDELEGATIONS
  from starsvaloper14ysq6pfyxh5jmhddvjhxu6du8nh7r8248y90lc 0.32924 STARS
  from starsvaloper1s679uyrt0uhljj8ws905hetwn87jqdz3n33klw 0.000574 STARS
REDELEGATIONS
  from starsvaloper14ysq6pfyxh5jmhddvjhxu6du8nh7r8248y90lc to starsvaloper172ctu72nuvxzrc0ser6xuzr735ay82g0tnxfyk 0.10286 STARS
  from starsvaloper1k5pyrxxd3usuneeeh4gssqh7sw0f73kvamt8vd to starsvaloper172ctu72nuvxzrc0ser6xuzr735ay82g0tnxfyk 0.00487 STARS
  from starsvaloper17dn5e2n6w60pzyxeq79apr05r6jzfw7w7d8xrj to starsvaloper1wlagucxdxvsmvj6330864x8q3vxz4x02edm8vx 0.013218 STARS

necessary accounts resynced in 0.12ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 3.97283 STARS (0ops) (stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc on 44'/118'/12'/0/0) #12 js:2:stargaze:stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc: (! sum of ops 0 STARS) 3.972834 STARS spendable. 

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

with fees=0.071211
STATUS (358ms)
  amount: 2.21356 STARS
  estimated fees: 0.071211 STARS
  total spent: 2.284771 STARS
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (61ms) optimistic operation: 
  -2.284771 STARS    OUT        84A160168963ED2B3980C40F178F38E4248414FDEC4703F5B6E7C4DCB887F658 2024-09-02T09:19
✔️ operation confirmed (0.17ms): 
  -2.284771 STARS    OUT        84A160168963ED2B3980C40F178F38E4248414FDEC4703F5B6E7C4DCB887F658 2024-09-02T09:19
✔️ undefined: 3.97283 STARS (0ops) (stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc on 44'/118'/12'/0/0) #12 js:2:stargaze:stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc: (! sum of ops 0 STARS) 3.972834 STARS spendable. 
✔️ destination operation 
  ? -2284771         OUT        84A160168963ED2B3980C40F178F38E4248414FDEC4703F5B6E7C4DCB887F658 2024-09-02T09:19

necessary accounts resynced in 0.14ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 16.4129 STARS (2ops) (stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x on 44'/118'/13'/0/0) #13 js:2:stargaze:stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x: (! sum of ops 0.18718 STARS) 15.723734 STARS spendable. 0.491579 STARS delegated. 0.197666 STARS unbonding. 
DELEGATIONS
  to starsvaloper1y0k86wx0jpfqs9qcq6alalfwvyackwfqkeqdwh 0.471654 STARS  (claimable 0.471654)
  to starsvaloper18u3wyvmmh2lq008gtwdsqcvj3m22aqyxt3ymaq 0.019925 STARS  (claimable 0.019925)
UNDELEGATIONS
  from starsvaloper1y0k86wx0jpfqs9qcq6alalfwvyackwfqkeqdwh 0.196025 STARS
  from starsvaloper1gz645mefvu5emd0llpfjchqqpyuxt0xxq34per 0.001641 STARS
REDELEGATIONS
  from starsvaloper19jw025fpcmayxj4qxp50uh2jvxuff57vw2krv6 to starsvaloper1y0k86wx0jpfqs9qcq6alalfwvyackwfqkeqdwh 0.011447 STARS
  from starsvaloper19jw025fpcmayxj4qxp50uh2jvxuff57vw2krv6 to starsvaloper1y0k86wx0jpfqs9qcq6alalfwvyackwfqkeqdwh 0.000619 STARS
  from starsvaloper1ej2es5fjztqjcd4pwa0zyvaevtjd2y5wuske5h to starsvaloper1y0k86wx0jpfqs9qcq6alalfwvyackwfqkeqdwh 0.459587 STARS

max spendable ~15.633
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.019925 -> starsvaloper18u3wyvmmh2lq008gtwdsqcvj3m22aqyxt3ymaq
with fees=0.226286
  memo=LedgerLiveBot
STATUS (361ms)
  amount: 0 STARS
  estimated fees: 0.226286 STARS
  total spent: 0.226286 STARS
errors: 
warnings: 
✔️ has been signed! (3.5s) 
✔️ broadcasted! (65ms) optimistic operation: 
  -0.226286 STARS    UNDELEGATE 56B75764B0FCD9FB00F13EAA5B8AEAA213DEBD4D4588ED3334BF912A0464B2E5 2024-09-02T09:19
    to starsvaloper18u3wyvmmh2lq008gtwdsqcvj3m22aqyxt3ymaq 0.019925 STARS  
✔️ operation confirmed (0.13ms): 
  -0.226286 STARS    UNDELEGATE 56B75764B0FCD9FB00F13EAA5B8AEAA213DEBD4D4588ED3334BF912A0464B2E5 2024-09-02T09:19
    to starsvaloper18u3wyvmmh2lq008gtwdsqcvj3m22aqyxt3ymaq 0.019925 STARS  
✔️ undefined: 16.4129 STARS (2ops) (stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x on 44'/118'/13'/0/0) #13 js:2:stargaze:stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x: (! sum of ops 0.18718 STARS) 15.723734 STARS spendable. 0.491579 STARS delegated. 0.197666 STARS unbonding. 
DELEGATIONS
  to starsvaloper1y0k86wx0jpfqs9qcq6alalfwvyackwfqkeqdwh 0.471654 STARS  (claimable 0.471654)
  to starsvaloper18u3wyvmmh2lq008gtwdsqcvj3m22aqyxt3ymaq 0.019925 STARS  (claimable 0.019925)
UNDELEGATIONS
  from starsvaloper1y0k86wx0jpfqs9qcq6alalfwvyackwfqkeqdwh 0.196025 STARS
  from starsvaloper1gz645mefvu5emd0llpfjchqqpyuxt0xxq34per 0.001641 STARS
REDELEGATIONS
  from starsvaloper19jw025fpcmayxj4qxp50uh2jvxuff57vw2krv6 to starsvaloper1y0k86wx0jpfqs9qcq6alalfwvyackwfqkeqdwh 0.011447 STARS
  from starsvaloper19jw025fpcmayxj4qxp50uh2jvxuff57vw2krv6 to starsvaloper1y0k86wx0jpfqs9qcq6alalfwvyackwfqkeqdwh 0.000619 STARS
  from starsvaloper1ej2es5fjztqjcd4pwa0zyvaevtjd2y5wuske5h to starsvaloper1y0k86wx0jpfqs9qcq6alalfwvyackwfqkeqdwh 0.459587 STARS


Spec coreum (18)

Spec coreum found 18 Coreum accounts (preload: 256ms). Will use Cosmos 2.35.24 on nanoS 2.1.0
undefined: 0 CORE (88ops) (core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk on 44'/118'/0'/0/0) #0 js:2:coreum:core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk:
undefined: 0.066765 CORE (140ops) (core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq on 44'/118'/1'/0/0) #1 js:2:coreum:core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq:
undefined: 0 CORE (133ops) (core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89 on 44'/118'/2'/0/0) #2 js:2:coreum:core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89:
undefined: 0.03624 CORE (166ops) (core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l on 44'/118'/3'/0/0) #3 js:2:coreum:core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l:
undefined: 0.078174 CORE (118ops) (core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux on 44'/118'/4'/0/0) #4 js:2:coreum:core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux:
undefined: 0.02643 CORE (147ops) (core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8 on 44'/118'/5'/0/0) #5 js:2:coreum:core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8:
undefined: 0 CORE (106ops) (core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp on 44'/118'/6'/0/0) #6 js:2:coreum:core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp:
undefined: 0.436585 CORE (134ops) (core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g on 44'/118'/7'/0/0) #7 js:2:coreum:core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g:
undefined: 0 CORE (92ops) (core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy on 44'/118'/8'/0/0) #8 js:2:coreum:core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy:
undefined: 4.81242 CORE (160ops) (core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea on 44'/118'/9'/0/0) #9 js:2:coreum:core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea:
undefined: 0 CORE (89ops) (core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw on 44'/118'/10'/0/0) #10 js:2:coreum:core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw:
undefined: 1.86312 CORE (142ops) (core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p on 44'/118'/11'/0/0) #11 js:2:coreum:core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p:
undefined: 0 CORE (62ops) (core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j on 44'/118'/12'/0/0) #12 js:2:coreum:core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j:
undefined: 11.9804 CORE (150ops) (core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv on 44'/118'/13'/0/0) #13 js:2:coreum:core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv:
undefined: 1.82895 CORE (70ops) (core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try on 44'/118'/14'/0/0) #14 js:2:coreum:core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try:
undefined: 6.94857 CORE (113ops) (core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4 on 44'/118'/15'/0/0) #15 js:2:coreum:core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4:
undefined: 9.80488 CORE (39ops) (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.10ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.066765 CORE (140ops) (core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq on 44'/118'/1'/0/0) #1 js:2:coreum:core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq: (! sum of ops 0.112588 CORE) 0.061285 CORE spendable. 0.000001 CORE delegated. 0.005479 CORE unbonding. 
DELEGATIONS
  to corevaloper1cvllgp0rlm99cghwkg9y7syu8drc2325pzcvgu 0.000001 CORE  (claimable 0.000001)
UNDELEGATIONS
  from corevaloper10gq88py0q52xmf6wu6tytszee7durnwcw7e37f 0.005478 CORE
  from corevaloper1uhrrdv6g6v9t38v4qghjucunnxyk8xt30vr8za 0.000001 CORE

max spendable ~0.046335
★ using mutation 'send max'
→ TO undefined: 9.80488 CORE (39ops) (core1xr8krhp99mp9ncrz6dfgre542nv0rc8lck0ea2 on 44'/118'/16'/0/0) #16 js:2:coreum:core1xr8krhp99mp9ncrz6dfgre542nv0rc8lck0ea2:
✔️ transaction 
SEND MAX
TO core1xr8krhp99mp9ncrz6dfgre542nv0rc8lck0ea2

with fees=0.01495
STATUS (294ms)
  amount: 0.046335 CORE
  estimated fees: 0.01495 CORE
  total spent: 0.061285 CORE
errors: 
warnings: amount RecommendUndelegation
✔️ has been signed! (3.1s) 
✔️ broadcasted! (3.5s) optimistic operation: 
  -0.061285 CORE     OUT        74C0250726C49F429097EEF4854ECEE17D088DA6F0D58DE7087C3D32D1677085 2024-09-02T09:19
✔️ operation confirmed (0.13ms): 
  -0.061285 CORE     OUT        74C0250726C49F429097EEF4854ECEE17D088DA6F0D58DE7087C3D32D1677085 2024-09-02T09:19
✔️ undefined: 0.066765 CORE (140ops) (core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq on 44'/118'/1'/0/0) #1 js:2:coreum:core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq: (! sum of ops 0.112588 CORE) 0.061285 CORE spendable. 0.000001 CORE delegated. 0.005479 CORE unbonding. 
DELEGATIONS
  to corevaloper1cvllgp0rlm99cghwkg9y7syu8drc2325pzcvgu 0.000001 CORE  (claimable 0.000001)
UNDELEGATIONS
  from corevaloper10gq88py0q52xmf6wu6tytszee7durnwcw7e37f 0.005478 CORE
  from corevaloper1uhrrdv6g6v9t38v4qghjucunnxyk8xt30vr8za 0.000001 CORE
✔️ destination operation 
  ? -61285           OUT        74C0250726C49F429097EEF4854ECEE17D088DA6F0D58DE7087C3D32D1677085 2024-09-02T09:19

necessary accounts resynced in 0.14ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.078174 CORE (118ops) (core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux on 44'/118'/4'/0/0) #4 js:2:coreum:core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux: 0.078174 CORE spendable. 

max spendable ~0.063224
★ using mutation 'send some'
→ TO undefined: 0 CORE (62ops) (core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j on 44'/118'/12'/0/0) #12 js:2:coreum:core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j:
✔️ transaction 
SEND  0.040315 CORE
TO core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j

with fees=0.01495
  memo=LedgerLiveBot
STATUS (365ms)
  amount: 0.040315 CORE
  estimated fees: 0.01495 CORE
  total spent: 0.055265 CORE
errors: 
warnings: 
✔️ has been signed! (3.4s) 
✔️ broadcasted! (42ms) optimistic operation: 
  -0.055265 CORE     OUT        B0394D05243FBF9477D8BE1651240774A441D62D171C03ABF8380F25BF47B3B3 2024-09-02T09:19
✔️ operation confirmed (0.18ms): 
  -0.055265 CORE     OUT        B0394D05243FBF9477D8BE1651240774A441D62D171C03ABF8380F25BF47B3B3 2024-09-02T09:19
✔️ undefined: 0.078174 CORE (118ops) (core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux on 44'/118'/4'/0/0) #4 js:2:coreum:core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux: 0.078174 CORE spendable. 
✔️ destination operation 
  ? -55265           OUT        B0394D05243FBF9477D8BE1651240774A441D62D171C03ABF8380F25BF47B3B3 2024-09-02T09:19

necessary accounts resynced in 0.16ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.436585 CORE (134ops) (core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g on 44'/118'/7'/0/0) #7 js:2:coreum:core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g: (! sum of ops 0.431972 CORE) 0.345179 CORE spendable. 0.072709 CORE delegated. 0.018697 CORE unbonding. 
DELEGATIONS
  to corevaloper1p7fvyew8m8zjc5cqk7d9hpvx462vgvjnsxrzfh 0.009241 CORE  (claimable 0.009241)
  to corevaloper1d64a0wd7urnu8fqgv03kzymzgtr7lep5jakkgg 0.063468 CORE  (claimable 0.063468)
UNDELEGATIONS
  from corevaloper1kepnaw38rymdvq5sstnnytdqqkpd0xxwc5eqjk 0.011677 CORE
  from corevaloper1f3v67lpkha4hhruncehqzjmt6f6t2fdnua6rv9 0.00702 CORE
REDELEGATIONS
  from corevaloper1a7566scyxq5ae8xxlxdq3tayrtgeg0jfmtf697 to corevaloper1d64a0wd7urnu8fqgv03kzymzgtr7lep5jakkgg 0.004531 CORE
  from corevaloper1a7566scyxq5ae8xxlxdq3tayrtgeg0jfmtf697 to corevaloper1d64a0wd7urnu8fqgv03kzymzgtr7lep5jakkgg 0.000315 CORE

max spendable ~0.330229
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.003606 CORE
TO 
  0.003606 -> corevaloper1dh2vuvhtryv8wl62lrnuw9q5f8jf2ex5lp6glu
with fees=0.01924
  memo=LedgerLiveBot
STATUS (374ms)
  amount: 0.003606 CORE
  estimated fees: 0.01924 CORE
  total spent: 0.022846 CORE
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (42ms) optimistic operation: 
  -0.022846 CORE     DELEGATE   077CF76071691EDCC2B21D6122E6543142D59E0A7CA1676E71DCEF4D0101EDB5 2024-09-02T09:19
    to corevaloper1dh2vuvhtryv8wl62lrnuw9q5f8jf2ex5lp6glu 0.003606 CORE   
✔️ operation confirmed (0.16ms): 
  -0.022846 CORE     DELEGATE   077CF76071691EDCC2B21D6122E6543142D59E0A7CA1676E71DCEF4D0101EDB5 2024-09-02T09:19
    to corevaloper1dh2vuvhtryv8wl62lrnuw9q5f8jf2ex5lp6glu 0.003606 CORE   
✔️ undefined: 0.436585 CORE (134ops) (core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g on 44'/118'/7'/0/0) #7 js:2:coreum:core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g: (! sum of ops 0.431972 CORE) 0.345179 CORE spendable. 0.072709 CORE delegated. 0.018697 CORE unbonding. 
DELEGATIONS
  to corevaloper1p7fvyew8m8zjc5cqk7d9hpvx462vgvjnsxrzfh 0.009241 CORE  (claimable 0.009241)
  to corevaloper1d64a0wd7urnu8fqgv03kzymzgtr7lep5jakkgg 0.063468 CORE  (claimable 0.063468)
UNDELEGATIONS
  from corevaloper1kepnaw38rymdvq5sstnnytdqqkpd0xxwc5eqjk 0.011677 CORE
  from corevaloper1f3v67lpkha4hhruncehqzjmt6f6t2fdnua6rv9 0.00702 CORE
REDELEGATIONS
  from corevaloper1a7566scyxq5ae8xxlxdq3tayrtgeg0jfmtf697 to corevaloper1d64a0wd7urnu8fqgv03kzymzgtr7lep5jakkgg 0.004531 CORE
  from corevaloper1a7566scyxq5ae8xxlxdq3tayrtgeg0jfmtf697 to corevaloper1d64a0wd7urnu8fqgv03kzymzgtr7lep5jakkgg 0.000315 CORE

necessary accounts resynced in 0.12ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 4.81242 CORE (160ops) (core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea on 44'/118'/9'/0/0) #9 js:2:coreum:core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea: (! sum of ops 24.962131 CORE) 4.792347 CORE spendable. 0.020073 CORE delegated. 
DELEGATIONS
  to corevaloper1p7fvyew8m8zjc5cqk7d9hpvx462vgvjnsxrzfh 0.020073 CORE  (claimable 0.020073)
REDELEGATIONS
  from corevaloper1s98krc6xk9ttucpqc5eztz48m46js32thcfsmp to corevaloper1p7fvyew8m8zjc5cqk7d9hpvx462vgvjnsxrzfh 0.000376 CORE
  from corevaloper1s98krc6xk9ttucpqc5eztz48m46js32thcfsmp to corevaloper1p7fvyew8m8zjc5cqk7d9hpvx462vgvjnsxrzfh 0.000133 CORE
  from corevaloper1s98krc6xk9ttucpqc5eztz48m46js32thcfsmp to corevaloper1p7fvyew8m8zjc5cqk7d9hpvx462vgvjnsxrzfh 0.002941 CORE

max spendable ~4.77739
★ using mutation 'send some'
→ TO undefined: 0 CORE (106ops) (core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp on 44'/118'/6'/0/0) #6 js:2:coreum:core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp:
✔️ transaction 
SEND  2.45729 CORE
TO core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp

with fees=0.01495
  memo=LedgerLiveBot
STATUS (376ms)
  amount: 2.45729 CORE
  estimated fees: 0.01495 CORE
  total spent: 2.47224 CORE
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (42ms) optimistic operation: 
  -2.47224 CORE      OUT        FD94E09D8B51CAC558AAF5ABF9B4188D3C998BA4D6A73F833CF19F12B9C03046 2024-09-02T09:19
✔️ operation confirmed (0.20ms): 
  -2.47224 CORE      OUT        FD94E09D8B51CAC558AAF5ABF9B4188D3C998BA4D6A73F833CF19F12B9C03046 2024-09-02T09:19
✔️ undefined: 4.81242 CORE (160ops) (core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea on 44'/118'/9'/0/0) #9 js:2:coreum:core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea: (! sum of ops 24.962131 CORE) 4.792347 CORE spendable. 0.020073 CORE delegated. 
DELEGATIONS
  to corevaloper1p7fvyew8m8zjc5cqk7d9hpvx462vgvjnsxrzfh 0.020073 CORE  (claimable 0.020073)
REDELEGATIONS
  from corevaloper1s98krc6xk9ttucpqc5eztz48m46js32thcfsmp to corevaloper1p7fvyew8m8zjc5cqk7d9hpvx462vgvjnsxrzfh 0.000376 CORE
  from corevaloper1s98krc6xk9ttucpqc5eztz48m46js32thcfsmp to corevaloper1p7fvyew8m8zjc5cqk7d9hpvx462vgvjnsxrzfh 0.000133 CORE
  from corevaloper1s98krc6xk9ttucpqc5eztz48m46js32thcfsmp to corevaloper1p7fvyew8m8zjc5cqk7d9hpvx462vgvjnsxrzfh 0.002941 CORE
✔️ destination operation 
  ? -2472240         OUT        FD94E09D8B51CAC558AAF5ABF9B4188D3C998BA4D6A73F833CF19F12B9C03046 2024-09-02T09:19

necessary accounts resynced in 0.15ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 1.86312 CORE (142ops) (core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p on 44'/118'/11'/0/0) #11 js:2:coreum:core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p: (! sum of ops 1.939427 CORE) 1.403141 CORE spendable. 0.069767 CORE delegated. 0.390217 CORE unbonding. 
DELEGATIONS
  to corevaloper1gsneu9egj3u3tml383cw3cvya7ayegfk709msu 0.002009 CORE  (claimable 0.002009)
  to corevaloper1ll9gdh5ur6gyv6swgshcm4zkkw4ttakt0zghmr 0.067758 CORE  (claimable 0.067758)
UNDELEGATIONS
  from corevaloper1ll9gdh5ur6gyv6swgshcm4zkkw4ttakt0zghmr 0.030861 CORE
  from corevaloper1e80r50sasmashmtg0s2dapdafy6c22n66ylaje 0.359356 CORE

max spendable ~1.38819
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.002009 -> corevaloper1gsneu9egj3u3tml383cw3cvya7ayegfk709msu
with fees=0.02301
  memo=LedgerLiveBot
STATUS (271ms)
  amount: 0 CORE
  estimated fees: 0.02301 CORE
  total spent: 0.02301 CORE
errors: 
warnings: 
✔️ has been signed! (3.3s) 
✔️ broadcasted! (43ms) optimistic operation: 
  -0.02301 CORE      UNDELEGATE B1CEAC4E84952423F9588F37AA86182D2173E9C8FF7D2F001557835F556C09E8 2024-09-02T09:19
    to corevaloper1gsneu9egj3u3tml383cw3cvya7ayegfk709msu 0.002009 CORE   
✔️ operation confirmed (0.18ms): 
  -0.02301 CORE      UNDELEGATE B1CEAC4E84952423F9588F37AA86182D2173E9C8FF7D2F001557835F556C09E8 2024-09-02T09:19
    to corevaloper1gsneu9egj3u3tml383cw3cvya7ayegfk709msu 0.002009 CORE   
✔️ undefined: 1.86312 CORE (142ops) (core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p on 44'/118'/11'/0/0) #11 js:2:coreum:core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p: (! sum of ops 1.939427 CORE) 1.403141 CORE spendable. 0.069767 CORE delegated. 0.390217 CORE unbonding. 
DELEGATIONS
  to corevaloper1gsneu9egj3u3tml383cw3cvya7ayegfk709msu 0.002009 CORE  (claimable 0.002009)
  to corevaloper1ll9gdh5ur6gyv6swgshcm4zkkw4ttakt0zghmr 0.067758 CORE  (claimable 0.067758)
UNDELEGATIONS
  from corevaloper1ll9gdh5ur6gyv6swgshcm4zkkw4ttakt0zghmr 0.030861 CORE
  from corevaloper1e80r50sasmashmtg0s2dapdafy6c22n66ylaje 0.359356 CORE


Spec injective (failed)


Details of the 49 uncovered mutations

Spec axelar (2)

  • redelegate: balance is too low for redelegate (11), none can redelegate (2)
  • claim rewards: balance is too low for claim rewards (10), no delegation to claim (3)

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 (2)

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

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)

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

Spec persistence (1)

  • claim rewards: balance is too low for claim rewards (7), no delegation to claim (5)

Spec quicksilver (3)

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

Spec onomy (1)

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

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 (1)

  • redelegate: balance is too low for redelegate (9), none can redelegate (3)

Spec coreum (2)

  • redelegate: balance is too low for redelegate (9), Cannot read properties of undefined (reading 'validatorAddress') (1), none can redelegate (3)
  • claim rewards: balance is too low for claim rewards (9), no delegation to claim (4)

Spec injective (6)

  • send some:
  • send max:
  • delegate new validators:
  • undelegate:
  • redelegate:
  • claim rewards:
Portfolio ($16.70) – Details of the 14 currencies
Spec (accounts) State Remaining Runs (est) funds?
axelar (18) 0 ops , 1.55982 AXL ($0.83) axelar1rs97j43nfyvc689y5rjvnnhrq3tes6ghlj7dgv
cosmos (10) 115 ops , 0.024273 ATOM ($0.11) ⚠️ 0 cosmos1rs97j43nfyvc689y5rjvnnhrq3tes6ghmug9rd
osmosis (0) 0 ops , 🤷‍♂️ ``
desmos (18) 590 ops , 138.11 DSM ($0.71) 💪 999+ desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454
dydx (18) 0 ops , 0.00956286 dydx ($0.01) dydx1rs97j43nfyvc689y5rjvnnhrq3tes6ghj9xpr6
umee (18) 9 ops , 712.813 UMEE ($0.68) 💪 999+ umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l
persistence (18) 1612 ops , 25.8267 XPRT ($5.39) 💪 617 persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf
quicksilver (18) 3 ops , 20.1364 QCK ($0.20) 💪 999+ quick1rs97j43nfyvc689y5rjvnnhrq3tes6ghscch6l
onomy (18) 1182 ops , 1.80604 NOM ($0.06) 💪 999+ onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg
secret_network (0) 0 ops , 🤷‍♂️ ``
sei_network (0) 0 ops , 🤷‍♂️ ``
stargaze (18) 8 ops , 802.908 STARS ($6.27) 💪 602 stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu
coreum (18) 1949 ops , 36.6126 CORE ($2.44) 👍 206 core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk
injective (0) 0 ops , 🤷‍♂️ ``
undefined: 0.00604 AXL (0ops) (axelar1rs97j43nfyvc689y5rjvnnhrq3tes6ghlj7dgv on 44'/118'/0'/0/0) #0 js:2:axelar:axelar1rs97j43nfyvc689y5rjvnnhrq3tes6ghlj7dgv:
undefined: 0.013701 AXL (0ops) (axelar1qvtnzptp30maznnhdg30xl2jtdq2shpnrjn7q6 on 44'/118'/1'/0/0) #1 js:2:axelar:axelar1qvtnzptp30maznnhdg30xl2jtdq2shpnrjn7q6:
undefined: 0 AXL (0ops) (axelar1vvzwc6l3wfdaqa9rncex8k2uwtpwztswuwmwtl on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1vvzwc6l3wfdaqa9rncex8k2uwtpwztswuwmwtl:
undefined: 0.064072 AXL (0ops) (axelar1hgyf054qztvmty3cayuw9nedftlhejv500ntj9 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar1hgyf054qztvmty3cayuw9nedftlhejv500ntj9:
undefined: 0 AXL (0ops) (axelar1vc7s929uh2yxyhau4wsg5th9jzedvkur8jxcsu on 44'/118'/4'/0/0) #4 js:2:axelar:axelar1vc7s929uh2yxyhau4wsg5th9jzedvkur8jxcsu:
undefined: 0.014171 AXL (0ops) (axelar1qgrd8srhvald995uvpeyncvwg7afgkmrtj4eda on 44'/118'/5'/0/0) #5 js:2:axelar:axelar1qgrd8srhvald995uvpeyncvwg7afgkmrtj4eda:
undefined: 0 AXL (0ops) (axelar1n6vccpa77x7xyhnk98jy6gg3rmgjkazxs3njwm on 44'/118'/6'/0/0) #6 js:2:axelar:axelar1n6vccpa77x7xyhnk98jy6gg3rmgjkazxs3njwm:
undefined: 0.160518 AXL (0ops) (axelar1v283e7h2plllyjwgqrexv2ge5e4z252ux0dhaj on 44'/118'/7'/0/0) #7 js:2:axelar:axelar1v283e7h2plllyjwgqrexv2ge5e4z252ux0dhaj:
undefined: 0.010183 AXL (0ops) (axelar1g9t7sv8y0mvu2qd0xguc40xujnu94rh58vnyh7 on 44'/118'/8'/0/0) #8 js:2:axelar:axelar1g9t7sv8y0mvu2qd0xguc40xujnu94rh58vnyh7:
undefined: 0.350394 AXL (0ops) (axelar1jgk668h53gd9wn09mndq7uzgk80nr5d8x7xw48 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar1jgk668h53gd9wn09mndq7uzgk80nr5d8x7xw48:
undefined: 0.011418 AXL (0ops) (axelar1733g3dfzj6tulcqtvz628ypuqj0hvlrz0fkn95 on 44'/118'/10'/0/0) #10 js:2:axelar:axelar1733g3dfzj6tulcqtvz628ypuqj0hvlrz0fkn95:
undefined: 0 AXL (0ops) (axelar1q09970dekm5hdku5tta7p9w6kldyyf252uahem on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1q09970dekm5hdku5tta7p9w6kldyyf252uahem:
undefined: 0.09883 AXL (0ops) (axelar1yhlye27fl05kg4nhmeu5d579m8ups9ewjqsjfg on 44'/118'/12'/0/0) #12 js:2:axelar:axelar1yhlye27fl05kg4nhmeu5d579m8ups9ewjqsjfg:
undefined: 0.032713 AXL (0ops) (axelar1890w5jltm6wmq2jr9f9e8x4vhs5fx30q563y9k on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1890w5jltm6wmq2jr9f9e8x4vhs5fx30q563y9k:
undefined: 0.464741 AXL (0ops) (axelar1yq6ehsdwpsvae9exgjmzt4dx78y4j5apuslc07 on 44'/118'/14'/0/0) #14 js:2:axelar:axelar1yq6ehsdwpsvae9exgjmzt4dx78y4j5apuslc07:
undefined: 0.309191 AXL (0ops) (axelar10wwjgt3uluxt4zq4qxnkcv96nyz4catanqfeq0 on 44'/118'/15'/0/0) #15 js:2:axelar:axelar10wwjgt3uluxt4zq4qxnkcv96nyz4catanqfeq0:
undefined: 0.051714 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.000401 DSM (28ops) (desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454 on 44'/118'/0'/0/0) #0 js:2:desmos:desmos1rs97j43nfyvc689y5rjvnnhrq3tes6gh0y9454:
undefined: 0.001566 DSM (30ops) (desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur on 44'/118'/1'/0/0) #1 js:2:desmos:desmos1qvtnzptp30maznnhdg30xl2jtdq2shpnnygxur:
undefined: 0.000779 DSM (23ops) (desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx on 44'/118'/2'/0/0) #2 js:2:desmos:desmos1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvcqkhx:
undefined: 0 DSM (41ops) (desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu on 44'/118'/3'/0/0) #3 js:2:desmos:desmos1hgyf054qztvmty3cayuw9nedftlhejv5legnwu:
undefined: 0.000522 DSM (41ops) (desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9 on 44'/118'/4'/0/0) #4 js:2:desmos:desmos1vc7s929uh2yxyhau4wsg5th9jzedvkurhyaqv9:
undefined: 0.000425 DSM (54ops) (desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y on 44'/118'/5'/0/0) #5 js:2:desmos:desmos1qgrd8srhvald995uvpeyncvwg7afgkmrmywp3y:
undefined: 0.000362 DSM (33ops) (desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz on 44'/118'/6'/0/0) #6 js:2:desmos:desmos1n6vccpa77x7xyhnk98jy6gg3rmgjkazxq8g2jz:
undefined: 0 DSM (25ops) (desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt on 44'/118'/7'/0/0) #7 js:2:desmos:desmos1v283e7h2plllyjwgqrexv2ge5e4z252ukek0pt:
undefined: 0.016736 DSM (35ops) (desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8 on 44'/118'/8'/0/0) #8 js:2:desmos:desmos1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h6gut8:
undefined: 0.004912 DSM (44ops) (desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7 on 44'/118'/9'/0/0) #9 js:2:desmos:desmos1jgk668h53gd9wn09mndq7uzgk80nr5d8kgakf7:
undefined: 0.000325 DSM (30ops) (desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted on 44'/118'/10'/0/0) #10 js:2:desmos:desmos1733g3dfzj6tulcqtvz628ypuqj0hvlrzlldted:
undefined: 0.021416 DSM (12ops) (desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z on 44'/118'/11'/0/0) #11 js:2:desmos:desmos1q09970dekm5hdku5tta7p9w6kldyyf2562x09z:
undefined: 0 DSM (15ops) (desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243 on 44'/118'/12'/0/0) #12 js:2:desmos:desmos1yhlye27fl05kg4nhmeu5d579m8ups9ewzkt243:
undefined: 52.6749 DSM (84ops) (desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0 on 44'/118'/13'/0/0) #13 js:2:desmos:desmos1890w5jltm6wmq2jr9f9e8x4vhs5fx30qyv2ue0:
undefined: 16.6309 DSM (15ops) (desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8 on 44'/118'/14'/0/0) #14 js:2:desmos:desmos1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvxyqn8:
undefined: 39.4326 DSM (69ops) (desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk on 44'/118'/15'/0/0) #15 js:2:desmos:desmos10wwjgt3uluxt4zq4qxnkcv96nyz4catarkjpuk:
undefined: 36.1 DSM (11ops) (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 (0ops) (dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv on 44'/118'/1'/0/0) #1 js:2:dydx:dydx1qvtnzptp30maznnhdg30xl2jtdq2shpnw9tjtv:
undefined: 0.00081036 dydx (0ops) (dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf on 44'/118'/2'/0/0) #2 js:2:dydx:dydx1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw3erzqf:
undefined: 0.00103948 dydx (0ops) (dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en on 44'/118'/3'/0/0) #3 js:2:dydx:dydx1hgyf054qztvmty3cayuw9nedftlhejv5zct8en:
undefined: 0 dydx (0ops) (dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2 on 44'/118'/4'/0/0) #4 js:2:dydx:dydx1vc7s929uh2yxyhau4wsg5th9jzedvkur2975m2:
undefined: 0.00034181 dydx (0ops) (dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt on 44'/118'/5'/0/0) #5 js:2:dydx:dydx1qgrd8srhvald995uvpeyncvwg7afgkmrx9d4xt:
undefined: 0.00123005 dydx (0ops) (dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d on 44'/118'/6'/0/0) #6 js:2:dydx:dydx1n6vccpa77x7xyhnk98jy6gg3rmgjkazxaxt79d:
undefined: 0.0005327 dydx (0ops) (dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky on 44'/118'/7'/0/0) #7 js:2:dydx:dydx1v283e7h2plllyjwgqrexv2ge5e4z252utc4mky:
undefined: 0.00108568 dydx (0ops) (dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug on 44'/118'/8'/0/0) #8 js:2:dydx:dydx1g9t7sv8y0mvu2qd0xguc40xujnu94rh52mtgug:
undefined: 0.00002859 dydx (0ops) (dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73 on 44'/118'/9'/0/0) #9 js:2:dydx:dydx1jgk668h53gd9wn09mndq7uzgk80nr5d8tf7z73:
undefined: 0.00032301 dydx (0ops) (dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz on 44'/118'/10'/0/0) #10 js:2:dydx:dydx1733g3dfzj6tulcqtvz628ypuqj0hvlrzz7wlwz:
undefined: 0.00079267 dydx (0ops) (dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd on 44'/118'/11'/0/0) #11 js:2:dydx:dydx1q09970dekm5hdku5tta7p9w6kldyyf258t9mjd:
undefined: 0.00117506 dydx (0ops) (dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7 on 44'/118'/12'/0/0) #12 js:2:dydx:dydx1yhlye27fl05kg4nhmeu5d579m8ups9ewlhg7z7:
undefined: 0.0133491 dydx (0ops) (dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq on 44'/118'/13'/0/0) #13 js:2:dydx:dydx1890w5jltm6wmq2jr9f9e8x4vhs5fx30qedfgwq:
undefined: 0.00070996 dydx (0ops) (dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg on 44'/118'/14'/0/0) #14 js:2:dydx:dydx1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap3885yg:
undefined: 0.00090914 dydx (0ops) (dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te on 44'/118'/15'/0/0) #15 js:2:dydx:dydx10wwjgt3uluxt4zq4qxnkcv96nyz4cata7h34te:
undefined: 0 dydx (0ops) (dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x on 44'/118'/16'/0/0) #16 js:2:dydx:dydx1xr8krhp99mp9ncrz6dfgre542nv0rc8lzpex6x:
undefined: 0 dydx (0ops) (dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku on 44'/118'/17'/0/0) #17 js:2:dydx:dydx102w826rmvswfhs4zsv2ujhylmd92c28pma4tku:
undefined: 0 UMEE (0ops) (umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l on 44'/118'/0'/0/0) #0 js:2:umee:umee1rs97j43nfyvc689y5rjvnnhrq3tes6ghf2468l:
undefined: 0.073343 UMEE (0ops) (umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f on 44'/118'/1'/0/0) #1 js:2:umee:umee1qvtnzptp30maznnhdg30xl2jtdq2shpn42cf0f:
undefined: 0 UMEE (0ops) (umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv on 44'/118'/2'/0/0) #2 js:2:umee:umee1vvzwc6l3wfdaqa9rncex8k2uwtpwztsw2kseyv:
undefined: 0.071302 UMEE (0ops) (umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak on 44'/118'/3'/0/0) #3 js:2:umee:umee1hgyf054qztvmty3cayuw9nedftlhejv5ehcuak:
undefined: 1.22154 UMEE (1ops) (umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0 on 44'/118'/4'/0/0) #4 js:2:umee:umee1vc7s929uh2yxyhau4wsg5th9jzedvkur32d0l0:
undefined: 5.44187 UMEE (2ops) (umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw on 44'/118'/5'/0/0) #5 js:2:umee:umee1qgrd8srhvald995uvpeyncvwg7afgkmra27wzw:
undefined: 0.17817 UMEE (1ops) (umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg on 44'/118'/6'/0/0) #6 js:2:umee:umee1n6vccpa77x7xyhnk98jy6gg3rmgjkazxxfc9pg:
undefined: 7.57655 UMEE (1ops) (umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp on 44'/118'/7'/0/0) #7 js:2:umee:umee1v283e7h2plllyjwgqrexv2ge5e4z252ushxqjp:
undefined: 0.903327 UMEE (2ops) (umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd on 44'/118'/8'/0/0) #8 js:2:umee:umee1g9t7sv8y0mvu2qd0xguc40xujnu94rh535cncd:
undefined: 0.019029 UMEE (1ops) (umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65 on 44'/118'/9'/0/0) #9 js:2:umee:umee1jgk668h53gd9wn09mndq7uzgk80nr5d8sxde65:
undefined: 0 UMEE (0ops) (umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28 on 44'/118'/10'/0/0) #10 js:2:umee:umee1733g3dfzj6tulcqtvz628ypuqj0hvlrze3ay28:
undefined: 0.066134 UMEE (0ops) (umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg on 44'/118'/11'/0/0) #11 js:2:umee:umee1q09970dekm5hdku5tta7p9w6kldyyf25uykqkg:
undefined: 0.585499 UMEE (0ops) (umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm on 44'/118'/12'/0/0) #12 js:2:umee:umee1yhlye27fl05kg4nhmeu5d579m8ups9ewycm9xm:
undefined: 63.6618 UMEE (1ops) (umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29 on 44'/118'/13'/0/0) #13 js:2:umee:umee1890w5jltm6wmq2jr9f9e8x4vhs5fx30qzz6n29:
undefined: 34.7159 UMEE (0ops) (umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd on 44'/118'/14'/0/0) #14 js:2:umee:umee1yq6ehsdwpsvae9exgjmzt4dx78y4j5ap2g50qd:
undefined: 417.618 UMEE (0ops) (umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u on 44'/118'/15'/0/0) #15 js:2:umee:umee10wwjgt3uluxt4zq4qxnkcv96nyz4cata9czw0u:
undefined: 196.308 UMEE (0ops) (umee1xr8krhp99mp9ncrz6dfgre542nv0rc8lew2a7r on 44'/118'/16'/0/0) #16 js:2:umee:umee1xr8krhp99mp9ncrz6dfgre542nv0rc8lew2a7r:
undefined: 0 UMEE (0ops) (umee102w826rmvswfhs4zsv2ujhylmd92c28pqjxsje on 44'/118'/17'/0/0) #17 js:2:umee:umee102w826rmvswfhs4zsv2ujhylmd92c28pqjxsje:
undefined: 0 XPRT (87ops) (persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf on 44'/118'/0'/0/0) #0 js:2:persistence:persistence1rs97j43nfyvc689y5rjvnnhrq3tes6gh4swkdf:
undefined: 0.336591 XPRT (77ops) (persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l on 44'/118'/1'/0/0) #1 js:2:persistence:persistence1qvtnzptp30maznnhdg30xl2jtdq2shpnfsr99l:
undefined: 0.29121 XPRT (75ops) (persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6 on 44'/118'/2'/0/0) #2 js:2:persistence:persistence1vvzwc6l3wfdaqa9rncex8k2uwtpwztswkvt4w6:
undefined: 0.00472 XPRT (122ops) (persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq on 44'/118'/3'/0/0) #3 js:2:persistence:persistence1hgyf054qztvmty3cayuw9nedftlhejv59drshq:
undefined: 0 XPRT (30ops) (persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e on 44'/118'/4'/0/0) #4 js:2:persistence:persistence1vc7s929uh2yxyhau4wsg5th9jzedvkurdskr4e:
undefined: 0.0207 XPRT (75ops) (persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc on 44'/118'/5'/0/0) #5 js:2:persistence:persistence1qgrd8srhvald995uvpeyncvwg7afgkmrps9zgc:
undefined: 0 XPRT (123ops) (persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7 on 44'/118'/6'/0/0) #6 js:2:persistence:persistence1n6vccpa77x7xyhnk98jy6gg3rmgjkazx6nrft7:
undefined: 1.25918 XPRT (187ops) (persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch on 44'/118'/7'/0/0) #7 js:2:persistence:persistence1v283e7h2plllyjwgqrexv2ge5e4z252uvdavch:
undefined: 0 XPRT (80ops) (persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm on 44'/118'/8'/0/0) #8 js:2:persistence:persistence1g9t7sv8y0mvu2qd0xguc40xujnu94rh5dwrljm:
undefined: 1.99074 XPRT (170ops) (persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz on 44'/118'/9'/0/0) #9 js:2:persistence:persistence1jgk668h53gd9wn09mndq7uzgk80nr5d8vuk4sz:
undefined: 0.960078 XPRT (94ops) (persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3 on 44'/118'/10'/0/0) #10 js:2:persistence:persistence1733g3dfzj6tulcqtvz628ypuqj0hvlrz9txgq3:
undefined: 0 XPRT (106ops) (persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7 on 44'/118'/11'/0/0) #11 js:2:persistence:persistence1q09970dekm5hdku5tta7p9w6kldyyf25q7dvu7:
undefined: 0.086935 XPRT (69ops) (persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd on 44'/118'/12'/0/0) #12 js:2:persistence:persistence1yhlye27fl05kg4nhmeu5d579m8ups9ewczqfvd:
undefined: 1.01203 XPRT (145ops) (persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn on 44'/118'/13'/0/0) #13 js:2:persistence:persistence1890w5jltm6wmq2jr9f9e8x4vhs5fx30q7cplqn:
undefined: 5.8717 XPRT (44ops) (persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m on 44'/118'/14'/0/0) #14 js:2:persistence:persistence1yq6ehsdwpsvae9exgjmzt4dx78y4j5apkj0r2m:
undefined: 9.15983 XPRT (90ops) (persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92 on 44'/118'/15'/0/0) #15 js:2:persistence:persistence10wwjgt3uluxt4zq4qxnkcv96nyz4cataezez92:
undefined: 6.56376 XPRT (38ops) (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.000339 QCK (0ops) (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 QCK (0ops) (quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev on 44'/118'/2'/0/0) #2 js:2:quicksilver:quick1vvzwc6l3wfdaqa9rncex8k2uwtpwztswnya5ev:
undefined: 0.009388 QCK (0ops) (quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk on 44'/118'/3'/0/0) #3 js:2:quicksilver:quick1hgyf054qztvmty3cayuw9nedftlhejv5q943qk:
undefined: 0.00034 QCK (0ops) (quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0 on 44'/118'/4'/0/0) #4 js:2:quicksilver:quick1vc7s929uh2yxyhau4wsg5th9jzedvkurgcqzz0:
undefined: 0.001372 QCK (0ops) (quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw on 44'/118'/5'/0/0) #5 js:2:quicksilver:quick1qgrd8srhvald995uvpeyncvwg7afgkmrycnrlw:
undefined: 0 QCK (0ops) (quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug on 44'/118'/6'/0/0) #6 js:2:quicksilver:quick1n6vccpa77x7xyhnk98jy6gg3rmgjkazxlm4gug:
undefined: 0.854709 QCK (0ops) (quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p on 44'/118'/7'/0/0) #7 js:2:quicksilver:quick1v283e7h2plllyjwgqrexv2ge5e4z252uf9td0p:
undefined: 0.000513 QCK (0ops) (quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d on 44'/118'/8'/0/0) #8 js:2:quicksilver:quick1g9t7sv8y0mvu2qd0xguc40xujnu94rh5gx479d:
undefined: 0.000366 QCK (0ops) (quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585 on 44'/118'/9'/0/0) #9 js:2:quicksilver:quick1jgk668h53gd9wn09mndq7uzgk80nr5d8f5q585:
undefined: 0 QCK (0ops) (quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8 on 44'/118'/10'/0/0) #10 js:2:quicksilver:quick1733g3dfzj6tulcqtvz628ypuqj0hvlrzqrsfh8:
undefined: 0.026117 QCK (0ops) (quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg on 44'/118'/11'/0/0) #11 js:2:quicksilver:quick1q09970dekm5hdku5tta7p9w6kldyyf259kmdtg:
undefined: 0 QCK (1ops) (quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm on 44'/118'/12'/0/0) #12 js:2:quicksilver:quick1yhlye27fl05kg4nhmeu5d579m8ups9ewa2kgmm:
undefined: 5.66294 QCK (0ops) (quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9 on 44'/118'/13'/0/0) #13 js:2:quicksilver:quick1890w5jltm6wmq2jr9f9e8x4vhs5fx30qmsh7h9:
undefined: 1.36168 QCK (2ops) (quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad on 44'/118'/14'/0/0) #14 js:2:quicksilver:quick1yq6ehsdwpsvae9exgjmzt4dx78y4j5apn6ezad:
undefined: 3.76677 QCK (0ops) (quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju on 44'/118'/15'/0/0) #15 js:2:quicksilver:quick10wwjgt3uluxt4zq4qxnkcv96nyz4catau20rju:
undefined: 11.3643 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 (52ops) (onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg on 44'/118'/0'/0/0) #0 js:2:onomy:onomy1rs97j43nfyvc689y5rjvnnhrq3tes6ghpaunjg:
undefined: 0.00001594 NOM (99ops) (onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67 on 44'/118'/1'/0/0) #1 js:2:onomy:onomy1qvtnzptp30maznnhdg30xl2jtdq2shpnaa3q67:
undefined: 0 NOM (72ops) (onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m on 44'/118'/2'/0/0) #2 js:2:onomy:onomy1vvzwc6l3wfdaqa9rncex8k2uwtpwztswzpes3m:
undefined: 0.00000793 NOM (129ops) (onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp on 44'/118'/3'/0/0) #3 js:2:onomy:onomy1hgyf054qztvmty3cayuw9nedftlhejv53q34gp:
undefined: 0 NOM (64ops) (onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c on 44'/118'/4'/0/0) #4 js:2:onomy:onomy1vc7s929uh2yxyhau4wsg5th9jzedvkureayx2c:
undefined: 0.00001201 NOM (123ops) (onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he on 44'/118'/5'/0/0) #5 js:2:onomy:onomy1qgrd8srhvald995uvpeyncvwg7afgkmr4ah8he:
undefined: 0 NOM (80ops) (onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l on 44'/118'/6'/0/0) #6 js:2:onomy:onomy1n6vccpa77x7xyhnk98jy6gg3rmgjkazxw73v5l:
undefined: 0.00000047 NOM (123ops) (onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k on 44'/118'/7'/0/0) #7 js:2:onomy:onomy1v283e7h2plllyjwgqrexv2ge5e4z252ucq0f8k:
undefined: 0.0000001 NOM (58ops) (onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6 on 44'/118'/8'/0/0) #8 js:2:onomy:onomy1g9t7sv8y0mvu2qd0xguc40xujnu94rh5er36d6:
undefined: 0.0000046 NOM (126ops) (onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r on 44'/118'/9'/0/0) #9 js:2:onomy:onomy1jgk668h53gd9wn09mndq7uzgk80nr5d8c3ys0r:
undefined: 0.00000082 NOM (33ops) (onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls on 44'/118'/10'/0/0) #10 js:2:onomy:onomy1733g3dfzj6tulcqtvz628ypuqj0hvlrz3x5dls:
undefined: 0.00076335 NOM (93ops) (onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl on 44'/118'/11'/0/0) #11 js:2:onomy:onomy1q09970dekm5hdku5tta7p9w6kldyyf255nlfrl:
undefined: 0.00110231 NOM (29ops) (onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv on 44'/118'/12'/0/0) #12 js:2:onomy:onomy1yhlye27fl05kg4nhmeu5d579m8ups9ewv0jvnv:
undefined: 0.216351 NOM (26ops) (onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj on 44'/118'/13'/0/0) #13 js:2:onomy:onomy1890w5jltm6wmq2jr9f9e8x4vhs5fx30q24n6lj:
undefined: 0.399884 NOM (35ops) (onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46 on 44'/118'/14'/0/0) #14 js:2:onomy:onomy1yq6ehsdwpsvae9exgjmzt4dx78y4j5apzlax46:
undefined: 0.0528679 NOM (15ops) (onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t on 44'/118'/15'/0/0) #15 js:2:onomy:onomy10wwjgt3uluxt4zq4qxnkcv96nyz4catad0t86t:
undefined: 1.1353 NOM (25ops) (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 (1ops) (stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu on 44'/118'/0'/0/0) #0 js:2:stargaze:stars1rs97j43nfyvc689y5rjvnnhrq3tes6gh0qlcgu:
undefined: 0.559142 STARS (0ops) (stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2 on 44'/118'/1'/0/0) #1 js:2:stargaze:stars1qvtnzptp30maznnhdg30xl2jtdq2shpnnqjtq2:
undefined: 0 STARS (0ops) (stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0 on 44'/118'/2'/0/0) #2 js:2:stargaze:stars1vvzwc6l3wfdaqa9rncex8k2uwtpwztswvu6mt0:
undefined: 0.565555 STARS (1ops) (stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4 on 44'/118'/3'/0/0) #3 js:2:stargaze:stars1hgyf054qztvmty3cayuw9nedftlhejv5laj7j4:
undefined: 0.123852 STARS (0ops) (stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv on 44'/118'/4'/0/0) #4 js:2:stargaze:stars1vc7s929uh2yxyhau4wsg5th9jzedvkurhq8dsv:
undefined: 0.23511 STARS (1ops) (stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd on 44'/118'/5'/0/0) #5 js:2:stargaze:stars1qgrd8srhvald995uvpeyncvwg7afgkmrmq5vdd:
undefined: 0.112748 STARS (1ops) (stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt on 44'/118'/6'/0/0) #6 js:2:stargaze:stars1n6vccpa77x7xyhnk98jy6gg3rmgjkazxqrj8wt:
undefined: 1.31284 STARS (1ops) (stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz on 44'/118'/7'/0/0) #7 js:2:stargaze:stars1v283e7h2plllyjwgqrexv2ge5e4z252ukavzaz:
undefined: 0 STARS (0ops) (stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw on 44'/118'/8'/0/0) #8 js:2:stargaze:stars1g9t7sv8y0mvu2qd0xguc40xujnu94rh5h7j3hw:
undefined: 0.051315 STARS (0ops) (stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h on 44'/118'/9'/0/0) #9 js:2:stargaze:stars1jgk668h53gd9wn09mndq7uzgk80nr5d8kv8m4h:
undefined: 1.51681 STARS (0ops) (stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y on 44'/118'/10'/0/0) #10 js:2:stargaze:stars1733g3dfzj6tulcqtvz628ypuqj0hvlrzlmhx9y:
undefined: 2.25024 STARS (1ops) (stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet on 44'/118'/11'/0/0) #11 js:2:stargaze:stars1q09970dekm5hdku5tta7p9w6kldyyf256wuzet:
undefined: 3.97283 STARS (0ops) (stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc on 44'/118'/12'/0/0) #12 js:2:stargaze:stars1yhlye27fl05kg4nhmeu5d579m8ups9ewzj38fc:
undefined: 16.4129 STARS (2ops) (stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x on 44'/118'/13'/0/0) #13 js:2:stargaze:stars1890w5jltm6wmq2jr9f9e8x4vhs5fx30qygs39x:
undefined: 10.4518 STARS (0ops) (stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w on 44'/118'/14'/0/0) #14 js:2:stargaze:stars1yq6ehsdwpsvae9exgjmzt4dx78y4j5apvz7d0w:
undefined: 463.111 STARS (0ops) (stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql on 44'/118'/15'/0/0) #15 js:2:stargaze:stars10wwjgt3uluxt4zq4qxnkcv96nyz4catarjgvql:
undefined: 337.79 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 (88ops) (core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk on 44'/118'/0'/0/0) #0 js:2:coreum:core1rs97j43nfyvc689y5rjvnnhrq3tes6ghgjs7yk:
undefined: 0.066765 CORE (140ops) (core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq on 44'/118'/1'/0/0) #1 js:2:coreum:core1qvtnzptp30maznnhdg30xl2jtdq2shpn5jadvq:
undefined: 0 CORE (133ops) (core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89 on 44'/118'/2'/0/0) #2 js:2:coreum:core1vvzwc6l3wfdaqa9rncex8k2uwtpwztswtw4a89:
undefined: 0.03624 CORE (166ops) (core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l on 44'/118'/3'/0/0) #3 js:2:coreum:core1hgyf054qztvmty3cayuw9nedftlhejv5c0ac7l:
undefined: 0.078174 CORE (118ops) (core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux on 44'/118'/4'/0/0) #4 js:2:coreum:core1vc7s929uh2yxyhau4wsg5th9jzedvkursjgtux:
undefined: 0.02643 CORE (147ops) (core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8 on 44'/118'/5'/0/0) #5 js:2:coreum:core1qgrd8srhvald995uvpeyncvwg7afgkmrujm2p8:
undefined: 0 CORE (106ops) (core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp on 44'/118'/6'/0/0) #6 js:2:coreum:core1n6vccpa77x7xyhnk98jy6gg3rmgjkazx83apzp:
undefined: 0.436585 CORE (134ops) (core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g on 44'/118'/7'/0/0) #7 js:2:coreum:core1v283e7h2plllyjwgqrexv2ge5e4z252u30ry3g:
undefined: 0 CORE (92ops) (core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy on 44'/118'/8'/0/0) #8 js:2:coreum:core1g9t7sv8y0mvu2qd0xguc40xujnu94rh5svahmy:
undefined: 4.81242 CORE (160ops) (core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea on 44'/118'/9'/0/0) #9 js:2:coreum:core1jgk668h53gd9wn09mndq7uzgk80nr5d837gaea:
undefined: 0 CORE (89ops) (core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw on 44'/118'/10'/0/0) #10 js:2:coreum:core1733g3dfzj6tulcqtvz628ypuqj0hvlrzcfcqfw:
undefined: 1.86312 CORE (142ops) (core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p on 44'/118'/11'/0/0) #11 js:2:coreum:core1q09970dekm5hdku5tta7p9w6kldyyf25auny4p:
undefined: 0 CORE (62ops) (core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j on 44'/118'/12'/0/0) #12 js:2:coreum:core1yhlye27fl05kg4nhmeu5d579m8ups9ew9q7p9j:
undefined: 11.9804 CORE (150ops) (core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv on 44'/118'/13'/0/0) #13 js:2:coreum:core1890w5jltm6wmq2jr9f9e8x4vhs5fx30qr6lhfv:
undefined: 1.82895 CORE (70ops) (core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try on 44'/118'/14'/0/0) #14 js:2:coreum:core1yq6ehsdwpsvae9exgjmzt4dx78y4j5apts3try:
undefined: 6.94857 CORE (113ops) (core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4 on 44'/118'/15'/0/0) #15 js:2:coreum:core10wwjgt3uluxt4zq4qxnkcv96nyz4catayq82v4:
undefined: 9.80488 CORE (39ops) (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 4.5s 3min 3s 21ms 22s 2min 27s 6.5s 7ms N/A
axelar (17) 207ms 7s 2.48ms 2244ms 16.9s 290ms 1.07ms N/A
cosmos (9) 317ms 9.2s 1.09ms N/A N/A N/A N/A N/A
osmosis (0) 267ms N/A N/A N/A N/A N/A N/A N/A
desmos (17) 219ms 12.1s 1.87ms 2491ms 16.8s 155ms 0.73ms N/A
dydx (17) 763ms 23.9s 2.02ms N/A N/A N/A N/A N/A
umee (17) 330ms 7.2s 2.00ms 2213ms 19.2s 390ms 0.86ms N/A
persistence (17) 862ms 40.8s 2.52ms 6.4s 21.9s 940ms 1.09ms N/A
quicksilver (17) 322ms 34.7s 2.17ms 1345ms 12.9s 192ms 0.60ms N/A
onomy (17) 329ms 19.5s 2.04ms 3.3s 22.9s 536ms 1.03ms N/A
secret_network (0) N/A N/A N/A N/A N/A N/A N/A N/A
sei_network (0) 164ms N/A N/A N/A N/A N/A N/A N/A
stargaze (17) 231ms 7.1s 2.01ms 2303ms 20.4s 371ms 0.94ms N/A
coreum (17) 256ms 21.9s 2.43ms 1680ms 16.4s 3.7s 0.85ms N/A
injective (0) 280ms 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.