Skip to content

Commit

Permalink
💄(llm): ui and message on receive confirmation screen (#7868)
Browse files Browse the repository at this point in the history
💄(llm): ui and message on receive confirmation screen
  • Loading branch information
LucasWerey authored Sep 25, 2024
1 parent 2f71fec commit 4847469
Show file tree
Hide file tree
Showing 5 changed files with 77 additions and 44 deletions.
5 changes: 5 additions & 0 deletions .changeset/green-starfishes-suffer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"live-mobile": patch
---

add change address disclaimer for utxos accounts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ import { useCompleteActionCallback } from "~/renderer/components/PostOnboardingH
import { getDefaultAccountName } from "@ledgerhq/live-wallet/accountName";
import { useMaybeAccountName } from "~/renderer/reducers/wallet";
import { UTXOAddressAlert } from "~/renderer/components/UTXOAddressAlert";
import { isUTXOCompliant } from "@ledgerhq/live-common/currencies/helpers";

const Separator = styled.div`
border-top: 1px solid #99999933;
Expand All @@ -56,8 +57,6 @@ const QRCodeWrapper = styled.div`
background: white;
`;

const UTXOFamily = ["bitcoin", "bitcoin_cash", "dash", "dogecoin", "litecoin", "zcash", "cardano"];

const Receive1ShareAddress = ({
account,
name,
Expand All @@ -69,7 +68,7 @@ const Receive1ShareAddress = ({
address: string;
showQRCodeModal: () => void;
}) => {
const isUTXOCompliant = UTXOFamily.includes(account.currency.id);
const isUTXOCompliantCurrency = isUTXOCompliant(account.currency.family);
return (
<>
<Box horizontal alignItems="center" flow={2} mb={4}>
Expand Down Expand Up @@ -99,7 +98,7 @@ const Receive1ShareAddress = ({
</Box>
<ReadOnlyAddressField address={address} />

{isUTXOCompliant && (
{isUTXOCompliantCurrency && (
<Box mt={3}>
<UTXOAddressAlert />
</Box>
Expand Down
1 change: 1 addition & 0 deletions apps/ledger-live-mobile/src/locales/en/common.json
Original file line number Diff line number Diff line change
Expand Up @@ -3158,6 +3158,7 @@
}
},
"receiveConfirmation": {
"utxoWarning": "For privacy reasons, a new address is generated for every transaction. The previous ones do remain valid.",
"title": "Receive {{currencyTicker}}",
"onCurrencyName": "On {{currencyName}}",
"copyAdress": "Copy address",
Expand Down
104 changes: 64 additions & 40 deletions apps/ledger-live-mobile/src/screens/ReceiveFunds/03-Confirmation.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useCallback, useEffect, useMemo, useState } from "react";
import { Linking, Share, View } from "react-native";
import { Dimensions, Linking, Share, View } from "react-native";
import { useDispatch, useSelector } from "react-redux";
import QRCode from "react-native-qrcode-svg";
import { useTranslation } from "react-i18next";
Expand Down Expand Up @@ -27,7 +27,6 @@ import { ScreenName } from "~/const";
import { track, TrackScreen } from "~/analytics";
import byFamily from "../../generated/Confirmation";
import byFamilyPostAlert from "../../generated/ReceiveConfirmationPostAlert";

import { ReceiveFundsStackParamList } from "~/components/RootNavigator/types/ReceiveFundsNavigator";
import { BaseComposite, StackNavigatorProps } from "~/components/RootNavigator/types/helpers";
import styled, { BaseStyledProps } from "@ledgerhq/native-ui/components/styled";
Expand All @@ -37,12 +36,16 @@ import { BankMedium } from "@ledgerhq/native-ui/assets/icons";
import { useSafeAreaInsets } from "react-native-safe-area-context";
import { hasClosedWithdrawBannerSelector } from "~/reducers/settings";
import { setCloseWithdrawBanner } from "~/actions/settings";
import * as Animatable from "react-native-animatable";
import { useCompleteActionCallback } from "~/logic/postOnboarding/useCompleteAction";
import { urls } from "~/utils/urls";
import { useMaybeAccountName } from "~/reducers/wallet";

const AnimatedView = Animatable.View;
import Animated, {
useSharedValue,
useAnimatedStyle,
withTiming,
runOnJS,
} from "react-native-reanimated";
import { isUTXOCompliant } from "@ledgerhq/live-common/currencies/helpers";

type ScreenProps = BaseComposite<
StackNavigatorProps<ReceiveFundsStackParamList, ScreenName.ReceiveConfirmation>
Expand Down Expand Up @@ -83,7 +86,7 @@ function ReceiveConfirmationInner({ navigation, route, account, parentAccount }:
const insets = useSafeAreaInsets();

const hasClosedWithdrawBanner = useSelector(hasClosedWithdrawBannerSelector);
const [displayBanner, setBanner] = useState(!hasClosedWithdrawBanner);
const [displayBanner, setDisplayBanner] = useState(!hasClosedWithdrawBanner);

const onRetry = useCallback(() => {
track("button_clicked", {
Expand Down Expand Up @@ -113,8 +116,9 @@ function ReceiveConfirmationInner({ navigation, route, account, parentAccount }:
button: "How to withdraw from exchange",
page: "Receive Account Qr Code",
});

dispatch(setCloseWithdrawBanner(true));
setBanner(false);
setDisplayBanner(false);
}, [dispatch]);

const clickLearn = () => {
Expand All @@ -125,6 +129,7 @@ function ReceiveConfirmationInner({ navigation, route, account, parentAccount }:
});
Linking.openURL(urls.withdrawCrypto);
};

useEffect(() => {
if (route.params?.createTokenAccount && !hasAddedTokenAccount) {
const newMainAccount = { ...mainAccount };
Expand Down Expand Up @@ -225,9 +230,26 @@ function ReceiveConfirmationInner({ navigation, route, account, parentAccount }:

const mainAccountName = useMaybeAccountName(mainAccount);

const screenHeight = Dimensions.get("window").height;
const bannerHeight = useSharedValue(screenHeight * 0.23);
const bannerOpacity = useSharedValue(1);

const animatedBannerStyle = useAnimatedStyle(() => ({
height: withTiming(bannerHeight.value, { duration: 200 }, onFinish => {
if (onFinish && bannerHeight.value === 0) {
runOnJS(hideBanner)();
}
}),
opacity: withTiming(bannerOpacity.value, { duration: 200 }),
}));

const handleBannerClose = useCallback(() => {
bannerHeight.value = 0;
bannerOpacity.value = 0;
}, [bannerHeight, bannerOpacity]);

if (!account || !currency || !mainAccount) return null;

// check for coin specific UI
if (currency.type === "CryptoCurrency" && Object.keys(byFamily).includes(currency.family)) {
const CustomConfirmation =
currency.type === "CryptoCurrency"
Expand Down Expand Up @@ -255,8 +277,11 @@ function ReceiveConfirmationInner({ navigation, route, account, parentAccount }:
: null;
}

const isAnAccount = account.type === "Account";
const isUTXOCompliantCurrency = isAnAccount && isUTXOCompliant(account.currency.family);

return (
<Flex flex={1} mb={insets.bottom}>
<Flex flex={1}>
<NavigationScrollView style={{ flex: 1 }}>
<TrackScreen
category="Deposit"
Expand Down Expand Up @@ -365,15 +390,13 @@ function ReceiveConfirmationInner({ navigation, route, account, parentAccount }:
)}
</StyledTouchableOpacity>
</Flex>
<Flex px={6}>
<Text
variant="small"
fontWeight="medium"
color="neutral.c70"
mt={6}
mb={4}
textAlign="center"
>
<Flex px={6} flexDirection="column" rowGap={8} mt={6}>
{isUTXOCompliantCurrency && (
<Text variant="small" fontWeight="medium" color="neutral.c70" textAlign="center">
{t("transfer.receive.receiveConfirmation.utxoWarning")}
</Text>
)}
<Text variant="small" fontWeight="medium" color="neutral.c70" mb={4} textAlign="center">
{t("transfer.receive.receiveConfirmation.sendWarning", {
network: network || currency.name,
})}
Expand All @@ -382,21 +405,25 @@ function ReceiveConfirmationInner({ navigation, route, account, parentAccount }:
{CustomConfirmationAlert && <CustomConfirmationAlert mainAccount={mainAccount} />}
</Flex>
</NavigationScrollView>
<Flex m={6}>
<Flex>
{displayBanner && (
<Animated.View style={[animatedBannerStyle, { marginHorizontal: 16, marginTop: 16 }]}>
<WithdrawBanner hideBanner={handleBannerClose} onPress={clickLearn} />
</Animated.View>
)}
<Flex
px={6}
mt={6}
position="absolute"
bottom={0}
left={0}
right={0}
backgroundColor="background.main"
paddingBottom={insets.bottom}
>
<Flex my={4}>
<Button type="main" size="large" onPress={onRetry} testID="button-receive-confirmation">
{t("transfer.receive.receiveConfirmation.verifyAddress")}
</Button>

{displayBanner ? (
<AnimatedView animation="fadeInUp" delay={50} duration={300}>
<WithdrawBanner hideBanner={hideBanner} onPress={clickLearn} />
</AnimatedView>
) : (
<AnimatedView animation="fadeOutDown" delay={50} duration={300}>
<WithdrawBanner hideBanner={hideBanner} onPress={clickLearn} />
</AnimatedView>
)}
</Flex>
</Flex>
{verified ? null : isModalOpened ? (
Expand All @@ -413,16 +440,13 @@ type BannerProps = {

const WithdrawBanner = ({ onPress, hideBanner }: BannerProps) => {
const { t } = useTranslation();
const insets = useSafeAreaInsets();
return (
<Flex pb={insets.bottom} mt={6}>
<BannerCard
typeOfRightIcon="close"
title={t("transfer.receive.receiveConfirmation.bannerTitle")}
LeftElement={<BankMedium />}
onPressDismiss={hideBanner}
onPress={onPress}
/>
</Flex>
<BannerCard
typeOfRightIcon="close"
title={t("transfer.receive.receiveConfirmation.bannerTitle")}
LeftElement={<BankMedium />}
onPressDismiss={hideBanner}
onPress={onPress}
/>
);
};
4 changes: 4 additions & 0 deletions libs/ledger-live-common/src/currencies/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ export function isTokenCurrency(currency: Currency): currency is TokenCurrency {
return currency.type === "TokenCurrency";
}

export function isUTXOCompliant(currencyFamilly: string): boolean {
return currencyFamilly === "bitcoin" || currencyFamilly === "cardano";
}

export function listCurrencies(includeTokens: boolean): CryptoOrTokenCurrency[] {
const currencies = listSupportedCurrencies();

Expand Down

1 comment on commit 4847469

@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] Weekly non-reg on develop with 'Oxygen' ✅ 23 txs ❌ 8 txs 💰 2 miss funds ($369.73) ⏲ 6min 11s

✅ 6 specs are successful: Qtum, Decred, axelar, Fantom, Polygon zkEVM, Tron
❌ 4 specs have problems: cosmos, Avalanche C-Chain, Binance Smart Chain, Tron
💰 2 specs may miss funds: Cronos, Boba

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

5 critical spec errors

Spec Filecoin failed!

Invariant Violation: Filecoin: no app found. Are you sure your COINAPPS is up to date?

Spec cardano failed!

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

Spec secret_network failed!

AxiosError: timeout of 60000ms exceeded

Spec Telos failed!

InvalidExplorerResponse: InvalidExplorerResponse

Spec Polkadot failed!

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

❌ 8 mutation errors
necessary accounts resynced in 0.19ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.066629 ATOM (36ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x: (! sum of ops 0.078436 ATOM) 0.01984 ATOM spendable. 0.046789 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper1fqzqejwkk898fcslw4z4eeqjzesynvrdfr5hte 0.00127 ATOM  (claimable 0.00127)
  to cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm 0.045519 ATOM  (claimable 0.045519)

max spendable ~0.017048
★ using mutation 'redelegate'
✔️ transaction 
REDELEGATE 
TO 
  0.00127 -> cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm
  source validator=cosmosvaloper1fqzqejwkk898fcslw4z4eeqjzesynvrdfr5hte
with fees=0.028993
  memo=LedgerLiveBot
STATUS (824ms)
  amount: 0 ATOM
  estimated fees: 0.028993 ATOM
  total spent: 0 ATOM
errors: amount NotEnoughBalance
warnings: 
⚠️ TEST mutation must not have tx status errors
NotEnoughBalance: NotEnoughBalance
(totally spent 837ms – ends at 2024-09-26T05:46:13.353Z)
necessary accounts resynced in 0.37ms
▬ Avalanche 0.8.4 on nanoS 2.1.0
→ FROM undefined: 0.197694 AVAX (47ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:avalanche_c_chain:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
max spendable ~0.197694
★ using mutation 'send max'
→ TO undefined: 0.401714 AVAX (32ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:avalanche_c_chain:0x714908e42B5A11eF11578F243052c9E60f1485e6:
✔️ transaction 
SEND MAX
TO 0x714908e42B5A11eF11578F243052c9E60f1485e6
STATUS (1195ms)
  amount: 0.197121968613255675 AVAX
  estimated fees: 0.000572292 AVAX
  total spent: 0.197694260613255675 AVAX
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Chain ID","x":42,"y":-1,"w":86,"h":11}
{"text":"43114","x":47,"y":10,"w":81,"h":11}
(totally spent 61.3s – ends at 2024-09-26T05:46:13.360Z)
necessary accounts resynced in 0.17ms
▬ Avalanche 0.8.4 on nanoS 2.1.0
→ FROM undefined: 0.197119 AVAX (46ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:avalanche_c_chain:0x2141e8D44753FC7720C471233740c133D79459fC:
max spendable ~0.197119
★ using mutation 'move 50%'
→ TO undefined: 0.197694 AVAX (47ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:avalanche_c_chain:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND  0.098559662178169837 AVAX
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (1224ms)
  amount: 0.098559662178169837 AVAX
  estimated fees: 0.00056721 AVAX
  total spent: 0.099126872178169837 AVAX
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Chain ID","x":42,"y":-1,"w":86,"h":11}
{"text":"43114","x":47,"y":10,"w":81,"h":11}
(totally spent 61.3s – ends at 2024-09-26T05:46:13.365Z)
necessary accounts resynced in 0.95ms
▬ Avalanche 0.8.4 on nanoS 2.1.0
→ FROM undefined: 0.401714 AVAX (32ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:avalanche_c_chain:0x714908e42B5A11eF11578F243052c9E60f1485e6:
max spendable ~0.401714
★ using mutation 'move 50%'
→ TO undefined: 0.197119 AVAX (46ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:avalanche_c_chain:0x2141e8D44753FC7720C471233740c133D79459fC:
✔️ transaction 
SEND  0.200857159654426997 AVAX
TO 0x2141e8D44753FC7720C471233740c133D79459fC
STATUS (942ms)
  amount: 0.200857159654426997 AVAX
  estimated fees: 0.00056721 AVAX
  total spent: 0.201424369654426997 AVAX
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Chain ID","x":42,"y":-1,"w":86,"h":11}
{"text":"43114","x":47,"y":10,"w":81,"h":11}
(totally spent 61.1s – ends at 2024-09-26T05:46:13.371Z)
necessary accounts resynced in 2.96ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
max spendable ~0.0550656
★ using mutation 'move 50%'
→ TO undefined: 0 BNB (71ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.027532831547880244 BNB
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (690ms)
  amount: 0.027532831547880244 BNB
  estimated fees: 0.000042000000945 BNB
  total spent: 0.027574831548825244 BNB
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review","x":41,"y":3,"w":128,"h":32}
{"text":"transaction","x":41,"y":17,"w":128,"h":32}
{"text":"From (1/3)","x":38,"y":3,"w":84,"h":32}
{"text":"0xF4816c59cd8e24eE","x":9,"y":17,"w":113,"h":32}
(totally spent 60.7s – ends at 2024-09-26T05:46:13.383Z)
necessary accounts resynced in 0.26ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0242889 BNB (103ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
max spendable ~0.0242889
★ using mutation 'move 50%'
→ TO undefined: 0.0242259 BNB (59ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
✔️ transaction 
SEND  0.012144467609662234 BNB
TO 0x8C63f5be03552E332A8a1e122c58d7b306d81679
STATUS (646ms)
  amount: 0.012144467609662234 BNB
  estimated fees: 0.00002772 BNB
  total spent: 0.012172187609662234 BNB
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review","x":41,"y":3,"w":128,"h":32}
{"text":"transaction","x":41,"y":17,"w":128,"h":32}
{"text":"From (1/3)","x":38,"y":3,"w":84,"h":32}
{"text":"0x59569e96d0E3D972","x":9,"y":17,"w":113,"h":32}
(totally spent 60.7s – ends at 2024-09-26T05:46:13.391Z)
necessary accounts resynced in 0.27ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0242259 BNB (59ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
max spendable ~0.0242259
★ using mutation 'send max'
→ TO undefined: 0.0242889 BNB (103ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
✔️ transaction 
SEND MAX
TO 0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd
STATUS (760ms)
  amount: 0.024198215219282467 BNB
  estimated fees: 0.00002772 BNB
  total spent: 0.024225935219282467 BNB
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review","x":41,"y":3,"w":128,"h":32}
{"text":"transaction","x":41,"y":17,"w":128,"h":32}
{"text":"From (1/3)","x":38,"y":3,"w":84,"h":32}
{"text":"0x8C63f5be03552E33","x":10,"y":17,"w":112,"h":32}
(totally spent 60.8s – ends at 2024-09-26T05:46:13.394Z)
necessary accounts resynced in 0.18ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 9.87643 TRX (65ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
max spendable ~8.77643
★ using mutation 'move 50% to another account'
→ TO undefined: 174 TRX (107ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:
✔️ transaction 
SEND  4.388216 TRX 
TO TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT
STATUS (962ms)
  amount: 4.388216 TRX
  estimated fees: 0 TRX
  total spent: 4.388216 TRX
errors: 
warnings: 
✔️ has been signed! (5.9s) 
✔️ broadcasted! (131ms) optimistic operation: 
  -4.388216 TRX      OUT        81daa4255675863a40058ce33edd059b2cefd1a3ee87f0bf6205a252b9940304 2024-09-26T05:44
✔️ operation confirmed (11.3s): 
  -4.388216 TRX      OUT        81daa4255675863a40058ce33edd059b2cefd1a3ee87f0bf6205a252b9940304 2024-09-26T05:44
✔️ undefined: 5.48821 TRX (66ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:(in 11.3s)
⚠️ LedgerAPI4xx: API HTTP 406 https://tron.coin.ledger.com/wallet/getnowblock
(totally spent 28.4s – ends at 2024-09-26T05:46:13.403Z)
⚠️ 6 spec hints
  • Spec Qtum:
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Decred:
    • There are not enough accounts (5) to cover all mutations (5).
      Please increase the account target to at least 6 accounts
    • mutation send OP_RETURN transaction: unexpected status.warnings.feeTooHigh = FeeTooHigh: FeeTooHigh – Please implement expectStatusWarnings on the mutation if expected
  • Spec Cronos:
    • No mutation were found possible. Yet there are funds in the accounts, please investigate.
  • Spec Boba:
    • There are not enough accounts (1) to cover all mutations (3).
      Please increase the account target to at least 4 accounts
  • Spec Tron:
    • mutation send max to another account: unexpected status.warnings.fee = TronUnexpectedFees: Estimated fees – Please implement expectStatusWarnings on the mutation if expected
Details of the 31 mutations

Spec Filecoin (0)


Spec Qtum (6)

Spec Qtum found 6 Qtum accounts. Will use Qtum 2.1.0-rc on nanoS 2.1.0
undefined [segwit]: 1.4959 QTUM (105ops) (M8S1fVFuLho8Vi5XxdeWmfTJByQLba2wmG on 49'/88'/0'/0/52) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
undefined [segwit]: 0.601355 QTUM (98ops) (MDGjHsapSNYhpNxrfSbZPdm4E6FSBv9abD on 49'/88'/1'/0/50) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
undefined [segwit]: 0 QTUM (0ops) (MR3A49zXnWaH7Vhm7YKeiaREazdKZxie6r on 49'/88'/2'/0/0) segwit#2 js:2:qtum:xpub6BvfSTHRWubyX78dqB3tVcgps5JtUKukFsbkwrxQhEvBr2UmTUjNEdcZRvmBb6PczEcKUrnVvQvQ2BafHcw1wBkqbVLzNyEN912tNDDd8M9:segwit
undefined [legacy]: 0.281471 QTUM (103ops) (QXvPLbfaASKXmTKk1UWZ6tGDCifkbRr5aR on 44'/88'/0'/0/54) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
undefined [legacy]: 0.105447 QTUM (89ops) (QVbMj8t4A3HZwjJfouQRWudupY4irYpAJa on 44'/88'/1'/0/41) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
undefined [legacy]: 0 QTUM (0ops) (QXwMM27e61jr6M9TBrEfWiab9j7RPdRB5L on 44'/88'/2'/0/0) #2 js:2:qtum:xpub6DA2jGUBMLR6Nxr6vXgCpqQCa5xbmtGAsPuDpqkQSqH8WwwgHVfBhyYS3vEmEUqUjXHV5WU1zRLF8dhFfDjaonsgn687DWbbdA4kX9gg1UZ:
necessary accounts resynced in 0.15ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [segwit]: 1.4959 QTUM (105ops) (M8S1fVFuLho8Vi5XxdeWmfTJByQLba2wmG on 49'/88'/0'/0/52) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
2 UTXOs
0.94099      MRawkYkRU2ZTHYXJ3UN9ZBKAt9Lmtwcj8g (change) bd73685b1fc24ac920ccdf55e9030ab9ab1ea0a32c780aa5cf3e2bd2df5dde08 @2 (18895)
0.554916     M8WzcfKrf7V8wwK4yMCegnmMsSDrxVsz66 rbf 9a475213ad54ff8127b041373fd16cc2524a03921c4d30143a07b810a72657f4 @0 (18894)

max spendable ~1.49367
★ using mutation 'send 1 utxo'
→ TO undefined [legacy]: 0.281471 QTUM (103ops) (QXvPLbfaASKXmTKk1UWZ6tGDCifkbRr5aR on 44'/88'/0'/0/54) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
✔️ transaction 
SEND MAX
TO QXvPLbfaASKXmTKk1UWZ6tGDCifkbRr5aR
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed
exclude bd73685b1fc24ac920ccdf55e9030ab9ab1ea0a32c780aa5cf3e2bd2df5dde08 @2
STATUS (232ms)
TX INPUTS (1):
0.554916     M8WzcfKrf7V8wwK4yMCegnmMsSDrxVsz66 9a475213ad54ff8127b041373fd16cc2524a03921c4d30143a07b810a72657f4@0
TX OUTPUTS (1):
0.553565     QXvPLbfaASKXmTKk1UWZ6tGDCifkbRr5aR @0 (0)
  amount: 0.55356521 QTUM
  estimated fees: 0.00135135 QTUM
  total spent: 0.55491656 QTUM
errors: 
warnings: 
✔️ has been signed! (11.8s) 
✔️ broadcasted! (104ms) optimistic operation: 
  -0.00135135 QTUM   OUT        fce12915125f044a9ad94ebb90370211cee31df069d475fe0f3282a96bca2e09 2024-09-26T05:41
✔️ operation confirmed (10.8s): 
  -0.55491656 QTUM   OUT        fce12915125f044a9ad94ebb90370211cee31df069d475fe0f3282a96bca2e09 2024-09-26T05:41
✔️ undefined [segwit]: 0.94099 QTUM (106ops) (M8S1fVFuLho8Vi5XxdeWmfTJByQLba2wmG on 49'/88'/0'/0/52) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
1 UTXOs
0.94099      MRawkYkRU2ZTHYXJ3UN9ZBKAt9Lmtwcj8g (change) bd73685b1fc24ac920ccdf55e9030ab9ab1ea0a32c780aa5cf3e2bd2df5dde08 @2 (18898)
(in 10.8s)
✔️ destination operation 
  +0.55356521 QTUM   IN         fce12915125f044a9ad94ebb90370211cee31df069d475fe0f3282a96bca2e09 2024-09-26T05:41
(in 10.8s)

necessary accounts resynced in 0.26ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [segwit]: 0.601355 QTUM (98ops) (MDGjHsapSNYhpNxrfSbZPdm4E6FSBv9abD on 49'/88'/1'/0/50) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
3 UTXOs
0.393279     MNVG3xBkAvDqXwBcqvVq3RiXDJpAitGmun (change) rbf affb39e21a4bb62b5e9412736ff3ff88383fb88808ba7931e23a098ed2f93fed @1 (37780)
0.207075     MVtrZiPNrusR5GTiAYDKTQ3fvwts8FtcB2 (change) rbf 9a475213ad54ff8127b041373fd16cc2524a03921c4d30143a07b810a72657f4 @1 (18894)
0.001        M9ihTUQN1iivesd4fah18o6vNFq5cDMTNp bd73685b1fc24ac920ccdf55e9030ab9ab1ea0a32c780aa5cf3e2bd2df5dde08 @0 (18895)

max spendable ~0.598222
★ using mutation 'optimize-size'
→ TO undefined [segwit]: 0.94099 QTUM (106ops) (M8S1fVFuLho8Vi5XxdeWmfTJByQLba2wmG on 49'/88'/0'/0/52) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
✔️ transaction 
SEND 0.14335809 QTUM
TO M8S1fVFuLho8Vi5XxdeWmfTJByQLba2wmG
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
OPTIMIZE_SIZE pick-unconfirmed
STATUS (322ms)
TX INPUTS (1):
0.207075     MVtrZiPNrusR5GTiAYDKTQ3fvwts8FtcB2 9a475213ad54ff8127b041373fd16cc2524a03921c4d30143a07b810a72657f4@1
TX OUTPUTS (2):
0.143358     M8S1fVFuLho8Vi5XxdeWmfTJByQLba2wmG @0 (0)
0.062066     MDxv62YrGejXBetNPDbrvpj7NVR9AwPKRL (change) @1 (0)
  amount: 0.14335809 QTUM
  estimated fees: 0.00165165 QTUM
  total spent: 0.14500974 QTUM
errors: 
warnings: 
✔️ has been signed! (11.7s) 
✔️ broadcasted! (100ms) optimistic operation: 
  -0.14500974 QTUM   OUT        60c6ca980b1a54d9693671a741b479105b8fc06278c652d924b79b9c564a6708 2024-09-26T05:41
✔️ operation confirmed (10.9s): 
  -0.14500974 QTUM   OUT        60c6ca980b1a54d9693671a741b479105b8fc06278c652d924b79b9c564a6708 2024-09-26T05:42
✔️ undefined [segwit]: 0.456345 QTUM (99ops) (MDGjHsapSNYhpNxrfSbZPdm4E6FSBv9abD on 49'/88'/1'/0/50) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
3 UTXOs
0.393279     MNVG3xBkAvDqXwBcqvVq3RiXDJpAitGmun (change) rbf affb39e21a4bb62b5e9412736ff3ff88383fb88808ba7931e23a098ed2f93fed @1 (37783)
0.062066     MDxv62YrGejXBetNPDbrvpj7NVR9AwPKRL (change) 60c6ca980b1a54d9693671a741b479105b8fc06278c652d924b79b9c564a6708 @1 (0)
0.001        M9ihTUQN1iivesd4fah18o6vNFq5cDMTNp bd73685b1fc24ac920ccdf55e9030ab9ab1ea0a32c780aa5cf3e2bd2df5dde08 @0 (18898)
(in 10.9s)
✔️ destination operation 
  +0.14335809 QTUM   IN         60c6ca980b1a54d9693671a741b479105b8fc06278c652d924b79b9c564a6708 2024-09-26T05:42
(in 10.8s)

necessary accounts resynced in 3.24ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [legacy]: 0.835036 QTUM (104ops) (QgxWAuKyUAeY56HjpUUsYFdmkMVRGhdfEz on 44'/88'/0'/0/55) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
2 UTXOs
0.553565     QXvPLbfaASKXmTKk1UWZ6tGDCifkbRr5aR fce12915125f044a9ad94ebb90370211cee31df069d475fe0f3282a96bca2e09 @0 (0)
0.281471     QQrTCq2yjfjcgdXJ4s6nLgdxsSqHdamaUH 5350465a324005c21a9b1d5b543629bba74b9b7513e3f30cf021544eb8343221 @0 (18896)

max spendable ~0.279549
★ using mutation 'send max'
→ TO undefined [segwit]: 1.08434 QTUM (107ops) (MEfRekbEkmbKJS4bLZtrt4U76MgAzkZjKB on 49'/88'/0'/0/53) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
✔️ transaction 
SEND MAX
TO MEfRekbEkmbKJS4bLZtrt4U76MgAzkZjKB
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (134ms)
TX INPUTS (1):
0.281471     QQrTCq2yjfjcgdXJ4s6nLgdxsSqHdamaUH 5350465a324005c21a9b1d5b543629bba74b9b7513e3f30cf021544eb8343221@0
TX OUTPUTS (1):
0.279569     MEfRekbEkmbKJS4bLZtrt4U76MgAzkZjKB @0 (0)
  amount: 0.27956919 QTUM
  estimated fees: 0.0019019 QTUM
  total spent: 0.28147109 QTUM
errors: 
warnings: 
✔️ has been signed! (7.2s) 
✔️ broadcasted! (95ms) optimistic operation: 
  -0.0019019 QTUM    OUT        f0735b029b62beb456dc25ffa4de16cbe27216576dd50936b9c24521c981a2ba 2024-09-26T05:42
✔️ operation confirmed (10.5s): 
  -0.28147109 QTUM   OUT        f0735b029b62beb456dc25ffa4de16cbe27216576dd50936b9c24521c981a2ba 2024-09-26T05:42
✔️ undefined [legacy]: 0.553565 QTUM (105ops) (QgxWAuKyUAeY56HjpUUsYFdmkMVRGhdfEz on 44'/88'/0'/0/55) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
1 UTXOs
0.553565     QXvPLbfaASKXmTKk1UWZ6tGDCifkbRr5aR fce12915125f044a9ad94ebb90370211cee31df069d475fe0f3282a96bca2e09 @0 (0)
(in 10.5s)
✔️ destination operation 
  +0.27956919 QTUM   IN         f0735b029b62beb456dc25ffa4de16cbe27216576dd50936b9c24521c981a2ba 2024-09-26T05:42
(in 10.8s)

necessary accounts resynced in 0.22ms
▬ Qtum 2.1.0-rc on nanoS 2.1.0
→ FROM undefined [legacy]: 0.105447 QTUM (89ops) (QVbMj8t4A3HZwjJfouQRWudupY4irYpAJa on 44'/88'/1'/0/41) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
2 UTXOs
0.104447     QiPTcG83YWKCUVuSqSB53FdouhDABubvyk (change) 5350465a324005c21a9b1d5b543629bba74b9b7513e3f30cf021544eb8343221 @1 (18893)
0.001        QSVJugt9qvoBtsXAAvcjr8hFCwTycoPU5J c9377f3e3c266657bb4844b110f827cc097ba926d4527c53d4252944b79ba947 @0 (94506)

max spendable ~0.102043
★ using mutation 'send OP_RETURN transaction'
→ TO undefined [segwit]: 1.36391 QTUM (108ops) (MCZ6LJevNVQ7o6oQW1zcnMsnwcrt4bpi1H on 49'/88'/0'/0/54) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
✔️ transaction 
SEND 0.001 QTUM
TO MCZ6LJevNVQ7o6oQW1zcnMsnwcrt4bpi1H
with feePerByte=1001 (network fees: 0=1002, 1=1001, 2=1000)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (92ms)
TX INPUTS (2):
0.001        QSVJugt9qvoBtsXAAvcjr8hFCwTycoPU5J c9377f3e3c266657bb4844b110f827cc097ba926d4527c53d4252944b79ba947@0
0.104447     QiPTcG83YWKCUVuSqSB53FdouhDABubvyk 5350465a324005c21a9b1d5b543629bba74b9b7513e3f30cf021544eb8343221@1
TX OUTPUTS (3):
0.001        MCZ6LJevNVQ7o6oQW1zcnMsnwcrt4bpi1H @0 (0)
0            @1 (0)
0.100443     QSMypG3Gz5PhoEzho2Ay8ZMX5EUdUM9E5n (change) @2 (0)
  amount: 0.001 QTUM
  estimated fees: 0.004004 QTUM
  total spent: 0.005004 QTUM
errors: 
warnings: feeTooHigh FeeTooHigh
✔️ has been signed! (9.3s) 
✔️ broadcasted! (98ms) optimistic operation: 
  -0.005004 QTUM     OUT        0bc6ca02a4a305a6b4d1aa9a792194326cc4d2fd5bcdfe1d8d04b29dffd50b24 2024-09-26T05:43
✔️ operation confirmed (10.6s): 
  -0.005004 QTUM     OUT        0bc6ca02a4a305a6b4d1aa9a792194326cc4d2fd5bcdfe1d8d04b29dffd50b24 2024-09-26T05:43
✔️ undefined [legacy]: 0.100443 QTUM (90ops) (QVbMj8t4A3HZwjJfouQRWudupY4irYpAJa on 44'/88'/1'/0/41) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
1 UTXOs
0.100443     QSMypG3Gz5PhoEzho2Ay8ZMX5EUdUM9E5n (change) 0bc6ca02a4a305a6b4d1aa9a792194326cc4d2fd5bcdfe1d8d04b29dffd50b24 @2 (0)
(in 10.6s)
✔️ destination operation 
  +0.001 QTUM        IN         0bc6ca02a4a305a6b4d1aa9a792194326cc4d2fd5bcdfe1d8d04b29dffd50b24 2024-09-26T05:43
(in 10.7s)


Spec Decred (5)

Spec Decred found 5 Decred accounts. Will use Decred 1.3.14 on nanoS 2.1.0
undefined: 0.117849 DCR (93ops) (Dse6yJRd18bRWjP2aP1uTADpEHAaRTKsEu4 on 44'/42'/0'/0/47) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
undefined: 0.441896 DCR (92ops) (DsZn6CBws1wru72D2oLKAada3JDCvL9hhXm on 44'/42'/1'/0/46) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
undefined: 0.0001 DCR (81ops) (Dsch9c5v5gjk1JjSYBifSR5foqVnUhjT6J2 on 44'/42'/2'/0/43) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
undefined: 0.721152 DCR (74ops) (DseAagk4eo2qH9sNtBdPLRNr9wgysPT8Eyh on 44'/42'/3'/0/34) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
undefined: 0 DCR (0ops) (DskCZ4d3mZkXwLxAEjx2sEM121SFimdgvSv on 44'/42'/4'/0/0) #4 js:2:decred:dpubZEswmUQs2uoMffXvbjYzmFKAA8qiVoRpBd8QwvJKFgG4HaLsEf3yq9JdFJHzvmMqTKUybT8NPDs16zti7N3ehBSQmxZQB76h8MsWKLZDFAX:
necessary accounts resynced in 0.46ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.117849 DCR (93ops) (Dse6yJRd18bRWjP2aP1uTADpEHAaRTKsEu4 on 44'/42'/0'/0/47) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
1 UTXOs
0.117849     DsR3m6etdN6qazLWmGrx626WQBNMACowg8G rbf 4873d2fd3a2ab2a955973fe3b4b7e4186e66dc0df01aec8f43b53bc81ec83e01 @0 (2011)

max spendable ~0.117784
★ using mutation 'send OP_RETURN transaction'
→ TO undefined: 0.441896 DCR (92ops) (DsZn6CBws1wru72D2oLKAada3JDCvL9hhXm on 44'/42'/1'/0/46) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
✔️ transaction 
SEND 0.0001 DCR
TO DsZn6CBws1wru72D2oLKAada3JDCvL9hhXm
with feePerByte=31 (network fees: 0=32, 1=31, 2=30)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (218ms)
TX INPUTS (1):
0.117849     DsR3m6etdN6qazLWmGrx626WQBNMACowg8G 4873d2fd3a2ab2a955973fe3b4b7e4186e66dc0df01aec8f43b53bc81ec83e01@0
TX OUTPUTS (3):
0.0001       DsZn6CBws1wru72D2oLKAada3JDCvL9hhXm @0 (0)
0            @1 (0)
0.117657     DsSMi8SrJ8JvfkP23tN1TQJ2fttvpPEVbdJ (change) @2 (0)
  amount: 0.0001 DCR
  estimated fees: 0.00009176 DCR
  total spent: 0.00019176 DCR
errors: 
warnings: feeTooHigh FeeTooHigh
✔️ has been signed! (17.6s) 
✔️ broadcasted! (243ms) optimistic operation: 
  -0.00019176 DCR    OUT        d542e7326ed7608391ff8dd4bf736fff0bcebecca637249700ec3af29653ab0d 2024-09-26T05:41
✔️ operation confirmed (10.5s): 
  -0.00019176 DCR    OUT        d542e7326ed7608391ff8dd4bf736fff0bcebecca637249700ec3af29653ab0d 2024-09-26T05:41
✔️ undefined: 0.117657 DCR (94ops) (Dse6yJRd18bRWjP2aP1uTADpEHAaRTKsEu4 on 44'/42'/0'/0/47) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
1 UTXOs
0.117657     DsSMi8SrJ8JvfkP23tN1TQJ2fttvpPEVbdJ (change) d542e7326ed7608391ff8dd4bf736fff0bcebecca637249700ec3af29653ab0d @2 (0)
(in 10.5s)
✔️ destination operation 
  +0.0001 DCR        IN         d542e7326ed7608391ff8dd4bf736fff0bcebecca637249700ec3af29653ab0d 2024-09-26T05:41
(in 10.8s)

necessary accounts resynced in 0.23ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.441996 DCR (93ops) (DsSDUo2SHS1k9uPx3qqgJqbAau8hTjmWCAP on 44'/42'/1'/0/47) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
3 UTXOs
0.36431      DsbYn28Y7aDVjxpfKqYbCLdVpn5mcfQ7Ao1 18125ac88376591c4d7f8b55436f48ce9ab39f84a2275f6453443d5d8320b38f @0 (3967)
0.0775859    DsiyVUWhGmyW1qUSGD7PXJcRJv6PC6bQ51Y (change) 2700212b608477bff3bdfd82d1ebea46f40307e2c2c37658f0f4d00793deb808 @2 (2011)
0.0001       DsZn6CBws1wru72D2oLKAada3JDCvL9hhXm d542e7326ed7608391ff8dd4bf736fff0bcebecca637249700ec3af29653ab0d @0 (0)

max spendable ~0.441781
★ using mutation 'move ~50%'
→ TO undefined: 0.117657 DCR (94ops) (Dse6yJRd18bRWjP2aP1uTADpEHAaRTKsEu4 on 44'/42'/0'/0/47) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
✔️ transaction 
SEND 0.22772452 DCR
TO Dse6yJRd18bRWjP2aP1uTADpEHAaRTKsEu4
with feePerByte=31 (network fees: 0=32, 1=31, 2=30)
DEEP_OUTPUTS_FIRST pick-unconfirmed RBF-enabled
STATUS (347ms)
TX INPUTS (1):
0.36431      DsbYn28Y7aDVjxpfKqYbCLdVpn5mcfQ7Ao1 18125ac88376591c4d7f8b55436f48ce9ab39f84a2275f6453443d5d8320b38f@0
TX OUTPUTS (2):
0.227724     Dse6yJRd18bRWjP2aP1uTADpEHAaRTKsEu4 rbf @0 (0)
0.136505     DseskB1DNNtndiHdgVcP7HCv8scdAkVi16p (change) rbf @1 (0)
  amount: 0.22772452 DCR
  estimated fees: 0.00007998 DCR
  total spent: 0.2278045 DCR
errors: 
warnings: 
✔️ has been signed! (10s) 
✔️ broadcasted! (259ms) optimistic operation: 
  -0.2278045 DCR     OUT        0f89c5fd15bfb0e781206ee319c8a5e7d37cd0083833bc976c7cfa67822c3b65 2024-09-26T05:41
✔️ operation confirmed (10.6s): 
  -0.2278045 DCR     OUT        0f89c5fd15bfb0e781206ee319c8a5e7d37cd0083833bc976c7cfa67822c3b65 2024-09-26T05:41
✔️ undefined: 0.214191 DCR (94ops) (DsSDUo2SHS1k9uPx3qqgJqbAau8hTjmWCAP on 44'/42'/1'/0/47) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
3 UTXOs
0.136505     DseskB1DNNtndiHdgVcP7HCv8scdAkVi16p (change) rbf 0f89c5fd15bfb0e781206ee319c8a5e7d37cd0083833bc976c7cfa67822c3b65 @1 (0)
0.0775859    DsiyVUWhGmyW1qUSGD7PXJcRJv6PC6bQ51Y (change) 2700212b608477bff3bdfd82d1ebea46f40307e2c2c37658f0f4d00793deb808 @2 (2011)
0.0001       DsZn6CBws1wru72D2oLKAada3JDCvL9hhXm d542e7326ed7608391ff8dd4bf736fff0bcebecca637249700ec3af29653ab0d @0 (0)
(in 10.6s)
✔️ destination operation 
  +0.22772452 DCR    IN         0f89c5fd15bfb0e781206ee319c8a5e7d37cd0083833bc976c7cfa67822c3b65 2024-09-26T05:41
(in 10.5s)

necessary accounts resynced in 0.30ms
▬ Decred 1.3.14 on nanoS 2.1.0
→ FROM undefined: 0.721152 DCR (74ops) (DseAagk4eo2qH9sNtBdPLRNr9wgysPT8Eyh on 44'/42'/3'/0/34) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
3 UTXOs
0.335683     Dse18FvqYMTy9GZXLxARurwqet2ob1Zi5oq 85468da9815d6db3701c194cd974d959800b8adaa3e72d07614fd4e836887f45 @0 (2011)
0.256491     DsWBy4GF5SCVgaeX6GRUR9QVXRwwd6QHeRk 8a4cab967d185ff7b59a93ee34e1600c27b5112dd9f0f5f3b218d57a997d5296 @0 (2011)
0.128976     DsiHNgLA8CKgCCDNci3MQvKBNdgWvKLT5RM (change) rbf 4873d2fd3a2ab2a955973fe3b4b7e4186e66dc0df01aec8f43b53bc81ec83e01 @1 (2011)

max spendable ~0.720986
★ using mutation 'send max'
→ TO undefined: 0.345381 DCR (95ops) (Dsc9hRnaVy45h5vKEkSdWneCCbhx8Gcmnsh on 44'/42'/0'/0/48) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
✔️ transaction 
SEND MAX
TO Dsc9hRnaVy45h5vKEkSdWneCCbhx8Gcmnsh
with feePerByte=31 (network fees: 0=32, 1=31, 2=30)
DEEP_OUTPUTS_FIRST pick-unconfirmed
STATUS (258ms)
TX INPUTS (3):
0.335683     Dse18FvqYMTy9GZXLxARurwqet2ob1Zi5oq 85468da9815d6db3701c194cd974d959800b8adaa3e72d07614fd4e836887f45@0
0.256491     DsWBy4GF5SCVgaeX6GRUR9QVXRwwd6QHeRk 8a4cab967d185ff7b59a93ee34e1600c27b5112dd9f0f5f3b218d57a997d5296@0
0.128976     DsiHNgLA8CKgCCDNci3MQvKBNdgWvKLT5RM 4873d2fd3a2ab2a955973fe3b4b7e4186e66dc0df01aec8f43b53bc81ec83e01@1
TX OUTPUTS (1):
0.720983     Dsc9hRnaVy45h5vKEkSdWneCCbhx8Gcmnsh @0 (0)
  amount: 0.72098383 DCR
  estimated fees: 0.00016864 DCR
  total spent: 0.72115247 DCR
errors: 
warnings: 
✔️ has been signed! (14.2s) 
✔️ broadcasted! (202ms) optimistic operation: 
  -0.00016864 DCR    OUT        c3d0d4b86dfaebcae78b08397cfa5e9ef7f293893d2ce970e58a3af35bcf1c03 2024-09-26T05:42
✔️ operation confirmed (10.4s): 
  -0.72115247 DCR    OUT        c3d0d4b86dfaebcae78b08397cfa5e9ef7f293893d2ce970e58a3af35bcf1c03 2024-09-26T05:42
✔️ undefined: 0 DCR (75ops) (DseAagk4eo2qH9sNtBdPLRNr9wgysPT8Eyh on 44'/42'/3'/0/34) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
0 UTXOs
(in 10.4s)
✔️ destination operation 
  +0.72098383 DCR    IN         c3d0d4b86dfaebcae78b08397cfa5e9ef7f293893d2ce970e58a3af35bcf1c03 2024-09-26T05:42
(in 10.4s)


Spec cardano (failed)


Spec axelar (18)

Spec axelar found 18 Axelar accounts (preload: 373ms). Will use Cosmos 2.35.24 on nanoS 2.1.0
undefined: 0.091304 AXL (1ops) (axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g on 44'/118'/0'/0/0) #0 js:2:axelar:axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g:
undefined: 0.022348 AXL (0ops) (axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64 on 44'/118'/1'/0/0) #1 js:2:axelar:axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64:
undefined: 0 AXL (0ops) (axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha:
undefined: 0.009551 AXL (0ops) (axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5:
undefined: 0 AXL (4ops) (axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f on 44'/118'/4'/0/0) #4 js:2:axelar:axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f:
undefined: 0.009194 AXL (0ops) (axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx on 44'/118'/5'/0/0) #5 js:2:axelar:axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx:
undefined: 0.253908 AXL (2ops) (axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa on 44'/118'/6'/0/0) #6 js:2:axelar:axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa:
undefined: 0.000033 AXL (0ops) (axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8 on 44'/118'/7'/0/0) #7 js:2:axelar:axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8:
undefined: 0.126831 AXL (5ops) (axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z on 44'/118'/8'/0/0) #8 js:2:axelar:axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z:
undefined: 0.938913 AXL (3ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84:
undefined: 0.241072 AXL (3ops) (axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37 on 44'/118'/10'/0/0) #10 js:2:axelar:axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37:
undefined: 1.23085 AXL (3ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu:
undefined: 1.9517 AXL (1ops) (axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll on 44'/118'/12'/0/0) #12 js:2:axelar:axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll:
undefined: 7.36976 AXL (0ops) (axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35 on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35:
undefined: 3.0598 AXL (0ops) (axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk on 44'/118'/14'/0/0) #14 js:2:axelar:axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk:
undefined: 1.21829 AXL (1ops) (axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4 on 44'/118'/15'/0/0) #15 js:2:axelar:axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4:
undefined: 0.125864 AXL (0ops) (axelar1zrtnaup5sy0v3jzhc7966t3ru4c5lvzlc7rgm4 on 44'/118'/16'/0/0) #16 js:2:axelar:axelar1zrtnaup5sy0v3jzhc7966t3ru4c5lvzlc7rgm4:
undefined: 0 AXL (0ops) (axelar1has5jy0477n3yl6heyycfd67qwf4uw44872lqq on 44'/118'/17'/0/0) #17 js:2:axelar:axelar1has5jy0477n3yl6heyycfd67qwf4uw44872lqq:
necessary accounts resynced in 0.28ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.091304 AXL (1ops) (axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g on 44'/118'/0'/0/0) #0 js:2:axelar:axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g: 0.091304 AXL spendable. 

max spendable ~0.084319
★ using mutation 'send some'
→ TO undefined: 0.009551 AXL (0ops) (axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5:
✔️ transaction 
SEND  0.049754 AXL
TO axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5

with fees=0.006186
  memo=LedgerLiveBot
STATUS (527ms)
  amount: 0.049754 AXL
  estimated fees: 0.006186 AXL
  total spent: 0.05594 AXL
errors: 
warnings: 
✔️ has been signed! (5.8s) 
✔️ broadcasted! (66ms) optimistic operation: 
  -0.05594 AXL       OUT        FC52AD4A72AB8D70BF155836BD7870FB497E524044F7B001FFE2D4B4A9893F11 2024-09-26T05:41
✔️ operation confirmed (0.27ms): 
  -0.05594 AXL       OUT        FC52AD4A72AB8D70BF155836BD7870FB497E524044F7B001FFE2D4B4A9893F11 2024-09-26T05:41
✔️ undefined: 0.091304 AXL (1ops) (axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g on 44'/118'/0'/0/0) #0 js:2:axelar:axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g: 0.091304 AXL spendable. 
✔️ destination operation 
  ? -55940           OUT        FC52AD4A72AB8D70BF155836BD7870FB497E524044F7B001FFE2D4B4A9893F11 2024-09-26T05:41

necessary accounts resynced in 0.23ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.253908 AXL (2ops) (axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa on 44'/118'/6'/0/0) #6 js:2:axelar:axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa: (! sum of ops 0.125658 AXL) 0.253908 AXL spendable. 

max spendable ~0.246916
★ using mutation 'send max'
→ TO undefined: 1.23085 AXL (3ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu:
✔️ transaction 
SEND MAX
TO axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu

with fees=0.00618
STATUS (382ms)
  amount: 0.247728 AXL
  estimated fees: 0.00618 AXL
  total spent: 0.253908 AXL
errors: 
warnings: 
✔️ has been signed! (5.6s) 
✔️ broadcasted! (65ms) optimistic operation: 
  -0.253908 AXL      OUT        EDB6946418427357FFF0C6EB7C1ABC0C744C798833868E47912B07CFE47546A3 2024-09-26T05:41
✔️ operation confirmed (0.33ms): 
  -0.253908 AXL      OUT        EDB6946418427357FFF0C6EB7C1ABC0C744C798833868E47912B07CFE47546A3 2024-09-26T05:41
✔️ undefined: 0.253908 AXL (2ops) (axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa on 44'/118'/6'/0/0) #6 js:2:axelar:axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa: (! sum of ops 0.125658 AXL) 0.253908 AXL spendable. 
✔️ destination operation 
  ? -253908          OUT        EDB6946418427357FFF0C6EB7C1ABC0C744C798833868E47912B07CFE47546A3 2024-09-26T05:41

necessary accounts resynced in 0.25ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.126831 AXL (5ops) (axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z on 44'/118'/8'/0/0) #8 js:2:axelar:axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z: (! sum of ops -0.090167 AXL) 0.126831 AXL spendable. 

max spendable ~0.119839
★ using mutation 'send some'
→ TO undefined: 0.938913 AXL (3ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84:
✔️ transaction 
SEND  0.077054 AXL
TO axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84

with fees=0.006195
  memo=LedgerLiveBot
STATUS (513ms)
  amount: 0.077054 AXL
  estimated fees: 0.006195 AXL
  total spent: 0.083249 AXL
errors: 
warnings: 
✔️ has been signed! (10.8s) 
✔️ broadcasted! (121ms) optimistic operation: 
  -0.083249 AXL      OUT        043945DF4D8BA672DD5A2A0F3F9BF43AE8F059462A45D26E94336E277B3173CA 2024-09-26T05:41
✔️ operation confirmed (0.17ms): 
  -0.083249 AXL      OUT        043945DF4D8BA672DD5A2A0F3F9BF43AE8F059462A45D26E94336E277B3173CA 2024-09-26T05:41
✔️ undefined: 0.126831 AXL (5ops) (axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z on 44'/118'/8'/0/0) #8 js:2:axelar:axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z: (! sum of ops -0.090167 AXL) 0.126831 AXL spendable. 
✔️ destination operation 
  ? -83249           OUT        043945DF4D8BA672DD5A2A0F3F9BF43AE8F059462A45D26E94336E277B3173CA 2024-09-26T05:41

necessary accounts resynced in 1.45ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.938913 AXL (3ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84: (! sum of ops -0.043011 AXL) 0.938899 AXL spendable. 0.000014 AXL unbonding. 
UNDELEGATIONS
  from axelarvaloper13s44uvtzf578zjze9eqeh0mnemj60pwn83frcp 0.000014 AXL

max spendable ~0.931907
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.024391 AXL
TO 
  0.024391 -> axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud
with fees=0.01194
  memo=LedgerLiveBot
STATUS (562ms)
  amount: 0.024391 AXL
  estimated fees: 0.01194 AXL
  total spent: 0.036331 AXL
errors: 
warnings: 
✔️ has been signed! (8.7s) 
✔️ broadcasted! (104ms) optimistic operation: 
  -0.036331 AXL      DELEGATE   3FE525B815D0684A1AE3C679C1D5D1E805B0F21170812C3A4DEA5168562AF17E 2024-09-26T05:42
    to axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud 0.024391 AXL    
✔️ operation confirmed (0.23ms): 
  -0.036331 AXL      DELEGATE   3FE525B815D0684A1AE3C679C1D5D1E805B0F21170812C3A4DEA5168562AF17E 2024-09-26T05:42
    to axelarvaloper19dx6vywgr62jtsxhhlhlgh7ug5vmgjnz6dkeud 0.024391 AXL    
✔️ undefined: 0.938913 AXL (3ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84: (! sum of ops -0.043011 AXL) 0.938899 AXL spendable. 0.000014 AXL unbonding. 
UNDELEGATIONS
  from axelarvaloper13s44uvtzf578zjze9eqeh0mnemj60pwn83frcp 0.000014 AXL

necessary accounts resynced in 0.23ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 1.23085 AXL (3ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu: (! sum of ops 0.116101 AXL) 1.210341 AXL spendable. 0.020517 AXL delegated. 
DELEGATIONS
  to axelarvaloper1xy97mfxvm2qwtw7vt9e3m850eknxfwxd9l5ate 0.015666 AXL  (claimable 0.015666)
  to axelarvaloper143f687gmeg2xjg2vr4lm9n796mt53eplv4qxgv 0.004851 AXL 

max spendable ~1.20333
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.002643 -> axelarvaloper1xy97mfxvm2qwtw7vt9e3m850eknxfwxd9l5ate
with fees=0.017065
  memo=LedgerLiveBot
STATUS (425ms)
  amount: 0 AXL
  estimated fees: 0.017065 AXL
  total spent: 0.017065 AXL
errors: 
warnings: 
✔️ has been signed! (7.3s) 
✔️ broadcasted! (84ms) optimistic operation: 
  -0.017065 AXL      UNDELEGATE D554A22964F7709C4667B737D41893D00CA80451436ED6DB335B76D75039C487 2024-09-26T05:42
    to axelarvaloper1xy97mfxvm2qwtw7vt9e3m850eknxfwxd9l5ate 0.002643 AXL    
✔️ operation confirmed (0.32ms): 
  -0.017065 AXL      UNDELEGATE D554A22964F7709C4667B737D41893D00CA80451436ED6DB335B76D75039C487 2024-09-26T05:42
    to axelarvaloper1xy97mfxvm2qwtw7vt9e3m850eknxfwxd9l5ate 0.002643 AXL    
✔️ undefined: 1.23085 AXL (3ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu: (! sum of ops 0.116101 AXL) 1.210341 AXL spendable. 0.020517 AXL delegated. 
DELEGATIONS
  to axelarvaloper1xy97mfxvm2qwtw7vt9e3m850eknxfwxd9l5ate 0.015666 AXL  (claimable 0.015666)
  to axelarvaloper143f687gmeg2xjg2vr4lm9n796mt53eplv4qxgv 0.004851 AXL 


Spec cosmos (16)

Spec cosmos found 16 Cosmos accounts (preload: 723ms). Will use Cosmos 2.35.24 on nanoS 2.1.0
undefined: 0.019298 ATOM (47ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf:
undefined: 0 ATOM (37ops) (cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935 on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935:
undefined: 0 ATOM (38ops) (cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu:
undefined: 0.195304 ATOM (59ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4:
undefined: 0.041215 ATOM (23ops) (cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg:
undefined: 0.015498 ATOM (55ops) (cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8 on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8:
undefined: 0 ATOM (23ops) (cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu on 44'/118'/6'/0/0) #6 js:2:cosmos:cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu:
undefined: 0.046789 ATOM (35ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x:
undefined: 0.129158 ATOM (20ops) (cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r:
undefined: 2.05261 ATOM (19ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5:
undefined: 0.49371 ATOM (4ops) (cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l on 44'/118'/10'/0/0) #10 js:2:cosmos:cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l:
undefined: 3.35543 ATOM (11ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca:
undefined: 0.678092 ATOM (1ops) (cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57 on 44'/118'/12'/0/0) #12 js:2:cosmos:cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57:
undefined: 0.938338 ATOM (4ops) (cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64 on 44'/118'/13'/0/0) #13 js:2:cosmos:cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64:
undefined: 1.27014 ATOM (1ops) (cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h on 44'/118'/14'/0/0) #14 js:2:cosmos:cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h:
undefined: 0 ATOM (0ops) (cosmos1la5ql3ezl9q4zjw3rg75qewd5s6het7j3qr3d5 on 44'/118'/15'/0/0) #15 js:2:cosmos:cosmos1la5ql3ezl9q4zjw3rg75qewd5s6het7j3qr3d5:
necessary accounts resynced in 26ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.019298 ATOM (47ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf: 0.019298 ATOM spendable. 

max spendable ~0.016506
★ using mutation 'send max'
→ TO undefined: 3.35543 ATOM (11ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca:
✔️ transaction 
SEND MAX
TO cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca

with fees=0.002794
STATUS (1432ms)
  amount: 0.016504 ATOM
  estimated fees: 0.002794 ATOM
  total spent: 0.019298 ATOM
errors: 
warnings: 
✔️ has been signed! (5s) 
✔️ broadcasted! (314ms) optimistic operation: 
  -0.019298 ATOM     OUT        217B852B879E62C139FB4655D68226854B79F595B0B8FA9750FEF761FCDBDC96 2024-09-26T05:41
✔️ operation confirmed (10.9s): 
  -0.019298 ATOM     OUT        217B852B879E62C139FB4655D68226854B79F595B0B8FA9750FEF761FCDBDC96 2024-09-26T05:41
✔️ undefined: 0 ATOM (48ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf: 0 ATOM spendable. 
(in 10.9s)
✔️ destination operation 
  +0.016504 ATOM     IN         217B852B879E62C139FB4655D68226854B79F595B0B8FA9750FEF761FCDBDC96 2024-09-26T05:41
(in 11.3s)

necessary accounts resynced in 0.22ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.195304 ATOM (59ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4: (! sum of ops 0.209054 ATOM) 0.184259 ATOM spendable. 0.011045 ATOM unbonding. 
UNDELEGATIONS
  from cosmosvaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2ztve7q 0.005472 ATOM
  from cosmosvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98l3k9h6 0.005573 ATOM

max spendable ~0.181465
★ using mutation 'delegate new validators'
✔️ transaction 
DELEGATE  0.002653 ATOM
TO 
  0.002653 -> cosmosvaloper1e4vye322gkjx8n85jgcclnc7nvdvu82axnr5ll
with fees=0.009009
  memo=LedgerLiveBot
STATUS (2650ms)
  amount: 0.002653 ATOM
  estimated fees: 0.009009 ATOM
  total spent: 0.011662 ATOM
errors: 
warnings: 
✔️ has been signed! (5.5s) 
✔️ broadcasted! (295ms) optimistic operation: 
  -0.011662 ATOM     DELEGATE   50A80EA94E8F59E8A276FD5654655299D162079BDD45011C0634DF8D269C5669 2024-09-26T05:42
    to cosmosvaloper1e4vye322gkjx8n85jgcclnc7nvdvu82axnr5ll                 
✔️ operation confirmed (11.1s): 
  -0.009009 ATOM     DELEGATE   50A80EA94E8F59E8A276FD5654655299D162079BDD45011C0634DF8D269C5669 2024-09-26T05:42
    to cosmosvaloper1e4vye322gkjx8n85jgcclnc7nvdvu82axnr5ll                 
✔️ undefined: 0.186295 ATOM (60ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4: (! sum of ops 0.200045 ATOM) 0.172597 ATOM spendable. 0.002653 ATOM delegated. 0.011045 ATOM unbonding. 
DELEGATIONS
  to cosmosvaloper1e4vye322gkjx8n85jgcclnc7nvdvu82axnr5ll 0.002653 ATOM 
UNDELEGATIONS
  from cosmosvaloper1y0us8xvsvfvqkk9c6nt5cfyu5au5tww2ztve7q 0.005472 ATOM
  from cosmosvaloper17r0cp9zrtkvzlz7a2r09gmdxwqfyje98l3k9h6 0.005573 ATOM
(in 11.1s)

necessary accounts resynced in 0.27ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.041215 ATOM (23ops) (cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg: 0.041215 ATOM spendable. 

max spendable ~0.038423
★ using mutation 'send some'
→ TO undefined: 0.046789 ATOM (35ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x:
✔️ transaction 
SEND  0.01984 ATOM
TO cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x

with fees=0.002832
  memo=LedgerLiveBot
STATUS (2633ms)
  amount: 0.01984 ATOM
  estimated fees: 0.002832 ATOM
  total spent: 0.022672 ATOM
errors: 
warnings: 
✔️ has been signed! (6.1s) 
✔️ broadcasted! (381ms) optimistic operation: 
  -0.022672 ATOM     OUT        2176A275D33B2198F1BC01A5E6186FB30F2A50A62175A0E79A6ADA805CC7629F 2024-09-26T05:42
✔️ operation confirmed (10.8s): 
  -0.022672 ATOM     OUT        2176A275D33B2198F1BC01A5E6186FB30F2A50A62175A0E79A6ADA805CC7629F 2024-09-26T05:42
✔️ undefined: 0.018543 ATOM (24ops) (cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg: 0.018543 ATOM spendable. 
(in 10.8s)
✔️ destination operation 
  +0.01984 ATOM      IN         2176A275D33B2198F1BC01A5E6186FB30F2A50A62175A0E79A6ADA805CC7629F 2024-09-26T05:42
(in 10.9s)

necessary accounts resynced in 0.31ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.015498 ATOM (55ops) (cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8 on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8: (! sum of ops 0.015187 ATOM) 0.015498 ATOM spendable. 

max spendable ~0.012706
★ using mutation 'send some'
→ TO undefined: 0.129158 ATOM (20ops) (cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r:
✔️ transaction 
SEND  0.006865 ATOM
TO cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r

with fees=0.002832
  memo=LedgerLiveBot
STATUS (1604ms)
  amount: 0.006865 ATOM
  estimated fees: 0.002832 ATOM
  total spent: 0.009697 ATOM
errors: 
warnings: 
✔️ has been signed! (6.8s) 
✔️ broadcasted! (138ms) optimistic operation: 
  -0.009697 ATOM     OUT        3FC349CE87F596624E69E959CCA6FC18545DA06A27952B8D54E2DE9C78FA05CE 2024-09-26T05:43
✔️ operation confirmed (10.8s): 
  -0.009697 ATOM     OUT        3FC349CE87F596624E69E959CCA6FC18545DA06A27952B8D54E2DE9C78FA05CE 2024-09-26T05:43
✔️ undefined: 0.005801 ATOM (56ops) (cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8 on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8: (! sum of ops 0.00549 ATOM) 0.005801 ATOM spendable. 
(in 10.8s)
✔️ destination operation 
  +0.006865 ATOM     IN         3FC349CE87F596624E69E959CCA6FC18545DA06A27952B8D54E2DE9C78FA05CE 2024-09-26T05:43
(in 11.2s)

necessary accounts resynced in 0.19ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 0.066629 ATOM (36ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x: (! sum of ops 0.078436 ATOM) 0.01984 ATOM spendable. 0.046789 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper1fqzqejwkk898fcslw4z4eeqjzesynvrdfr5hte 0.00127 ATOM  (claimable 0.00127)
  to cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm 0.045519 ATOM  (claimable 0.045519)

max spendable ~0.017048
★ using mutation 'redelegate'
✔️ transaction 
REDELEGATE 
TO 
  0.00127 -> cosmosvaloper1aewyh4gtvayx6v7w592jdfylawk4rsu9tfvfgm
  source validator=cosmosvaloper1fqzqejwkk898fcslw4z4eeqjzesynvrdfr5hte
with fees=0.028993
  memo=LedgerLiveBot
STATUS (824ms)
  amount: 0 ATOM
  estimated fees: 0.028993 ATOM
  total spent: 0 ATOM
errors: amount NotEnoughBalance
warnings: 
⚠️ TEST mutation must not have tx status errors
NotEnoughBalance: NotEnoughBalance
(totally spent 837ms – ends at 2024-09-26T05:46:13.647Z)
necessary accounts resynced in 0.29ms
▬ Cosmos 2.35.24 on nanoS 2.1.0
→ FROM undefined: 3.37194 ATOM (12ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca: (! sum of ops 3.370755 ATOM) 3.326486 ATOM spendable. 0.045456 ATOM delegated. 
DELEGATIONS
  to cosmosvaloper19qv67gvevp4xw64kmhd6ff6ta2l2ywgfm74xtz 0.045456 ATOM  (claimable 0.045456)

max spendable ~3.32368
★ using mutation 'undelegate'
✔️ transaction 
UNDELEGATE 
TO 
  0.045456 -> cosmosvaloper19qv67gvevp4xw64kmhd6ff6ta2l2ywgfm74xtz
with fees=0.009558
  memo=LedgerLiveBot
STATUS (1701ms)
  amount: 0 ATOM
  estimated fees: 0.009558 ATOM
  total spent: 0.009558 ATOM
errors: 
warnings: 
✔️ has been signed! (5.7s) 
✔️ broadcasted! (393ms) optimistic operation: 
  -0.009558 ATOM     UNDELEGATE A37A027B2C3D813ABC6A36406B5C1FDB64388FAEBF7AE3CD95FCF50184566E4C 2024-09-26T05:43
    to cosmosvaloper19qv67gvevp4xw64kmhd6ff6ta2l2ywgfm74xtz                 
✔️ operation confirmed (10.9s): 
  -0.009558 ATOM     UNDELEGATE A37A027B2C3D813ABC6A36406B5C1FDB64388FAEBF7AE3CD95FCF50184566E4C 2024-09-26T05:43
    to cosmosvaloper19qv67gvevp4xw64kmhd6ff6ta2l2ywgfm74xtz                 
✔️ undefined: 3.36253 ATOM (13ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca: (! sum of ops 3.361197 ATOM) 3.317079 ATOM spendable. 0.045456 ATOM unbonding. 
UNDELEGATIONS
  from cosmosvaloper19qv67gvevp4xw64kmhd6ff6ta2l2ywgfm74xtz 0.045456 ATOM
(in 10.9s)


Spec secret_network (failed)


Spec Avalanche C-Chain (10)

Spec Avalanche C-Chain found 10 Avalanche C-Chain accounts (preload: 114ms). Will use Avalanche 0.8.4 on nanoS 2.1.0
undefined: 0.197694 AVAX (47ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:avalanche_c_chain:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0 AVAX (51ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:avalanche_c_chain:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.197119 AVAX (46ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:avalanche_c_chain:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0 AVAX (36ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:avalanche_c_chain:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0.401714 AVAX (32ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:avalanche_c_chain:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0 AVAX (22ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:avalanche_c_chain:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 0.768479 AVAX (4ops) (0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1 on 44'/60'/6'/0/0) #6 js:2:avalanche_c_chain:0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1:
undefined: 0.213583 AVAX (5ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:avalanche_c_chain:0x636462506a431eC48598C1b3FBBc6279860DF70C:
undefined: 1.04727 AVAX (7ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:avalanche_c_chain:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
undefined: 0 AVAX (0ops) (0x0558aBA03367Cb1452AC701557460b00f8452CA8 on 44'/60'/9'/0/0) #9 js:2:avalanche_c_chain:0x0558aBA03367Cb1452AC701557460b00f8452CA8:
necessary accounts resynced in 0.37ms
▬ Avalanche 0.8.4 on nanoS 2.1.0
→ FROM undefined: 0.197694 AVAX (47ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:avalanche_c_chain:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
max spendable ~0.197694
★ using mutation 'send max'
→ TO undefined: 0.401714 AVAX (32ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:avalanche_c_chain:0x714908e42B5A11eF11578F243052c9E60f1485e6:
✔️ transaction 
SEND MAX
TO 0x714908e42B5A11eF11578F243052c9E60f1485e6
STATUS (1195ms)
  amount: 0.197121968613255675 AVAX
  estimated fees: 0.000572292 AVAX
  total spent: 0.197694260613255675 AVAX
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Chain ID","x":42,"y":-1,"w":86,"h":11}
{"text":"43114","x":47,"y":10,"w":81,"h":11}
(totally spent 61.3s – ends at 2024-09-26T05:46:13.657Z)
necessary accounts resynced in 0.17ms
▬ Avalanche 0.8.4 on nanoS 2.1.0
→ FROM undefined: 0.197119 AVAX (46ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:avalanche_c_chain:0x2141e8D44753FC7720C471233740c133D79459fC:
max spendable ~0.197119
★ using mutation 'move 50%'
→ TO undefined: 0.197694 AVAX (47ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:avalanche_c_chain:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
✔️ transaction 
SEND  0.098559662178169837 AVAX
TO 0x731477De13B323A0cA90C1FE194EA5A0412937c2
STATUS (1224ms)
  amount: 0.098559662178169837 AVAX
  estimated fees: 0.00056721 AVAX
  total spent: 0.099126872178169837 AVAX
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Chain ID","x":42,"y":-1,"w":86,"h":11}
{"text":"43114","x":47,"y":10,"w":81,"h":11}
(totally spent 61.3s – ends at 2024-09-26T05:46:13.660Z)
necessary accounts resynced in 0.95ms
▬ Avalanche 0.8.4 on nanoS 2.1.0
→ FROM undefined: 0.401714 AVAX (32ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:avalanche_c_chain:0x714908e42B5A11eF11578F243052c9E60f1485e6:
max spendable ~0.401714
★ using mutation 'move 50%'
→ TO undefined: 0.197119 AVAX (46ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:avalanche_c_chain:0x2141e8D44753FC7720C471233740c133D79459fC:
✔️ transaction 
SEND  0.200857159654426997 AVAX
TO 0x2141e8D44753FC7720C471233740c133D79459fC
STATUS (942ms)
  amount: 0.200857159654426997 AVAX
  estimated fees: 0.00056721 AVAX
  total spent: 0.201424369654426997 AVAX
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Chain ID","x":42,"y":-1,"w":86,"h":11}
{"text":"43114","x":47,"y":10,"w":81,"h":11}
(totally spent 61.1s – ends at 2024-09-26T05:46:13.662Z)

Spec Binance Smart Chain (10)

Spec Binance Smart Chain found 10 Binance Smart Chain accounts (preload: 637ms). Will use BinanceSmartChain 1.11.3 on nanoS 2.1.0
undefined: 0.00274387 BNB (92ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:bsc:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.00459976 BNB (89ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:bsc:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.0242889 BNB (103ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0 BNB (102ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:bsc:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0.00453676 BNB (83ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:bsc:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 0.00268087 BNB (98ops) (0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1 on 44'/60'/6'/0/0) #6 js:2:bsc:0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1:
undefined: 0 BNB (71ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
undefined: 0.0242259 BNB (59ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
undefined: 0 BNB (0ops) (0x0558aBA03367Cb1452AC701557460b00f8452CA8 on 44'/60'/9'/0/0) #9 js:2:bsc:0x0558aBA03367Cb1452AC701557460b00f8452CA8:
necessary accounts resynced in 2.96ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
max spendable ~0.0550656
★ using mutation 'move 50%'
→ TO undefined: 0 BNB (71ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
✔️ transaction 
SEND  0.027532831547880244 BNB
TO 0x636462506a431eC48598C1b3FBBc6279860DF70C
STATUS (690ms)
  amount: 0.027532831547880244 BNB
  estimated fees: 0.000042000000945 BNB
  total spent: 0.027574831548825244 BNB
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review","x":41,"y":3,"w":128,"h":32}
{"text":"transaction","x":41,"y":17,"w":128,"h":32}
{"text":"From (1/3)","x":38,"y":3,"w":84,"h":32}
{"text":"0xF4816c59cd8e24eE","x":9,"y":17,"w":113,"h":32}
(totally spent 60.7s – ends at 2024-09-26T05:46:13.665Z)
necessary accounts resynced in 0.26ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0242889 BNB (103ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
max spendable ~0.0242889
★ using mutation 'move 50%'
→ TO undefined: 0.0242259 BNB (59ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
✔️ transaction 
SEND  0.012144467609662234 BNB
TO 0x8C63f5be03552E332A8a1e122c58d7b306d81679
STATUS (646ms)
  amount: 0.012144467609662234 BNB
  estimated fees: 0.00002772 BNB
  total spent: 0.012172187609662234 BNB
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review","x":41,"y":3,"w":128,"h":32}
{"text":"transaction","x":41,"y":17,"w":128,"h":32}
{"text":"From (1/3)","x":38,"y":3,"w":84,"h":32}
{"text":"0x59569e96d0E3D972","x":9,"y":17,"w":113,"h":32}
(totally spent 60.7s – ends at 2024-09-26T05:46:13.667Z)
necessary accounts resynced in 0.27ms
▬ BinanceSmartChain 1.11.3 on nanoS 2.1.0
→ FROM undefined: 0.0242259 BNB (59ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
max spendable ~0.0242259
★ using mutation 'send max'
→ TO undefined: 0.0242889 BNB (103ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
✔️ transaction 
SEND MAX
TO 0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd
STATUS (760ms)
  amount: 0.024198215219282467 BNB
  estimated fees: 0.00002772 BNB
  total spent: 0.024225935219282467 BNB
errors: 
warnings: 
⚠️ Error: device action timeout. Recent events was:
{"text":"Review","x":41,"y":3,"w":128,"h":32}
{"text":"transaction","x":41,"y":17,"w":128,"h":32}
{"text":"From (1/3)","x":38,"y":3,"w":84,"h":32}
{"text":"0x8C63f5be03552E33","x":10,"y":17,"w":112,"h":32}
(totally spent 60.8s – ends at 2024-09-26T05:46:13.670Z)

Spec Cronos (6)

Spec Cronos found 6 Cronos accounts (preload: 120ms). Will use Ethereum 1.10.3 on nanoS 2.1.0
undefined: 0.105 CRO (143ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:cronos:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 1.17124 CRO (183ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:cronos:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 1.37452 CRO (154ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:cronos:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 1.4986 CRO (127ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:cronos:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0.937713 CRO (18ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:cronos:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0 CRO (0ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:cronos:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:

Spec Fantom (6)

Spec Fantom found 6 Fantom accounts (preload: 202ms). Will use Ethereum 1.10.3 on nanoS 2.1.0
undefined: 3.1916 FTM (80ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 18.0049 FTM (90ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.963886 FTM (86ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.00019929 FTM (79ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 26.9148 FTM (34ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:fantom:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0 FTM (0ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:fantom:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
necessary accounts resynced in 0.24ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 3.1916 FTM (80ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
max spendable ~3.19055
★ using mutation 'move 50%'
→ TO undefined: 18.0049 FTM (90ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
✔️ transaction 
SEND  1.595277505557874569 FTM
TO 0xF4816c59cd8e24eEd9c5570D026C2396336119A0
STATUS (163ms)
  amount: 1.595277505557874569 FTM
  estimated fees: 0.000414774900666 FTM
  total spent: 1.595692280458540569 FTM
errors: 
warnings: 
✔️ has been signed! (5.4s) 
✔️ broadcasted! (135ms) optimistic operation: 
  -1.595692280458540569 FTM OUT        0xbccf473550fdac8c44be4930a08015330296f860ed9453055e0511f5a24bb7db 2024-09-26T05:43
✔️ operation confirmed (20.8s): 
  -1.595488338806353569 FTM OUT        0xbccf473550fdac8c44be4930a08015330296f860ed9453055e0511f5a24bb7db 2024-09-26T05:43
✔️ undefined: 1.59611 FTM (81ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:(in 20.8s)
✔️ destination operation 
  +1.595277505557874569 FTM IN         0xbccf473550fdac8c44be4930a08015330296f860ed9453055e0511f5a24bb7db 2024-09-26T05:43
(in 36.3s)

necessary accounts resynced in 13ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 19.6002 FTM (91ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
max spendable ~19.5991
★ using mutation 'move 50%'
→ TO undefined: 26.9148 FTM (34ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:fantom:0x714908e42B5A11eF11578F243052c9E60f1485e6:
✔️ transaction 
SEND  9.79958929298918947 FTM
TO 0x714908e42B5A11eF11578F243052c9E60f1485e6
STATUS (167ms)
  amount: 9.79958929298918947 FTM
  estimated fees: 0.000419950666548 FTM
  total spent: 9.80000924365573747 FTM
errors: 
warnings: 
✔️ has been signed! (4.6s) 
✔️ broadcasted! (60ms) optimistic operation: 
  -9.80000924365573747 FTM OUT        0x8fe0c98a5338995bf90827c97f73cebf047e1813ead11621442a8bfc447dcb39 2024-09-26T05:44
✔️ operation confirmed (20.8s): 
  -9.79980545495534947 FTM OUT        0x8fe0c98a5338995bf90827c97f73cebf047e1813ead11621442a8bfc447dcb39 2024-09-26T05:44
✔️ undefined: 9.80043 FTM (92ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:(in 20.8s)
✔️ destination operation 
  +9.79958929298918947 FTM IN         0x8fe0c98a5338995bf90827c97f73cebf047e1813ead11621442a8bfc447dcb39 2024-09-26T05:44
(in 20.8s)

necessary accounts resynced in 0.17ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 36.7144 FTM (35ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:fantom:0x714908e42B5A11eF11578F243052c9E60f1485e6:
max spendable ~36.7134
★ using mutation 'send max'
→ TO undefined: 0.963886 FTM (86ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:
✔️ transaction 
SEND MAX
TO 0x2141e8D44753FC7720C471233740c133D79459fC
STATUS (201ms)
  amount: 36.714060504297928859 FTM
  estimated fees: 0.000420202020336 FTM
  total spent: 36.714480706318264859 FTM
errors: 
warnings: 
✔️ has been signed! (3.4s) 
✔️ broadcasted! (130ms) optimistic operation: 
  -36.714480706318264859 FTM OUT        0x10ce025e8d00fdd55096898f68bcb56ce981e4bb5d432cef7bcdfc03d42f2484 2024-09-26T05:45
✔️ operation confirmed (20.8s): 
  -36.714276917617876859 FTM OUT        0x10ce025e8d00fdd55096898f68bcb56ce981e4bb5d432cef7bcdfc03d42f2484 2024-09-26T05:45
✔️ undefined: 0.00020378 FTM (36ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:fantom:0x714908e42B5A11eF11578F243052c9E60f1485e6:(in 20.8s)
✔️ destination operation 
  +36.714060504297928859 FTM IN         0x10ce025e8d00fdd55096898f68bcb56ce981e4bb5d432cef7bcdfc03d42f2484 2024-09-26T05:45
(in 20.9s)


Spec Boba (failed)

Spec Boba found 1 Boba accounts (preload: 130ms). Will use Ethereum 1.10.3 on nanoS 2.1.0
undefined: 0 ETH (0ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:boba:0x731477De13B323A0cA90C1FE194EA5A0412937c2:

This SEED does not have Boba. Please send funds to 0x731477De13B323A0cA90C1FE194EA5A0412937c2

Spec Telos (failed)


Spec Polygon zkEVM (5)

Spec Polygon zkEVM found 5 Polygon zkEVM accounts (preload: 81ms). Will use Ethereum 1.10.3 on nanoS 2.1.0
undefined: 0.0000002 ETH (78ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.00000013 ETH (78ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.019023 ETH (76ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.00000007 ETH (56ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0 ETH (0ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:polygon_zk_evm:0x714908e42B5A11eF11578F243052c9E60f1485e6:
necessary accounts resynced in 0.22ms
▬ Ethereum 1.10.3 on nanoS 2.1.0
→ FROM undefined: 0.019023 ETH (76ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC: (! sum of ops 0.018951895199434 ETH)
max spendable ~0.0190148
★ using mutation 'move 50%'
→ TO undefined: 0.00000013 ETH (78ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
✔️ transaction 
SEND  0.0095074006466025 ETH
TO 0xF4816c59cd8e24eEd9c5570D026C2396336119A0
STATUS (189ms)
  amount: 0.0095074006466025 ETH
  estimated fees: 0.000003255 ETH
  total spent: 0.0095106556466025 ETH
errors: 
warnings: 
✔️ has been signed! (3.5s) 
✔️ broadcasted! (204ms) optimistic operation: 
  -0.0095106556466025 ETH OUT        0xe3c9cb0ef6fb32b1626dd76928f3dca67cb06563b2b6dc246333c58cb1dd7e55 2024-09-26T05:42
✔️ operation confirmed (10.5s): 
  -0.0095095875997275 ETH OUT        0xe3c9cb0ef6fb32b1626dd76928f3dca67cb06563b2b6dc246333c58cb1dd7e55 2024-09-26T05:42
✔️ undefined: 0.00951342 ETH (77ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC: (! sum of ops 0.0094423075997065 ETH)(in 10.5s)
✔️ destination operation 
  +0.0095074006466025 ETH IN         0xe3c9cb0ef6fb32b1626dd76928f3dca67cb06563b2b6dc246333c58cb1dd7e55 2024-09-26T05:42
(in 10.5s)


Spec Polkadot (failed)


Spec Tron (10)

Spec Tron found 10 Tron accounts (preload: 42.6s). Will use Tron 0.5.0 on nanoSP 1.1.1
undefined: 0.000002 TRX (103ops) (TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1 on 44'/195'/0'/0/0) #0 js:2:tron:TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1:
undefined: 30 TRX (75ops) (TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L on 44'/195'/1'/0/0) #1 js:2:tron:TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L:
undefined: 183.326 TRX (106ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:
undefined: 0.690555 TRX (58ops) (TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN on 44'/195'/3'/0/0) #3 js:2:tron:TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN:
undefined: 9.87643 TRX (65ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
undefined: 0.000001 TRX (28ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:
undefined: 177.005 TRX (25ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
undefined: 254.056 TRX (14ops) (TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1 on 44'/195'/7'/0/0) #7 js:2:tron:TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1:
undefined: 86.2447 TRX (4ops) (TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo on 44'/195'/8'/0/0) #8 js:2:tron:TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo:
undefined: 0 TRX (0ops) (TJLC3Vmc48hb9SSus2S3ey7jkCNyjWn7o6 on 44'/195'/9'/0/0) #9 js:2:tron:TJLC3Vmc48hb9SSus2S3ey7jkCNyjWn7o6:
necessary accounts resynced in 0.28ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 183.326 TRX (106ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:
max spendable ~8.22643
★ using mutation 'send max to another account'
→ TO undefined: 0 TRX (0ops) (TJLC3Vmc48hb9SSus2S3ey7jkCNyjWn7o6 on 44'/195'/9'/0/0) #9 js:2:tron:TJLC3Vmc48hb9SSus2S3ey7jkCNyjWn7o6:
✔️ transaction 
SEND MAX 
TO TJLC3Vmc48hb9SSus2S3ey7jkCNyjWn7o6
STATUS (984ms)
  amount: 8.226432 TRX
  estimated fees: 1.1 TRX
  total spent: 9.326432 TRX
errors: 
warnings: fee TronUnexpectedFees
✔️ has been signed! (3.1s) 
✔️ broadcasted! (109ms) optimistic operation: 
  -9.326432 TRX      OUT        1459ba3e8cb59161f9ade0fa79aeded543886ae4f3abfb07e2d91bbd68b5328d 2024-09-26T05:44
✔️ operation confirmed (11.5s): 
  -9.326432 TRX      OUT        1459ba3e8cb59161f9ade0fa79aeded543886ae4f3abfb07e2d91bbd68b5328d 2024-09-26T05:44
✔️ undefined: 174 TRX (107ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:(in 11.5s)
✔️ destination operation 
  +8.226432 TRX      IN         1459ba3e8cb59161f9ade0fa79aeded543886ae4f3abfb07e2d91bbd68b5328d 2024-09-26T05:44
(in 11.2s)

necessary accounts resynced in 0.18ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 9.87643 TRX (65ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
max spendable ~8.77643
★ using mutation 'move 50% to another account'
→ TO undefined: 174 TRX (107ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:
✔️ transaction 
SEND  4.388216 TRX 
TO TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT
STATUS (962ms)
  amount: 4.388216 TRX
  estimated fees: 0 TRX
  total spent: 4.388216 TRX
errors: 
warnings: 
✔️ has been signed! (5.9s) 
✔️ broadcasted! (131ms) optimistic operation: 
  -4.388216 TRX      OUT        81daa4255675863a40058ce33edd059b2cefd1a3ee87f0bf6205a252b9940304 2024-09-26T05:44
✔️ operation confirmed (11.3s): 
  -4.388216 TRX      OUT        81daa4255675863a40058ce33edd059b2cefd1a3ee87f0bf6205a252b9940304 2024-09-26T05:44
✔️ undefined: 5.48821 TRX (66ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:(in 11.3s)
⚠️ LedgerAPI4xx: API HTTP 406 https://tron.coin.ledger.com/wallet/getnowblock
(totally spent 28.4s – ends at 2024-09-26T05:46:13.733Z)
necessary accounts resynced in 0.26ms
▬ Tron 0.5.0 on nanoSP 1.1.1
→ FROM undefined: 177.005 TRX (25ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
max spendable ~175.905
★ using mutation 'move 50% to another account'
→ TO undefined: 5.48821 TRX (66ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
✔️ transaction 
SEND  87.952876 TRX 
TO TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF
STATUS (1005ms)
  amount: 87.952876 TRX
  estimated fees: 0 TRX
  total spent: 87.952876 TRX
errors: 
warnings: 
✔️ has been signed! (2839ms) 
✔️ broadcasted! (113ms) optimistic operation: 
  -87.952876 TRX     OUT        1cefd1320cadd38dadd387e8a416ba0a45210fad4f81854c01c33b732c7c6dc0 2024-09-26T05:45
✔️ operation confirmed (11.1s): 
  -87.952876 TRX     OUT        1cefd1320cadd38dadd387e8a416ba0a45210fad4f81854c01c33b732c7c6dc0 2024-09-26T05:45
✔️ undefined: 89.0528 TRX (26ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:(in 11.1s)
✔️ destination operation 
  +87.952876 TRX     IN         1cefd1320cadd38dadd387e8a416ba0a45210fad4f81854c01c33b732c7c6dc0 2024-09-26T05:45
(in 11.5s)


Details of the 41 uncovered mutations

Spec Filecoin (5)

  • Send small to f4 address:
  • Send small to eth address:
  • Send 50%~:
  • Transfer Max:
  • Send ~50% WFIL:

Spec Qtum (1)

  • move ~50%: balance is too low (2)

Spec Decred (2)

  • optimize-size: balance is too low (2)
  • send 1 utxo: balance is too low (2)

Spec cardano (6)

  • move ~10% token:
  • move ~50%:
  • send max:
  • delegate to pool:
  • redelegate to pool:
  • undelegate:

Spec axelar (2)

  • redelegate: balance is too low for redelegate (7), none can redelegate (6)
  • claim rewards: balance is too low for claim rewards (7), no delegation to claim (6)

Spec cosmos (1)

  • claim rewards: balance is too low for claim rewards (4), no delegation to claim (6)

Spec secret_network (6)

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

Spec Binance Smart Chain (1)

  • move some ERC20 like (ERC20, BEP20, etc...): bsc balance is too low (7)

Spec Cronos (3)

  • move 50%: cronos balance is too low (6)
  • send max: cronos balance is too low (6)
  • move some ERC20 like (ERC20, BEP20, etc...): cronos balance is too low (6)

Spec Fantom (1)

  • move some ERC20 like (ERC20, BEP20, etc...): fantom balance is too low (3)

Spec Boba (3)

  • move 50%:
  • send max:
  • move some ERC20 like (ERC20, BEP20, etc...):

Spec Telos (2)

  • move 50%:
  • send max:

Spec Polygon zkEVM (1)

  • send max: polygon_zk_evm balance is too low (4)

Spec Polkadot (7)

  • send 50%~:
  • send max:
  • bond - bondExtra:
  • unbond:
  • rebond:
  • nominate:
  • withdraw:
Portfolio ($369.73) – Details of the 16 currencies
Spec (accounts) State Remaining Runs (est) funds?
Filecoin (0) 0 ops , 🤷‍♂️ ($0.00) ``
Qtum (6) 403 ops (+8), 2.48418 QTUM ($6.34) 👍 193 MKabfnw96FDmKqzdJJx6kFdsqrXux4q99v
Decred (5) 346 ops (+6), 1.28099 DCR ($15.86) 💪 999+ DsdM1iFrdbmbpYF8kmwS6e1HknNzJ43jMcY
cardano (0) 0 ops , 🤷‍♂️ ``
axelar (18) 23 ops , 16.5973 AXL ($10.31) 👍 194 axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g
cosmos (16) 385 ops (+8), 9.07146 ATOM ($44.56) 👍 146 cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf
secret_network (0) 0 ops , 🤷‍♂️ ``
Avalanche C-Chain (10) 250 ops , 2.82586 AVAX ($78.29) 💪 553 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Binance Smart Chain (10) 799 ops , 0.118141 BNB ($69.78) 👍 84 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Cronos (6) 625 ops , 5.08708 CRO ($0.47) ⚠️ 11 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Fantom (6) 375 ops (+6), 49.0755 FTM ($32.28) 💪 999+ 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Boba (1) 0 ops , 0 ETH ($0.00) 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Telos (0) 0 ops , 🤷‍♂️ ``
Polygon zkEVM (5) 290 ops (+2), 0.0190234 ETH ($0.00) 👍 271 0x731477De13B323A0cA90C1FE194EA5A0412937c2
Polkadot (0) 0 ops , 🤷‍♂️ ``
Tron (10) 484 ops (+6), 537.2 TRX ($111.84) 💪 999+ TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1
undefined [segwit]: 1.36491 QTUM (109ops) (MKabfnw96FDmKqzdJJx6kFdsqrXux4q99v on 49'/88'/0'/0/55) segwit#0 js:2:qtum:xpub6BvfSTHRWubyQok4dybQTFVx9h7LrHqVAqAUaZubFw1Pd9x2h4HDpyKiNnHshQySv1DkF3ZKUHLCHBiyeZFVcG9b4iDwBSPmAVEubwgjFgc:segwit
undefined [segwit]: 0.456345 QTUM (99ops) (MDGjHsapSNYhpNxrfSbZPdm4E6FSBv9abD on 49'/88'/1'/0/50) segwit#1 js:2:qtum:xpub6BvfSTHRWubyT9ET9NECkkigRmcfJE8CZck5aD6egaAHHoC3xCkSEm6yhDGK65Q2GsZyTRKyecoSNRge9r8fBAxNpuv1Rx23wcGxvNn2d7d:segwit
undefined [segwit]: 0 QTUM (0ops) (MR3A49zXnWaH7Vhm7YKeiaREazdKZxie6r on 49'/88'/2'/0/0) segwit#2 js:2:qtum:xpub6BvfSTHRWubyX78dqB3tVcgps5JtUKukFsbkwrxQhEvBr2UmTUjNEdcZRvmBb6PczEcKUrnVvQvQ2BafHcw1wBkqbVLzNyEN912tNDDd8M9:segwit
undefined [legacy]: 0.553565 QTUM (105ops) (QgxWAuKyUAeY56HjpUUsYFdmkMVRGhdfEz on 44'/88'/0'/0/55) #0 js:2:qtum:xpub6DA2jGUBMLR6J3WVfefyEwJefrpxMvCxC884tLu7kYsHF4znJeiq3FFPYaKyLg6sBP8eXKuoFRBzgmRaYSqAnMSQsERFbgQJFSxH9kJgFyg:
undefined [legacy]: 0.100443 QTUM (90ops) (QVbMj8t4A3HZwjJfouQRWudupY4irYpAJa on 44'/88'/1'/0/41) #1 js:2:qtum:xpub6DA2jGUBMLR6KWxfa96MHHqBsBWc4XP5YwPSvaN2AiLAKTX4jMBtivpCBoGyUtFa4TZZ2pBcTsN4ps63ewhhipX7zxSs5nApTTvVGqd3owR:
undefined [legacy]: 0 QTUM (0ops) (QXwMM27e61jr6M9TBrEfWiab9j7RPdRB5L on 44'/88'/2'/0/0) #2 js:2:qtum:xpub6DA2jGUBMLR6Nxr6vXgCpqQCa5xbmtGAsPuDpqkQSqH8WwwgHVfBhyYS3vEmEUqUjXHV5WU1zRLF8dhFfDjaonsgn687DWbbdA4kX9gg1UZ:
undefined: 1.06636 DCR (96ops) (DsdM1iFrdbmbpYF8kmwS6e1HknNzJ43jMcY on 44'/42'/0'/0/49) #0 js:2:decred:dpubZEswmUQs2uoMV65nE6WAWC9X4FTE8uWr4i9ZqUax3GzCwgrAWgyUmafwTSR9gZWuiLunuHtCevHHiApL7jKrBXSrjkrGo3yJQUjB5NUyLqw:
undefined: 0.214191 DCR (94ops) (DsSDUo2SHS1k9uPx3qqgJqbAau8hTjmWCAP on 44'/42'/1'/0/47) #1 js:2:decred:dpubZEswmUQs2uoMYyVkdkFfFwadTkMAKFNzAKALXMwAmcThnWXFFdd47ZwED7wyEkuLY8DW7EXZFwqWQ7psGV67r8pzqGhMm6Ct49tdcvtrFPV:
undefined: 0.0001 DCR (81ops) (Dsch9c5v5gjk1JjSYBifSR5foqVnUhjT6J2 on 44'/42'/2'/0/43) #2 js:2:decred:dpubZEswmUQs2uoMca88QfcXcKnyxwGoZBroZ4ehW8uY5nsBbihKDtmXch52hWbr6PEegjCX8YzHraktnagU4nkyCj3K2KXx1q3krWXs1f1bBre:
undefined: 0 DCR (75ops) (DseAagk4eo2qH9sNtBdPLRNr9wgysPT8Eyh on 44'/42'/3'/0/34) #3 js:2:decred:dpubZEswmUQs2uoMeNDe2t2X9VmcTwDXX7DmD86fdrTXMrRdgZnJBrr74uzzgnKBFuvchmhY64RLJuRM6C3rnchAkB9Q1fzvPToXHzwctS6uxtR:
undefined: 0 DCR (0ops) (DskCZ4d3mZkXwLxAEjx2sEM121SFimdgvSv on 44'/42'/4'/0/0) #4 js:2:decred:dpubZEswmUQs2uoMffXvbjYzmFKAA8qiVoRpBd8QwvJKFgG4HaLsEf3yq9JdFJHzvmMqTKUybT8NPDs16zti7N3ehBSQmxZQB76h8MsWKLZDFAX:
undefined: 0.091304 AXL (1ops) (axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g on 44'/118'/0'/0/0) #0 js:2:axelar:axelar123r3dwfylykx0fugawn6mu2h2smq3047pn5n9g:
undefined: 0.022348 AXL (0ops) (axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64 on 44'/118'/1'/0/0) #1 js:2:axelar:axelar1k2d965a5clx7327n9zx30ewz39ms7kyjpdxd64:
undefined: 0 AXL (0ops) (axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha on 44'/118'/2'/0/0) #2 js:2:axelar:axelar1u63uctcult0t7wsscxxsmv2r2lgl25f4ry2rha:
undefined: 0.009551 AXL (0ops) (axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5 on 44'/118'/3'/0/0) #3 js:2:axelar:axelar17s09a0jyp24hl7w3vcn8padz6efwmrpj2285z5:
undefined: 0 AXL (4ops) (axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f on 44'/118'/4'/0/0) #4 js:2:axelar:axelar12hfs0xs2nw3pqp52hhetnyssjksk422lm5hk0f:
undefined: 0.009194 AXL (0ops) (axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx on 44'/118'/5'/0/0) #5 js:2:axelar:axelar15wdd32tlkvk8rs5622u4fmmzmk7240u2zz5stx:
undefined: 0.253908 AXL (2ops) (axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa on 44'/118'/6'/0/0) #6 js:2:axelar:axelar12xytx2menp2cr2ptpqf5ajyvt9qrrks6n4w4sa:
undefined: 0.000033 AXL (0ops) (axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8 on 44'/118'/7'/0/0) #7 js:2:axelar:axelar12p4nth9v2am502ehfj8tkx95e4ed0aqr5udhp8:
undefined: 0.126831 AXL (5ops) (axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z on 44'/118'/8'/0/0) #8 js:2:axelar:axelar17n752ckdn2e3j7ll4u3d3feectva0tc5t6w77z:
undefined: 0.938913 AXL (3ops) (axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84 on 44'/118'/9'/0/0) #9 js:2:axelar:axelar198r46v0d3gh7nf5qy68svuxp8c056vmeejyt84:
undefined: 0.241072 AXL (3ops) (axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37 on 44'/118'/10'/0/0) #10 js:2:axelar:axelar1k6nyuae59vsscfu7ta3nslad5lf9pu45ntad37:
undefined: 1.23085 AXL (3ops) (axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu on 44'/118'/11'/0/0) #11 js:2:axelar:axelar1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6jv65nu:
undefined: 1.9517 AXL (1ops) (axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll on 44'/118'/12'/0/0) #12 js:2:axelar:axelar13c5fje2aufj0mzzypfc6um35leh2etmf25v9ll:
undefined: 7.36976 AXL (0ops) (axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35 on 44'/118'/13'/0/0) #13 js:2:axelar:axelar1cucffym3ye0074nd9zh2z0a6lzf8nqxcgm9s35:
undefined: 3.0598 AXL (0ops) (axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk on 44'/118'/14'/0/0) #14 js:2:axelar:axelar1yntetr3vdp8r8tpzwyvdc89cjv95d53l0x4zwk:
undefined: 1.21829 AXL (1ops) (axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4 on 44'/118'/15'/0/0) #15 js:2:axelar:axelar1la5ql3ezl9q4zjw3rg75qewd5s6het7j4w4ex4:
undefined: 0.125864 AXL (0ops) (axelar1zrtnaup5sy0v3jzhc7966t3ru4c5lvzlc7rgm4 on 44'/118'/16'/0/0) #16 js:2:axelar:axelar1zrtnaup5sy0v3jzhc7966t3ru4c5lvzlc7rgm4:
undefined: 0 AXL (0ops) (axelar1has5jy0477n3yl6heyycfd67qwf4uw44872lqq on 44'/118'/17'/0/0) #17 js:2:axelar:axelar1has5jy0477n3yl6heyycfd67qwf4uw44872lqq:
undefined: 0 ATOM (48ops) (cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf on 44'/118'/0'/0/0) #0 js:2:cosmos:cosmos123r3dwfylykx0fugawn6mu2h2smq30479azmwf:
undefined: 0 ATOM (37ops) (cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935 on 44'/118'/1'/0/0) #1 js:2:cosmos:cosmos1k2d965a5clx7327n9zx30ewz39ms7kyj9rs935:
undefined: 0 ATOM (38ops) (cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu on 44'/118'/2'/0/0) #2 js:2:cosmos:cosmos1u63uctcult0t7wsscxxsmv2r2lgl25f482utuu:
undefined: 0.186295 ATOM (60ops) (cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4 on 44'/118'/3'/0/0) #3 js:2:cosmos:cosmos17s09a0jyp24hl7w3vcn8padz6efwmrpjwy3uf4:
undefined: 0.018543 ATOM (24ops) (cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg on 44'/118'/4'/0/0) #4 js:2:cosmos:cosmos12hfs0xs2nw3pqp52hhetnyssjksk422ll6p7yg:
undefined: 0.005801 ATOM (56ops) (cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8 on 44'/118'/5'/0/0) #5 js:2:cosmos:cosmos15wdd32tlkvk8rs5622u4fmmzmk7240u2xvzcq8:
undefined: 0 ATOM (23ops) (cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu on 44'/118'/6'/0/0) #6 js:2:cosmos:cosmos12xytx2menp2cr2ptpqf5ajyvt9qrrks6hmcamu:
undefined: 0.066629 ATOM (36ops) (cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x on 44'/118'/7'/0/0) #7 js:2:cosmos:cosmos12p4nth9v2am502ehfj8tkx95e4ed0aqrsjml2x:
undefined: 0.136023 ATOM (21ops) (cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r on 44'/118'/8'/0/0) #8 js:2:cosmos:cosmos17n752ckdn2e3j7ll4u3d3feectva0tc505ck4r:
undefined: 2.05261 ATOM (19ops) (cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5 on 44'/118'/9'/0/0) #9 js:2:cosmos:cosmos198r46v0d3gh7nf5qy68svuxp8c056vmeaujrv5:
undefined: 0.49371 ATOM (4ops) (cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l on 44'/118'/10'/0/0) #10 js:2:cosmos:cosmos1k6nyuae59vsscfu7ta3nslad5lf9pu45h9t96l:
undefined: 3.36253 ATOM (13ops) (cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca on 44'/118'/11'/0/0) #11 js:2:cosmos:cosmos1cf3jz4r9c5n52xw6xyemmx6sq2vqlxz6kzvuca:
undefined: 0.678092 ATOM (1ops) (cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57 on 44'/118'/12'/0/0) #12 js:2:cosmos:cosmos13c5fje2aufj0mzzypfc6um35leh2etmfw66d57:
undefined: 0.938338 ATOM (4ops) (cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64 on 44'/118'/13'/0/0) #13 js:2:cosmos:cosmos1cucffym3ye0074nd9zh2z0a6lzf8nqxcv4nc64:
undefined: 1.27014 ATOM (1ops) (cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h on 44'/118'/14'/0/0) #14 js:2:cosmos:cosmos1yntetr3vdp8r8tpzwyvdc89cjv95d53ltgr29h:
undefined: 0 ATOM (0ops) (cosmos1la5ql3ezl9q4zjw3rg75qewd5s6het7j3qr3d5 on 44'/118'/15'/0/0) #15 js:2:cosmos:cosmos1la5ql3ezl9q4zjw3rg75qewd5s6het7j3qr3d5:
undefined: 0.197694 AVAX (47ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:avalanche_c_chain:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0 AVAX (51ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:avalanche_c_chain:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.197119 AVAX (46ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:avalanche_c_chain:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0 AVAX (36ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:avalanche_c_chain:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0.401714 AVAX (32ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:avalanche_c_chain:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0 AVAX (22ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:avalanche_c_chain:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 0.768479 AVAX (4ops) (0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1 on 44'/60'/6'/0/0) #6 js:2:avalanche_c_chain:0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1:
undefined: 0.213583 AVAX (5ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:avalanche_c_chain:0x636462506a431eC48598C1b3FBBc6279860DF70C:
undefined: 1.04727 AVAX (7ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:avalanche_c_chain:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
undefined: 0 AVAX (0ops) (0x0558aBA03367Cb1452AC701557460b00f8452CA8 on 44'/60'/9'/0/0) #9 js:2:avalanche_c_chain:0x0558aBA03367Cb1452AC701557460b00f8452CA8:
undefined: 0.00274387 BNB (92ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:bsc:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.0550656 BNB (102ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:bsc:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.00459976 BNB (89ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:bsc:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.0242889 BNB (103ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:bsc:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0 BNB (102ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:bsc:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0.00453676 BNB (83ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:bsc:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 0.00268087 BNB (98ops) (0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1 on 44'/60'/6'/0/0) #6 js:2:bsc:0xb70FA2daEE4Cd6CaC6EAb4FFC945B68F100474c1:
undefined: 0 BNB (71ops) (0x636462506a431eC48598C1b3FBBc6279860DF70C on 44'/60'/7'/0/0) #7 js:2:bsc:0x636462506a431eC48598C1b3FBBc6279860DF70C:
undefined: 0.0242259 BNB (59ops) (0x8C63f5be03552E332A8a1e122c58d7b306d81679 on 44'/60'/8'/0/0) #8 js:2:bsc:0x8C63f5be03552E332A8a1e122c58d7b306d81679:
undefined: 0 BNB (0ops) (0x0558aBA03367Cb1452AC701557460b00f8452CA8 on 44'/60'/9'/0/0) #9 js:2:bsc:0x0558aBA03367Cb1452AC701557460b00f8452CA8:
undefined: 0.105 CRO (143ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:cronos:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 1.17124 CRO (183ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:cronos:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 1.37452 CRO (154ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:cronos:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 1.4986 CRO (127ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:cronos:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0.937713 CRO (18ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:cronos:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0 CRO (0ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:cronos:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 1.59611 FTM (81ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:fantom:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 9.80043 FTM (92ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:fantom:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 37.6779 FTM (87ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:fantom:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.00019929 FTM (79ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:fantom:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0.00020378 FTM (36ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:fantom:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0 FTM (0ops) (0x9F38B2C32aE3433552C566365D462dc64dd0edC9 on 44'/60'/5'/0/0) #5 js:2:fantom:0x9F38B2C32aE3433552C566365D462dc64dd0edC9:
undefined: 0 ETH (0ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:boba:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.0000002 ETH (78ops) (0x731477De13B323A0cA90C1FE194EA5A0412937c2 on 44'/60'/0'/0/0) #0 js:2:polygon_zk_evm:0x731477De13B323A0cA90C1FE194EA5A0412937c2:
undefined: 0.00950753 ETH (79ops) (0xF4816c59cd8e24eEd9c5570D026C2396336119A0 on 44'/60'/1'/0/0) #1 js:2:polygon_zk_evm:0xF4816c59cd8e24eEd9c5570D026C2396336119A0:
undefined: 0.00951342 ETH (77ops) (0x2141e8D44753FC7720C471233740c133D79459fC on 44'/60'/2'/0/0) #2 js:2:polygon_zk_evm:0x2141e8D44753FC7720C471233740c133D79459fC:
undefined: 0.00000007 ETH (56ops) (0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd on 44'/60'/3'/0/0) #3 js:2:polygon_zk_evm:0x59569e96d0E3D9728Dc07Bf5C1443809e6F237Fd:
undefined: 0 ETH (0ops) (0x714908e42B5A11eF11578F243052c9E60f1485e6 on 44'/60'/4'/0/0) #4 js:2:polygon_zk_evm:0x714908e42B5A11eF11578F243052c9E60f1485e6:
undefined: 0.000002 TRX (103ops) (TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1 on 44'/195'/0'/0/0) #0 js:2:tron:TT2eHJXo5tRV2wYyZExr9W18mXghe6NFM1:
undefined: 30 TRX (75ops) (TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L on 44'/195'/1'/0/0) #1 js:2:tron:TRtxvsTwcrabLwwE49ANGqGzy7P1Y61V4L:
undefined: 178.388 TRX (108ops) (TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT on 44'/195'/2'/0/0) #2 js:2:tron:TFAG598RAS3di4UiTEMtTEqGfWf7zptyiT:
undefined: 0.690555 TRX (58ops) (TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN on 44'/195'/3'/0/0) #3 js:2:tron:TRfpGLXnVdbebwRuxMSSRtEhWyWkmU8hnN:
undefined: 93.441 TRX (67ops) (TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF on 44'/195'/4'/0/0) #4 js:2:tron:TB8a8kVGyx43BG3TKpVMFhya6iF7FzzddF:
undefined: 0.000001 TRX (28ops) (TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H on 44'/195'/5'/0/0) #5 js:2:tron:TPK3WVhqzQbkzFNBBT2SMQQaZCDBhMqR4H:
undefined: 89.0528 TRX (26ops) (TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD on 44'/195'/6'/0/0) #6 js:2:tron:TDuHWtcsPfWFnvKq5UBT49F8yytRjGzbXD:
undefined: 254.056 TRX (14ops) (TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1 on 44'/195'/7'/0/0) #7 js:2:tron:TWstNGzr8EQWV6x1kHRTUusfNf3Aqyf7T1:
undefined: 86.2447 TRX (4ops) (TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo on 44'/195'/8'/0/0) #8 js:2:tron:TBdgNyhZ6v1nPZdffWVpSAutoxmNhiabLo:
undefined: 8.22643 TRX (1ops) (TJLC3Vmc48hb9SSus2S3ey7jkCNyjWn7o6 on 44'/195'/9'/0/0) #9 js:2:tron:TJLC3Vmc48hb9SSus2S3ey7jkCNyjWn7o6:
Performance ⏲ 6min 11s

Time spent for each spec: (total across mutations)

Spec (accounts) preload scan re-sync tx status sign op broadcast test destination test
TOTAL 45s 13min 2s 1649ms 24s 2min 58s 3.9s 3min 55s 3min 39s
Filecoin (0) N/A N/A N/A N/A N/A N/A N/A N/A
Qtum (4) 0.37ms 38.8s 18ms 781ms 39.9s 398ms 42.8s 43s
Decred (4) 0.15ms 32.8s 1.47ms 823ms 41.8s 704ms 31.4s 31.8s
cardano (0) N/A N/A N/A N/A N/A N/A N/A N/A
axelar (17) 373ms 54.2s 12ms 2410ms 38.2s 441ms 1.32ms N/A
cosmos (15) 723ms 60.2s 40ms 10.8s 29.1s 1522ms 54.4s 33.4s
secret_network (0) N/A N/A N/A N/A N/A N/A N/A N/A
Avalanche C-Chain (9) 114ms 36.8s 4.20ms 3.4s N/A N/A N/A N/A
Binance Smart Chain (9) 637ms 85.1s 5ms 2096ms N/A N/A N/A N/A
Cronos (5) 120ms 3min 44s 1.18ms N/A N/A N/A N/A N/A
Fantom (5) 202ms 2min 59s 31ms 532ms 13.3s 325ms 62.4s 77.9s
Boba (0) 130ms 11.7s N/A N/A N/A N/A N/A N/A
Telos (0) 39ms N/A N/A N/A N/A N/A N/A N/A
Polygon zkEVM (4) 81ms 11.2s 23ms 189ms 3.5s 204ms 10.5s 10.5s
Polkadot (0) N/A N/A N/A N/A N/A N/A N/A N/A
Tron (10) 42.6s 47.4s 1512ms 2951ms 11.9s 353ms 33.8s 22.7s

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

Please sign in to comment.